diff --git a/.htaccess b/.htaccess index 384f25d31..752d8cf8f 100644 --- a/.htaccess +++ b/.htaccess @@ -54,6 +54,7 @@ Header set X-Robots-Tag "noindex" env=INDEX_PAGE RewriteCond %{ENV:SCRIPT_URL} ^/(lobby/?)?$ RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^https?:\/\/([a-z0-9-]+.)?(pokemonshowdown\.com|appjs) +RewriteCond %{HTTP_HOST} ^play\.pokemonshowdown\.com$ RewriteCond %{REMOTE_ADDR} !=127.0.0.1 RewriteCond %{HTTP:CF-Connecting-IP} !=173.252.196.254 RewriteCond %{HTTP:CF-Connecting-IP} !=198.27.67.31 diff --git a/data/abilities.js b/data/abilities.js index 9703c35a9..92aebd0f9 100644 --- a/data/abilities.js +++ b/data/abilities.js @@ -9,7 +9,7 @@ Ratings and how they work: -1: Detrimental An ability that does more harm than good. - ex. Defeatist, Klutz + ex. Defeatist, Normalize 0: Useless An ability with no net effect on a Pokemon during a battle. @@ -18,7 +18,7 @@ Ratings and how they work: 1: Ineffective An ability that has a minimal effect. Should never be chosen over any other ability. - ex. Pressure, Damp + ex. Damp, Shell Armor 2: Situationally useful An ability that can be useful in certain situations. @@ -31,11 +31,11 @@ Ratings and how they work: 4: Very useful One of the most popular abilities. The difference between 3 and 4 can be ambiguous. - ex. Technician, Intimidate + ex. Technician, Protean 5: Essential The sort of ability that defines metagames. - ex. Drizzle, Magnet Pull + ex. Drizzle, Shadow Tag */ @@ -65,11 +65,19 @@ exports.BattleAbilities = { num: 106 }, "aerilate": { - desc: "Turn all of this Pokemon's Normal-typed attacks into Flying-typed.", - shortDesc: "This Pokemon's Normal moves become Flying.", - onModifyMove: function(move) { - if (move.type === 'Normal') { + desc: "Turns all of this Pokemon's Normal-typed attacks into Flying-type and deal 1.3x damage. Does not affect Hidden Power.", + shortDesc: "This Pokemon's Normal moves become Flying-type and do 1.3x damage.", + onModifyMove: function(move, pokemon) { + if (move.type === 'Normal' && move.id !== 'hiddenpower') { move.type = 'Flying'; + pokemon.addVolatile('aerilate'); + } + }, + effect: { + duration: 1, + onBasePowerPriority: 8, + onBasePower: function(basePower, pokemon, target, move) { + return this.chainModify([0x14CD, 0x1000]); } }, id: "aerilate", @@ -161,15 +169,25 @@ exports.BattleAbilities = { rating: 5, num: 71 }, + "aromaveil": { + desc: "Protects allies from attacks that limit their move choices.", + shortDesc: "Protects allies from attacks that limit their move choices.", + //todo + id: "aromaveil", + name: "Aroma Veil", + rating: 0, + num: -6, + gen: 6 + }, "aurabreak": { desc: "Reverses the effect of Dark Aura and Fairy Aura.", shortDesc: "Reverses the effect of Aura abilities.", onStart: function(pokemon) { - this.add('-message', 'The effects of aura abilities are reversed. (placeholder)'); + this.add('-ability', pokemon, 'Aura Break'); }, id: "aurabreak", name: "Aura Break", - rating: 3, + rating: 2, num: -6, gen: 6 }, @@ -237,6 +255,21 @@ exports.BattleAbilities = { rating: 2, num: 66 }, + "bulletproof": { + desc: "This Pokemon is protected from some Ball and Bomb moves.", + shortDesc: "This Pokemon is protected from ball and bomb moves.", + onTryHit: function(pokemon, target, move) { + if (move.isBallMove || move.isBombMove) { + this.add('-immune', pokemon, '[msg]', '[from] Bulletproof'); + return null; + } + }, + id: "bulletproof", + name: "Bulletproof", + rating: 3, + num: -6, + gen: 6 + }, "cheekpouch": { desc: "Increases HP when this Pokemon consumes a berry.", shortDesc: "Increases HP when this Pokemon consumes a berry.", @@ -247,7 +280,7 @@ exports.BattleAbilities = { }, id: "cheekpouch", name: "Cheek Pouch", - rating: 3, + rating: 2, num: -6, gen: 6 }, @@ -346,7 +379,7 @@ exports.BattleAbilities = { move.accuracy *= 1.3; }, id: "compoundeyes", - name: "Compoundeyes", + name: "Compound Eyes", rating: 3.5, num: 14 }, @@ -415,26 +448,25 @@ exports.BattleAbilities = { num: 6 }, "darkaura": { - desc: "Increases the power of all Dark-type moves in battle.", - shortDesc: "Increases the power of all Dark-type moves in battle.", + desc: "Increases the power of all Dark-type moves in battle to 1.3x.", + shortDesc: "Increases the power of all Dark-type moves in battle to 1.3x.", onBasePowerPriority: 8, onBasePower: function(basePower, attacker, defender, move) { var reverseAura = false; for (var p in attacker.side.active) { - if (attacker.side.active[p].ability === 'aurabreak') { + if (attacker.side.active[p] && attacker.side.active[p].ability === 'aurabreak') { reverseAura = true; this.debug('Reversing Dark Aura due to Aura Break'); } } for (var p in defender.side.active) { - if (defender.side.active[p].ability === 'aurabreak') { + if (defender.side.active[p] && defender.side.active[p].ability === 'aurabreak') { reverseAura = true; this.debug('Reversing Dark Aura due to Aura Break'); } } if (move.type === 'Dark') { - this.debug('Dark Aura boost: x' + (reverseAura? 0.8 : 1.2)); - return this.chainModify(reverseAura? 0.8 : 1.2); + return this.chainModify(reverseAura? 0.75 : 1.3); } }, id: "darkaura", @@ -512,8 +544,8 @@ exports.BattleAbilities = { num: 88 }, "drizzle": { - desc: "When this Pokemon enters the battlefield, it causes a permanent Rain Dance that can only be stopped by Air Lock, Cloud Nine or another weather condition.", - shortDesc: "On switch-in, this Pokemon summons Rain Dance until another weather replaces it.", + desc: "When this Pokemon enters the battlefield, the weather becomes Rain Dance (for 5 turns normally, or 8 turns while holding Damp Rock).", + shortDesc: "On switch-in, the weather becomes Rain Dance.", onStart: function(source) { this.setWeather('raindance'); }, @@ -523,8 +555,8 @@ exports.BattleAbilities = { num: 2 }, "drought": { - desc: "When this Pokemon enters the battlefield, it causes a permanent Sunny Day that can only be stopped by Air Lock, Cloud Nine or another weather condition.", - shortDesc: "On switch-in, this Pokemon summons Sunny Day until another weather replaces it.", + desc: "When this Pokemon enters the battlefield, the weather becomes Sunny Day (for 5 turns normally, or 8 turns while holding Heat Rock).", + shortDesc: "On switch-in, the weather becomes Sunny Day.", onStart: function(source) { this.setWeather('sunnyday'); }, @@ -588,26 +620,25 @@ exports.BattleAbilities = { num: 27 }, "fairyaura": { - desc: "Increases the power of all Fairy-type moves in battle.", - shortDesc: "Increases the power of all Fairy-type moves in battle.", + desc: "Increases the power of all Fairy-type moves in battle to 1.3x.", + shortDesc: "Increases the power of all Fairy-type moves in battle to 1.3x.", onBasePowerPriority: 8, onBasePower: function(basePower, attacker, defender, move) { var reverseAura = false; for (var p in attacker.side.active) { - if (attacker.side.active[p].ability === 'aurabreak') { + if (attacker.side.active[p] && attacker.side.active[p].ability === 'aurabreak') { reverseAura = true; this.debug('Reversing Fairy Aura due to Aura Break'); } } for (var p in defender.side.active) { - if (defender.side.active[p].ability === 'aurabreak') { + if (defender.side.active[p] && defender.side.active[p].ability === 'aurabreak') { reverseAura = true; this.debug('Reversing Fairy Aura due to Aura Break'); } } if (move.type === 'Fairy') { - this.debug('Fairy Aura boost: x' + (reverseAura? 0.8 : 1.2)); - return this.chainModify(reverseAura? 0.8 : 1.2); + return this.chainModify(reverseAura? 0.75 : 1.3); } }, id: "fairyaura", @@ -848,9 +879,11 @@ exports.BattleAbilities = { desc: "When this Pokemon enters the field, it identifies the opponent's held item; in double battles, the held item of an unrevealed, randomly selected opponent is identified.", shortDesc: "On switch-in, this Pokemon identifies a random foe's held item.", onStart: function(pokemon) { - var target = pokemon.side.foe.randomActive(); - if (target && target.item) { - this.add('-item', target, target.getItem().name, '[from] ability: Frisk', '[of] '+pokemon); + var foeactive = pokemon.side.foe.active; + for (var i=0; i= target.maxhp) { @@ -1595,7 +1656,7 @@ exports.BattleAbilities = { num: 136 }, "multitype": { - desc: "This Pokemon changes its type to match its corresponding held Plate; this ability only works for Arceus, prevents the removal of Arceus' held item and cannot be Skill Swapped, Role Played or Traced.", + desc: "If this Pokemon is Arceus, its type and sprite change to match its held Plate. Either way, this Pokemon is holding a Plate, the Plate cannot be taken (such as by Trick or Thief). This ability cannot be Skill Swapped, Role Played or Traced.", shortDesc: "If this Pokemon is Arceus, its type changes to match its held Plate.", // Multitype's type-changing itself is implemented in statuses.js onTakeItem: function(item) { @@ -1603,7 +1664,7 @@ exports.BattleAbilities = { }, id: "multitype", name: "Multitype", - rating: 5, + rating: 4, num: 121 }, "mummy": { @@ -1633,7 +1694,7 @@ exports.BattleAbilities = { num: 30 }, "noguard": { - desc: "Every attack used by or against this Pokemon will always hit.", + desc: "Every attack used by or against this Pokemon will always hit, even during evasive two-turn moves such as Fly and Dig.", shortDesc: "Every move used by or against this Pokemon will always hit.", onModifyMove: function(move) { move.accuracy = true; @@ -1645,7 +1706,7 @@ exports.BattleAbilities = { }, id: "noguard", name: "No Guard", - rating: 4.5, + rating: 4, num: 99 }, "normalize": { @@ -1662,7 +1723,7 @@ exports.BattleAbilities = { num: 96 }, "oblivious": { - desc: "This Pokemon cannot become attracted to another Pokemon.", + desc: "This Pokemon cannot be infatuated (by Attract or Cute Charm). Gaining this Ability while infatuated cures it.", shortDesc: "This Pokemon cannot be infatuated. Gaining this Ability while infatuated cures it.", onUpdate: function(pokemon) { if (pokemon.volatiles['attract']) { @@ -1693,8 +1754,8 @@ exports.BattleAbilities = { num: 12 }, "overcoat": { - desc: "In battle, the Pokemon does not take damage from weather conditions like Sandstorm or Hail.", - shortDesc: "This Pokemon does not take damage from Sandstorm or Hail.", + desc: "In battle, the Pokemon does not take damage from weather conditions like Sandstorm or Hail. It is also immune to powder moves.", + shortDesc: "This Pokemon is immune to residual weather damage, and powder moves.", onImmunity: function(type, pokemon) { if (type === 'sandstorm' || type === 'hail') return false; }, @@ -1706,7 +1767,7 @@ exports.BattleAbilities = { }, id: "overcoat", name: "Overcoat", - rating: 1, + rating: 2, num: 142 }, "overgrow": { @@ -1732,7 +1793,7 @@ exports.BattleAbilities = { num: 65 }, "owntempo": { - desc: "This Pokemon cannot become confused.", + desc: "This Pokemon cannot be confused. Gaining this Ability while confused cures it.", shortDesc: "This Pokemon cannot be confused. Gaining this Ability while confused cures it.", onUpdate: function(pokemon) { if (pokemon.volatiles['confusion']) { @@ -1751,12 +1812,28 @@ exports.BattleAbilities = { num: 20 }, "parentalbond": { - desc: "Allows the Pokemon to hit twice with the same move in one turn.", - shortDesc: "Hits twice in one turn.", - //todo + desc: "Allows the Pokemon to hit twice with the same move in one turn. Second hit has 0.5x base power. Does not affect Status, multihit, or spread moves (even in singles).", + shortDesc: "Hits twice in one turn. Second hit has 0.5x base power.", + onModifyMove: function(move, pokemon) { + if (move.category !== 'Status' && !move.multihit && move.target === "normal") { + move.multihit = 2; + pokemon.addVolatile('parentalbond'); + } + }, + effect: { + duration: 1, + onBasePowerPriority: 8, + onBasePower: function(basePower) { + if (this.effectData.hit) { + return this.chainModify(0.5); + } else { + this.effectData.hit = true; + } + } + }, id: "parentalbond", name: "Parental Bond", - rating: 3, + rating: 4.5, num: -6, gen: 6 }, @@ -1782,7 +1859,7 @@ exports.BattleAbilities = { num: 53 }, "pickpocket": { - desc: "Steals attacking Pokemon's held item on contact.", + desc: "If this Pokemon has no item, it steals an item off an attacking Pokemon making contact.", shortDesc: "If this Pokemon has no item, it steals an item off a Pokemon making contact.", onAfterDamage: function(damage, target, source, move) { if (source && source !== target && move && move.isContact) { @@ -1806,11 +1883,19 @@ exports.BattleAbilities = { num: 124 }, "pixilate": { - desc: "Turn all of this Pokemon's Normal-typed attacks into Fairy-typed.", - shortDesc: "This Pokemon's Normal moves become Fairy.", - onModifyMove: function(move) { - if (move.type === 'Normal') { + desc: "Turns all of this Pokemon's Normal-typed attacks into Fairy-type and deal 1.3x damage. Does not affect Hidden Power.", + shortDesc: "This Pokemon's Normal moves become Fairy-type and do 1.3x damage.", + onModifyMove: function(move, pokemon) { + if (move.type === 'Normal' && move.id !== 'hiddenpower') { move.type = 'Fairy'; + pokemon.addVolatile('pixilate'); + } + }, + effect: { + duration: 1, + onBasePowerPriority: 8, + onBasePower: function(basePower, pokemon, target, move) { + return this.chainModify([0x14CD, 0x1000]); } }, id: "pixilate", @@ -1820,8 +1905,8 @@ exports.BattleAbilities = { gen: 6 }, "plus": { - desc: "This Pokemon's Special Attack receives a 50% boost in double battles if its partner has the Minus ability.", - shortDesc: "If another ally has this Ability or the Minus Ability, this Pokemon's Sp. Atk is 1.5x.", + desc: "This Pokemon's Special Attack receives a 50% boost in double battles if a partner has the Plus or Minus ability.", + shortDesc: "If an ally has the Ability Plus or Minus, this Pokemon's Sp. Atk is 1.5x.", onModifySpAPriority: 5, onModifySpA: function(spa, pokemon) { var allyActive = pokemon.side.active; @@ -1840,7 +1925,7 @@ exports.BattleAbilities = { num: 57 }, "poisonheal": { - desc: "If this Pokemon becomes poisoned or Toxic Poisoned, it will recover one-eighth of its max HP after each turn.", + desc: "If this Pokemon becomes poisoned (including Toxic), it will recover 1/8 of its max HP after each turn.", shortDesc: "This Pokemon is healed by 1/8 of its max HP each turn when poisoned; no HP loss.", onDamage: function(damage, target, source, effect) { if (effect.id === 'psn' || effect.id === 'tox') { @@ -1854,7 +1939,7 @@ exports.BattleAbilities = { num: 90 }, "poisonpoint": { - desc: "If an opponent directly attacks this Pokemon, there is a 30% chance that the opponent will become poisoned.", + desc: "If an opponent contact attacks this Pokemon, there is a 30% chance that the opponent will become poisoned.", shortDesc: "30% chance of poisoning a Pokemon making contact with this Pokemon.", onAfterDamage: function(damage, target, source, move) { if (move && move.isContact) { @@ -1869,7 +1954,7 @@ exports.BattleAbilities = { num: 38 }, "poisontouch": { - desc: "The contact-based attacks from a Pokemon with Poison Touch have a 30% chance of poisoning the target.", + desc: "This Pokemon's contact attacks have a 30% chance of poisoning the target.", shortDesc: "This Pokemon's contact moves have a 30% chance of poisoning.", // upokecenter says this is implemented as an added secondary effect onModifyMove: function(move) { @@ -1888,8 +1973,8 @@ exports.BattleAbilities = { num: 143 }, "prankster": { - desc: "Increases the priority of non-damaging moves by 1.", - shortDesc: "This Pokemon's non-damaging moves have their priority increased by 1.", + desc: "This Pokemon's Status moves have their priority increased by 1 stage.", + shortDesc: "This Pokemon's Status moves have their priority increased by 1.", onModifyPriority: function(priority, pokemon, target, move) { if (move && move.category === 'Status') { return priority + 1; @@ -1901,7 +1986,7 @@ exports.BattleAbilities = { num: 158 }, "pressure": { - desc: "When an opponent uses a move that affects this Pokemon, an additional PP is required for the opponent to use that move.", + desc: "If this Pokemon is the target of a foe's move, that move loses one additional PP.", shortDesc: "If this Pokemon is the target of a foe's move, that move loses one additional PP.", onStart: function(pokemon) { this.add('-ability', pokemon, 'Pressure'); @@ -1912,26 +1997,28 @@ exports.BattleAbilities = { }, id: "pressure", name: "Pressure", - rating: 2, + rating: 1.5, num: 46 }, "protean": { - desc: "Changes user's type to match the user's current move before it attacks.", - shortDesc: "Changes user's type to match its move.", + desc: "Right before this Pokemon uses a move, it changes its type to match that move. Hidden Power is interpreted as its Hidden Power type, rather than Normal.", + shortDesc: "Right before this Pokemon uses a move, it changes its type to match that move.", onBeforeMove: function(pokemon, target, move) { - if (move && !pokemon.hasType(move.type)) { - this.add('-start', pokemon, 'typechange', move.type, '[from] Protean'); - pokemon.types = [move.type]; + if (!move) return; + var moveType = (move.id === 'hiddenpower' ? pokemon.hpType : move.type); + if (pokemon.types.join() !== moveType) { + this.add('-start', pokemon, 'typechange', moveType, '[from] Protean'); + pokemon.types = [moveType]; } }, id: "protean", name: "Protean", - rating: 1.5, + rating: 4, num: -6, gen: 6 }, "purepower": { - desc: "This Pokemon's Attack stat is doubled. Therefore, if this Pokemon's Attack stat on the status screen is 200, it effectively has an Attack stat of 400; which is then subject to the full range of stat boosts and reductions.", + desc: "This Pokemon's Attack stat is doubled. Note that this is the Attack stat itself, not the base Attack stat of its species.", shortDesc: "This Pokemon's Attack is doubled.", onModifyAtkPriority: 5, onModifyAtk: function(atk) { @@ -1956,8 +2043,8 @@ exports.BattleAbilities = { num: 95 }, "raindish": { - desc: "If active while Rain Dance is in effect, this Pokemon recovers one-sixteenth of its max HP after each turn.", - shortDesc: "If Rain Dance is active, this Pokemon heals 1/16 of its max HP each turn.", + desc: "If the weather is Rain Dance, this Pokemon recovers 1/16 of its max HP after each turn.", + shortDesc: "If the weather is Rain Dance, this Pokemon heals 1/16 of its max HP each turn.", onWeather: function(target, source, effect) { if (effect.id === 'raindance') { this.heal(target.maxhp/16); @@ -1970,7 +2057,7 @@ exports.BattleAbilities = { }, "rattled": { desc: "Raises the user's Speed one stage when hit by a Dark-, Bug-, or Ghost-type move.", - shortDesc: "This Pokemon's Speed is boosted by 1 if hit by a Dark-, Bug-, or Ghost-type attack.", + shortDesc: "This Pokemon gets +1 Speed if hit by a Dark-, Bug-, or Ghost-type attack.", onAfterDamage: function(damage, target, source, effect) { if (effect && (effect.type === 'Dark' || effect.type === 'Bug' || effect.type === 'Ghost')) { this.boost({spe:1}); @@ -1982,7 +2069,7 @@ exports.BattleAbilities = { num: 155 }, "reckless": { - desc: "When this Pokemon uses an attack that causes recoil damage, or an attack that has a chance to cause recoil damage such as Jump Kick and Hi Jump Kick, the attacks's power receives a 20% boost.", + desc: "When this Pokemon uses an attack that causes recoil damage, or an attack that has a chance to cause recoil damage such as Jump Kick and High Jump Kick, the attacks's power receives a 20% boost.", shortDesc: "This Pokemon's attacks with recoil or crash damage do 1.2x damage; not Struggle.", onBasePowerPriority: 8, onBasePower: function(basePower, attacker, defender, move) { @@ -1997,11 +2084,19 @@ exports.BattleAbilities = { num: 120 }, "refrigerate": { - desc: "Turn all of this Pokemon's Normal-typed attacks into Ice-typed.", - shortDesc: "This Pokemon's Normal moves become Ice.", - onModifyMove: function(move) { - if (move.type === 'Normal') { + desc: "Turns all of this Pokemon's Normal-typed attacks into Ice-typed and deal 1.3x damage. Does not affect Hidden Power.", + shortDesc: "This Pokemon's Normal moves become Ice-type and do 1.3x damage.", + onModifyMove: function(move, pokemon) { + if (move.type === 'Normal' && move.id !== 'hiddenpower') { move.type = 'Ice'; + pokemon.addVolatile('refrigerate'); + } + }, + effect: { + duration: 1, + onBasePowerPriority: 8, + onBasePower: function(basePower, pokemon, target, move) { + return this.chainModify([0x14CD, 0x1000]); } }, id: "refrigerate", @@ -2011,18 +2106,18 @@ exports.BattleAbilities = { gen: 6 }, "regenerator": { - desc: "Causes the user to restore HP by 1/3 of its maximum when switching out.", + desc: "This Pokemon heals 1/3 of its max HP when it switches out.", shortDesc: "This Pokemon heals 1/3 of its max HP when it switches out.", onSwitchOut: function(pokemon) { pokemon.heal(pokemon.maxhp/3); }, id: "regenerator", name: "Regenerator", - rating: 4.5, + rating: 4, num: 144 }, "rivalry": { - desc: "Increases base power of Physical and Special attacks by 25% if the opponent is the same gender, but decreases base power by 25% if opponent is the opposite gender.", + desc: "This Pokemon's attacks do 1.25x damage if their target is the same gender, but 0.75x if their target is the opposite gender.", shortDesc: "This Pokemon's attacks do 1.25x on same gender targets; 0.75x on opposite gender.", onBasePowerPriority: 8, onBasePower: function(basePower, attacker, defender, move) { @@ -2042,7 +2137,7 @@ exports.BattleAbilities = { num: 79 }, "rockhead": { - desc: "This Pokemon does not receive recoil damage unless it uses Struggle, it misses with Jump Kick or Hi Jump Kick or it is holding Life Orb, Jaboca Berry or Rowap Berry.", + desc: "This Pokemon does not receive recoil damage except from Struggle, Life Orb, or crash damage from Jump Kick or High Jump Kick.", shortDesc: "This Pokemon does not take recoil damage besides Struggle, Life Orb, crash damage.", onModifyMove: function(move) { delete move.recoil; @@ -2053,7 +2148,7 @@ exports.BattleAbilities = { num: 69 }, "roughskin": { - desc: "Causes recoil damage equal to 1/8 of the opponent's max HP if an opponent directly attacks.", + desc: "Causes recoil damage equal to 1/8 of the opponent's max HP if an opponent makes contact.", shortDesc: "This Pokemon causes other Pokemon making contact to lose 1/8 of their max HP.", onAfterDamageOrder: 1, onAfterDamage: function(damage, target, source, move) { @@ -2075,7 +2170,7 @@ exports.BattleAbilities = { num: 50 }, "sandforce": { - desc: "Raises the power of Rock, Ground, and Steel-type moves by 30% while a Sandstorm is in effect. It also gives the user immunity to damage from Sandstorm.", + desc: "Raises the power of this Pokemon's Rock, Ground, and Steel-type moves by 1.3x if the weather is Sandstorm. This Pokemon is also immune to residual Sandstorm damage.", shortDesc: "This Pokemon's Rock/Ground/Steel attacks do 1.3x in Sandstorm; immunity to it.", onBasePowerPriority: 8, onBasePower: function(basePower, attacker, defender, move) { @@ -2095,7 +2190,7 @@ exports.BattleAbilities = { num: 159 }, "sandrush": { - desc: "Doubles Speed in a Sandstorm, and makes the Pokemon immune to Sandstorm damage.", + desc: "This Pokemon's Speed is doubled if the weather is Sandstorm. This Pokemon is also immune to residual Sandstorm damage.", shortDesc: "If Sandstorm is active, this Pokemon's Speed is doubled; immunity to Sandstorm.", onModifySpe: function(speMod, pokemon) { if (this.isWeather('sandstorm')) { @@ -2111,18 +2206,18 @@ exports.BattleAbilities = { num: 146 }, "sandstream": { - desc: "When this Pokemon enters the battlefield, it causes a permanent Sandstorm that can only be stopped by Air Lock, Cloud Nine or another weather condition.", - shortDesc: "On switch-in, this Pokemon summons Sandstorm until another weather replaces it.", + desc: "When this Pokemon enters the battlefield, the weather becomes Sandstorm (for 5 turns normally, or 8 turns while holding Smooth Rock).", + shortDesc: "On switch-in, the weather becomes Sandstorm.", onStart: function(source) { this.setWeather('sandstorm'); }, id: "sandstream", name: "Sand Stream", - rating: 5, + rating: 4.5, num: 45 }, "sandveil": { - desc: "If active while Sandstorm is in effect, this Pokemon's Evasion receives a 20% boost; if this Pokemon has a typing that would normally take damage from Sandstorm, this Pokemon is also immune to Sandstorm's damage.", + desc: "This Pokemon's Evasion is boosted by 1.25x if the weather is Sandstorm. This Pokemon is also immune to residual Sandstorm damage.", shortDesc: "If Sandstorm is active, this Pokemon's evasion is 1.25x; immunity to Sandstorm.", onImmunity: function(type, pokemon) { if (type === 'sandstorm') return false; @@ -2136,11 +2231,11 @@ exports.BattleAbilities = { }, id: "sandveil", name: "Sand Veil", - rating: 1, + rating: 1.5, num: 8 }, "sapsipper": { - desc: "When a Pokemon with Sap Sipper is hit with a Grass-type attack, its attack is increased by one level, and the move itself has no effect. If hit by a multi-hit attack like Bullet Seed, it will increase attack by one stage for each hit. The only Grass-type move that will not activate Sap Sipper is Aromatherapy.", + desc: "This Pokemon is immune to Grass moves. If hit by a Grass move, its Attack is increased by one stage (once for each hit of Bullet Seed). Does not affect Aromatherapy.", shortDesc: "This Pokemon's Attack is boosted by 1 if hit by any Grass move; Grass immunity.", onTryHit: function(target, source, move) { if (target !== source && move.type === 'Grass') { @@ -2170,7 +2265,7 @@ exports.BattleAbilities = { num: 113 }, "serenegrace": { - desc: "The side effects of this Pokemon's attack occur twice as often. For example, if this Pokemon uses Ice Beam, it will have a 20% chance to freeze its target.", + desc: "This Pokemon's moves have their secondary effect chance doubled. For example, if this Pokemon uses Ice Beam, it will have a 20% chance to freeze its target.", shortDesc: "This Pokemon's moves have their secondary effect chance doubled.", onModifyMove: function(move) { if (move.secondaries) { @@ -2186,7 +2281,7 @@ exports.BattleAbilities = { num: 32 }, "shadowtag": { - desc: "When this Pokemon enters the field, its opponents cannot switch or flee the battle unless they have the same ability, are holding Shed Shell, or they use the moves Baton Pass or U-Turn.", + desc: "When this Pokemon enters the field, its non-Ghost-type opponents cannot switch or flee the battle unless they have the same ability, are holding Shed Shell, or they use the moves Baton Pass or U-Turn.", shortDesc: "Prevents foes from switching out normally unless they also have this Ability.", onFoeModifyPokemon: function(pokemon) { if (pokemon.ability !== 'shadowtag') { @@ -2204,7 +2299,7 @@ exports.BattleAbilities = { num: 23 }, "shedskin": { - desc: "After each turn, this Pokemon has a 33% chance to heal itself from poison (including Toxic), paralysis, burn, freeze or sleep (including self-induced Rest).", + desc: "At the end of each turn, this Pokemon has a 33% chance to heal itself from poison (including Toxic), paralysis, burn, freeze or sleep (including self-induced Rest).", shortDesc: "This Pokemon has a 33% chance to have its status cured at the end of each turn.", onResidualOrder: 5, onResidualSubOrder: 1, @@ -2221,7 +2316,7 @@ exports.BattleAbilities = { num: 61 }, "sheerforce": { - desc: "Raises the base power of all moves that have any secondary effects by 30%, but the secondary effects are ignored. However, this ability is not applied to moves that have a negative effect on the user, such as recoil, two-turn moves, and stat reduction after using certain moves. If a Pokemon with Sheer Force is holding a Life Orb and uses an attack that would be boosted by Sheer Force, then the move gains both boosts but the user receives no recoil damage.", + desc: "Raises the base power of all moves that have any secondary effects by 30%, but the secondary effects are ignored. Some side effects of moves, such as recoil, draining, stat reduction, and switching out usually aren't considered secondary effects. If a Pokemon with Sheer Force is holding a Life Orb and uses an attack that would be boosted by Sheer Force, then the move gains both boosts and the user receives no Life Orb recoil (only if the attack is boosted by Sheer Force).", shortDesc: "This Pokemon's attacks with secondary effects do 1.3x damage; nullifies the effects.", onModifyMove: function(move, pokemon) { if (move.secondaries) { @@ -2243,7 +2338,7 @@ exports.BattleAbilities = { num: 125 }, "shellarmor": { - desc: "Critical Hits cannot strike this Pokemon.", + desc: "Attacks targeting this Pokemon can't be critical hits.", shortDesc: "This Pokemon cannot be struck by a critical hit.", onCriticalHit: false, id: "shellarmor", @@ -2252,7 +2347,7 @@ exports.BattleAbilities = { num: 75 }, "shielddust": { - desc: "If the opponent uses a move that has secondary effects that affect this Pokemon in addition to damage, the move's secondary effects will not trigger. (For example, an Ice Beam will lose its 10% chance to freeze this Pokemon.)", + desc: "If the opponent uses a move that has secondary effects that affect this Pokemon in addition to damage, the move's secondary effects will not trigger (For example, Ice Beam loses its 10% freeze chance).", shortDesc: "This Pokemon is not affected by the secondary effect of another Pokemon's attack.", onTrySecondaryHit: function() { this.debug('Shield Dust prevent secondary'); @@ -2264,7 +2359,7 @@ exports.BattleAbilities = { num: 19 }, "simple": { - desc: "This Pokemon doubles all of its positive and negative stat modifiers. For example, if this Pokemon uses Curse, its Attack and Defense stats each receive a two-level increase while its Speed stat receives a two-level decrease.", + desc: "This Pokemon doubles all of its positive and negative stat modifiers. For example, if this Pokemon uses Curse, its Attack and Defense stats increase by two stages and its Speed stat decreases by two stages.", shortDesc: "This Pokemon has its own stat boosts and drops doubled as they happen.", onBoost: function(boost) { for (var i in boost) { @@ -2290,7 +2385,7 @@ exports.BattleAbilities = { num: 92 }, "slowstart": { - desc: "After this Pokemon switches into the battle, its Attack and Speed stats are halved for five turns; for example, if this Pokemon has an Attack stat of 400, it will effectively have an Attack stat of 200 until the effects of Slow Start wear off.", + desc: "After this Pokemon switches into the battle, its Attack and Speed stats are halved for five turns. For example, if this Pokemon has an Attack stat of 400, its Attack will be 200 until the effects of Slow Start wear off.", shortDesc: "On switch-in, this Pokemon's Attack and Speed are halved for 5 turns.", onStart: function(pokemon) { pokemon.addVolatile('slowstart'); @@ -2325,8 +2420,8 @@ exports.BattleAbilities = { num: 112 }, "sniper": { - desc: "When this Pokemon lands a Critical Hit, the base power of its attack is tripled rather than doubled.", - shortDesc: "If this Pokemon strikes with a critical hit, the damage is tripled instead of doubled.", + desc: "When this Pokemon lands a Critical Hit, the damage is increased to another 1.5x.", + shortDesc: "If this Pokemon strikes with a critical hit, the damage is 2.25x instead of 1.5x.", onModifyDamage: function(damage, source, target, move) { if (move.crit) { this.debug('Sniper boost'); @@ -2339,7 +2434,7 @@ exports.BattleAbilities = { num: 97 }, "snowcloak": { - desc: "If active while Hail is in effect, this Pokemon's Evasion receives a 20% boost; if this Pokemon has a typing that would normally take damage from Hail, this Pokemon is also immune to Hail's damage.", + desc: "This Pokemon's Evasion is boosted by 1.25x if the weather is Hail. This Pokemon is also immune to residual Hail damage.", shortDesc: "If Hail is active, this Pokemon's evasion is 1.25x; immunity to Hail.", onImmunity: function(type, pokemon) { if (type === 'hail') return false; @@ -2353,22 +2448,22 @@ exports.BattleAbilities = { }, id: "snowcloak", name: "Snow Cloak", - rating: 0.5, + rating: 1, num: 81 }, "snowwarning": { - desc: "When this Pokemon enters the battlefield, it causes a permanent Hail that can only be stopped by Air Lock, Cloud Nine or another weather condition.", - shortDesc: "On switch-in, this Pokemon summons Hail until another weather replaces it.", + desc: "When this Pokemon enters the battlefield, the weather becomes Hail (for 5 turns normally, or 8 turns while holding Icy Rock).", + shortDesc: "On switch-in, the weather becomes Hail.", onStart: function(source) { this.setWeather('hail'); }, id: "snowwarning", name: "Snow Warning", - rating: 4.5, + rating: 4, num: 117 }, "solarpower": { - desc: "If this Pokemon is active while Sunny Day is in effect, its Special Attack temporarily receives a 50% boost but this Pokemon also receives damage equal to one-eighth of its max HP after each turn.", + desc: "If the weather is Sunny Day, this Pokemon's Special Attack is 1.5x, but it loses 1/8 of its max HP at the end of every turn.", shortDesc: "If Sunny Day is active, this Pokemon's Sp. Atk is 1.5x and loses 1/8 max HP per turn.", onModifySpAPriority: 5, onModifySpA: function(spa, pokemon) { @@ -2387,7 +2482,7 @@ exports.BattleAbilities = { num: 94 }, "solidrock": { - desc: "This Pokemon receives one-fourth reduced damage from Super Effective attacks.", + desc: "Super-effective attacks only deal 3/4 their usual damage against this Pokemon.", shortDesc: "This Pokemon receives 3/4 damage from super effective attacks.", onSourceModifyDamage: function(damage, source, target, move) { if (this.getEffectiveness(move.type, target) > 0) { @@ -2401,7 +2496,7 @@ exports.BattleAbilities = { num: 116 }, "soundproof": { - desc: "This Pokemon is immune to the effects of the sound-related moves Bug Buzz, Chatter, Echoed Voice, Grasswhistle, Growl, Heal Bell, Hyper Voice, Metal Sound, Perish Song, Relic Song, Roar, Round, Screech, Sing, Snarl, Snore, Supersonic, and Uproar.", + desc: "This Pokemon is immune to the effects of sound-based moves, which are: Bug Buzz, Chatter, Echoed Voice, Grasswhistle, Growl, Heal Bell, Hyper Voice, Metal Sound, Perish Song, Relic Song, Roar, Round, Screech, Sing, Snarl, Snore, Supersonic, and Uproar. This ability doesn't affect Heal Bell.", shortDesc: "This Pokemon is immune to sound-based moves, except Heal Bell.", onTryHit: function(target, source, move) { if (target !== source && move.isSoundBased) { @@ -2415,7 +2510,7 @@ exports.BattleAbilities = { num: 43 }, "speedboost": { - desc: "While this Pokemon is active, its Speed increases by one stage at the end of every turn; the six stage maximum for stat boosts is still in effect.", + desc: "At the end of every turn, this Pokemon's Speed increases by one stage (except the turn it switched in).", shortDesc: "This Pokemon's Speed is boosted by 1 at the end of each full turn on the field.", onResidualOrder: 26, onResidualSubOrder: 1, @@ -2430,7 +2525,7 @@ exports.BattleAbilities = { num: 3 }, "stall": { - desc: "This Pokemon attacks last in its priority bracket.", + desc: "This Pokemon moves last among Pokemon using the same or greater priority moves.", shortDesc: "This Pokemon moves last among Pokemon using the same or greater priority moves.", onModifyPriority: function(priority) { return priority - 0.1; @@ -2441,8 +2536,9 @@ exports.BattleAbilities = { num: 100 }, "stancechange": { - desc: "The Pokemon changes form depending on how it battles. Defense form for King's Shield, and Offense form for attacking moves.", + desc: "Only affects Aegislash. If this Pokemon uses a Physical or Special move, it changes to Blade forme. If this Pokemon uses King's Shield, it changes to Shield forme.", shortDesc: "The Pokemon changes form depending on how it battles.", + onBeforeMovePriority: 10, onBeforeMove: function(attacker, defender, move) { if (attacker.template.baseSpecies !== 'Aegislash') return; if (move.category === 'Status' && move.id !== 'kingsshield') return; @@ -2458,7 +2554,7 @@ exports.BattleAbilities = { gen: 6 }, "static": { - desc: "If an opponent directly attacks this Pokemon, there is a 30% chance that the opponent will become paralyzed.", + desc: "If an opponent contact attacks this Pokemon, there is a 30% chance that the opponent will become paralyzed.", shortDesc: "30% chance of paralyzing a Pokemon making contact with this Pokemon.", onAfterDamage: function(damage, target, source, effect) { if (effect && effect.isContact) { @@ -2473,8 +2569,8 @@ exports.BattleAbilities = { num: 9 }, "steadfast": { - desc: "If this Pokemon is made to flinch, its Speed receives a one-level boost.", - shortDesc: "If this Pokemon is made to flinch, its Speed is boosted by 1.", + desc: "If this Pokemon flinches, its Speed increases by one stage.", + shortDesc: "If this Pokemon flinches, its Speed is boosted by 1.", onFlinch: function(pokemon) { this.boost({spe: 1}); }, @@ -2484,7 +2580,7 @@ exports.BattleAbilities = { num: 80 }, "stench": { - desc: "Damaging moves have a 10% chance to flinch.", + desc: "This Pokemon's damaging moves that don't already have a flinch chance gain a 10% chance to cause flinch.", shortDesc: "This Pokemon's attacks without a chance to flinch have a 10% chance to flinch.", onModifyMove: function(move) { if (move.category !== "Status") { @@ -2505,7 +2601,7 @@ exports.BattleAbilities = { num: 1 }, "stickyhold": { - desc: "Opponents cannot remove items from this Pokemon.", + desc: "This Pokemon cannot lose its held item due to another Pokemon's attack.", shortDesc: "This Pokemon cannot lose its held item due to another Pokemon's attack.", onTakeItem: function(item, pokemon, source) { if (source && source !== pokemon) return false; @@ -2540,7 +2636,7 @@ exports.BattleAbilities = { num: 114 }, "strongjaw": { - desc: "This Pokemon receives a 50% power boost for attacks such as Bite and Crunch.", + desc: "This Pokemon receives a 50% power boost for jaw attacks such as Bite and Crunch.", shortDesc: "This Pokemon's bite-based attacks do 1.5x damage.", onBasePowerPriority: 8, onBasePower: function(basePower, attacker, defender, move) { @@ -2574,7 +2670,7 @@ exports.BattleAbilities = { num: 5 }, "suctioncups": { - desc: "This Pokemon cannot be forced out.", + desc: "This Pokemon cannot be forced to switch out by another Pokemon's attack or item.", shortDesc: "This Pokemon cannot be forced to switch out by another Pokemon's attack or item.", onDragOutPriority: 1, onDragOut: function(pokemon) { @@ -2587,7 +2683,7 @@ exports.BattleAbilities = { num: 21 }, "superluck": { - desc: "Raises the chance of this Pokemon scoring a Critical Hit.", + desc: "This Pokemon's critical hit ratio is boosted by 1.", shortDesc: "This Pokemon's critical hit ratio is boosted by 1.", onModifyMove: function(move) { move.critRatio++; @@ -2598,7 +2694,7 @@ exports.BattleAbilities = { num: 105 }, "swarm": { - desc: "When its health reaches one-third or less of its max HP, this Pokemon's Bug-type attacks receive a 50% boost in power.", + desc: "When its health reaches 1/3 or less of its max HP, this Pokemon's Bug-type attacks do 1.5x damage.", shortDesc: "When this Pokemon has 1/3 or less of its max HP, its Bug attacks do 1.5x damage.", onModifyAtkPriority: 5, onModifyAtk: function(atk, attacker, defender, move) { @@ -2620,8 +2716,8 @@ exports.BattleAbilities = { num: 68 }, "sweetveil": { - desc: "Prevents allies to be put to Sleep.", - shortDesc: "Prevents allies to be put to Sleep.", + desc: "Prevents allies from being put to Sleep.", + shortDesc: "Prevents allies from being put to Sleep.", id: "sweetveil", name: "Sweet Veil", onStart: function(pokemon) { @@ -2650,8 +2746,8 @@ exports.BattleAbilities = { gen: 6 }, "swiftswim": { - desc: "If this Pokemon is active while Rain Dance is in effect, its speed is temporarily doubled.", - shortDesc: "If Rain Dance is active, this Pokemon's Speed is doubled.", + desc: "If the weather is Rain Dance, this Pokemon's Speed is doubled.", + shortDesc: "If the weather is Rain Dance, this Pokemon's Speed is doubled.", onModifySpe: function(speMod, pokemon) { if (this.isWeather('raindance')) { return this.chain(speMod, 2); @@ -2662,6 +2758,16 @@ exports.BattleAbilities = { rating: 2, num: 33 }, + "symbiosis": { + desc: "This Pokemon immediately passes its item to an ally after their item is consumed.", + shortDesc: "This Pokemon passes its item to an ally after their item is consumed.", + //todo + id: "symbiosis", + name: "Symbiosis", + rating: 0, + num: -6, + gen: 6 + }, "synchronize": { desc: "If an opponent burns, poisons or paralyzes this Pokemon, it receives the same condition.", shortDesc: "If another Pokemon burns/poisons/paralyzes this Pokemon, it also gets that status.", @@ -2676,7 +2782,7 @@ exports.BattleAbilities = { num: 28 }, "tangledfeet": { - desc: "When this Pokemon is confused, its opponent's attacks have a 50% chance of missing.", + desc: "When this Pokemon is confused, attacks targeting it have a 50% chance of missing.", shortDesc: "This Pokemon's evasion is doubled as long as it is confused.", onAccuracy: function(accuracy, target) { if (typeof accuracy !== 'number') return; @@ -2691,7 +2797,7 @@ exports.BattleAbilities = { num: 77 }, "technician": { - desc: "When this Pokemon uses an attack that has 60 Base Power or less, the move's Base Power receives a 50% boost. For example, a move with 60 Base Power effectively becomes a move with 90 Base Power.", + desc: "When this Pokemon uses an attack that has 60 Base Power or less (including Struggle), the move's Base Power receives a 50% boost. For example, a move with 60 Base Power effectively becomes a move with 90 Base Power.", shortDesc: "This Pokemon's attacks of 60 Base Power or less do 1.5x damage. Includes Struggle.", onBasePowerPriority: 8, onBasePower: function(basePower, attacker, defender, move) { @@ -2706,7 +2812,7 @@ exports.BattleAbilities = { num: 101 }, "telepathy": { - desc: "If a Pokemon has Telepathy, it will not take damage from its teammates' moves in double and triple battles.", + desc: "This Pokemon will not take damage from its allies' spread moves in double and triple battles.", shortDesc: "This Pokemon does not take damage from its allies' attacks.", onTryHit: function(target, source, move) { if (target.side === source.side && move.category !== 'Status') { @@ -2741,7 +2847,7 @@ exports.BattleAbilities = { num: 164 }, "thickfat": { - desc: "This Pokemon receives halved damage from Ice-type and Fire-type attacks.", + desc: "This Pokemon receives half damage from Ice-type and Fire-type attacks.", shortDesc: "This Pokemon receives half damage from Fire- and Ice-type attacks.", onModifyAtkPriority: 6, onSourceModifyAtk: function(atk, attacker, defender, move) { @@ -2763,7 +2869,7 @@ exports.BattleAbilities = { num: 47 }, "tintedlens": { - desc: "Doubles the power of moves that are Not Very Effective against opponents.", + desc: "This Pokemon's attacks that are not very effective on a target do double damage.", shortDesc: "This Pokemon's attacks that are not very effective on a target do double damage.", onModifyDamage: function(damage, source, target, move) { if (this.getEffectiveness(move.type, target) < 0) { @@ -2777,7 +2883,7 @@ exports.BattleAbilities = { num: 110 }, "torrent": { - desc: "When its health reaches one-third or less of its max HP, this Pokemon's Water-type attacks receive a 50% boost in power.", + desc: "When its health reaches 1/3 or less of its max HP, this Pokemon's Water-type attacks do 1.5x damage.", shortDesc: "When this Pokemon has 1/3 or less of its max HP, its Water attacks do 1.5x damage.", onModifyAtkPriority: 5, onModifyAtk: function(atk, attacker, defender, move) { @@ -2799,7 +2905,7 @@ exports.BattleAbilities = { num: 67 }, "toxicboost": { - desc: "When the user is poisoned, its Attack stat is raised by 50%.", + desc: "When this Pokemon is poisoned, its physical attacks do 1.5x damage.", shortDesc: "When this Pokemon is poisoned, its physical attacks do 1.5x damage.", onBasePowerPriority: 8, onBasePower: function(basePower, attacker, defender, move) { @@ -2813,12 +2919,12 @@ exports.BattleAbilities = { num: 137 }, "toughclaws": { - desc: "This Pokemon receives a 20% power boost for Physical attacks.", - shortDesc: "This Pokemon's Physical attacks do 1.2x damage.", + desc: "This Pokemon's contact attacks do 1.33x damage.", + shortDesc: "This Pokemon's contact attacks do 33% more damage.", onBasePowerPriority: 8, onBasePower: function(basePower, attacker, defender, move) { - if (move.category === 'Physical') { - return this.chainModify(1.2); + if (move.isContact) { + return this.chainModify(1.33); } }, id: "toughclaws", @@ -2887,7 +2993,7 @@ exports.BattleAbilities = { num: 163 }, "unaware": { - desc: "This Pokemon ignores an opponent's stat boosts for Attack, Defense, Special Attack and Special Defense. These boosts will still be calculated if this Pokemon uses Punishment.", + desc: "This Pokemon ignores an opponent's stat boosts for Attack, Defense, Special Attack and Special Defense. These boosts will still affect Base Power calculation for Punishment and Stored Power.", shortDesc: "This Pokemon ignores other Pokemon's stat changes when taking or doing damage.", id: "unaware", name: "Unaware", @@ -2900,11 +3006,11 @@ exports.BattleAbilities = { move.ignoreAccuracy = true; move.ignoreOffensive = true; }, - rating: 2, + rating: 3, num: 109 }, "unburden": { - desc: "Increases Speed by one level if this Pokemon loses its held item through usage (i.e. Berries) or via Thief, Knock Off, etc.", + desc: "Doubles this Pokemon's Speed if it loses its held item (such as by eating Berries, using Gems, or via Thief, Knock Off, etc).", shortDesc: "Speed is doubled on held item loss; boost is lost if it switches, gets new item/Ability.", onUseItem: function(item, pokemon) { pokemon.addVolatile('unburden'); @@ -2929,7 +3035,7 @@ exports.BattleAbilities = { num: 84 }, "unnerve": { - desc: "Opposing Pokemon can't eat their Berries.", + desc: "While this Pokemon is active, prevents opposing Pokemon from using their Berries.", shortDesc: "While this Pokemon is active, prevents opposing Pokemon from using their Berries.", onStart: function(pokemon) { this.add('-ability',pokemon,'Unnerve',pokemon.side.foe); @@ -2954,7 +3060,7 @@ exports.BattleAbilities = { num: 162 }, "vitalspirit": { - desc: "This Pokemon cannot be put to sleep; this includes both opponent-induced sleep as well as user-induced sleep via Rest.", + desc: "This Pokemon cannot fall asleep (Rest will fail if it tries to use it). Gaining this Ability while asleep cures it.", shortDesc: "This Pokemon cannot fall asleep. Gaining this Ability while asleep cures it.", onUpdate: function(pokemon) { if (pokemon.status === 'slp') { @@ -2970,7 +3076,7 @@ exports.BattleAbilities = { num: 72 }, "voltabsorb": { - desc: "When an Electric-type attack hits this Pokemon, it recovers 25% of its max HP.", + desc: "This Pokemon is immune to Electric moves. If hit by an Electric move, it recovers 25% of its max HP.", shortDesc: "This Pokemon heals 1/4 of its max HP when hit by Electric moves; Electric immunity.", onTryHit: function(target, source, move) { if (target !== source && move.type === 'Electric') { @@ -2986,7 +3092,7 @@ exports.BattleAbilities = { num: 10 }, "waterabsorb": { - desc: "When a Water-type attack hits this Pokemon, it recovers 25% of its max HP.", + desc: "This Pokemon is immune to Water moves. If hit by an Water move, it recovers 25% of its max HP.", shortDesc: "This Pokemon heals 1/4 of its max HP when hit by Water moves; Water immunity.", onTryHit: function(target, source, move) { if (target !== source && move.type === 'Water') { @@ -3002,7 +3108,7 @@ exports.BattleAbilities = { num: 11 }, "waterveil": { - desc: "This Pokemon cannot become burned.", + desc: "This Pokemon cannot become burned. Gaining this Ability while burned cures it.", shortDesc: "This Pokemon cannot be burned. Gaining this Ability while burned cures it.", onUpdate: function(pokemon) { if (pokemon.status === 'brn') { @@ -3184,7 +3290,7 @@ exports.BattleAbilities = { effect: { duration: 1 }, - rating: 4.5, + rating: 4, num: -3 }, "persistent": { diff --git a/data/aliases.js b/data/aliases.js index 07b734099..7fc9b5156 100644 --- a/data/aliases.js +++ b/data/aliases.js @@ -55,7 +55,6 @@ exports.BattleAliases = { "kyuremb": "Kyurem-Black", "kyuremw": "Kyurem-White", "landorust": "Landorus-Therian", - "landorustherian": "Landorus-Therian", "rotomc": "Rotom-Mow", "rotomf": "Rotom-Frost", "rotomh": "Rotom-Heat", @@ -63,9 +62,7 @@ exports.BattleAliases = { "rotomw": "Rotom-Wash", "shaymins": "Shaymin-Sky", "thundurust": "Thundurus-Therian", - "thundurustherian": "Thundurus-Therian", "tornadust": "Tornadus-Therian", - "tornadustherian": "Tornadus-Therian", "meloettap": "Meloetta-Pirouette", "meloettas": "Meloetta-Pirouette", "wormadamg": "Wormadam-Sandy", @@ -141,7 +138,9 @@ exports.BattleAliases = { "cm": "Calm Mind", "dd": "Dragon Dance", "eq": "Earthquake", - "hjk": "Hi Jump Kick", + "faintattack": "Feint Attack", + "hjk": "High Jump Kick", + "hijumpkick": "High Jump Kick", "np": "Nasty Plot", "qd": "Quiver Dance", "rocks": "Stealth Rock", diff --git a/data/formats-data.js b/data/formats-data.js index 413c4c7aa..a171f04ce 100644 --- a/data/formats-data.js +++ b/data/formats-data.js @@ -111,14 +111,16 @@ exports.BattleFormatsData = { }, rattata: { viableMoves: {"facade":1,"flamewheel":1,"suckerpunch":1,"uturn":1}, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, raticate: { viableMoves: {"facade":1,"flamewheel":1,"suckerpunch":1,"uturn":1}, eventPokemon: [ {"generation":3,"level":34,"moves":["refresh","superfang","scaryface","hyperfang"]} ], - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, spearow: { viableMoves: {"return":1,"drillpeck":1,"doubleedge":1,"uturn":1,"quickattack":1,"pursuit":1}, @@ -365,11 +367,13 @@ exports.BattleFormatsData = { {"generation":4,"level":10,"gender":"M","nature":"Jolly","abilities":["pickup"],"moves":["fakeout","payday","assist","scratch"],"pokeball":"cherishball"}, {"generation":5,"level":15,"gender":"M","isHidden":false,"abilities":["pickup"],"moves":["furyswipes","sing","nastyplot","snatch"],"pokeball":"cherishball"} ], - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, persian: { viableMoves: {"fakeout":1,"uturn":1,"bite":1,"taunt":1,"return":1,"hypnosis":1,"waterpulse":1,"switcheroo":1}, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, psyduck: { viableMoves: {"hydropump":1,"surf":1,"icebeam":1,"hiddenpowergrass":1,"crosschop":1,"encore":1}, @@ -430,6 +434,9 @@ exports.BattleFormatsData = { }, politoed: { viableMoves: {"scald":1,"hypnosis":1,"toxic":1,"encore":1,"perishsong":1,"protect":1,"icebeam":1,"focusblast":1,"surf":1,"hydropump":1,"hiddenpowergrass":1}, + eventPokemon: [ + {"generation":5,"level":50,"gender":"M","nature":"Calm","isHidden":true,"moves":["scald","icebeam","perishsong","protect"],"pokeball":"cherishball"} + ], tier: "OU" }, abra: { @@ -685,13 +692,13 @@ exports.BattleFormatsData = { tier: "NU" }, tyrogue: { - viableMoves: {"hijumpkick":1,"rapidspin":1,"fakeout":1,"bulletpunch":1,"machpunch":1,"toxic":1,"counter":1}, + viableMoves: {"highjumpkick":1,"rapidspin":1,"fakeout":1,"bulletpunch":1,"machpunch":1,"toxic":1,"counter":1}, tier: "LC" }, hitmonlee: { - viableMoves: {"hijumpkick":1,"suckerpunch":1,"stoneedge":1,"machpunch":1,"substitute":1,"fakeout":1,"closecombat":1,"earthquake":1,"blazekick":1}, + viableMoves: {"highjumpkick":1,"suckerpunch":1,"stoneedge":1,"machpunch":1,"substitute":1,"fakeout":1,"closecombat":1,"earthquake":1,"blazekick":1}, eventPokemon: [ - {"generation":3,"level":38,"moves":["refresh","hijumpkick","mindreader","megakick"]} + {"generation":3,"level":38,"moves":["refresh","highjumpkick","mindreader","megakick"]} ], tier: "RU" }, @@ -723,11 +730,13 @@ exports.BattleFormatsData = { }, koffing: { viableMoves: {"painsplit":1,"sludgebomb":1,"willowisp":1,"fireblast":1,"toxic":1,"clearsmog":1,"rest":1,"sleeptalk":1,"thunderbolt":1}, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, weezing: { viableMoves: {"painsplit":1,"sludgebomb":1,"willowisp":1,"fireblast":1,"toxic":1,"clearsmog":1,"rest":1,"sleeptalk":1,"thunderbolt":1}, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, rhyhorn: { viableMoves: {"stoneedge":1,"earthquake":1,"aquatail":1,"megahorn":1,"stealthrock":1,"rockblast":1}, @@ -801,7 +810,8 @@ exports.BattleFormatsData = { kingdra: { viableMoves: {"hydropump":1,"icebeam":1,"dragondance":1,"substitute":1,"outrage":1,"dracometeor":1,"waterfall":1,"rest":1,"sleeptalk":1}, eventPokemon: [ - {"generation":3,"level":50,"moves":["leer","watergun","twister","agility"]} + {"generation":3,"level":50,"moves":["leer","watergun","twister","agility"]}, + {"generation":5,"level":50,"gender":"M","nature":"Timid","isHidden":false,"abilities":["swiftswim"],"moves":["dracometeor","muddywater","dragonpulse","protect"],"pokeball":"cherishball"} ], tier: "UU" }, @@ -901,7 +911,7 @@ exports.BattleFormatsData = { {"generation":3,"level":10,"gender":"M","moves":["leer","smog","firepunch","leer"]}, {"generation":3,"level":36,"moves":["followme","fireblast","crosschop","thunderpunch"]}, {"generation":4,"level":30,"gender":"M","nature":"Quiet","moves":["smokescreen","firespin","confuseray","firepunch"]}, - {"generation":5,"level":30,"isHidden":false,"moves":["smokescreen","faintattack","firespin","confuseray"],"pokeball":"cherishball"} + {"generation":5,"level":30,"isHidden":false,"moves":["smokescreen","feintattack","firespin","confuseray"],"pokeball":"cherishball"} ], tier: "NFE" }, @@ -997,7 +1007,7 @@ exports.BattleFormatsData = { umbreon: { viableMoves: {"curse":1,"payback":1,"moonlight":1,"wish":1,"protect":1,"healbell":1,"toxic":1,"batonpass":1,"foulplay":1}, eventPokemon: [ - {"generation":3,"level":70,"moves":["faintattack","meanlook","screech","moonlight"]}, + {"generation":3,"level":70,"moves":["feintattack","meanlook","screech","moonlight"]}, {"generation":5,"level":10,"gender":"M","isHidden":true,"moves":["tailwhip","tackle","helpinghand","sandattack"]} ], tier: "UU" @@ -1021,15 +1031,18 @@ exports.BattleFormatsData = { eventPokemon: [ {"generation":5,"level":10,"isHidden":true,"moves":["tackle","conversion","sharpen","psybeam"]} ], - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, porygon2: { viableMoves: {"triattack":1,"icebeam":1,"recover":1,"toxic":1,"thunderwave":1,"discharge":1,"trick":1}, - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, porygonz: { viableMoves: {"triattack":1,"thunderbolt":1,"icebeam":1,"darkpulse":1,"hiddenpowerfighting":1,"agility":1,"trick":1,"nastyplot":1}, - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, omanyte: { viableMoves: {"shellsmash":1,"surf":1,"icebeam":1,"earthpower":1,"hiddenpowerelectric":1,"spikes":1,"toxicspikes":1,"stealthrock":1,"hydropump":1}, @@ -1141,7 +1154,8 @@ exports.BattleFormatsData = { {"generation":4,"level":50,"moves":["synthesis","return","hypnosis","teleport"],"pokeball":"cherishball"}, {"generation":4,"level":5,"moves":["pound"],"pokeball":"cherishball"} ], - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, chikorita: { viableMoves: {"reflect":1,"lightscreen":1,"safeguard":1,"aromatherapy":1,"grasswhistle":1,"leechseed":1,"toxic":1,"gigadrain":1,"synthesis":1}, @@ -1149,17 +1163,20 @@ exports.BattleFormatsData = { {"generation":3,"level":10,"gender":"M","moves":["tackle","growl","razorleaf"]} ], unreleasedHidden: true, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, bayleef: { viableMoves: {"reflect":1,"lightscreen":1,"safeguard":1,"aromatherapy":1,"grasswhistle":1,"leechseed":1,"toxic":1,"gigadrain":1,"synthesis":1}, unreleasedHidden: true, - tier: "NFE" + isUnreleased: true, + tier: "Unreleased" }, meganium: { viableMoves: {"reflect":1,"lightscreen":1,"safeguard":1,"aromatherapy":1,"grasswhistle":1,"leechseed":1,"toxic":1,"gigadrain":1,"synthesis":1,"dragontail":1}, unreleasedHidden: true, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, cyndaquil: { viableMoves: {"eruption":1,"fireblast":1,"flamethrower":1,"hiddenpowergrass":1,"naturepower":1}, @@ -1167,12 +1184,14 @@ exports.BattleFormatsData = { {"generation":3,"level":10,"gender":"M","moves":["tackle","leer","smokescreen"]} ], unreleasedHidden: true, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, quilava: { viableMoves: {"eruption":1,"fireblast":1,"flamethrower":1,"hiddenpowergrass":1,"naturepower":1}, unreleasedHidden: true, - tier: "NFE" + isUnreleased: true, + tier: "Unreleased" }, typhlosion: { viableMoves: {"eruption":1,"fireblast":1,"flamethrower":1,"hiddenpowergrass":1,"naturepower":1,"focusblast":1}, @@ -1180,7 +1199,8 @@ exports.BattleFormatsData = { {"generation":3,"level":70,"moves":["quickattack","flamewheel","swift","flamethrower"]} ], unreleasedHidden: true, - tier: "RU" + isUnreleased: true, + tier: "Unreleased" }, totodile: { viableMoves: {"aquajet":1,"waterfall":1,"crunch":1,"icepunch":1,"superpower":1,"dragondance":1,"swordsdance":1}, @@ -1188,17 +1208,20 @@ exports.BattleFormatsData = { {"generation":3,"level":10,"gender":"M","moves":["scratch","leer","rage"]} ], unreleasedHidden: true, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, croconaw: { viableMoves: {"aquajet":1,"waterfall":1,"crunch":1,"icepunch":1,"superpower":1,"dragondance":1,"swordsdance":1}, unreleasedHidden: true, - tier: "NFE" + isUnreleased: true, + tier: "Unreleased" }, feraligatr: { viableMoves: {"aquajet":1,"waterfall":1,"crunch":1,"icepunch":1,"dragondance":1,"swordsdance":1,"earthquake":1,"superpower":1}, unreleasedHidden: true, - tier: "RU" + isUnreleased: true, + tier: "Unreleased" }, sentret: { viableMoves: {"superfang":1,"trick":1,"toxic":1,"uturn":1,"knockoff":1}, @@ -1393,7 +1416,8 @@ exports.BattleFormatsData = { }, unown: { viableMoves: {"hiddenpowerpsychic":1}, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, wynaut: { viableMoves: {"destinybond":1,"counter":1,"mirrorcoat":1,"encore":1}, @@ -1570,7 +1594,7 @@ exports.BattleFormatsData = { viableMoves: {"pursuit":1,"suckerpunch":1,"fireblast":1,"darkpulse":1,"hiddenpowerfighting":1,"nastyplot":1}, eventPokemon: [ {"generation":3,"level":10,"gender":"M","moves":["leer","ember","howl"]}, - {"generation":3,"level":17,"moves":["charm","faintattack","ember","roar"]} + {"generation":3,"level":17,"moves":["charm","feintattack","ember","roar"]} ], tier: "LC" }, @@ -1591,7 +1615,8 @@ exports.BattleFormatsData = { eventPokemon: [ {"generation":3,"level":10,"gender":"M","moves":["tackle","leer"]} ], - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, smeargle: { viableMoves: {"spore":1,"spikes":1,"stealthrock":1,"uturn":1,"destinybond":1,"whirlwind":1}, @@ -1612,7 +1637,8 @@ exports.BattleFormatsData = { {"generation":4,"level":30,"shiny":true,"nature":"Rash","moves":["zapcannon","aurasphere","extremespeed","weatherball"],"pokeball":"cherishball"} ], unreleasedHidden: true, - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, entei: { viableMoves: {"extremespeed":1,"flareblitz":1,"ironhead":1,"flamecharge":1,"stoneedge":1}, @@ -1621,7 +1647,8 @@ exports.BattleFormatsData = { {"generation":4,"level":30,"shiny":true,"nature":"Adamant","moves":["flareblitz","howl","extremespeed","crushclaw"],"pokeball":"cherishball"} ], unreleasedHidden: true, - tier: "RU" + isUnreleased: true, + tier: "Unreleased" }, suicune: { viableMoves: {"hydropump":1,"icebeam":1,"scald":1,"hiddenpowergrass":1,"hiddenpowerelectric":1,"rest":1,"sleeptalk":1,"roar":1,"calmmind":1}, @@ -1630,7 +1657,8 @@ exports.BattleFormatsData = { {"generation":4,"level":30,"shiny":true,"nature":"Relaxed","moves":["sheercold","airslash","extremespeed","aquaring"],"pokeball":"cherishball"} ], unreleasedHidden: true, - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, larvitar: { viableMoves: {"earthquake":1,"stoneedge":1,"rockpolish":1,"dragondance":1,"superpower":1}, @@ -1661,6 +1689,7 @@ exports.BattleFormatsData = { {"generation":3,"level":50,"moves":["psychoboost","recover","hydropump","featherdance"]} ], dreamWorldPokeball: 'dreamball', + isUnreleased: true, tier: "Uber" }, hooh: { @@ -1670,6 +1699,7 @@ exports.BattleFormatsData = { {"generation":3,"level":70,"moves":["recover","fireblast","sunnyday","swift"]} ], dreamWorldPokeball: 'dreamball', + isUnreleased: true, tier: "Uber" }, celebi: { @@ -1681,7 +1711,8 @@ exports.BattleFormatsData = { {"generation":3,"level":30,"moves":["healbell","safeguard","ancientpower","futuresight"]}, {"generation":4,"level":50,"moves":["leafstorm","recover","nastyplot","healingwish"],"pokeball":"cherishball"} ], - tier: "OU" + isUnreleased: true, + tier: "Unreleased" }, treecko: { viableMoves: {"substitute":1,"leechseed":1,"gigadrain":1,"leafstorm":1,"hiddenpowerice":1,"hiddenpowerrock":1,"endeavor":1}, @@ -1689,24 +1720,28 @@ exports.BattleFormatsData = { {"generation":3,"level":10,"gender":"M","moves":["pound","leer","absorb"]}, {"generation":5,"level":10,"gender":"M","isHidden":true,"moves":["pound","leer","absorb"]} ], - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, grovyle: { viableMoves: {"substitute":1,"leechseed":1,"gigadrain":1,"leafstorm":1,"hiddenpowerice":1,"hiddenpowerrock":1,"endeavor":1}, - tier: "NFE" + isUnreleased: true, + tier: "Unreleased" }, sceptile: { viableMoves: {"substitute":1,"leechseed":1,"gigadrain":1,"leafstorm":1,"hiddenpowerice":1,"focusblast":1,"synthesis":1,"hiddenpowerrock":1}, eventPokemon: [ {"generation":5,"level":50,"isHidden":false,"moves":["leafstorm","dragonpulse","focusblast","rockslide"],"pokeball":"cherishball"} ], - tier: "RU" + isUnreleased: true, + tier: "Unreleased" }, torchic: { viableMoves: {"fireblast":1,"protect":1,"batonpass":1,"substitute":1,"hiddenpowergrass":1}, eventPokemon: [ {"generation":3,"level":10,"gender":"M","moves":["scratch","growl","focusenergy","ember"]}, - {"generation":5,"level":10,"gender":"M","isHidden":true,"moves":["scratch","growl","focusenergy","ember"]} + {"generation":5,"level":10,"gender":"M","isHidden":true,"moves":["scratch","growl","focusenergy","ember"]}, + {"generation":6,"level":10,"gender":"M","isHidden":true,"moves":["scratch","growl","focusenergy","ember"],"pokeball":"cherishball"} ], tier: "LC" }, @@ -1715,10 +1750,10 @@ exports.BattleFormatsData = { tier: "NU" }, blaziken: { - viableMoves: {"flareblitz":1,"hijumpkick":1,"protect":1,"swordsdance":1,"substitute":1,"batonpass":1,"bravebird":1}, + viableMoves: {"flareblitz":1,"highjumpkick":1,"protect":1,"swordsdance":1,"substitute":1,"batonpass":1,"bravebird":1}, eventPokemon: [ {"generation":3,"level":70,"moves":["blazekick","slash","mirrormove","skyuppercut"]}, - {"generation":5,"level":50,"isHidden":false,"moves":["flareblitz","hijumpkick","thunderpunch","stoneedge"],"pokeball":"cherishball"} + {"generation":5,"level":50,"isHidden":false,"moves":["flareblitz","highjumpkick","thunderpunch","stoneedge"],"pokeball":"cherishball"} ], tier: "Uber" }, @@ -1728,18 +1763,21 @@ exports.BattleFormatsData = { {"generation":3,"level":10,"gender":"M","moves":["tackle","growl","mudslap","watergun"]}, {"generation":5,"level":10,"gender":"M","isHidden":true,"moves":["tackle","growl","mudslap","watergun"]} ], - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, marshtomp: { viableMoves: {"waterfall":1,"earthquake":1,"superpower":1,"icepunch":1,"rockslide":1,"stealthrock":1}, - tier: "NFE" + isUnreleased: true, + tier: "Unreleased" }, swampert: { viableMoves: {"surf":1,"earthquake":1,"icebeam":1,"stealthrock":1,"roar":1,"superpower":1,"stoneedge":1,"rest":1,"sleeptalk":1,"hydropump":1}, eventPokemon: [ {"generation":5,"level":50,"isHidden":false,"moves":["earthquake","icebeam","hydropump","hammerarm"],"pokeball":"cherishball"} ], - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, poochyena: { viableMoves: {"superfang":1,"foulplay":1,"suckerpunch":1,"toxic":1}, @@ -1890,18 +1928,21 @@ exports.BattleFormatsData = { }, slakoth: { viableMoves: {"doubleedge":1,"hammerarm":1,"firepunch":1,"suckerpunch":1,"retaliate":1,"toxic":1}, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, vigoroth: { viableMoves: {"bulkup":1,"return":1,"earthquake":1,"firepunch":1,"suckerpunch":1,"slackoff":1}, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, slaking: { viableMoves: {"return":1,"earthquake":1,"pursuit":1,"firepunch":1,"suckerpunch":1,"doubleedge":1,"retaliate":1,"gigaimpact":1,"hammerarm":1}, eventPokemon: [ {"generation":4,"level":50,"gender":"M","nature":"Adamant","moves":["gigaimpact","return","shadowclaw","aerialace"],"pokeball":"cherishball"} ], - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, nincada: { viableMoves: {"xscissor":1,"toxic":1,"aerialace":1,"nightslash":1}, @@ -1985,7 +2026,7 @@ exports.BattleFormatsData = { viableMoves: {"recover":1,"willowisp":1,"taunt":1,"trick":1,"toxic":1,"nightshade":1,"seismictoss":1}, eventPokemon: [ {"generation":3,"level":10,"gender":"M","moves":["leer","scratch","foresight","nightshade"]}, - {"generation":3,"level":33,"moves":["helpinghand","shadowball","faintattack","recover"]}, + {"generation":3,"level":33,"moves":["helpinghand","shadowball","feintattack","recover"]}, {"generation":5,"level":50,"gender":"M","isHidden":true,"moves":["foulplay","octazooka","tickle","trick"],"pokeball":"cherishball"} ], tier: "UU" @@ -2015,7 +2056,7 @@ exports.BattleFormatsData = { tier: "RU" }, meditite: { - viableMoves: {"hijumpkick":1,"psychocut":1,"icepunch":1,"thunderpunch":1,"trick":1,"fakeout":1,"bulletpunch":1,"drainpunch":1}, + viableMoves: {"highjumpkick":1,"psychocut":1,"icepunch":1,"thunderpunch":1,"trick":1,"fakeout":1,"bulletpunch":1,"drainpunch":1}, eventPokemon: [ {"generation":3,"level":10,"gender":"M","moves":["bide","meditate","confusion"]}, {"generation":3,"level":20,"moves":["dynamicpunch","confusion","shadowball","detect"]} @@ -2023,7 +2064,7 @@ exports.BattleFormatsData = { tier: "NFE" }, medicham: { - viableMoves: {"hijumpkick":1,"drainpunch":1,"psychocut":1,"icepunch":1,"thunderpunch":1,"trick":1,"fakeout":1,"bulletpunch":1}, + viableMoves: {"highjumpkick":1,"drainpunch":1,"psychocut":1,"icepunch":1,"thunderpunch":1,"trick":1,"fakeout":1,"bulletpunch":1}, tier: "RU" }, electrike: { @@ -2173,7 +2214,7 @@ exports.BattleFormatsData = { cacturne: { viableMoves: {"swordsdance":1,"spikes":1,"suckerpunch":1,"seedbomb":1,"drainpunch":1}, eventPokemon: [ - {"generation":3,"level":45,"moves":["ingrain","faintattack","spikes","needlearm"]} + {"generation":3,"level":45,"moves":["ingrain","feintattack","spikes","needlearm"]} ], tier: "NU" }, @@ -2259,11 +2300,13 @@ exports.BattleFormatsData = { eventPokemon: [ {"generation":3,"level":17,"moves":["refresh","rocktomb","mudslap","psybeam"]} ], - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, claydol: { viableMoves: {"stealthrock":1,"toxic":1,"psychic":1,"icebeam":1,"earthquake":1,"rapidspin":1,"reflect":1,"lightscreen":1}, - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, lileep: { viableMoves: {"stealthrock":1,"recover":1,"ancientpower":1,"hiddenpowerfire":1,"gigadrain":1,"stockpile":1}, @@ -2304,7 +2347,8 @@ exports.BattleFormatsData = { }, castform: { viableMoves: {"sunnyday":1,"raindance":1,"fireblast":1,"hydropump":1,"thunder":1,"icebeam":1,"solarbeam":1}, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, kecleon: { viableMoves: {"stealthrock":1,"recover":1,"return":1,"thunderwave":1,"suckerpunch":1}, @@ -2313,15 +2357,15 @@ exports.BattleFormatsData = { shuppet: { viableMoves: {"trickroom":1,"destinybond":1,"taunt":1,"shadowsneak":1,"willowisp":1}, eventPokemon: [ - {"generation":3,"level":45,"moves":["spite","willowisp","faintattack","shadowball"]} + {"generation":3,"level":45,"moves":["spite","willowisp","feintattack","shadowball"]} ], tier: "LC" }, banette: { viableMoves: {"trickroom":1,"destinybond":1,"taunt":1,"shadowclaw":1,"willowisp":1}, eventPokemon: [ - {"generation":3,"level":37,"moves":["helpinghand","faintattack","shadowball","curse"]}, - {"generation":5,"level":37,"gender":"F","isHidden":true,"moves":["faintattack","hex","shadowball","cottonguard"]} + {"generation":3,"level":37,"moves":["helpinghand","feintattack","shadowball","curse"]}, + {"generation":5,"level":37,"gender":"F","isHidden":true,"moves":["feintattack","hex","shadowball","cottonguard"]} ], tier: "NU" }, @@ -2475,7 +2519,8 @@ exports.BattleFormatsData = { {"generation":3,"level":40,"moves":["curse","superpower","ancientpower","hyperbeam"]} ], unreleasedHidden: true, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, regice: { viableMoves: {"thunderwave":1,"icebeam":1,"thunderbolt":1,"rest":1,"sleeptalk":1,"focusblast":1}, @@ -2483,7 +2528,8 @@ exports.BattleFormatsData = { {"generation":3,"level":40,"moves":["curse","superpower","ancientpower","hyperbeam"]} ], unreleasedHidden: true, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, registeel: { viableMoves: {"stealthrock":1,"ironhead":1,"curse":1,"rest":1,"thunderwave":1,"toxic":1}, @@ -2491,7 +2537,8 @@ exports.BattleFormatsData = { {"generation":3,"level":40,"moves":["curse","superpower","ancientpower","hyperbeam"]} ], unreleasedHidden: true, - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, latias: { viableMoves: {"dragonpulse":1,"surf":1,"thunderbolt":1,"roost":1,"calmmind":1,"healingwish":1}, @@ -2500,7 +2547,8 @@ exports.BattleFormatsData = { {"generation":3,"level":70,"gender":"F","moves":["mistball","psychic","recover","charm"]}, {"generation":4,"level":40,"gender":"F","moves":["watersport","refresh","mistball","zenheadbutt"]} ], - tier: "OU" + isUnreleased: true, + tier: "Unreleased" }, latios: { viableMoves: {"dracometeor":1,"dragonpulse":1,"surf":1,"thunderbolt":1,"psyshock":1,"roost":1}, @@ -2509,7 +2557,8 @@ exports.BattleFormatsData = { {"generation":3,"level":70,"gender":"M","moves":["lusterpurge","psychic","recover","dragondance"]}, {"generation":4,"level":40,"gender":"M","moves":["protect","refresh","lusterpurge","zenheadbutt"]} ], - tier: "OU" + isUnreleased: true, + tier: "Unreleased" }, kyogre: { viableMoves: {"waterspout":1,"surf":1,"thunder":1,"icebeam":1,"calmmind":1,"rest":1,"sleeptalk":1}, @@ -2517,6 +2566,7 @@ exports.BattleFormatsData = { {"generation":5,"level":80,"moves":["icebeam","ancientpower","waterspout","thunder"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["waterspout","thunder","icebeam","sheercold"],"pokeball":"cherishball"} ], + isUnreleased: true, tier: "Uber" }, groudon: { @@ -2525,6 +2575,7 @@ exports.BattleFormatsData = { {"generation":5,"level":80,"moves":["earthquake","ancientpower","eruption","solarbeam"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["eruption","hammerarm","earthpower","solarbeam"],"pokeball":"cherishball"} ], + isUnreleased: true, tier: "Uber" }, rayquaza: { @@ -2533,6 +2584,7 @@ exports.BattleFormatsData = { {"generation":5,"level":70,"shiny":true,"moves":["dragonpulse","ancientpower","outrage","dragondance"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["extremespeed","hyperbeam","dragonpulse","vcreate"],"pokeball":"cherishball"} ], + isUnreleased: true, tier: "Uber" }, jirachi: { @@ -2547,7 +2599,8 @@ exports.BattleFormatsData = { {"generation":5,"level":50,"moves":["wish","healingwish","cosmicpower","meteormash"],"pokeball":"cherishball"}, {"generation":5,"level":50,"moves":["wish","healingwish","swift","return"],"pokeball":"cherishball"} ], - tier: "OU" + isUnreleased: true, + tier: "Unreleased" }, deoxys: { viableMoves: {"psychoboost":1,"superpower":1,"extremespeed":1,"icebeam":1,"thunderbolt":1,"firepunch":1,"spikes":1,"stealthrock":1}, @@ -2563,6 +2616,7 @@ exports.BattleFormatsData = { {"generation":4,"level":50,"moves":["psychoboost","leer","wrap","nightshade"]}, {"generation":5,"level":100,"moves":["nastyplot","darkpulse","recover","psychoboost"],"pokeball":"duskball"} ], + isUnreleased: true, tier: "Uber" }, deoxysattack: { @@ -2579,6 +2633,7 @@ exports.BattleFormatsData = { {"generation":4,"level":50,"moves":["psychoboost","leer","wrap","nightshade"]}, {"generation":5,"level":100,"moves":["nastyplot","darkpulse","recover","psychoboost"],"pokeball":"duskball"} ], + isUnreleased: true, tier: "Uber" }, deoxysdefense: { @@ -2595,6 +2650,7 @@ exports.BattleFormatsData = { {"generation":4,"level":50,"moves":["psychoboost","leer","wrap","nightshade"]}, {"generation":5,"level":100,"moves":["nastyplot","darkpulse","recover","psychoboost"],"pokeball":"duskball"} ], + isUnreleased: true, tier: "Uber" }, deoxysspeed: { @@ -2611,6 +2667,7 @@ exports.BattleFormatsData = { {"generation":4,"level":50,"moves":["psychoboost","leer","wrap","nightshade"]}, {"generation":5,"level":100,"moves":["nastyplot","darkpulse","recover","psychoboost"],"pokeball":"duskball"} ], + isUnreleased: true, tier: "Uber" }, turtwig: { @@ -2619,18 +2676,21 @@ exports.BattleFormatsData = { {"generation":5,"level":10,"gender":"M","isHidden":true,"moves":["tackle","withdraw","absorb"]}, {"generation":5,"level":10,"gender":"M","isHidden":true,"moves":["tackle","withdraw","absorb","stockpile"]} ], - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, grotle: { viableMoves: {"reflect":1,"lightscreen":1,"stealthrock":1,"seedbomb":1,"substitute":1,"leechseed":1,"toxic":1}, - tier: "NFE" + isUnreleased: true, + tier: "Unreleased" }, torterra: { viableMoves: {"stealthrock":1,"earthquake":1,"woodhammer":1,"stoneedge":1,"synthesis":1,"leechseed":1}, eventPokemon: [ {"generation":5,"level":100,"gender":"M","isHidden":false,"moves":["woodhammer","earthquake","outrage","stoneedge"],"pokeball":"cherishball"} ], - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, chimchar: { viableMoves: {"stealthrock":1,"overheat":1,"hiddenpowergrass":1,"fakeout":1}, @@ -2640,18 +2700,21 @@ exports.BattleFormatsData = { {"generation":4,"level":40,"gender":"M","nature":"Hardy","moves":["flamethrower","thunderpunch","grassknot","helpinghand"],"pokeball":"cherishball"}, {"generation":5,"level":10,"gender":"M","isHidden":true,"moves":["leer","ember","taunt","fakeout"]} ], - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, monferno: { viableMoves: {"stealthrock":1,"overheat":1,"hiddenpowergrass":1,"fakeout":1,"vacuumwave":1}, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, infernape: { viableMoves: {"stealthrock":1,"fireblast":1,"closecombat":1,"uturn":1,"grassknot":1,"stoneedge":1,"machpunch":1,"swordsdance":1,"nastyplot":1,"flareblitz":1,"hiddenpowerice":1,"thunderpunch":1}, eventPokemon: [ {"generation":5,"level":100,"gender":"M","isHidden":false,"moves":["fireblast","closecombat","uturn","grassknot"],"pokeball":"cherishball"} ], - tier: "OU" + isUnreleased: true, + tier: "Unreleased" }, piplup: { viableMoves: {"stealthrock":1,"hydropump":1,"scald":1,"icebeam":1,"hiddenpowerelectric":1,"hiddenpowerfire":1,"yawn":1}, @@ -2661,18 +2724,21 @@ exports.BattleFormatsData = { {"generation":5,"level":15,"gender":"M","isHidden":false,"moves":["sing","round","featherdance","peck"],"pokeball":"cherishball"}, {"generation":5,"level":10,"gender":"M","isHidden":true,"moves":["pound","growl","bubble","featherdance"]} ], - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, prinplup: { viableMoves: {"stealthrock":1,"hydropump":1,"scald":1,"icebeam":1,"hiddenpowerelectric":1,"hiddenpowerfire":1,"yawn":1}, - tier: "NFE" + isUnreleased: true, + tier: "Unreleased" }, empoleon: { viableMoves: {"stealthrock":1,"hydropump":1,"scald":1,"icebeam":1,"hiddenpowerelectric":1,"hiddenpowerfire":1,"roar":1,"grassknot":1}, eventPokemon: [ {"generation":5,"level":100,"gender":"M","isHidden":false,"moves":["hydropump","icebeam","aquajet","grassknot"],"pokeball":"cherishball"} ], - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, starly: { viableMoves: {"bravebird":1,"return":1,"uturn":1,"pursuit":1}, @@ -2702,11 +2768,13 @@ exports.BattleFormatsData = { }, kricketot: { viableMoves: {"endeavor":1,"mudslap":1,"bugbite":1,"strugglebug":1}, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, kricketune: { viableMoves: {"swordsdance":1,"bugbite":1,"aerialace":1,"brickbreak":1,"toxic":1}, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, shinx: { viableMoves: {"wildcharge":1,"icefang":1,"firefang":1,"crunch":1}, @@ -2784,11 +2852,13 @@ exports.BattleFormatsData = { }, cherubi: { viableMoves: {"sunnyday":1,"solarbeam":1,"weatherball":1,"hiddenpowerice":1}, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, cherrim: { viableMoves: {"sunnyday":1,"solarbeam":1,"weatherball":1,"hiddenpowerice":1}, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, shellos: { viableMoves: {"scald":1,"clearsmog":1,"recover":1,"toxic":1,"icebeam":1}, @@ -2816,11 +2886,13 @@ exports.BattleFormatsData = { }, glameow: { viableMoves: {"fakeout":1,"uturn":1,"suckerpunch":1,"hypnosis":1,"quickattack":1,"return":1,"foulplay":1}, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, purugly: { viableMoves: {"fakeout":1,"uturn":1,"suckerpunch":1,"hypnosis":1,"quickattack":1,"return":1}, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, stunky: { viableMoves: {"pursuit":1,"suckerpunch":1,"crunch":1,"fireblast":1,"explosion":1,"taunt":1}, @@ -2919,11 +2991,13 @@ exports.BattleFormatsData = { }, finneon: { viableMoves: {"surf":1,"uturn":1,"icebeam":1,"hiddenpowerelectric":1,"hiddenpowergrass":1,"raindance":1}, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, lumineon: { viableMoves: {"surf":1,"uturn":1,"icebeam":1,"hiddenpowerelectric":1,"hiddenpowergrass":1,"raindance":1}, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, snover: { viableMoves: {"blizzard":1,"iceshard":1,"gigadrain":1,"leechseed":1,"substitute":1}, @@ -2977,15 +3051,18 @@ exports.BattleFormatsData = { }, uxie: { viableMoves: {"reflect":1,"lightscreen":1,"uturn":1,"psychic":1,"thunderwave":1,"yawn":1,"healbell":1,"stealthrock":1,"trick":1,"toxic":1}, - tier: "RU" + isUnreleased: true, + tier: "Unreleased" }, mesprit: { viableMoves: {"calmmind":1,"psychic":1,"thunderbolt":1,"icebeam":1,"substitute":1,"uturn":1,"trick":1,"stealthrock":1}, - tier: "RU" + isUnreleased: true, + tier: "Unreleased" }, azelf: { viableMoves: {"nastyplot":1,"psychic":1,"fireblast":1,"grassknot":1,"thunderbolt":1,"icepunch":1,"uturn":1,"trick":1,"taunt":1,"stealthrock":1,"explosion":1}, - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, dialga: { viableMoves: {"stealthrock":1,"dracometeor":1,"dragonpulse":1,"roar":1,"dragontail":1,"thunderbolt":1,"outrage":1,"bulkup":1,"fireblast":1,"aurasphere":1,"rest":1,"sleeptalk":1,"dragonclaw":1}, @@ -2993,6 +3070,7 @@ exports.BattleFormatsData = { {"generation":5,"level":100,"shiny":true,"isHidden":false,"moves":["dragonpulse","dracometeor","aurasphere","roaroftime"],"pokeball":"cherishball"} ], dreamWorldPokeball: 'dreamball', + isUnreleased: true, tier: "Uber" }, palkia: { @@ -3001,6 +3079,7 @@ exports.BattleFormatsData = { {"generation":5,"level":100,"shiny":true,"isHidden":false,"moves":["hydropump","dracometeor","spacialrend","aurasphere"],"pokeball":"cherishball"} ], dreamWorldPokeball: 'dreamball', + isUnreleased: true, tier: "Uber" }, heatran: { @@ -3009,7 +3088,8 @@ exports.BattleFormatsData = { {"generation":4,"level":50,"nature":"Quiet","moves":["eruption","magmastorm","earthpower","ancientpower"]} ], unreleasedHidden: true, - tier: "OU" + isUnreleased: true, + tier: "Unreleased" }, regigigas: { viableMoves: {"thunderwave":1,"substitute":1,"return":1,"drainpunch":1,"earthquake":1,"firepunch":1,"toxic":1,"confuseray":1}, @@ -3024,11 +3104,13 @@ exports.BattleFormatsData = { {"generation":5,"level":100,"shiny":true,"isHidden":false,"moves":["dragonpulse","dragonclaw","aurasphere","shadowforce"],"pokeball":"cherishball"} ], dreamWorldPokeball: 'dreamball', + isUnreleased: true, tier: "Uber" }, giratinaorigin: { viableMoves: {"dracometeor":1,"shadowsneak":1,"dragontail":1,"hiddenpowerfire":1,"willowisp":1,"calmmind":1,"substitute":1,"dragonpulse":1,"shadowball":1,"aurasphere":1,"outrage":1}, requiredItem: "Griseous Orb", + isUnreleased: true, tier: "Uber" }, cresselia: { @@ -3036,14 +3118,16 @@ exports.BattleFormatsData = { eventPokemon: [ {"generation":5,"level":68,"gender":"F","nature":"Modest","moves":["icebeam","psyshock","energyball","hiddenpower"]} ], - tier: "BL2" + isUnreleased: true, + tier: "Unreleased" }, phione: { viableMoves: {"raindance":1,"scald":1,"uturn":1,"rest":1,"icebeam":1,"surf":1}, eventPokemon: [ {"generation":4,"level":50,"abilities":["hydration"],"moves":["grassknot","raindance","rest","surf"],"pokeball":"cherishball"} ], - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, manaphy: { viableMoves: {"tailglow":1,"surf":1,"icebeam":1,"grassknot":1}, @@ -3055,7 +3139,8 @@ exports.BattleFormatsData = { {"generation":4,"level":50,"moves":["heartswap","whirlpool","waterpulse","acidarmor"],"pokeball":"cherishball"}, {"generation":4,"level":50,"nature":"Impish","moves":["aquaring","waterpulse","watersport","heartswap"],"pokeball":"cherishball"} ], - tier: "Uber" + isUnreleased: true, + tier: "Unreleased" }, darkrai: { viableMoves: {"darkvoid":1,"darkpulse":1,"focusblast":1,"nastyplot":1,"substitute":1,"trick":1}, @@ -3063,9 +3148,10 @@ exports.BattleFormatsData = { {"generation":4,"level":50,"moves":["roaroftime","spacialrend","nightmare","hypnosis"],"pokeball":"cherishball"}, {"generation":4,"level":50,"moves":["darkvoid","darkpulse","shadowball","doubleteam"]}, {"generation":4,"level":50,"moves":["nightmare","hypnosis","roaroftime","spacialrend"],"pokeball":"cherishball"}, - {"generation":4,"level":50,"moves":["doubleteam","nightmare","faintattack","hypnosis"]}, - {"generation":5,"level":50,"moves":["darkvoid","ominouswind","faintattack","nightmare"],"pokeball":"cherishball"} + {"generation":4,"level":50,"moves":["doubleteam","nightmare","feintattack","hypnosis"]}, + {"generation":5,"level":50,"moves":["darkvoid","ominouswind","feintattack","nightmare"],"pokeball":"cherishball"} ], + isUnreleased: true, tier: "Uber" }, shaymin: { @@ -3076,7 +3162,8 @@ exports.BattleFormatsData = { {"generation":4,"level":30,"moves":["growth","magicalleaf","leechseed","synthesis"]}, {"generation":5,"level":50,"moves":["seedflare","leechseed","synthesis","sweetscent"],"pokeball":"cherishball"} ], - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, shayminsky: { viableMoves: {"seedflare":1,"earthpower":1,"airslash":1,"hiddenpowerice":1,"hiddenpowerfire":1,"substitute":1,"leechseed":1}, @@ -3086,6 +3173,7 @@ exports.BattleFormatsData = { {"generation":4,"level":30,"moves":["growth","magicalleaf","leechseed","synthesis"]}, {"generation":5,"level":50,"moves":["seedflare","leechseed","synthesis","sweetscent"],"pokeball":"cherishball"} ], + isUnreleased: true, tier: "Uber" }, arceus: { @@ -3094,6 +3182,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceusbug: { @@ -3103,6 +3192,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceusdark: { @@ -3112,6 +3202,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceusdragon: { @@ -3121,6 +3212,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceuselectric: { @@ -3130,12 +3222,18 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceusfairy: { requiredItem: "Pixie Plate", + eventPokemon: [ + {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, + {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} + ], gen: 6, - tier: "Limbo" + isUnreleased: true, + tier: "Uber" }, arceusfighting: { viableMoves: {"calmmind":1,"judgment":1,"icebeam":1,"darkpulse":1,"recover":1,"toxic":1}, @@ -3144,6 +3242,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceusfire: { @@ -3153,6 +3252,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceusflying: { @@ -3162,6 +3262,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceusghost: { @@ -3171,6 +3272,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceusgrass: { @@ -3180,6 +3282,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceusground: { @@ -3189,6 +3292,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceusice: { @@ -3198,6 +3302,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceuspoison: { @@ -3207,6 +3312,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceuspsychic: { @@ -3216,6 +3322,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceusrock: { @@ -3225,6 +3332,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceussteel: { @@ -3234,6 +3342,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], + isUnreleased: true, tier: "Uber" }, arceuswater: { @@ -3243,12 +3352,7 @@ exports.BattleFormatsData = { {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["recover","hyperbeam","perishsong","judgment"]} ], - tier: "Uber" - }, - arceusunknown: { - eventPokemon: [ - {"generation":4,"level":100,"moves":["judgment","roaroftime","spacialrend","shadowforce"],"pokeball":"cherishball"}, - ], + isUnreleased: true, tier: "Uber" }, victini: { @@ -3258,7 +3362,8 @@ exports.BattleFormatsData = { {"generation":5,"level":50,"moves":["vcreate","fusionflare","fusionbolt","searingshot"],"pokeball":"cherishball"}, {"generation":5,"level":100,"moves":["vcreate","blueflare","boltstrike","glaciate"],"pokeball":"cherishball"} ], - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, snivy: { viableMoves: {"leafstorm":1,"hiddenpowerfire":1,"substitute":1,"leechseed":1,"hiddenpowerice":1,"gigadrain":1}, @@ -3266,12 +3371,14 @@ exports.BattleFormatsData = { {"generation":5,"level":5,"gender":"M","nature":"Hardy","isHidden":false,"moves":["growth","synthesis","energyball","aromatherapy"],"pokeball":"cherishball"} ], unreleasedHidden: true, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, servine: { viableMoves: {"leafstorm":1,"hiddenpowerfire":1,"substitute":1,"leechseed":1,"hiddenpowerice":1,"gigadrain":1}, unreleasedHidden: true, - tier: "NFE" + isUnreleased: true, + tier: "Unreleased" }, serperior: { viableMoves: {"leafstorm":1,"hiddenpowerfire":1,"substitute":1,"leechseed":1,"dragonpulse":1,"gigadrain":1}, @@ -3279,17 +3386,20 @@ exports.BattleFormatsData = { {"generation":5,"level":100,"gender":"M","isHidden":false,"moves":["leafstorm","substitute","gigadrain","leechseed"],"pokeball":"cherishball"} ], unreleasedHidden: true, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, tepig: { viableMoves: {"flamecharge":1,"flareblitz":1,"wildcharge":1,"superpower":1,"headsmash":1}, unreleasedHidden: true, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, pignite: { viableMoves: {"flamecharge":1,"flareblitz":1,"wildcharge":1,"superpower":1,"headsmash":1}, unreleasedHidden: true, - tier: "NFE" + isUnreleased: true, + tier: "Unreleased" }, emboar: { viableMoves: {"flareblitz":1,"superpower":1,"flamecharge":1,"wildcharge":1,"headsmash":1,"earthquake":1,"fireblast":1}, @@ -3297,17 +3407,20 @@ exports.BattleFormatsData = { {"generation":5,"level":100,"gender":"M","isHidden":false,"moves":["flareblitz","hammerarm","wildcharge","headsmash"],"pokeball":"cherishball"} ], unreleasedHidden: true, - tier: "RU" + isUnreleased: true, + tier: "Unreleased" }, oshawott: { viableMoves: {"swordsdance":1,"waterfall":1,"aquajet":1,"xscissor":1}, unreleasedHidden: true, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, dewott: { viableMoves: {"swordsdance":1,"waterfall":1,"aquajet":1,"xscissor":1}, unreleasedHidden: true, - tier: "NFE" + isUnreleased: true, + tier: "Unreleased" }, samurott: { viableMoves: {"swordsdance":1,"aquajet":1,"waterfall":1,"megahorn":1,"superpower":1}, @@ -3315,7 +3428,8 @@ exports.BattleFormatsData = { {"generation":5,"level":100,"gender":"M","isHidden":false,"moves":["hydropump","icebeam","megahorn","superpower"],"pokeball":"cherishball"} ], unreleasedHidden: true, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, patrat: { viableMoves: {"swordsdance":1,"batonpass":1,"substitute":1,"hypnosis":1,"return":1,"superfang":1}, @@ -3443,7 +3557,7 @@ exports.BattleFormatsData = { }, excadrill: { viableMoves: {"swordsdance":1,"rapidspin":1,"earthquake":1,"rockslide":1,"ironhead":1}, - tier: "Uber" + tier: "OU" }, audino: { viableMoves: {"wish":1,"protect":1,"healbell":1,"toxic":1,"thunderwave":1,"reflect":1,"lightscreen":1,"return":1}, @@ -3511,14 +3625,16 @@ exports.BattleFormatsData = { }, cottonee: { viableMoves: {"encore":1,"taunt":1,"substitute":1,"leechseed":1,"toxic":1,"stunspore":1}, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, whimsicott: { viableMoves: {"encore":1,"taunt":1,"substitute":1,"leechseed":1,"uturn":1,"toxic":1,"stunspore":1}, eventPokemon: [ {"generation":5,"level":50,"gender":"F","nature":"Timid","isHidden":false,"abilities":["prankster"],"moves":["swagger","gigadrain","beatup","helpinghand"],"pokeball":"cherishball"} ], - tier: "RU" + isUnreleased: true, + tier: "Unreleased" }, petilil: { viableMoves: {"sunnyday":1,"sleeppowder":1,"solarbeam":1,"hiddenpowerfire":1,"hiddenpowerice":1,"healingwish":1}, @@ -3550,14 +3666,16 @@ exports.BattleFormatsData = { }, darumaka: { viableMoves: {"uturn":1,"flareblitz":1,"firepunch":1,"rockslide":1,"superpower":1}, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, darmanitan: { viableMoves: {"uturn":1,"flareblitz":1,"firepunch":1,"rockslide":1,"earthquake":1,"superpower":1}, eventPokemon: [ {"generation":5,"level":35,"isHidden":true,"moves":["thrash","bellydrum","flareblitz","hammerarm"]} ], - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, maractus: { viableMoves: {"spikes":1,"gigadrain":1,"leechseed":1,"hiddenpowerfire":1,"toxic":1}, @@ -3572,14 +3690,14 @@ exports.BattleFormatsData = { tier: "RU" }, scraggy: { - viableMoves: {"dragondance":1,"icepunch":1,"hijumpkick":1,"drainpunch":1,"rest":1,"bulkup":1,"crunch":1}, + viableMoves: {"dragondance":1,"icepunch":1,"highjumpkick":1,"drainpunch":1,"rest":1,"bulkup":1,"crunch":1}, eventPokemon: [ - {"generation":5,"level":1,"gender":"M","nature":"Adamant","isHidden":false,"abilities":["moxie"],"moves":["headbutt","leer","hijumpkick","lowkick"],"pokeball":"cherishball"} + {"generation":5,"level":1,"gender":"M","nature":"Adamant","isHidden":false,"abilities":["moxie"],"moves":["headbutt","leer","highjumpkick","lowkick"],"pokeball":"cherishball"} ], tier: "LC" }, scrafty: { - viableMoves: {"dragondance":1,"icepunch":1,"hijumpkick":1,"drainpunch":1,"rest":1,"bulkup":1,"crunch":1}, + viableMoves: {"dragondance":1,"icepunch":1,"highjumpkick":1,"drainpunch":1,"rest":1,"bulkup":1,"crunch":1}, eventPokemon: [ {"generation":5,"level":50,"gender":"M","nature":"Brave","isHidden":false,"abilities":["moxie"],"moves":["firepunch","payback","drainpunch","substitute"],"pokeball":"cherishball"} ], @@ -3591,11 +3709,13 @@ exports.BattleFormatsData = { }, yamask: { viableMoves: {"nastyplot":1,"trickroom":1,"shadowball":1,"hiddenpowerfighting":1,"willowisp":1,"haze":1,"rest":1,"sleeptalk":1,"painsplit":1}, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, cofagrigus: { viableMoves: {"nastyplot":1,"trickroom":1,"shadowball":1,"hiddenpowerfighting":1,"willowisp":1,"haze":1,"rest":1,"sleeptalk":1,"painsplit":1}, - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, tirtouga: { viableMoves: {"shellsmash":1,"aquajet":1,"waterfall":1,"stoneedge":1,"earthquake":1,"stealthrock":1}, @@ -3697,7 +3817,7 @@ exports.BattleFormatsData = { deerling: { viableMoves: {"workup":1,"agility":1,"batonpass":1,"seedbomb":1,"jumpkick":1,"naturepower":1,"synthesis":1,"return":1,"thunderwave":1}, eventPokemon: [ - {"generation":5,"level":30,"gender":"F","isHidden":true,"moves":["faintattack","takedown","jumpkick","aromatherapy"]} + {"generation":5,"level":30,"gender":"F","isHidden":true,"moves":["feintattack","takedown","jumpkick","aromatherapy"]} ], tier: "LC" }, @@ -3731,14 +3851,16 @@ exports.BattleFormatsData = { }, frillish: { viableMoves: {"scald":1,"willowisp":1,"recover":1,"toxic":1,"shadowball":1}, - tier: "LC" + isUnreleased: true, + tier: "Unreleased" }, jellicent: { viableMoves: {"scald":1,"willowisp":1,"recover":1,"toxic":1,"shadowball":1,"icebeam":1,"gigadrain":1}, eventPokemon: [ {"generation":5,"level":40,"isHidden":true,"moves":["waterpulse","ominouswind","brine","raindance"]} ], - tier: "OU" + isUnreleased: true, + tier: "Unreleased" }, alomomola: { viableMoves: {"wish":1,"protect":1,"waterfall":1,"toxic":1,"scald":1}, @@ -3790,7 +3912,8 @@ exports.BattleFormatsData = { }, beheeyem: { viableMoves: {"nastyplot":1,"psychic":1,"thunderbolt":1,"hiddenpowerfighting":1,"substitute":1,"calmmind":1,"recover":1,"trick":1}, - tier: "NU" + isUnreleased: true, + tier: "Unreleased" }, litwick: { viableMoves: {"calmmind":1,"shadowball":1,"energyball":1,"fireblast":1,"overheat":1,"hiddenpowerfighting":1,"hiddenpowerground":1,"hiddenpowerrock":1,"trick":1}, @@ -3859,11 +3982,11 @@ exports.BattleFormatsData = { tier: "NU" }, mienfoo: { - viableMoves: {"uturn":1,"drainpunch":1,"stoneedge":1,"swordsdance":1,"batonpass":1,"hijumpkick":1,"fakeout":1}, + viableMoves: {"uturn":1,"drainpunch":1,"stoneedge":1,"swordsdance":1,"batonpass":1,"highjumpkick":1,"fakeout":1}, tier: "LC" }, mienshao: { - viableMoves: {"uturn":1,"fakeout":1,"hijumpkick":1,"stoneedge":1,"drainpunch":1,"swordsdance":1,"batonpass":1}, + viableMoves: {"uturn":1,"fakeout":1,"highjumpkick":1,"stoneedge":1,"drainpunch":1,"swordsdance":1,"batonpass":1}, tier: "UU" }, druddigon: { @@ -3894,7 +4017,8 @@ exports.BattleFormatsData = { }, bouffalant: { viableMoves: {"headcharge":1,"earthquake":1,"stoneedge":1,"megahorn":1,"swordsdance":1,"superpower":1}, - tier: "RU" + isUnreleased: true, + tier: "Unreleased" }, rufflet: { viableMoves: {"bravebird":1,"rockslide":1,"return":1,"uturn":1,"substitute":1,"bulkup":1,"roost":1}, @@ -3914,7 +4038,7 @@ exports.BattleFormatsData = { mandibuzz: { viableMoves: {"knockoff":1,"roost":1,"taunt":1,"whirlwind":1,"toxic":1,"uturn":1,"bravebird":1,"darkpulse":1}, eventPokemon: [ - {"generation":5,"level":25,"gender":"F","isHidden":true,"moves":["pluck","nastyplot","flatter","faintattack"]} + {"generation":5,"level":25,"gender":"F","isHidden":true,"moves":["pluck","nastyplot","flatter","feintattack"]} ], tier: "NU" }, @@ -3958,15 +4082,18 @@ exports.BattleFormatsData = { }, cobalion: { viableMoves: {"closecombat":1,"ironhead":1,"swordsdance":1,"substitute":1,"stoneedge":1,"voltswitch":1,"hiddenpowerice":1,"thunderwave":1,"stealthrock":1}, - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, terrakion: { viableMoves: {"stoneedge":1,"closecombat":1,"swordsdance":1,"rockpolish":1,"substitute":1,"stealthrock":1}, - tier: "OU" + isUnreleased: true, + tier: "Unreleased" }, virizion: { viableMoves: {"swordsdance":1,"calmmind":1,"closecombat":1,"focusblast":1,"hiddenpowerice":1,"stoneedge":1,"leafblade":1,"gigadrain":1,"substitute":1,"synthesis":1}, - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, tornadus: { viableMoves: {"hurricane":1,"airslash":1,"uturn":1,"bulkup":1,"acrobatics":1,"superpower":1,"focusblast":1,"taunt":1,"substitute":1,"heatwave":1}, @@ -3974,14 +4101,16 @@ exports.BattleFormatsData = { {"generation":5,"level":70,"gender":"M","isHidden":false,"moves":["hurricane","hammerarm","airslash","hiddenpower"],"pokeball":"cherishball"} ], dreamWorldPokeball: 'dreamball', - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, tornadustherian: { viableMoves: {"hurricane":1,"airslash":1,"focusblast":1,"uturn":1,"heatwave":1}, eventPokemon: [ {"generation":5,"level":70,"gender":"M","isHidden":false,"moves":["hurricane","hammerarm","airslash","hiddenpower"],"pokeball":"cherishball"} ], - tier: "Uber" + isUnreleased: true, + tier: "Unreleased" }, thundurus: { viableMoves: {"thunderwave":1,"nastyplot":1,"thunderbolt":1,"hiddenpowerice":1,"focusblast":1,"grassknot":1,"substitute":1}, @@ -3989,20 +4118,23 @@ exports.BattleFormatsData = { {"generation":5,"level":70,"gender":"M","isHidden":false,"moves":["thunder","hammerarm","focusblast","wildcharge"],"pokeball":"cherishball"} ], dreamWorldPokeball: 'dreamball', - tier: "Uber" + isUnreleased: true, + tier: "Unreleased" }, thundurustherian: { viableMoves: {"nastyplot":1,"agility":1,"thunderbolt":1,"hiddenpowerice":1,"focusblast":1,"grassknot":1}, eventPokemon: [ {"generation":5,"level":70,"gender":"M","isHidden":false,"moves":["thunder","hammerarm","focusblast","wildcharge"],"pokeball":"cherishball"} ], - tier: "OU" + isUnreleased: true, + tier: "Unreleased" }, reshiram: { viableMoves: {"blueflare":1,"dracometeor":1,"dragonpulse":1,"flamethrower":1,"flamecharge":1,"roost":1}, eventPokemon: [ {"generation":5,"level":100,"moves":["blueflare","fusionflare","mist","dracometeor"],"pokeball":"cherishball"} ], + isUnreleased: true, tier: "Uber" }, zekrom: { @@ -4010,27 +4142,33 @@ exports.BattleFormatsData = { eventPokemon: [ {"generation":5,"level":100,"moves":["boltstrike","fusionbolt","haze","outrage"],"pokeball":"cherishball"} ], + isUnreleased: true, tier: "Uber" }, landorus: { viableMoves: {"earthpower":1,"focusblast":1,"rockpolish":1,"hiddenpowerice":1,"psychic":1}, dreamWorldPokeball: 'dreamball', - tier: "Uber" + isUnreleased: true, + tier: "Unreleased" }, landorustherian: { viableMoves: {"rockpolish":1,"earthquake":1,"stoneedge":1,"uturn":1,"superpower":1,"stealthrock":1}, - tier: "OU" + isUnreleased: true, + tier: "Unreleased" }, kyurem: { viableMoves: {"substitute":1,"icebeam":1,"dracometeor":1,"dragonpulse":1,"focusblast":1,"outrage":1,"earthpower":1,"roost":1}, - tier: "BL" + isUnreleased: true, + tier: "OU" }, kyuremblack: { viableMoves: {"outrage":1,"fusionbolt":1,"icebeam":1,"roost":1}, + isUnreleased: true, tier: "OU" }, kyuremwhite: { viableMoves: {"dracometeor":1,"dragonpulse":1,"icebeam":1,"fusionflare":1,"earthpower":1,"focusblast":1,"roost":1}, + isUnreleased: true, tier: "Uber" }, keldeo: { @@ -4040,7 +4178,8 @@ exports.BattleFormatsData = { {"generation":5,"level":50,"moves":["sacredsword","hydropump","aquajet","swordsdance"],"pokeball":"cherishball"} ], dreamWorldPokeball: 'cherishball', - tier: "OU" + isUnreleased: true, + tier: "Unreleased" }, keldeoresolute: { eventPokemon: [ @@ -4048,7 +4187,8 @@ exports.BattleFormatsData = { {"generation":5,"level":50,"moves":["sacredsword","hydropump","aquajet","swordsdance"],"pokeball":"cherishball"} ], dreamWorldPokeball: 'cherishball', - tier: "OU" + isUnreleased: true, + tier: "Unreleased" }, meloetta: { viableMoves: {"relicsong":1,"closecombat":1,"calmmind":1,"psychic":1,"thunderbolt":1,"hypervoice":1,"uturn":1}, @@ -4057,7 +4197,8 @@ exports.BattleFormatsData = { {"generation":5,"level":50,"moves":["round","teeterdance","psychic","closecombat"],"pokeball":"cherishball"} ], dreamWorldPokeball: 'cherishball', - tier: "UU" + isUnreleased: true, + tier: "Unreleased" }, genesect: { viableMoves: {"uturn":1,"bugbuzz":1,"icebeam":1,"flamethrower":1,"thunderbolt":1}, @@ -4067,82 +4208,84 @@ exports.BattleFormatsData = { {"generation":5,"level":100,"shiny":true,"nature":"Hasty","moves":["extremespeed","technoblast","blazekick","shiftgear"],"pokeball":"cherishball"} ], dreamWorldPokeball: 'cherishball', - tier: "Uber" + isUnreleased: true, + tier: "Unreleased" }, chespin: { - tier: "Limbo" + tier: "Limbo NFE" }, quilladin: { - tier: "Limbo" + tier: "Limbo NFE" }, chesnaught: { + viableMoves: {"aerialace":1,"earthquake":1,"hammerarm":1,"rockslide":1,"spikyshield":1,"stoneedge:":1,"swordsdance":1,"taunt":1,"woodhammer":1}, tier: "Limbo" }, fennekin: { - tier: "Limbo" + tier: "Limbo NFE" }, braixen: { - tier: "Limbo" + tier: "Limbo NFE" }, delphox: { tier: "Limbo" }, froakie: { - tier: "Limbo" + tier: "Limbo NFE" }, frogadier: { - tier: "Limbo" + tier: "Limbo NFE" }, greninja: { tier: "Limbo" }, bunnelby: { - tier: "Limbo" + tier: "Limbo NFE" }, diggersby: { tier: "Limbo" }, fletchling: { - tier: "Limbo" + tier: "Limbo NFE" }, fletchinder: { - tier: "Limbo" + tier: "Limbo NFE" }, talonflame: { tier: "Limbo" }, scatterbug: { - tier: "Limbo" + tier: "Limbo NFE" }, spewpa: { - tier: "Limbo" + tier: "Limbo NFE" }, vivillon: { tier: "Limbo" }, litleo: { - tier: "Limbo" + tier: "Limbo NFE" }, pyroar: { tier: "Limbo" }, flabebe: { - tier: "Limbo" + tier: "Limbo NFE" }, floette: { - tier: "Limbo" + tier: "Limbo NFE" }, florges: { tier: "Limbo" }, skiddo: { - tier: "Limbo" + tier: "Limbo NFE" }, gogoat: { tier: "Limbo" }, pancham: { - tier: "Limbo" + tier: "Limbo NFE" }, pangoro: { tier: "Limbo" @@ -4151,7 +4294,7 @@ exports.BattleFormatsData = { tier: "Limbo" }, espurr: { - tier: "Limbo" + tier: "Limbo NFE" }, meowstic: { tier: "Limbo" @@ -4160,64 +4303,64 @@ exports.BattleFormatsData = { tier: "Limbo" }, honedge: { - tier: "Limbo" + tier: "Limbo NFE" }, doublade: { - tier: "Limbo" + tier: "Limbo NFE" }, aegislash: { tier: "Limbo" }, spritzee: { - tier: "Limbo" + tier: "Limbo NFE" }, aromatisse: { tier: "Limbo" }, swirlix: { - tier: "Limbo" + tier: "Limbo NFE" }, slurpuff: { tier: "Limbo" }, inkay: { - tier: "Limbo" + tier: "Limbo NFE" }, malamar: { tier: "Limbo" }, binacle: { - tier: "Limbo" + tier: "Limbo NFE" }, barbaracle: { tier: "Limbo" }, skrelp: { - tier: "Limbo" + tier: "Limbo NFE" }, dragalge: { tier: "Limbo" }, clauncher: { - tier: "Limbo" + tier: "Limbo NFE" }, clawitzer: { tier: "Limbo" }, helioptile: { - tier: "Limbo" + tier: "Limbo NFE" }, heliolisk: { tier: "Limbo" }, tyrunt: { - tier: "Limbo" + tier: "Limbo NFE" }, tyrantrum: { tier: "Limbo" }, amaura: { - tier: "Limbo" + tier: "Limbo NFE" }, aurorus: { tier: "Limbo" @@ -4235,10 +4378,10 @@ exports.BattleFormatsData = { tier: "Limbo" }, goomy: { - tier: "Limbo" + tier: "Limbo NFE" }, sliggoo: { - tier: "Limbo" + tier: "Limbo NFE" }, goodra: { tier: "Limbo" @@ -4247,37 +4390,58 @@ exports.BattleFormatsData = { tier: "Limbo" }, phantump: { - tier: "Limbo" + tier: "Limbo NFE" }, trevenant: { tier: "Limbo" }, pumpkaboo: { - tier: "Limbo" + tier: "Limbo NFE" + }, + pumpkaboosmall: { + tier: "Limbo NFE" + }, + pumpkaboolarge: { + tier: "Limbo NFE" + }, + pumpkaboosuper: { + tier: "Limbo NFE" }, gourgeist: { tier: "Limbo" }, - bergmite: { + gourgeistsmall: { tier: "Limbo" }, + gourgeistlarge: { + tier: "Limbo" + }, + gourgeistsuper: { + tier: "Limbo" + }, + bergmite: { + tier: "Limbo NFE" + }, avalugg: { tier: "Limbo" }, noibat: { - tier: "Limbo" + tier: "Limbo NFE" }, noivern: { tier: "Limbo" }, xerneas: { - tier: "Limbo" + viableMoves: {"geomancy":1,"moonblast":1,"thunder":1,"focusblast":1,"flashcannon":1}, + tier: "Uber" }, yveltal: { - tier: "Limbo" + viableMoves: {"darkpulse":1,"oblivionwing":1,"taunt":1,"focusblast":1,"hurricane":1,"airslash":1,"roost":1,"acrobatics":1,"suckerpunch":1}, + tier: "Uber" }, zygarde: { - tier: "Limbo" + viableMoves: {"sludgewave":1,"dragonpulse":1,"focusblast":1,"dragondance":1,"earthquake":1,"extremespeed":1,"outrage":1,"rockslide":1}, + tier: "OU" }, missingno: { isNonstandard: true, diff --git a/data/graphics.js b/data/graphics.js index ecfa0ee04..bba4e0ae4 100644 --- a/data/graphics.js +++ b/data/graphics.js @@ -2382,7 +2382,7 @@ var BattleMoveAnims = { pursuit: { anim: BattleOtherAnims.contactattack.anim }, - hijumpkick: { + highjumpkick: { anim: function(battle, args) { var attacker = args[0]; var defender = args[1]; @@ -6157,10 +6157,10 @@ BattleMoveAnims['darkpulse'] = {anim:BattleMoveAnims['shadowball'].anim}; BattleMoveAnims['roaroftime'] = {anim:BattleMoveAnims['dracometeor'].anim}; BattleMoveAnims['spacialrend'] = {anim:BattleMoveAnims['dracometeor'].anim}; -BattleMoveAnims['jumpkick'] = {anim:BattleMoveAnims['hijumpkick'].anim}; -BattleMoveAnims['lowkick'] = {anim:BattleMoveAnims['hijumpkick'].anim}; -BattleMoveAnims['megakick'] = {anim:BattleMoveAnims['hijumpkick'].anim}; -BattleMoveAnims['blazekick'] = {anim:BattleMoveAnims['hijumpkick'].anim}; +BattleMoveAnims['jumpkick'] = {anim:BattleMoveAnims['highjumpkick'].anim}; +BattleMoveAnims['lowkick'] = {anim:BattleMoveAnims['highjumpkick'].anim}; +BattleMoveAnims['megakick'] = {anim:BattleMoveAnims['highjumpkick'].anim}; +BattleMoveAnims['blazekick'] = {anim:BattleMoveAnims['highjumpkick'].anim}; BattleMoveAnims['meteormash'] = {anim:BattleMoveAnims['hammerarm'].anim}; BattleMoveAnims['skyuppercut'] = {anim:BattleMoveAnims['hammerarm'].anim}; BattleMoveAnims['headsmash'] = {anim:BattleMoveAnims['gigaimpact'].anim}; diff --git a/data/items.js b/data/items.js index 5d85af690..4f482c189 100644 --- a/data/items.js +++ b/data/items.js @@ -202,6 +202,26 @@ exports.BattleItems = { gen: 3, desc: "Holder is cured if it is frozen. Single use." }, + "assaultvest": { + id: "assaultvest", + name: "Assault Vest", + spritenum: 0, + onModifySpDPriority: 1, + onModifySpD: function(spd) { + return this.chainModify(1.5); + }, + onModifyPokemon: function(pokemon) { + var moves = pokemon.moveset; + for (var i=0; i 0 && !target.volatiles['substitute']) { + if (target.eatItem()) { + this.debug('-50% reduction'); + return this.chainModify(0.5); + } + } + }, + onEat: function() { }, + num: -6, + gen: 6, + desc: "Halves damage taken from a super effective Fairy-type attack. Single use." + }, "rowapberry": { id: "rowapberry", name: "Rowap Berry", @@ -3276,6 +3382,23 @@ exports.BattleItems = { gen: 1, desc: "A special Poke Ball that is used only in the Safari Zone and Great Marsh." }, + "safetygoggles": { + id: "safetygoggles", + name: "Safety Goggles", + spritenum: 0, + onImmunity: function(type, pokemon) { + if (type === 'sandstorm' || type === 'hail') return false; + }, + onTryHit: function(pokemon, target, move) { + if (move.isPowder) { + this.add('-immune', pokemon, '[msg]', '[from] Safety Goggles'); + return null; + } + }, + num: -8, + gen: 6, + desc: "Protects the holder from weather-related damage and powder moves." + }, "salacberry": { id: "salacberry", name: "Salac Berry", @@ -3680,6 +3803,7 @@ exports.BattleItems = { "steelgem": { id: "steelgem", name: "Steel Gem", + isUnreleased: true, spritenum: 473, isGem: true, onSourceTryPrimaryHit: function(target, source, move) { @@ -3920,6 +4044,7 @@ exports.BattleItems = { "watergem": { id: "watergem", name: "Water Gem", + isUnreleased: true, spritenum: 528, isGem: true, onSourceTryPrimaryHit: function(target, source, move) { @@ -3965,6 +4090,19 @@ exports.BattleItems = { gen: 4, desc: "Holder's Water-type attacks have 1.2x power." }, + "weaknesspolicy": { + id: "weaknesspolicy", + name: "Weakness Policy", + spritenum: 0, + onHit: function(target, source, move) { + if (target.hp && move.category !== 'Status' && this.getEffectiveness(move.type, target) > 0 && target.useItem()) { + this.boost({atk: 2, spa: 2}); + } + }, + num: -6, + gen: 6, + desc: "Attack and Sp. Atk sharply increase when hit super effectively. Single use." + }, "wepearberry": { id: "wepearberry", name: "Wepear Berry", diff --git a/data/learnsets-g6.js b/data/learnsets-g6.js new file mode 100644 index 000000000..f14528936 --- /dev/null +++ b/data/learnsets-g6.js @@ -0,0 +1,749 @@ +exports.BattleLearnsets = { + missingno:{learnset:{blizzard:[],bubblebeam:[],cut:[],doubleedge:[],earthquake:[],fissure:[],fly:[],icebeam:[],megakick:[],megapunch:[],psychic:[],rage:[],razorwind:[],rest:[],seismictoss:[],skyattack:[],submission:[],swordsdance:[],takedown:[],teleport:[],thunder:[],thunderwave:[],toxic:[],triattack:[],watergun:[]}}, + tomohawk:{learnset:{acrobatics:[],aerialace:[],airslash:[],attract:[],aurasphere:[],batonpass:[],brickbreak:[],bulkup:[],bulldoze:[],confuseray:[],doubleteam:[],earthpower:[],earthquake:[],echoedvoice:[],facade:[],falseswipe:[],flash:[],fling:[],fly:[],focusblast:[],focusenergy:[],frustration:[],furyswipes:[],gigaimpact:[],grassknot:[],harden:[],haze:[],healingwish:[],heatwave:[],hiddenpower:[],hurricane:[],hyperbeam:[],hypervoice:[],incinerate:[],memento:[],morningsun:[],naturepower:[],protect:[],quash:[],raindance:[],rapidspin:[],reflect:[],rest:[],retaliate:[],"return":[],roar:[],rockslide:[],rocksmash:[],rocktomb:[],roost:[],round:[],safeguard:[],skydrop:[],solarbeam:[],stealthrock:[],strength:[],submission:[],substitute:[],sunnyday:[],superpower:[],swagger:[],taunt:[],thief:[],toxic:[],whirlwind:[],workup:[],yawn:[]}}, + necturna:{learnset:{attract:[],calmmind:[],curse:[],cut:[],doubleteam:[],dreameater:[],energyball:[],facade:[],flash:[],frustration:[],futuresight:[],gigadrain:[],gigaimpact:[],grassknot:[],gravity:[],hex:[],hiddenpower:[],hornleech:[],hyperbeam:[],ingrain:[],leafblade:[],leafstorm:[],leer:[],naturalgift:[],nightmare:[],ominouswind:[],painsplit:[],payback:[],poisonfang:[],powerwhip:[],protect:[],psychic:[],psychup:[],rest:[],"return":[],round:[],shadowball:[],shadowclaw:[],shadowsneak:[],sketch:[],solarbeam:[],stoneedge:[],substitute:[],sunnyday:[],superfang:[],swagger:[],telekinesis:[],thief:[],thunderfang:[],torment:[],toxic:[],toxicspikes:[],vinewhip:[],willowisp:[]}}, + mollux:{learnset:{bide:[],ember:[],acid:[],withdraw:[],acidspray:[],confuseray:[],clearsmog:[],lavaplume:[],moonlight:[],acidarmor:[],heatwave:[],recover:[],toxicspikes:[],inferno:[],gunkshot:[],eruption:[],finalgambit:[],calmmind:[],toxic:[],venoshock:[],hiddenpower:[],sunnyday:[],hyperbeam:[],lightscreen:[],protect:[],raindance:[],frustration:[],solarbeam:[],thunderbolt:[],thunder:[],"return":[],doubleteam:[],sludgewave:[],flamethrower:[],sludgebomb:[],fireblast:[],facade:[],flamecharge:[],rest:[],attract:[],thief:[],round:[],overheat:[],willowisp:[],explosion:[],gigaimpact:[],flash:[],thunderwave:[],swagger:[],substitute:[],aquaring:[],charm:[],firespin:[],gastroacid:[],healbell:[],healpulse:[],helpinghand:[],rapidspin:[],trick:[],sleeptalk:[],stealthrock:[]}}, + aurumoth:{learnset:{allyswitch:[],ancientpower:[],attract:[],blizzard:[],bugbite:[],bugbuzz:[],closecombat:[],counter:[],cut:[],disable:[],doubleteam:[],dragondance:[],dreameater:[],echoedvoice:[],electroweb:[],facade:[],feint:[],finalgambit:[],flash:[],fling:[],focusblast:[],frustration:[],gigaimpact:[],hail:[],healingwish:[],healpulse:[],helpinghand:[],hiddenpower:[],hydropump:[],hyperbeam:[],icebeam:[],icywind:[],lightscreen:[],magiccoat:[],magicroom:[],megahorn:[],ominouswind:[],overheat:[],protect:[],psychic:[],psychup:[],psyshock:[],quiverdance:[],raindance:[],recycle:[],reflect:[],rest:[],retaliate:[],"return":[],roleplay:[],round:[],safeguard:[],shadowball:[],silverwind:[],skillswap:[],solarbeam:[],stringshot:[],strugglebug:[],substitute:[],sunnyday:[],surf:[],swagger:[],tackle:[],tailglow:[],telekinesis:[],thunder:[],thunderbolt:[],toxic:[],trick:[],wingattack:[],willowisp:[],wish:[],wonderroom:[],xscissor:[],zenheadbutt:[]}}, + malaconda:{learnset:{aromatherapy:[],attract:[],beatup:[],bind:[],crunch:[],cut:[],darkpulse:[],doubleteam:[],dragontail:[],energyball:[],facade:[],foulplay:[],frustration:[],gigadrain:[],gigaimpact:[],glare:[],grassknot:[],haze:[],healbell:[],hiddenpower:[],hyperbeam:[],irontail:[],knockoff:[],leafblade:[],nightslash:[],payback:[],poisonpowder:[],powerwhip:[],protect:[],punishment:[],pursuit:[],rapidspin:[],rest:[],retaliate:[],"return":[],roar:[],round:[],scaryface:[],screech:[],seedbomb:[],slam:[],sleeptalk:[],snarl:[],snore:[],solarbeam:[],spite:[],strength:[],stunspore:[],substitute:[],suckerpunch:[],sunnyday:[],swagger:[],sweetscent:[],synthesis:[],taunt:[],thief:[],toxic:[],uturn:[],vinewhip:[],wildcharge:[],worryseed:[],wrap:[],wringout:[]}}, + syclant:{learnset:{attract:[],avalanche:[],blizzard:[],brickbreak:[],bugbite:[],bugbuzz:[],captivate:[],counter:[],cut:[],doubleedge:[],doubleteam:[],earthpower:[],earthquake:[],endure:[],facade:[],falseswipe:[],fling:[],focusblast:[],focusenergy:[],focuspunch:[],frustration:[],furyattack:[],furycutter:[],gigaimpact:[],hail:[],hiddenpower:[],hyperbeam:[],icebeam:[],icepunch:[],iceshard:[],icywind:[],leechlife:[],leer:[],mimic:[],naturalgift:[],pinmissile:[],protect:[],raindance:[],rest:[],"return":[],rockslide:[],rocksmash:[],secretpower:[],sheercold:[],silverwind:[],slash:[],sleeptalk:[],snore:[],spikes:[],stoneedge:[],strength:[],stringshot:[],substitute:[],superpower:[],swagger:[],swordsdance:[],tailglow:[],taunt:[],toxic:[],uturn:[],waterpulse:[],xscissor:[]}}, + revenankh:{learnset:{ancientpower:[],armthrust:[],attract:[],bide:[],brickbreak:[],bulkup:[],captivate:[],counter:[],curse:[],destinybond:[],doubleteam:[],drainpunch:[],dreameater:[],earthquake:[],embargo:[],endure:[],facade:[],fling:[],focusblast:[],focuspunch:[],forcepalm:[],frustration:[],gigaimpact:[],glare:[],hammerarm:[],helpinghand:[],hiddenpower:[],hyperbeam:[],icepunch:[],knockoff:[],machpunch:[],meanlook:[],memento:[],metronome:[],mimic:[],moonlight:[],mudslap:[],nastyplot:[],naturalgift:[],ominouswind:[],painsplit:[],payback:[],powerwhip:[],protect:[],psychup:[],punishment:[],raindance:[],rest:[],"return":[],revenge:[],rockslide:[],rocksmash:[],rocktomb:[],safeguard:[],sandstorm:[],sandtomb:[],secretpower:[],shadowball:[],shadowpunch:[],shadowsneak:[],sleeptalk:[],spite:[],strength:[],substitute:[],suckerpunch:[],sunnyday:[],superpower:[],swagger:[],taunt:[],torment:[],toxic:[],trick:[],vacuumwave:[],wrap:[],wringout:[]}}, + pyroak:{learnset:{ancientpower:[],aromatherapy:[],attract:[],block:[],bulletseed:[],counter:[],doubleedge:[],doubleteam:[],dragonbreath:[],earthpower:[],earthquake:[],ember:[],endure:[],energyball:[],facade:[],fireblast:[],firespin:[],flamethrower:[],flamewheel:[],flareblitz:[],flash:[],frustration:[],gigadrain:[],gigaimpact:[],grassknot:[],grasswhistle:[],growth:[],headbutt:[],heatwave:[],hiddenpower:[],hyperbeam:[],irondefense:[],irontail:[],lavaplume:[],leechseed:[],lightscreen:[],lowkick:[],mimic:[],mudslap:[],naturalgift:[],overheat:[],petaldance:[],protect:[],psybeam:[],rest:[],"return":[],revenge:[],roar:[],rockclimb:[],rockslide:[],rocksmash:[],rocktomb:[],safeguard:[],sandtomb:[],secretpower:[],seedbomb:[],sleeptalk:[],snore:[],solarbeam:[],stealthrock:[],strength:[],substitute:[],sunnyday:[],swagger:[],sweetscent:[],swordsdance:[],synthesis:[],toxic:[],watersport:[],willowisp:[],woodhammer:[],worryseed:[],zapcannon:[]}}, + fidgit:{learnset:{aerialace:[],attract:[],block:[],bodyslam:[],captivate:[],cometpunch:[],copycat:[],disable:[],doubleedge:[],doubleteam:[],earthpower:[],earthquake:[],encore:[],endure:[],facade:[],fling:[],followme:[],frustration:[],gastroacid:[],gigaimpact:[],gravity:[],gust:[],healblock:[],helpinghand:[],hiddenpower:[],hyperbeam:[],icywind:[],knockoff:[],lightscreen:[],luckychant:[],mefirst:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],ominouswind:[],poisonjab:[],protect:[],psychup:[],raindance:[],rapidspin:[],reflect:[],rest:[],"return":[],rockclimb:[],rockslide:[],rocksmash:[],rocktomb:[],safeguard:[],sandstorm:[],sandtomb:[],secretpower:[],shadowball:[],skillswap:[],sleeptalk:[],sludgebomb:[],snatch:[],snore:[],spikes:[],stealthrock:[],stoneedge:[],substitute:[],sunnyday:[],swagger:[],swift:[],tailwind:[],taunt:[],thief:[],torment:[],toxic:[],toxicspikes:[],trickroom:[],twister:[],uturn:[],whirlwind:[],wish:[]}}, + stratagem:{learnset:{acupressure:[],aerialace:[],ancientpower:[],calmmind:[],cut:[],defensecurl:[],disable:[],doubleedge:[],doubleteam:[],earthpower:[],earthquake:[],embargo:[],endure:[],energyball:[],explosion:[],facade:[],falseswipe:[],fireblast:[],flamethrower:[],flash:[],frustration:[],gigadrain:[],gigaimpact:[],headbutt:[],headsmash:[],heatwave:[],hiddenpower:[],hyperbeam:[],metalsound:[],mudshot:[],mudslap:[],naturalgift:[],ominouswind:[],paleowave:[],powergem:[],protect:[],raindance:[],rest:[],"return":[],rockblast:[],rockclimb:[],rockpolish:[],rockslide:[],rocksmash:[],rocktomb:[],rollout:[],sandstorm:[],secretpower:[],shadowball:[],sleeptalk:[],snore:[],stealthrock:[],stoneedge:[],substitute:[],sunnyday:[],swift:[],tackle:[],toxic:[],trick:[],vacuumwave:[],weatherball:[]}}, + arghonaut:{learnset:{aquajet:[],armthrust:[],attract:[],blizzard:[],brickbreak:[],brine:[],bubble:[],bulkup:[],captivate:[],crosschop:[],cut:[],dive:[],doubleteam:[],drainpunch:[],earthquake:[],embargo:[],endure:[],facade:[],fling:[],focusblast:[],focuspunch:[],frustration:[],gigaimpact:[],gunkshot:[],hail:[],headbutt:[],hiddenpower:[],hyperbeam:[],icebeam:[],icepunch:[],icywind:[],knockoff:[],lowkick:[],machpunch:[],mudslap:[],naturalgift:[],octazooka:[],protect:[],punishment:[],raindance:[],recover:[],rest:[],"return":[],revenge:[],roar:[],rockslide:[],rocksmash:[],rocktomb:[],scaryface:[],secretpower:[],sleeptalk:[],sludgebomb:[],smokescreen:[],snatch:[],snore:[],stoneedge:[],strength:[],submission:[],substitute:[],superpower:[],surf:[],swagger:[],taunt:[],thief:[],thunderpunch:[],torment:[],toxic:[],vacuumwave:[],waterfall:[],waterpulse:[],whirlpool:[],wrap:[],yawn:[]}}, + kitsunoh:{learnset:{attract:[],captivate:[],copycat:[],curse:[],cut:[],darkpulse:[],defog:[],dig:[],doubleteam:[],dreameater:[],earthquake:[],embargo:[],endeavor:[],facade:[],feintattack:[],fakeout:[],falseswipe:[],featherdance:[],flail:[],flash:[],flashcannon:[],fling:[],frustration:[],furycutter:[],gigaimpact:[],headbutt:[],hiddenpower:[],hyperbeam:[],icepunch:[],icywind:[],irondefense:[],ironhead:[],irontail:[],knockoff:[],lastresort:[],lick:[],lowkick:[],magiccoat:[],memento:[],metalclaw:[],metalsound:[],meteormash:[],naturalgift:[],odorsleuth:[],ominouswind:[],painsplit:[],payback:[],perishsong:[],protect:[],psychoshift:[],psychup:[],raindance:[],rest:[],"return":[],revenge:[],roar:[],safeguard:[],scratch:[],secretpower:[],shadowball:[],shadowclaw:[],shadowsneak:[],shadowstrike:[],sleeptalk:[],snatch:[],snore:[],spite:[],substitute:[],suckerpunch:[],sunnyday:[],superfang:[],superpower:[],swagger:[],tailwhip:[],taunt:[],thief:[],thunderpunch:[],torment:[],toxic:[],trick:[],trickroom:[],uturn:[],willowisp:[],yawn:[]}}, + cyclohm:{learnset:{aerialace:[],attract:[],bide:[],blizzard:[],captivate:[],charge:[],chargebeam:[],discharge:[],doublehit:[],doubleteam:[],dracometeor:[],dragonbreath:[],dragonclaw:[],dragonpulse:[],dragonrage:[],earthquake:[],endure:[],facade:[],fireblast:[],flamethrower:[],flash:[],frustration:[],gigaimpact:[],growl:[],hail:[],headbutt:[],healbell:[],hiddenpower:[],hydropump:[],hyperbeam:[],icebeam:[],lightscreen:[],mudslap:[],naturalgift:[],outrage:[],powergem:[],protect:[],raindance:[],rest:[],"return":[],roar:[],sandstorm:[],secretpower:[],shockwave:[],signalbeam:[],slackoff:[],sleeptalk:[],snore:[],sonicboom:[],strength:[],substitute:[],sunnyday:[],surf:[],swift:[],tackle:[],thrash:[],thunder:[],thunderbolt:[],thundershock:[],thunderwave:[],torment:[],toxic:[],triattack:[],trickroom:[],twister:[],waterfall:[],waterpulse:[],whirlwind:[],zapcannon:[]}}, + colossoil:{learnset:{ancientpower:[],aquatail:[],attract:[],bite:[],bodyslam:[],bounce:[],brickbreak:[],captivate:[],crunch:[],darkpulse:[],dig:[],dive:[],doubleedge:[],doubleteam:[],earthpower:[],earthquake:[],embargo:[],encore:[],endure:[],facade:[],fakeout:[],firefang:[],fissure:[],flail:[],frustration:[],gigaimpact:[],hiddenpower:[],hornattack:[],horndrill:[],hyperbeam:[],irontail:[],knockoff:[],leer:[],magnitude:[],megahorn:[],mimic:[],mudslap:[],naturalgift:[],payback:[],peck:[],protect:[],pursuit:[],raindance:[],rapidspin:[],rest:[],"return":[],roar:[],rockslide:[],rocksmash:[],rollout:[],sandstorm:[],sandtomb:[],screech:[],secretpower:[],sleeptalk:[],snatch:[],snore:[],spitup:[],stockpile:[],stoneedge:[],strength:[],substitute:[],suckerpunch:[],sunnyday:[],superpower:[],swagger:[],swallow:[],taunt:[],thunderfang:[],toxic:[],uturn:[]}}, + krilowatt:{learnset:{attract:[],blizzard:[],bubble:[],bubblebeam:[],captivate:[],charge:[],confuseray:[],copycat:[],counter:[],cut:[],discharge:[],dive:[],doubleteam:[],earthpower:[],earthquake:[],endure:[],facade:[],flash:[],fling:[],followme:[],frustration:[],furycutter:[],gigaimpact:[],guillotine:[],hail:[],heartswap:[],helpinghand:[],hiddenpower:[],hyperbeam:[],icebeam:[],icepunch:[],iceshard:[],icywind:[],imprison:[],lowkick:[],mefirst:[],metronome:[],mindreader:[],mirrorcoat:[],muddywater:[],naturalgift:[],payback:[],protect:[],raindance:[],recycle:[],rest:[],"return":[],secretpower:[],sheercold:[],shockwave:[],signalbeam:[],sleeptalk:[],substitute:[],surf:[],swift:[],thunder:[],thunderbolt:[],thunderpunch:[],thundershock:[],thunderwave:[],torment:[],toxic:[],waterfall:[],waterpulse:[],whirlpool:[]}}, + voodoom:{learnset:{acupressure:[],astonish:[],attract:[],aurasphere:[],batonpass:[],beatup:[],brickbreak:[],bulkup:[],captivate:[],charge:[],closecombat:[],copycat:[],counter:[],darkpulse:[],drainpunch:[],dreameater:[],earthquake:[],endure:[],facade:[],feintattack:[],fling:[],focusblast:[],focuspunch:[],followme:[],frustration:[],gigaimpact:[],grudge:[],hiddenpower:[],hyperbeam:[],icepunch:[],imprison:[],knockoff:[],lowkick:[],machpunch:[],magiccoat:[],memento:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],nightslash:[],painsplit:[],payback:[],perishsong:[],pinmissile:[],protect:[],psychic:[],pursuit:[],rest:[],"return":[],revenge:[],rockslide:[],rocksmash:[],screech:[],secretpower:[],shockwave:[],sleeptalk:[],smellingsalts:[],snatch:[],snore:[],spite:[],stoneedge:[],strength:[],substitute:[],sunnyday:[],swagger:[],taunt:[],thief:[],thunderwave:[],torment:[],toxic:[],uproar:[],vacuumwave:[],wrap:[]}}, + bulbasaur:{learnset:{amnesia:["6E"],attract:["6M"],block:[],bodyslam:[],bulletseed:[],captivate:[],charm:["6E"],curse:["6E"],cut:["6M"],defensecurl:[],doubleedge:["6L27"],doubleteam:["6M"],echoedvoice:["6M"],endure:["6E"],energyball:["6M"],facade:["6M"],falseswipe:[],flash:["6M"],frenzyplant:[],frustration:["6M"],furycutter:[],gigadrain:["6E"],grassknot:["6M"],grasspledge:["6T"],grasswhistle:["6E"],growl:["6L3"],growth:["6L25"],headbutt:[],hiddenpower:["6M"],ingrain:["6E"],knockoff:[],leafstorm:["6E"],leechseed:["6L7"],lightscreen:["6M"],magicalleaf:["6E"],mimic:[],mudslap:[],naturalgift:[],naturepower:["6M","6E"],petaldance:["6E"],poisonpowder:["6L13"],powerwhip:["6E"],protect:["6M"],razorleaf:["6L19"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:["6L37"],skullbash:["6E"],sleeppowder:["6L13"],sleeptalk:["6M"],sludge:["6E"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],stringshot:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L21"],swordsdance:["6M"],synthesis:["6L33"],tackle:["6L1"],takedown:["6L15"],toxic:["6M"],venoshock:["6M"],vinewhip:["6L9"],weatherball:[],worryseed:["6L31"],bind:[],confide:["6M"],grassyterrain:["6E"]}}, + ivysaur:{learnset:{attract:["6M"],bodyslam:[],bulletseed:[],captivate:[],cut:["6M"],defensecurl:[],doubleedge:["6L31"],doubleteam:["6M"],echoedvoice:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],furycutter:[],gigadrain:[],grassknot:["6M"],grasspledge:["6T"],growl:["6L1","6L3"],growth:["6L28"],headbutt:[],hiddenpower:["6M"],knockoff:[],leechseed:["6L1","6L7"],lightscreen:["6M"],mimic:[],mudslap:[],naturalgift:[],poisonpowder:["6L13"],protect:["6M"],razorleaf:["6L20"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:[],sleeppowder:["6L13"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6L44","6M"],strength:["6M"],stringshot:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L23"],swordsdance:["6M"],synthesis:["6L39"],tackle:["6L1"],takedown:["6L15"],toxic:["6M"],venoshock:["6M"],vinewhip:["6L9"],worryseed:["6L36"],bind:[],naturepower:["6M"],confide:["6M"]}}, + venusaur:{learnset:{attract:["6M"],block:[],bodyslam:[],bulldoze:["6M"],bulletseed:[],captivate:[],cut:["6M"],defensecurl:[],doubleedge:["6L31"],doubleteam:["6M"],earthquake:["6M"],echoedvoice:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frenzyplant:["6T"],frustration:["6M"],furycutter:[],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],grasspledge:["6T"],growl:["6L1","6L3"],growth:["6L28"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],knockoff:[],leechseed:["6L1","6L7"],lightscreen:["6M"],mimic:[],mudslap:[],naturalgift:[],outrage:[],petaldance:["6L32"],poisonpowder:["6L13"],protect:["6M"],razorleaf:["6L20"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rocksmash:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:[],sleeppowder:["6L13"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6L53","6M"],strength:["6M"],stringshot:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L23"],swordsdance:["6M"],synthesis:["6L45"],tackle:["6L1"],takedown:["6L15"],toxic:["6M"],venoshock:["6M"],vinewhip:["6L1","6L9"],worryseed:["6L39"],bind:[],petalblizzard:["6L50"],naturepower:["6M"],confide:["6M"]}}, + charmander:{learnset:{acrobatics:[],aerialace:["6M"],ancientpower:["6E"],attract:["6M"],beatup:["6E"],bellydrum:["6E"],bite:["6E"],blastburn:[],block:[],bodyslam:[],brickbreak:["6M"],captivate:[],counter:["6E"],crunch:["6E"],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dragonclaw:["6M"],dragondance:["6E"],dragonpulse:["6E"],dragonrage:["6L16"],dragonrush:["6E"],dynamicpunch:[],echoedvoice:["6M"],ember:["6L7"],endure:[],facade:["6M"],falseswipe:[],fireblast:["6M"],firefang:["6L25"],firepledge:["6T"],firepunch:[],firespin:["6L43"],flameburst:["6L28"],flamecharge:["6M"],flamethrower:["6L37","6M"],flareblitz:["6E"],fling:["6M"],focuspunch:["6E"],frustration:["6M"],furycutter:[],growl:["6L1"],headbutt:[],heatwave:[],hiddenpower:["6M"],honeclaws:["6M"],howl:[],incinerate:["6M"],inferno:["6L46"],irontail:[],megakick:[],megapunch:[],metalclaw:["6E"],mimic:[],mudslap:[],naturalgift:[],outrage:["6E"],overheat:["6M"],protect:["6M"],quickattack:[],rage:[],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6L19"],scratch:["6L1"],secretpower:[],seismictoss:[],shadowclaw:["6M"],slash:["6L34"],sleeptalk:["6M"],smokescreen:["6L10"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],thunderpunch:[],toxic:["6M"],willowisp:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + charmeleon:{learnset:{aerialace:["6M"],attract:["6M"],bodyslam:[],brickbreak:["6M"],captivate:[],counter:[],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dragonclaw:["6M"],dragonrage:["6L17"],dynamicpunch:[],echoedvoice:["6M"],ember:["6L1","6L7"],endure:[],facade:["6M"],fireblast:["6M"],firefang:["6L28"],firepledge:["6T"],firepunch:[],firespin:["6L50"],flameburst:["6L32"],flamecharge:["6M"],flamethrower:["6L43","6M"],fling:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],growl:["6L1"],headbutt:[],heatwave:[],hiddenpower:["6M"],honeclaws:["6M"],incinerate:["6M"],inferno:["6L54"],irontail:[],megakick:[],megapunch:[],metalclaw:[],mimic:[],mudslap:[],naturalgift:[],overheat:["6M"],protect:["6M"],rage:[],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6L21"],scratch:["6L1"],secretpower:[],seismictoss:[],shadowclaw:["6M"],slash:["6L39"],sleeptalk:["6M"],smokescreen:["6L10"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],thunderpunch:[],toxic:["6M"],willowisp:["6M"],outrage:[],poweruppunch:["6M"],confide:["6M"]}}, + charizard:{learnset:{aerialace:["6M"],aircutter:[],airslash:["6L1"],attract:["6M"],blastburn:["6T"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],counter:[],cut:["6M"],defensecurl:[],defog:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dragonclaw:["6L1","6M"],dragonpulse:[],dragonrage:["6L17"],dragontail:["6M"],dynamicpunch:[],earthquake:["6M"],echoedvoice:["6M"],ember:["6L1","6L7"],endure:[],facade:["6M"],fireblast:["6M"],firefang:["6L28"],firepledge:["6T"],firepunch:[],firespin:["6L56"],flameburst:["6L32"],flamecharge:["6M"],flamethrower:["6L47","6M"],flareblitz:["6L1","6L77"],fling:["6M"],fly:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],growl:["6L1"],headbutt:[],heatwave:["6L1","6L71"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],incinerate:["6M"],inferno:["6L62"],irontail:[],megakick:[],megapunch:[],metalclaw:[],mimic:[],mudslap:[],naturalgift:[],ominouswind:[],outrage:[],overheat:["6M"],protect:["6M"],rage:[],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roost:["6M"],round:["6M"],scaryface:["6L21"],scratch:["6L1"],secretpower:[],seismictoss:[],shadowclaw:["6L1","6M"],skydrop:["6M"],slash:["6L41"],sleeptalk:["6M"],smokescreen:["6L1","6L10"],snore:[],solarbeam:["6M"],steelwing:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],tailwind:[],thunderpunch:[],toxic:["6M"],twister:[],willowisp:["6M"],wingattack:["6L36"],poweruppunch:["6M"],confide:["6M"]}}, + squirtle:{learnset:{aquajet:["6E"],aquaring:["6E"],aquatail:["6L28"],attract:["6M"],bite:["6L16"],blizzard:["6M"],block:[],bodyslam:[],brickbreak:["6M"],brine:["6E"],bubble:["6L13"],captivate:[],counter:[],defensecurl:[],dig:["6M"],dive:[],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],endure:[],facade:["6M"],fakeout:["6E"],falseswipe:[],flail:["6E"],fling:["6M"],focuspunch:[],followme:[],foresight:["6E"],frustration:["6M"],gyroball:["6M"],hail:["6M"],haze:["6E"],headbutt:[],hiddenpower:["6M"],hydrocannon:[],hydropump:["6L40"],icebeam:["6M"],icepunch:[],icywind:[],irondefense:["6L34"],irontail:[],megakick:[],megapunch:[],mimic:[],mirrorcoat:["6E"],mist:["6E"],muddywater:["6E"],mudslap:[],mudsport:["6E"],naturalgift:[],protect:["6L22","6M"],raindance:["6L37","6M"],rapidspin:["6L19"],refresh:["6E"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],scald:["6M"],secretpower:[],seismictoss:[],skullbash:["6L31"],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],tackle:["6L1"],tailwhip:["6L4"],toxic:["6M"],waterfall:["6M"],watergun:["6L7"],waterpledge:["6T"],waterpulse:["6L25"],waterspout:["6E"],whirlpool:[],withdraw:["6L10"],yawn:["6E"],zenheadbutt:[],poweruppunch:["6M"],confide:["6M"],aurasphere:["6E"],dragonpulse:["6E"],flashcannon:["6E"]}}, + wartortle:{learnset:{aquatail:["6L32"],attract:["6M"],bite:["6L16"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],brine:[],bubble:["6L1","6L13"],captivate:[],counter:[],defensecurl:[],dig:["6M"],dive:[],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],endure:[],facade:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],gyroball:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydropump:["6L48"],icebeam:["6M"],icepunch:[],icywind:[],irondefense:["6L40"],irontail:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],protect:["6L24","6M"],raindance:["6L44","6M"],rapidspin:["6L20"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],scald:["6M"],secretpower:[],seismictoss:[],skullbash:["6L36"],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],tackle:["6L1"],tailwhip:["6L1","6L4"],toxic:["6M"],waterfall:["6M"],watergun:["6L7"],waterpledge:["6T"],waterpulse:["6L28"],whirlpool:[],withdraw:["6L10"],zenheadbutt:[],poweruppunch:["6M"],confide:["6M"]}}, + blastoise:{learnset:{aquatail:["6L32"],attract:["6M"],avalanche:[],bite:["6L16"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],brine:[],bubble:["6L1","6L13"],bulldoze:["6M"],captivate:[],counter:[],defensecurl:[],dig:["6M"],dive:[],doubleedge:[],doubleteam:["6M"],dragontail:["6M"],dynamicpunch:[],earthquake:["6M"],endure:[],facade:["6M"],flashcannon:["6L1","6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],gyroball:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydrocannon:["6T"],hydropump:["6L60"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],irondefense:["6L46"],irontail:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],outrage:[],protect:["6L24","6M"],raindance:["6L53","6M"],rapidspin:["6L20"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],scald:["6M"],secretpower:[],seismictoss:[],signalbeam:[],skullbash:["6L39"],sleeptalk:["6M"],smackdown:["6M"],snore:[],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],tackle:["6L1"],tailwhip:["6L1","6L4"],toxic:["6M"],waterfall:["6M"],watergun:["6L7"],waterpledge:["6T"],waterpulse:["6L28"],whirlpool:[],withdraw:["6L1","6L10"],zenheadbutt:[],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + caterpie:{learnset:{bugbite:["6L15"],snore:[],stringshot:["6L1"],tackle:["6L1"],electroweb:[]}}, + metapod:{learnset:{bugbite:[],harden:["6L1","6L7"],irondefense:[],stringshot:[],electroweb:[]}}, + butterfree:{learnset:{acrobatics:["6M"],aerialace:["6M"],aircutter:[],attract:["6M"],bugbite:[],bugbuzz:["6L42"],captivate:["6L40"],confusion:["6L1","6L10"],defog:[],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],gust:["6L16"],hiddenpower:["6M"],hyperbeam:["6M"],mimic:[],morningsun:[],naturalgift:[],nightmare:[],ominouswind:[],poisonpowder:["6L12"],protect:["6M"],psybeam:["6L24"],psychic:["6M"],psychup:["6M"],quiverdance:["6L46"],ragepowder:["6L34"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],safeguard:["6L36","6M"],secretpower:[],shadowball:["6M"],signalbeam:[],silverwind:["6L28"],skillswap:[],sleeppowder:["6L12"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stringshot:[],strugglebug:["6M"],stunspore:["6L12"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L18"],swagger:["6M"],swift:[],tailwind:["6L30"],thief:["6M"],toxic:["6M"],twister:[],uturn:["6M"],venoshock:["6M"],whirlwind:["6L22"],electroweb:[],infestation:["6M"],confide:["6M"]}}, + weedle:{learnset:{bugbite:["6L15"],poisonsting:["6L1"],stringshot:["6L1"],electroweb:[]}}, + kakuna:{learnset:{bugbite:[],harden:["6L1","6L7"],irondefense:[],stringshot:[],electroweb:[]}}, + beedrill:{learnset:{acrobatics:["6M"],aerialace:["6M"],agility:["6L31"],aircutter:[],assurance:["6L34"],attract:["6M"],batonpass:[],brickbreak:["6M"],bugbite:[],captivate:[],cut:["6M"],defog:[],doubleedge:[],doubleteam:["6M"],endeavor:["6L40"],endure:[],facade:["6M"],falseswipe:["6M"],flash:["6M"],focusenergy:["6L13"],frustration:["6M"],furyattack:["6L1","6L10"],furycutter:[],gigadrain:[],gigaimpact:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],knockoff:[],mimic:[],naturalgift:[],ominouswind:[],payback:["6M"],pinmissile:["6L28"],poisonjab:["6L37","6M"],protect:["6M"],pursuit:["6L22"],rage:["6L19"],rest:["6M"],"return":["6M"],rocksmash:["6M"],roost:["6M"],round:["6M"],secretpower:[],silverwind:[],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],tailwind:[],thief:["6M"],toxic:["6M"],toxicspikes:["6L25"],twineedle:["6L16"],uturn:["6M"],venoshock:["6M"],xscissor:["6M"],drillrun:[],electroweb:[],fellstinger:["6L45"],infestation:["6M"],confide:["6M"]}}, + pidgey:{learnset:{aerialace:["6M"],agility:["6L29"],aircutter:["6E"],airslash:["6L49","6E"],attract:["6M"],bravebird:["6E"],captivate:[],defog:["6E"],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],feintattack:["6E"],featherdance:["6L25"],fly:["6M"],foresight:["6E"],frustration:["6M"],gust:["6L9"],heatwave:[],hiddenpower:["6M"],hurricane:["6L53"],mimic:[],mirrormove:["6L45"],mudslap:[],naturalgift:[],ominouswind:[],pluck:[],protect:["6M"],pursuit:["6E"],quickattack:["6L13"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6L37","6M"],round:["6M"],sandattack:["6L5"],secretpower:[],skyattack:[],sleeptalk:["6M"],snore:[],steelwing:["6M","6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwind:["6L41"],thief:["6M"],toxic:["6M"],twister:["6L21"],uproar:["6E"],uturn:["6M"],whirlwind:["6L17"],wingattack:["6L33"],workup:[],confide:["6M"]}}, + pidgeotto:{learnset:{aerialace:["6M"],agility:["6L32"],aircutter:[],airslash:["6L57"],attract:["6M"],captivate:[],defog:[],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],featherdance:["6L27"],fly:["6M"],frustration:["6M"],gust:["6L1","6L9"],heatwave:[],hiddenpower:["6M"],hurricane:["6L62"],mimic:[],mirrormove:["6L52"],mudslap:[],naturalgift:[],ominouswind:[],pluck:[],protect:["6M"],quickattack:["6L13"],raindance:["6M"],refresh:[],rest:["6M"],"return":["6M"],roost:["6L42","6M"],round:["6M"],sandattack:["6L1","6L5"],secretpower:[],skyattack:[],sleeptalk:["6M"],snore:[],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwind:["6L47"],thief:["6M"],toxic:["6M"],twister:["6L22"],uproar:[],uturn:["6M"],whirlwind:["6L17"],wingattack:["6L37"],workup:[],confide:["6M"]}}, + pidgeot:{learnset:{aerialace:["6M"],agility:["6L32"],aircutter:[],airslash:["6L62"],attract:["6M"],captivate:[],defog:[],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],featherdance:["6L27"],fly:["6M"],frustration:["6M"],gigaimpact:["6M"],gust:["6L1","6L9"],heatwave:[],hiddenpower:["6M"],hurricane:["6L1","6L68"],hyperbeam:["6M"],mimic:[],mirrormove:["6L56"],mudslap:[],naturalgift:[],ominouswind:[],pluck:[],protect:["6M"],quickattack:["6L1","6L13"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6L44","6M"],round:["6M"],sandattack:["6L1","6L5"],secretpower:[],skyattack:[],sleeptalk:["6M"],snore:[],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwind:["6L50"],thief:["6M"],toxic:["6M"],twister:["6L22"],uproar:[],uturn:["6M"],whirlwind:["6L17"],wingattack:["6L38"],workup:[],confide:["6M"]}}, + rattata:{learnset:{assurance:["6L0"],attract:["6M"],bite:["6E"],blizzard:["6M"],bodyslam:[],captivate:[],chargebeam:["6M"],counter:["6E"],crunch:["6L0"],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:["6L0"],doubleteam:["6M"],endeavor:["6L0"],endure:[],facade:["6M"],finalgambit:["6E"],flamewheel:["6E"],focusenergy:["6L0"],frustration:["6M"],furyswipes:["6E"],grassknot:["6M"],headbutt:[],hiddenpower:["6M"],hyperfang:["6L0"],icebeam:["6M"],icywind:[],irontail:[],lastresort:["6E"],mefirst:["6E"],mimic:[],mudslap:[],naturalgift:[],pluck:[],protect:["6M"],pursuit:["6L0"],quickattack:["6L0"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6E"],reversal:["6E"],rocksmash:["6M"],round:["6M"],screech:["6E"],secretpower:[],shadowball:["6M"],shockwave:[],sleeptalk:["6M"],snore:[],substitute:["6M"],suckerpunch:["6L0"],sunnyday:["6M"],superfang:["6L0"],swagger:["6M"],swift:[],tackle:["6L0"],tailwhip:["6L0"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],uproar:["6E"],uturn:["6M"],wildcharge:["6M"],workup:[],zenheadbutt:[],covet:[]}}, + raticate:{learnset:{assurance:["6L0"],attract:["6M"],bite:["6L0"],blizzard:["6M"],bodyslam:[],captivate:[],chargebeam:["6M"],counter:[],crunch:["6L0"],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:["6L0"],doubleteam:["6M"],endeavor:["6L0"],endure:[],facade:["6M"],focusenergy:["6L0"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],hyperfang:["6L0"],icebeam:["6M"],icywind:[],irontail:[],lastresort:[],mimic:[],mudslap:[],naturalgift:[],pluck:[],protect:["6M"],pursuit:["6L0"],quickattack:["6L0"],raindance:["6M"],refresh:[],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],round:["6M"],scaryface:["6L0"],secretpower:[],shadowball:["6M"],shockwave:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],suckerpunch:["6L0"],sunnyday:["6M"],superfang:["6L0"],swagger:["6M"],swift:[],swordsdance:["6M"],tackle:["6L0"],tailwhip:["6L0"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],uturn:["6M"],wildcharge:["6M"],workup:[],zenheadbutt:[],covet:[],uproar:[]}}, + spearow:{learnset:{aerialace:["6L17","6M"],agility:["6L25"],aircutter:[],assurance:["6L29"],astonish:["6E"],attract:["6M"],batonpass:[],captivate:[],defog:[],doubleedge:[],doubleteam:["6M"],drillpeck:["6L37"],echoedvoice:["6M"],endure:[],facade:["6M"],feintattack:["6E"],falseswipe:["6M"],featherdance:["6E"],fly:["6M"],frustration:["6M"],furyattack:["6L9"],growl:["6L1"],heatwave:[],hiddenpower:["6M"],leer:["6L5"],mimic:[],mirrormove:["6L21"],mudslap:[],naturalgift:[],ominouswind:[],peck:["6L1"],pluck:[],protect:["6M"],pursuit:["6L13"],quickattack:["6E"],raindance:["6M"],razorwind:["6E"],rest:["6M"],"return":["6M"],roost:["6L33","6M"],round:["6M"],scaryface:["6E"],secretpower:[],skyattack:["6E"],sleeptalk:["6M"],snore:[],steelwing:["6M","6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tailwind:[],thief:["6M"],toxic:["6M"],triattack:["6E"],twister:[],uproar:["6E"],uturn:["6M"],whirlwind:["6E"],workup:[],drillrun:[],confide:["6M"]}}, + fearow:{learnset:{aerialace:[],agility:[],aircutter:[],assurance:[],attract:[],captivate:[],defog:[],doubleedge:[],doubleteam:[],drillpeck:[],drillrun:[],echoedvoice:[],endure:[],facade:[],falseswipe:[],fly:[],frustration:[],furyattack:[],gigaimpact:[],growl:[],heatwave:[],hiddenpower:[],hyperbeam:[],leer:[],mimic:[],mirrormove:[],mudslap:[],naturalgift:[],ominouswind:[],peck:[],pluck:[],protect:[],pursuit:[],raindance:[],rest:[],"return":[],roost:[],round:[],secretpower:[],skyattack:[],sleeptalk:[],snore:[],steelwing:[],substitute:[],sunnyday:[],swagger:[],swift:[],tailwind:[],thief:[],toxic:[],twister:[],uturn:[],workup:[],uproar:[]}}, + ekans:{learnset:{acid:["6L20"],acidspray:["6L28"],aquatail:[],attract:["6M"],beatup:["6E"],bite:["6L9"],bodyslam:[],bulldoze:["6M"],captivate:[],coil:["6L44"],darkpulse:["6M"],dig:["6M"],disable:["6E"],doubleedge:[],doubleteam:["6M"],earthquake:["6M"],endure:[],facade:["6M"],frustration:["6M"],gastroacid:["6L36"],gigadrain:[],glare:["6L12"],gunkshot:["6L49"],haze:["6L41"],headbutt:[],hiddenpower:["6M"],irontail:["6E"],leer:["6L1"],mimic:[],mudbomb:["6L33"],naturalgift:[],payback:["6M"],poisonfang:["6E"],poisonjab:["6M"],poisonsting:["6L4"],poisontail:["6E"],protect:["6M"],pursuit:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6E"],screech:["6L17"],secretpower:[],seedbomb:[],slam:["6E"],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6M"],snatch:["6E"],snore:[],spite:["6E"],spitup:["6L25"],stockpile:["6L25"],strength:["6M"],substitute:["6M"],suckerpunch:["6E"],sunnyday:["6M"],swagger:["6M"],swallow:["6L25"],switcheroo:["6E"],thief:["6M"],torment:["6M"],toxic:["6M"],venoshock:["6M"],wrap:["6L1"],bind:[],belch:["6L38"],infestation:["6M"],confide:["6M"]}}, + arbok:{learnset:{acid:["6L20"],acidspray:["6L32"],aquatail:[],attract:["6M"],bite:["6L1","6L9"],bodyslam:[],bulldoze:["6M"],captivate:[],coil:["6L56"],crunch:["6L22"],darkpulse:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dragontail:["6M"],earthquake:["6M"],endure:[],facade:["6M"],firefang:["6L1"],frustration:["6M"],gastroacid:["6L44"],gigadrain:[],gigaimpact:["6M"],glare:["6L12"],gunkshot:["6L63"],haze:["6L51"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icefang:["6L1"],irontail:[],leer:["6L1"],mimic:[],mudbomb:["6L39"],naturalgift:[],payback:["6M"],poisonjab:["6M"],poisonsting:["6L1","6L4"],protect:["6M"],raindance:["6M"],refresh:[],rest:["6M"],"return":["6M"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],screech:["6L17"],secretpower:[],seedbomb:[],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6M"],snatch:[],snore:[],spite:[],spitup:["6L27"],stockpile:["6L27"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swallow:["6L27"],thief:["6M"],thunderfang:["6L1"],torment:["6M"],toxic:["6M"],venoshock:["6M"],wrap:["6L1"],bind:[],belch:["6L48"],infestation:["6M"],confide:["6M"]}}, + pichu:{learnset:{attract:["6M"],bestow:["6E"],bide:["6E"],bodyslam:[],captivate:[],charge:["6E"],chargebeam:["6M"],charm:["6L1"],counter:[],defensecurl:[],doubleedge:[],doubleslap:["6E"],doubleteam:["6M"],echoedvoice:["6M"],encore:["6E"],endeavor:[],endure:["6E"],facade:["6M"],fakeout:["6E"],flail:["6E"],flash:["6M"],fling:["6M"],followme:[],frustration:["6M"],grassknot:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],irontail:[],lightscreen:["6M"],luckychant:["6E"],magnetrise:[],megakick:[],megapunch:[],mimic:[],mudslap:[],nastyplot:["6L18"],naturalgift:[],present:["6E"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],reversal:["6E"],rollout:[],round:["6M"],secretpower:[],seismictoss:[],shockwave:[],signalbeam:[],sleeptalk:["6M"],snore:[],substitute:["6M"],surf:[],swagger:["6M"],sweetkiss:["6L10"],swift:[],tailwhip:["6L5"],teeterdance:[],thunder:["6M"],thunderbolt:["6M"],thunderpunch:["6E"],thundershock:["6L1"],thunderwave:["6L13","6M"],tickle:["6E"],toxic:["6M"],uproar:[],voltswitch:["6M"],volttackle:["6E"],wildcharge:["6M"],wish:["6E"],covet:[],confide:["6M"],disarmingvoice:["6E"]}}, + pichuspikyeared:{learnset:{attract:[],captivate:[],chargebeam:[],charm:[],doubleteam:[],endure:[],facade:[],flash:[],fling:[],frustration:[],grassknot:[],headbutt:[],helpinghand:[],hiddenpower:[],irontail:[],lightscreen:[],magnetrise:[],mudslap:[],nastyplot:[],naturalgift:[],painsplit:[],protect:[],raindance:[],rest:[],"return":[],rollout:[],secretpower:[],shockwave:[],signalbeam:[],sleeptalk:[],snore:[],substitute:[],swagger:[],sweetkiss:[],swift:[],tailwhip:[],thunder:[],thunderbolt:[],thundershock:[],thunderwave:[],toxic:[],uproar:[],volttackle:[]}}, + pikachu:{learnset:{agility:["6L37"],attract:["6M"],bodyslam:[],brickbreak:["6M"],captivate:[],chargebeam:["6M"],counter:[],defensecurl:[],dig:["6M"],discharge:["6L42"],doubleedge:[],doubleteam:["6L21","6M"],dynamicpunch:[],echoedvoice:["6M"],electroball:["6L18"],encore:[],endure:[],extremespeed:[],facade:["6M"],feint:["6L34"],flash:["6M"],fling:["6M"],fly:[],focuspunch:[],frustration:["6M"],grassknot:["6M"],growl:["6L5"],headbutt:[],helpinghand:[],hiddenpower:["6M"],irontail:[],knockoff:[],lastresort:[],lightscreen:["6L45","6M"],magnetrise:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],present:[],protect:["6M"],quickattack:["6L10"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rollout:[],round:["6M"],secretpower:[],seismictoss:[],shockwave:[],signalbeam:[],sing:[],slam:["6L26"],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],surf:[],swagger:["6M"],swift:[],tailwhip:["6L1"],teeterdance:[],thunder:["6L50","6M"],thunderbolt:["6L29","6M"],thunderpunch:[],thundershock:["6L1"],thunderwave:["6L13","6M"],toxic:["6M"],voltswitch:["6M"],volttackle:[],wildcharge:["6M"],yawn:[],covet:[],playnice:["6L7"],nuzzle:["6L23"],confide:["6M"]}}, + raichu:{learnset:{attract:["6M"],bodyslam:[],brickbreak:["6M"],captivate:[],chargebeam:["6M"],counter:[],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],echoedvoice:["6M"],endure:[],facade:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],irontail:[],knockoff:[],lightscreen:["6M"],magnetrise:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],quickattack:["6L1"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rollout:[],round:["6M"],secretpower:[],seismictoss:[],shockwave:[],signalbeam:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],swagger:["6M"],swift:[],tailwhip:["6L1"],thief:["6M"],thunder:["6M"],thunderbolt:["6L1","6M"],thunderpunch:[],thundershock:["6L1"],thunderwave:["6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6M"],covet:[],confide:["6M"]}}, + sandshrew:{learnset:{aerialace:["6M"],attract:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6E"],counter:["6E"],crushclaw:["6E"],cut:["6M"],defensecurl:["6L1"],dig:["6L30","6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6L46","6M"],endure:["6E"],facade:["6M"],flail:["6E"],fling:["6M"],focuspunch:[],frustration:["6M"],furycutter:["6L14"],furyswipes:["6L20"],gyroball:["6L34","6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],irontail:[],knockoff:[],magnitude:["6L17"],metalclaw:["6E"],mimic:[],mudshot:["6E"],mudslap:[],naturalgift:[],nightslash:["6E"],poisonjab:["6M"],poisonsting:["6L5"],protect:["6M"],rapidspin:["6L9","6E"],rest:["6M"],"return":["6M"],rockclimb:["6E"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L7"],round:["6M"],safeguard:["6M"],sandattack:["6L3"],sandstorm:["6L42","6M"],sandtomb:["6L23"],scratch:["6L1"],secretpower:[],seismictoss:[],shadowclaw:["6M"],slash:["6L26"],sleeptalk:["6M"],snore:[],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superfang:[],swagger:["6M"],swift:["6L11"],swordsdance:["6L38","6M"],thief:["6M"],toxic:["6M"],xscissor:["6M"],covet:[],confide:["6M"]}}, + sandslash:{learnset:{aerialace:["6M"],attract:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],counter:[],crushclaw:["6L22"],cut:["6M"],defensecurl:["6L1"],dig:["6L30","6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6L46","6M"],endure:[],facade:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:["6L14"],furyswipes:["6L20"],gigaimpact:["6M"],gyroball:["6L34","6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],irontail:[],knockoff:[],magnitude:["6L17"],mimic:[],mudslap:[],naturalgift:[],poisonjab:["6M"],poisonsting:["6L1","6L5"],protect:["6M"],rapidspin:["6L9"],rest:["6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L7"],round:["6M"],safeguard:["6M"],sandattack:["6L1","6L3"],sandstorm:["6L42","6M"],sandtomb:["6L23"],scratch:["6L1"],secretpower:[],seismictoss:[],shadowclaw:["6M"],slash:["6L26"],sleeptalk:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superfang:[],swagger:["6M"],swift:["6L11"],swordsdance:["6L38","6M"],thief:["6M"],toxic:["6M"],xscissor:["6M"],covet:[],confide:["6M"]}}, + nidoranf:{learnset:{aerialace:["6M"],attract:["6M"],beatup:["6E"],bite:["6L21"],blizzard:["6M"],bodyslam:[],captivate:["6L43"],charm:["6E"],chipaway:["6E"],counter:["6E"],crunch:["6L37"],cut:["6M"],defensecurl:[],dig:["6M"],disable:["6E"],doubleedge:[],doublekick:["6L9"],doubleteam:["6M"],endure:["6E"],facade:["6M"],flatter:["6L33"],focusenergy:["6E"],frustration:["6M"],furyswipes:["6L19"],growl:["6L1"],headbutt:[],helpinghand:["6L25"],hiddenpower:["6M"],honeclaws:["6M"],icebeam:["6M"],irontail:["6E"],mimic:[],mudslap:[],naturalgift:[],poisonfang:["6L45"],poisonjab:["6M"],poisonsting:["6L13"],poisontail:["6E"],protect:["6M"],pursuit:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],scratch:["6L1"],secretpower:[],shadowclaw:["6M"],shockwave:[],skullbash:["6E"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],superfang:[],supersonic:["6E"],swagger:["6M"],tailwhip:["6L7"],takedown:["6E"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],toxic:["6M"],toxicspikes:["6L31"],venoshock:["6M"],waterpulse:[],echoedvoice:["6M"],confide:["6M"],venomdrench:["6E"]}}, + nidorina:{learnset:{aerialace:["6M"],attract:["6M"],bite:["6L23"],blizzard:["6M"],bodyslam:[],captivate:["6L50"],counter:[],crunch:["6L43"],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:[],doublekick:["6L9"],doubleteam:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],flatter:["6L38"],frustration:["6M"],furyswipes:["6L20"],growl:["6L1"],headbutt:[],helpinghand:["6L28"],hiddenpower:["6M"],honeclaws:["6M"],icebeam:["6M"],irontail:[],mimic:[],mudslap:[],naturalgift:[],poisonfang:["6L58"],poisonjab:["6M"],poisonsting:["6L13"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],scratch:["6L1"],secretpower:[],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superfang:[],swagger:["6M"],tailwhip:["6L7"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],toxic:["6M"],toxicspikes:["6L35"],venoshock:["6M"],waterpulse:[],confide:["6M"]}}, + nidoqueen:{learnset:{aerialace:["6M"],aquatail:[],attract:["6M"],avalanche:[],blizzard:["6M"],bodyslam:["6L35"],brickbreak:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L23"],counter:[],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:[],doublekick:["6L1"],doubleteam:["6M"],dragonpulse:[],dragontail:["6M"],dynamicpunch:[],earthpower:["6L43"],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irontail:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],outrage:[],poisonjab:["6M"],poisonsting:["6L1"],protect:["6M"],quash:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scratch:["6L1"],secretpower:[],seismictoss:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6M"],smackdown:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superfang:[],superpower:["6L1","6L58"],surf:["6M"],swagger:["6M"],tailwhip:["6L1"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],torment:["6M"],toxic:["6M"],uproar:[],venoshock:["6M"],waterpulse:[],whirlpool:[],poweruppunch:["6M"],confide:["6M"]}}, + nidoranm:{learnset:{amnesia:["6E"],attract:["6M"],beatup:["6E"],blizzard:["6M"],bodyslam:[],captivate:["6L43"],chipaway:["6E"],confusion:["6E"],counter:["6E"],cut:["6M"],defensecurl:[],dig:["6M"],disable:["6E"],doubleedge:[],doublekick:["6L9"],doubleteam:["6M"],echoedvoice:["6M"],endure:["6E"],facade:["6M"],flatter:["6L33"],focusenergy:["6L7"],frustration:["6M"],furyattack:["6L19"],headbutt:[],headsmash:["6E"],helpinghand:["6L25"],hiddenpower:["6M"],honeclaws:["6M"],hornattack:["6L21"],horndrill:["6L45"],icebeam:["6M"],irontail:["6E"],leer:["6L1"],mimic:[],mudslap:[],naturalgift:[],peck:["6L1"],poisonjab:["6L37","6M"],poisonsting:["6L13"],poisontail:["6E"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],secretpower:[],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],strength:["6M"],substitute:["6M"],suckerpunch:["6E"],sunnyday:["6M"],superfang:[],supersonic:["6E"],swagger:["6M"],takedown:["6E"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],toxic:["6M"],toxicspikes:["6L31"],venoshock:["6M"],waterpulse:[],drillrun:[],confide:["6M"],venomdrench:["6E"]}}, + nidorino:{learnset:{attract:["6M"],blizzard:["6M"],bodyslam:[],captivate:["6L50"],counter:[],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:[],doublekick:["6L9"],doubleteam:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],flatter:["6L38"],focusenergy:["6L7"],frustration:["6M"],furyattack:["6L20"],headbutt:[],helpinghand:["6L28"],hiddenpower:["6M"],honeclaws:["6M"],hornattack:["6L23"],horndrill:["6L58"],icebeam:["6M"],irontail:[],leer:["6L1"],mimic:[],mudslap:[],naturalgift:[],peck:["6L1"],poisonjab:["6L43","6M"],poisonsting:["6L13"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],secretpower:[],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],superfang:[],swagger:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],toxic:["6M"],toxicspikes:["6L35"],venoshock:["6M"],waterpulse:[],drillrun:[],confide:["6M"]}}, + nidoking:{learnset:{aquatail:[],attract:["6M"],avalanche:[],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L23"],counter:[],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:[],doublekick:["6L1"],doubleteam:["6M"],dragonpulse:[],dragontail:["6M"],dynamicpunch:[],earthpower:["6L43"],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focusenergy:["6L1"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irontail:[],megahorn:["6L1","6L58"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],outrage:[],peck:["6L1"],poisonjab:["6M"],poisonsting:["6L1"],protect:["6M"],quash:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6M"],smackdown:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],superfang:[],superpower:[],surf:["6M"],swagger:["6M"],taunt:["6M"],thief:["6M"],thrash:["6L35"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],torment:["6M"],toxic:["6M"],uproar:[],venoshock:["6M"],waterpulse:[],whirlpool:[],drillrun:[],poweruppunch:["6M"],confide:["6M"]}}, + cleffa:{learnset:{amnesia:["6E"],aromatherapy:["6E"],attract:["6M"],bellydrum:["6E"],bodyslam:[],captivate:[],charm:["6L1"],copycat:["6L13"],counter:[],covet:["6E"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],encore:["6L4"],endeavor:[],endure:[],facade:["6M"],faketears:["6E"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],grassknot:["6M"],gravity:[],headbutt:[],helpinghand:[],hiddenpower:["6M"],icywind:[],incinerate:["6M"],irontail:[],lastresort:[],lightscreen:["6M"],magicalleaf:["6L16"],magiccoat:[],megakick:[],megapunch:[],metronome:["6E"],mimic:["6E"],mudslap:[],naturalgift:[],nightmare:[],pound:["6L1"],present:["6E"],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],roleplay:[],rollout:[],round:["6M"],safeguard:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],signalbeam:[],sing:["6L7"],sleeptalk:["6M"],snore:[],softboiled:[],solarbeam:["6M"],splash:["6E"],storedpower:["6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetkiss:["6L10"],telekinesis:[],thunderwave:["6M"],tickle:["6E"],toxic:["6M"],trick:[],uproar:[],waterpulse:[],wish:["6E"],workup:[],zenheadbutt:[],hypervoice:[],afteryou:[],wonderroom:[],confide:["6M"],healpulse:["6E"],mistyterrain:["6E"]}}, + clefairy:{learnset:{afteryou:["6L1","6L58"],attract:["6M"],bestow:["6L19"],blizzard:["6M"],bodyslam:["6L40"],bounce:[],brickbreak:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],cosmicpower:["6L34"],counter:[],defensecurl:["6L13"],dig:["6M"],doubleedge:[],doubleslap:["6L10"],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],echoedvoice:["6M"],encore:["6L1"],endeavor:[],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],flash:["6M"],fling:["6M"],focuspunch:[],followme:["6L16"],frustration:["6M"],grassknot:["6M"],gravity:["6L49"],growl:["6L1"],headbutt:[],healbell:[],healingwish:["6L1","6L55"],helpinghand:[],hiddenpower:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irontail:[],knockoff:[],lastresort:[],lightscreen:["6M"],luckychant:["6L37"],magiccoat:[],megakick:[],megapunch:[],meteormash:["6L50"],metronome:["6L31"],mimic:[],minimize:["6L25"],moonlight:["6L43"],mudslap:[],naturalgift:[],nightmare:[],pound:["6L1"],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],roleplay:[],rollout:[],round:["6M"],safeguard:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],signalbeam:[],sing:["6L7"],sleeptalk:["6M"],snatch:[],snore:[],softboiled:[],solarbeam:["6M"],stealthrock:[],storedpower:["6L28"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],trick:[],wakeupslap:["6L22"],waterpulse:[],workup:[],zenheadbutt:[],covet:[],hypervoice:[],wonderroom:[],disarmingvoice:["6L1"],moonblast:["6L46"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + clefable:{learnset:{attract:["6M"],blizzard:["6M"],bodyslam:[],bounce:[],brickbreak:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],counter:[],defensecurl:[],dig:["6M"],doubleedge:[],doubleslap:["6L1"],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],echoedvoice:["6M"],endeavor:[],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gravity:[],headbutt:[],healbell:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irontail:[],knockoff:[],lastresort:[],lightscreen:["6M"],magiccoat:[],megakick:[],megapunch:[],metronome:["6L1"],mimic:[],minimize:["6L1"],mudslap:[],naturalgift:[],nightmare:[],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],roleplay:[],rollout:[],round:["6M"],safeguard:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],signalbeam:[],sing:["6L1"],sleeptalk:["6M"],snatch:[],snore:[],softboiled:[],solarbeam:["6M"],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],trick:[],waterpulse:[],workup:[],zenheadbutt:[],covet:[],hypervoice:[],afteryou:[],wonderroom:[],disarmingvoice:["6L1"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + vulpix:{learnset:{attract:["6M"],bodyslam:[],captivate:["6L47"],charm:[],confuseray:["6L15"],darkpulse:["6M"],dig:["6M"],disable:["6E"],doubleedge:[],doubleteam:["6M"],ember:["6L1"],endure:[],energyball:["6M"],extrasensory:["6L39","6E"],facade:["6M"],feintattack:["6L20","6E"],fireblast:["6L42","6M"],firespin:["6L12"],flail:["6E"],flameburst:["6L23"],flamecharge:["6M"],flamethrower:["6L34","6M"],flareblitz:["6E"],frustration:["6M"],grudge:["6L44"],headbutt:[],heatwave:["6E"],hex:["6L28","6E"],hiddenpower:["6M"],howl:["6E"],hypnosis:["6E"],imprison:["6L18"],incinerate:["6M"],inferno:["6L50"],irontail:[],mimic:[],naturalgift:[],ominouswind:[],overheat:["6M"],painsplit:[],payback:["6L31","6M"],powerswap:["6E"],protect:["6M"],psychup:["6M"],quickattack:["6L10"],rest:["6M"],"return":["6M"],roar:["6L7","6M"],roleplay:[],round:["6M"],safeguard:["6L36","6M"],secretpower:["6E"],sleeptalk:["6M"],snore:[],spite:["6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tailslap:["6E"],tailwhip:["6L4"],toxic:["6M"],willowisp:["6L26","6M"],zenheadbutt:[],covet:[],foulplay:[],babydolleyes:["6L9"],confide:["6M"]}}, + ninetales:{learnset:{attract:["6M"],bodyslam:[],calmmind:["6M"],captivate:[],confuseray:["6L1"],darkpulse:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],ember:[],endure:[],energyball:["6M"],facade:["6M"],fireblast:["6M"],firespin:[],flamecharge:["6M"],flamethrower:["6L1","6M"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],irontail:[],mimic:[],nastyplot:["6L1"],naturalgift:[],ominouswind:[],overheat:["6M"],painsplit:[],payback:["6M"],protect:["6M"],psychup:["6M"],psyshock:["6M"],quickattack:["6L1"],rest:["6M"],"return":["6M"],roar:["6M"],roleplay:[],round:["6M"],safeguard:["6L1","6M"],secretpower:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],spite:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],toxic:["6M"],willowisp:["6M"],zenheadbutt:[],covet:[],foulplay:[],imprison:["6L1"],confide:["6M"]}}, + igglybuff:{learnset:{attract:["6M"],bodyslam:[],bounce:[],captivate:["6E"],charm:["6L1"],copycat:["6L17"],counter:[],covet:["6E"],defensecurl:["6L5"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],endeavor:[],endure:[],facade:["6M"],feintattack:["6E"],faketears:["6E"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],grassknot:["6M"],gravity:["6E"],headbutt:[],healbell:[],helpinghand:[],hiddenpower:["6M"],icywind:[],incinerate:["6M"],lastresort:["6E"],lightscreen:["6M"],magiccoat:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],painsplit:[],perishsong:["6E"],pound:["6L9"],present:["6E"],protect:["6M"],psychic:["6M"],psychup:["6M"],punishment:["6E"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],roleplay:[],rollout:[],round:["6M"],safeguard:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],sing:["6L1"],sleeptalk:["6M","6E"],snore:[],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetkiss:["6L13"],thunderwave:["6M"],tickle:[],toxic:["6M"],uproar:[],waterpulse:[],wildcharge:["6M"],wish:["6E"],workup:[],hypervoice:[],confide:["6M"],mistyterrain:["6E"]}}, + jigglypuff:{learnset:{attract:["6M"],blizzard:["6M"],bodyslam:["6L33"],bounce:[],brickbreak:["6M"],captivate:[],chargebeam:["6M"],counter:[],defensecurl:["6L5"],dig:["6M"],disable:["6L13"],doubleedge:["6L53"],doubleslap:["6L25"],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],echoedvoice:["6M"],endeavor:[],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],flash:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],grassknot:["6M"],gravity:[],gyroball:["6L37","6M"],headbutt:[],healbell:[],helpinghand:[],hiddenpower:["6M"],hypervoice:["6L48"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],knockoff:[],lastresort:[],lightscreen:["6M"],magiccoat:[],megakick:[],megapunch:[],mimic:["6L45"],mudslap:[],naturalgift:[],nightmare:[],painsplit:[],pound:["6L7"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6L29","6M"],retaliate:["6M"],"return":["6M"],roleplay:[],rollout:["6L21"],round:["6L17","6M"],safeguard:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],sing:["6L1"],sleeptalk:["6M"],snatch:[],snore:[],solarbeam:["6M"],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],wakeupslap:["6L41"],waterpulse:[],wildcharge:["6M"],workup:[],covet:[],playnice:["6L10"],disarmingvoice:["6L50"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + wigglytuff:{learnset:{attract:["6M"],blizzard:["6M"],bodyslam:[],bounce:[],brickbreak:["6M"],captivate:[],chargebeam:["6M"],counter:[],defensecurl:["6L1"],dig:["6M"],disable:["6L1"],doubleedge:["6L1"],doubleslap:["6L1"],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],echoedvoice:["6M"],endeavor:[],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gravity:[],gyroball:["6M"],headbutt:[],healbell:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],knockoff:[],lastresort:[],lightscreen:["6M"],magiccoat:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],painsplit:[],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roleplay:[],rollout:[],round:["6M"],safeguard:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],sing:["6L1"],sleeptalk:["6M"],snatch:[],snore:[],solarbeam:["6M"],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],waterpulse:[],wildcharge:["6M"],workup:[],covet:[],hypervoice:[],magicroom:[],playrough:["6L1"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + zubat:{learnset:{acrobatics:["6L30","6M"],aerialace:["6M"],aircutter:["6L26"],airslash:["6L45"],astonish:["6L8"],attract:["6M"],bite:["6L12"],bravebird:["6E"],captivate:[],confuseray:["6L19"],curse:["6E"],defog:["6E"],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],feintattack:["6E"],fly:["6M"],frustration:["6M"],gigadrain:["6E"],gust:["6E"],haze:["6L41"],heatwave:[],hiddenpower:["6M"],hypnosis:["6E"],leechlife:["6L1"],meanlook:["6L34"],mimic:[],nastyplot:["6E"],naturalgift:[],ominouswind:[],payback:["6M"],pluck:[],poisonfang:["6L37"],protect:["6M"],pursuit:["6E"],quickattack:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],secretpower:[],shadowball:["6M"],sleeptalk:["6M"],sludgebomb:["6M"],snatch:[],snore:[],steelwing:["6M","6E"],substitute:["6M"],sunnyday:["6M"],superfang:[],supersonic:["6L4"],swagger:["6M"],swift:["6L23"],tailwind:[],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6M"],twister:[],uproar:[],uturn:["6M"],venoshock:["6M"],whirlwind:["6E"],wingattack:["6L15"],zenheadbutt:["6E"],confide:["6M"],venomdrench:["6E"]}}, + golbat:{learnset:{acrobatics:["6L33","6M"],aerialace:["6M"],aircutter:["6L28"],airslash:["6L52"],astonish:["6L1","6L8"],attract:["6M"],bite:["6L12"],captivate:[],confuseray:["6L19"],defog:[],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],fly:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],haze:["6L47"],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],leechlife:["6L1"],meanlook:["6L38"],mimic:[],naturalgift:[],ominouswind:[],payback:["6M"],pluck:[],poisonfang:["6L42"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],screech:["6L1"],secretpower:[],shadowball:["6M"],sleeptalk:["6M"],sludgebomb:["6M"],snatch:[],snore:[],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],superfang:[],supersonic:["6L1","6L4"],swagger:["6M"],swift:["6L24"],tailwind:[],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6M"],twister:[],uproar:[],uturn:["6M"],venoshock:["6M"],wingattack:["6L15"],zenheadbutt:[],confide:["6M"]}}, + crobat:{learnset:{acrobatics:["6L33","6M"],aerialace:["6M"],aircutter:["6L28"],airslash:["6L52"],astonish:["6L1","6L8"],attract:["6M"],bite:["6L12"],captivate:[],confuseray:["6L19"],crosspoison:["6L1"],darkpulse:["6M"],defog:[],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],fly:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],haze:["6L47"],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],leechlife:["6L1"],meanlook:["6L38"],mimic:[],naturalgift:[],ominouswind:[],payback:["6M"],pluck:[],poisonfang:["6L42"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],screech:["6L1"],secretpower:[],shadowball:["6M"],skyattack:[],sleeptalk:["6M"],sludgebomb:["6M"],snatch:[],snore:[],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],superfang:[],supersonic:["6L1","6L4"],swagger:["6M"],swift:["6L24"],tailwind:[],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6M"],twister:[],uproar:[],uturn:["6M"],venoshock:["6M"],wingattack:["6L15"],xscissor:["6M"],zenheadbutt:[],confide:["6M"]}}, + oddish:{learnset:{absorb:["6L1"],acid:["6L9"],afteryou:["6E"],attract:["6M"],bulletseed:[],captivate:[],charm:["6E"],cut:["6M"],doubleedge:[],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flail:["6E"],flash:["6M"],frustration:["6M"],gastroacid:[],gigadrain:["6L37"],grassknot:["6M"],hiddenpower:["6M"],ingrain:["6E"],leechseed:[],luckychant:["6L25"],megadrain:["6L21"],mimic:[],moonlight:["6L33"],naturalgift:["6L29"],naturepower:["6M","6E"],petaldance:["6L41"],poisonpowder:["6L13"],protect:["6M"],razorleaf:["6E"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:["6E"],seedbomb:[],sleeppowder:["6L17"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],stunspore:["6L15"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L5"],swordsdance:["6M"],synthesis:["6E"],teeterdance:["6E"],tickle:["6E"],toxic:["6M"],venoshock:["6M"],worryseed:[],grassyterrain:["6L45"],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + gloom:{learnset:{absorb:["6L1"],acid:["6L1","6L9"],attract:["6M"],bulletseed:[],captivate:[],cut:["6M"],doubleedge:[],doubleteam:["6M"],drainpunch:[],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],gastroacid:[],gigadrain:["6L47"],grassknot:["6M"],hiddenpower:["6M"],luckychant:["6L29"],megadrain:["6L23"],mimic:[],moonlight:["6L41"],naturalgift:["6L35"],petaldance:["6L53"],poisonpowder:["6L13"],protect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],seedbomb:[],sleeppowder:["6L17"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],stunspore:["6L15"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L1","6L5"],swordsdance:["6M"],synthesis:[],toxic:["6M"],venoshock:["6M"],worryseed:[],afteryou:[],petalblizzard:["6L50"],grassyterrain:["6L56"],infestation:["6M"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + vileplume:{learnset:{absorb:[],aromatherapy:["6L1"],attract:["6M"],bodyslam:[],bulletseed:[],captivate:[],cut:["6M"],doubleedge:[],doubleteam:["6M"],drainpunch:[],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],gastroacid:[],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],megadrain:["6L1"],mimic:[],naturalgift:[],petaldance:["6L53"],poisonpowder:["6L1"],protect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],seedbomb:[],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6L65","6M"],stunspore:["6L1"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],synthesis:[],toxic:["6M"],venoshock:["6M"],worryseed:[],afteryou:[],petalblizzard:["6L50"],safeguard:["6M"],infestation:["6M"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + bellossom:{learnset:{absorb:[],attract:["6M"],bulletseed:[],captivate:[],cut:["6M"],doubleedge:[],doubleteam:["6M"],drainpunch:[],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],gastroacid:[],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],leafblade:["6L1"],leafstorm:["6L1","6L53"],magicalleaf:["6L23"],megadrain:["6L1"],mimic:[],naturalgift:[],petaldance:[],protect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:[],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],stunspore:["6L1"],substitute:["6M"],sunnyday:["6L1","6M"],swagger:["6M"],sweetscent:["6L1"],swordsdance:["6M"],synthesis:[],toxic:["6M"],uproar:[],venoshock:["6M"],worryseed:[],afteryou:[],petalblizzard:["6L50"],infestation:["6M"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + paras:{learnset:{aerialace:["6M"],agility:["6E"],aromatherapy:["6L43"],attract:["6M"],bodyslam:[],brickbreak:["6M"],bugbite:["6E"],bulletseed:[],captivate:[],counter:["6E"],crosspoison:["6E"],cut:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],endure:["6E"],energyball:["6M"],facade:["6M"],falseswipe:["6M"],flail:["6E"],flash:["6M"],frustration:["6M"],furycutter:["6L17"],gigadrain:["6L38"],grassknot:["6M"],growth:["6L33"],hiddenpower:["6M"],honeclaws:["6M"],knockoff:[],leechlife:["6L11"],leechseed:["6E"],lightscreen:["6M"],metalclaw:["6E"],mimic:[],naturalgift:["6E"],poisonpowder:["6L6"],protect:["6M"],psybeam:["6E"],pursuit:["6E"],ragepowder:["6L49"],refresh:[],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],scratch:["6L1"],screech:["6E"],secretpower:[],seedbomb:[],slash:["6L27"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],spore:["6L22"],stringshot:[],strugglebug:["6M"],stunspore:["6L6"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6E"],swordsdance:["6M"],synthesis:[],thief:["6M"],toxic:["6M"],venoshock:["6M"],worryseed:[],xscissor:["6L54","6M"],afteryou:[],naturepower:["6M"],confide:["6M"],fellstinger:["6E"]}}, + parasect:{learnset:{aerialace:["6M"],aromatherapy:["6L51"],attract:["6M"],bodyslam:[],brickbreak:["6M"],bugbite:[],bulletseed:[],captivate:[],counter:[],crosspoison:["6L1"],cut:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],falseswipe:["6M"],flash:["6M"],frustration:["6M"],furycutter:["6L17"],gigadrain:["6L44"],gigaimpact:["6M"],grassknot:["6M"],growth:["6L37"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],knockoff:[],leechlife:["6L1","6L11"],lightscreen:["6M"],mimic:[],naturalgift:[],poisonpowder:["6L1","6L6"],protect:["6M"],ragepowder:["6L59"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],scratch:["6L1"],secretpower:[],seedbomb:[],slash:["6L29"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],spore:["6L22"],stringshot:[],strugglebug:["6M"],stunspore:["6L1","6L6"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],synthesis:[],thief:["6M"],toxic:["6M"],venoshock:["6M"],worryseed:[],xscissor:["6L66","6M"],afteryou:[],naturepower:["6M"],confide:["6M"]}}, + venonat:{learnset:{agility:["6E"],attract:["6M"],batonpass:["6E"],bugbite:["6E"],captivate:[],confusion:["6L11"],disable:["6L1"],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],flash:["6M"],foresight:["6L1"],frustration:["6M"],gigadrain:["6E"],hiddenpower:["6M"],leechlife:["6L17"],mimic:[],morningsun:["6E"],naturalgift:[],poisonfang:["6L41"],poisonpowder:["6L13"],protect:["6M"],psybeam:["6L25"],psychic:["6L47","6M"],ragepowder:["6E"],rest:["6M"],"return":["6M"],round:["6M"],screech:["6E"],secretpower:["6E"],signalbeam:["6L35","6E"],skillswap:["6E"],sleeppowder:["6L29"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],stringshot:[],strugglebug:["6M"],stunspore:["6L23"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L5"],swagger:["6M"],swift:[],tackle:["6L1"],thief:["6M"],toxic:["6M"],toxicspikes:["6E"],venoshock:["6M"],zenheadbutt:["6L37"],infestation:["6M"],confide:["6M"]}}, + venomoth:{learnset:{acrobatics:["6M"],aerialace:["6M"],aircutter:[],attract:["6M"],bugbite:[],bugbuzz:["6L1","6L59"],captivate:[],confusion:["6L11"],defog:[],disable:["6L1"],doubleedge:[],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],foresight:["6L1"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],gust:["6L31"],hiddenpower:["6M"],hyperbeam:["6M"],leechlife:["6L17"],mimic:[],naturalgift:[],ominouswind:[],poisonfang:["6L47"],poisonpowder:["6L13"],protect:["6M"],psybeam:["6L25"],psychic:["6L55","6M"],quiverdance:["6L1","6L63"],refresh:[],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],secretpower:[],signalbeam:["6L37"],silverwind:["6L1"],skillswap:[],sleeppowder:["6L29"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],stringshot:[],strugglebug:["6M"],stunspore:["6L23"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L1","6L5"],swagger:["6M"],swift:[],tackle:["6L1"],tailwind:[],thief:["6M"],toxic:["6M"],twister:[],uturn:["6M"],venoshock:["6M"],zenheadbutt:["6L41"],infestation:["6M"],confide:["6M"]}}, + diglett:{learnset:{aerialace:["6M"],ancientpower:["6E"],astonish:["6L7","6E"],attract:["6M"],beatup:["6E"],bodyslam:[],bulldoze:["6L18","6M"],captivate:[],cut:["6M"],dig:["6L34","6M"],doubleedge:[],doubleteam:["6M"],earthpower:["6L29"],earthquake:["6L40","6M"],echoedvoice:["6M"],endure:["6E"],facade:["6M"],feintattack:["6E"],finalgambit:["6E"],fissure:["6L45"],frustration:["6M"],furyswipes:[],growl:["6L4"],headbutt:["6E"],hiddenpower:["6M"],honeclaws:["6M"],magnitude:["6L15"],memento:["6E"],mimic:[],mudbomb:["6L26","6E"],mudslap:["6L12"],naturalgift:[],protect:["6M"],pursuit:["6E"],rest:["6M"],"return":["6M"],reversal:["6E"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L1"],sandstorm:["6M"],scratch:["6L1"],screech:["6E"],secretpower:[],shadowclaw:["6M"],slash:["6L37"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],stealthrock:[],substitute:["6M"],suckerpunch:["6L23"],sunnyday:["6M"],swagger:["6M"],thief:["6M"],toxic:["6M"],uproar:["6E"],confide:["6M"]}}, + dugtrio:{learnset:{aerialace:["6M"],astonish:["6L7"],attract:["6M"],bodyslam:[],bulldoze:["6L18","6M"],captivate:[],charm:[],cut:["6M"],dig:["6L40","6M"],doubleedge:[],doubleteam:["6M"],earthpower:["6L33"],earthquake:["6L50","6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fissure:["6L57"],frustration:["6M"],furyswipes:[],gigaimpact:["6M"],growl:["6L1","6L4"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],magnitude:["6L15"],mimic:[],mudbomb:["6L28"],mudslap:["6L12"],naturalgift:[],nightslash:["6L1"],protect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L1"],sandstorm:["6M"],sandtomb:["6L26"],scratch:["6L1"],secretpower:[],shadowclaw:["6M"],slash:["6L45"],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],substitute:["6M"],suckerpunch:["6L23"],sunnyday:["6M"],swagger:["6M"],thief:["6M"],toxic:["6M"],triattack:["6L1"],uproar:[],rototiller:["6L1"],confide:["6M"]}}, + meowth:{learnset:{aerialace:["6M"],amnesia:["6E"],assist:["6E"],assurance:["6L0"],attract:["6M"],bite:["6L0"],bodyslam:[],captivate:["6L0"],charm:["6E"],cut:["6M"],darkpulse:[],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],feintattack:["6L0"],fakeout:["6L0"],feint:["6L0"],flail:["6E"],flash:["6M"],foulplay:["6E"],frustration:["6M"],furyswipes:["6L0"],growl:["6L0"],gunkshot:[],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hypnosis:["6E"],icywind:[],irontail:["6E"],knockoff:[],lastresort:["6E"],mimic:[],mudslap:[],nastyplot:["6L0"],naturalgift:[],nightmare:[],nightslash:["6L0"],odorsleuth:["6E"],payback:["6M"],payday:["6L0"],petaldance:[],protect:["6M"],psychup:["6M"],punishment:["6E"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],round:["6M"],scratch:["6L0"],screech:["6L0"],secretpower:[],seedbomb:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],sing:[],slash:["6L0"],sleeptalk:["6M"],snatch:["6E"],snore:[],spite:["6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tailwhip:["6E"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],torment:["6M"],toxic:["6M"],uturn:["6M"],waterpulse:[],workup:[],covet:[],uproar:[],hypervoice:[]}}, + persian:{learnset:{aerialace:["6M"],assurance:["6L0"],attract:["6M"],bite:["6L0"],bodyslam:[],captivate:["6L0"],cut:["6M"],darkpulse:[],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],embargo:["6M"],endure:[],facade:["6M"],feintattack:["6L0"],fakeout:["6L0"],feint:["6L0"],flash:["6M"],frustration:["6M"],furyswipes:["6L0"],gigaimpact:["6M"],growl:["6L0"],gunkshot:[],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icywind:[],irontail:[],knockoff:[],lastresort:[],mimic:[],mudslap:[],nastyplot:["6L0"],naturalgift:[],nightmare:[],nightslash:["6L0"],payback:["6M"],payday:[],powergem:["6L0"],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],round:["6M"],scratch:["6L0"],screech:["6L0"],secretpower:[],seedbomb:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],slash:["6L0"],sleeptalk:["6M"],snatch:[],snore:[],spite:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L0"],switcheroo:["6L0"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],torment:["6M"],toxic:["6M"],uproar:[],uturn:["6M"],waterpulse:[],workup:[],covet:[],foulplay:[],hypervoice:[]}}, + psyduck:{learnset:{aerialace:["6M"],amnesia:["6L43"],aquatail:["6L32"],attract:["6M"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],brine:[],calmmind:["6M"],captivate:[],confuseray:["6E"],confusion:["6L15"],counter:[],crosschop:["6E"],dig:["6M"],disable:["6L11"],dive:[],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],encore:["6E"],endure:[],facade:["6M"],flash:["6M"],fling:["6M"],focuspunch:[],foresight:["6E"],frustration:["6M"],furyswipes:["6L22"],futuresight:["6E"],hail:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hydropump:["6L46"],hypnosis:["6E"],icebeam:["6M"],icepunch:[],icywind:[],irontail:[],lightscreen:["6M"],megakick:[],megapunch:[],mimic:[],mudbomb:["6E"],mudslap:[],mudsport:[],naturalgift:[],protect:["6M"],psybeam:["6E"],psychic:["6M"],psychup:["6L39","6M"],psyshock:["6M"],raindance:["6M"],refresh:["6E"],rest:["6M"],"return":["6M"],rocksmash:["6M"],roleplay:[],round:["6M"],scald:["6M"],scratch:["6L1"],screech:["6L25"],secretpower:["6E"],seismictoss:[],shadowclaw:["6M"],signalbeam:[],sleeptalk:["6M","6E"],snore:[],soak:["6L36"],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:[],synchronoise:["6E"],tailwhip:["6L4"],telekinesis:[],toxic:["6M"],waterfall:["6M"],watergun:["6L8"],waterpulse:["6L18"],watersport:["6L1"],whirlpool:[],wonderroom:["6L50"],worryseed:[],yawn:["6E"],zenheadbutt:["6L29"],poweruppunch:["6M"],confide:["6M"],simplebeam:["6E"]}}, + golduck:{learnset:{aerialace:["6M"],amnesia:["6L49"],aquajet:["6L1"],aquatail:["6L32"],attract:["6M"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],brine:[],calmmind:["6M"],captivate:[],charm:[],confusion:["6L15"],counter:[],dig:["6M"],disable:["6L11"],dive:[],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],endure:[],facade:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],furyswipes:["6L22"],gigaimpact:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hydropump:["6L54"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],irontail:[],lightscreen:["6M"],lowkick:[],lowsweep:["6M"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],psychic:["6M"],psychup:["6L43","6M"],psyshock:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rocksmash:["6M"],roleplay:[],round:["6M"],scald:["6M"],scratch:["6L1"],screech:["6L25"],secretpower:[],seismictoss:[],shadowclaw:["6M"],signalbeam:[],sleeptalk:["6M"],snore:[],soak:["6L38"],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:[],tailwhip:["6L1","6L4"],telekinesis:[],toxic:["6M"],waterfall:["6M"],watergun:["6L1","6L8"],waterpulse:["6L18"],watersport:["6L1"],whirlpool:[],wonderroom:["6L60"],worryseed:[],zenheadbutt:["6L29"],poweruppunch:["6M"],confide:["6M"]}}, + mankey:{learnset:{acrobatics:["6M"],aerialace:["6M"],assurance:["6L25"],attract:["6M"],beatup:["6E"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],captivate:[],closecombat:["6L49","6E"],counter:["6E"],covet:["6L1"],crosschop:["6L37"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],encore:["6E"],endeavor:[],endure:[],facade:["6M"],finalgambit:["6L53"],firepunch:[],fling:["6M"],focusblast:["6M"],focusenergy:["6L1"],focuspunch:["6E"],foresight:["6E"],frustration:["6M"],furyswipes:["6L9"],gunkshot:[],headbutt:[],helpinghand:[],hiddenpower:["6M"],honeclaws:["6M"],icepunch:[],irontail:[],karatechop:["6L13"],leer:["6L1"],lowkick:["6L1"],lowsweep:["6M"],meditate:["6E"],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],outrage:[],overheat:["6M"],payback:["6M"],poisonjab:["6M"],protect:["6M"],psychup:[],punishment:["6L45"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6E"],reversal:["6E"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],scratch:["6L1"],screech:["6L21"],secretpower:[],seedbomb:[],seismictoss:["6L17"],sleeptalk:["6M","6E"],smackdown:["6M"],smellingsalts:["6E"],snore:[],spite:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6L33","6M"],swift:[],taunt:["6M"],thief:["6M"],thrash:["6L41"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],uproar:[],uturn:["6M"],vacuumwave:[],workup:[],dualchop:[],poweruppunch:["6M"],confide:["6M"],nightslash:["6E"]}}, + primeape:{learnset:{acrobatics:["6M"],aerialace:["6M"],assurance:["6L25"],attract:["6M"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],captivate:[],closecombat:["6L59"],crosschop:["6L41"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],endeavor:[],endure:[],facade:["6M"],finalgambit:["6L1","6L63"],firepunch:[],fling:["6L1","6M"],focusblast:["6M"],focusenergy:["6L1"],focuspunch:[],frustration:["6M"],furyswipes:["6L9"],gigaimpact:["6M"],gunkshot:[],headbutt:[],helpinghand:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icepunch:[],irontail:[],karatechop:["6L13"],leer:["6L1"],lowkick:["6L1"],lowsweep:["6M"],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],outrage:[],overheat:["6M"],payback:["6M"],poisonjab:["6M"],protect:["6M"],psychup:[],punishment:["6L53"],rage:["6L28"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],reversal:[],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],scratch:["6L1"],screech:["6L21"],secretpower:[],seedbomb:[],seismictoss:["6L17"],sleeptalk:["6M"],smackdown:["6M"],snore:[],spite:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6L35","6M"],swift:[],taunt:["6M"],thief:["6M"],thrash:["6L47"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],uproar:[],uturn:["6M"],vacuumwave:[],workup:[],covet:[],dualchop:[],poweruppunch:["6M"],confide:["6M"]}}, + growlithe:{learnset:{aerialace:["6M"],agility:["6L30"],attract:["6M"],bite:["6L1"],bodyslam:["6E"],captivate:[],charm:[],closecombat:["6E"],covet:["6E"],crunch:["6L39","6E"],dig:["6M"],doubleedge:["6E"],doublekick:["6E"],doubleteam:["6M"],ember:["6L6"],endure:[],facade:["6M"],fireblast:["6M"],firefang:["6L21"],firespin:["6E"],flameburst:["6L28"],flamecharge:["6M"],flamethrower:["6L34","6M"],flamewheel:["6L17"],flareblitz:["6L45","6E"],frustration:["6M"],headbutt:[],heatwave:["6L41","6E"],helpinghand:["6L12"],hiddenpower:["6M"],howl:["6E"],incinerate:["6M"],irontail:["6E"],leer:["6L8"],mimic:[],morningsun:["6E"],mudslap:[],naturalgift:[],odorsleuth:["6L10"],outrage:["6L43"],overheat:["6M"],protect:["6M"],rest:["6M"],retaliate:["6L32","6M"],"return":["6M"],reversal:["6L19"],roar:["6L1","6M"],rocksmash:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],sleeptalk:["6M"],snarl:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],takedown:["6L23"],thief:["6M"],thrash:["6E"],toxic:["6M"],wildcharge:["6M"],willowisp:["6M"],confide:["6M"]}}, + arcanine:{learnset:{aerialace:["6M"],attract:["6M"],bite:["6L1"],bodyslam:[],bulldoze:["6M"],captivate:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dragonpulse:[],ember:[],endure:[],extremespeed:["6L34"],facade:["6M"],fireblast:["6M"],firefang:["6L1"],flamecharge:["6M"],flamethrower:["6M"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],heatwave:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],ironhead:[],irontail:[],mimic:[],mudslap:[],naturalgift:[],odorsleuth:["6L1"],overheat:["6M"],protect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6L1","6M"],rockclimb:[],rocksmash:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],sleeptalk:["6M"],snarl:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],thief:["6M"],thunderfang:["6L1"],toxic:["6M"],wildcharge:["6M"],willowisp:["6M"],covet:[],outrage:[],confide:["6M"]}}, + poliwag:{learnset:{attract:["6M"],bellydrum:["6L31"],blizzard:["6M"],bodyslam:["6L21"],bubble:["6L5"],bubblebeam:["6L25","6E"],captivate:[],defensecurl:[],dig:["6M"],dive:[],doubleedge:[],doubleslap:["6L15"],doubleteam:["6M"],encore:["6E"],endeavor:["6E"],endure:["6E"],facade:["6M"],frustration:["6M"],hail:["6M"],haze:["6E"],headbutt:[],hiddenpower:["6M"],hydropump:["6L38"],hypnosis:["6L8"],iceball:["6E"],icebeam:["6M"],icywind:[],mimic:[],mindreader:["6E"],mist:["6E"],mudbomb:["6L41"],mudshot:["6L28","6E"],naturalgift:[],protect:["6M"],psychic:["6M"],raindance:["6L18","6M"],refresh:["6E"],rest:["6M"],"return":["6M"],round:["6M"],scald:["6M"],secretpower:[],sleeptalk:["6M"],snore:[],splash:["6E"],substitute:["6M"],surf:["6M"],swagger:["6M"],sweetkiss:[],thief:["6M"],toxic:["6M"],wakeupslap:["6L35"],waterfall:["6M"],watergun:["6L11"],waterpulse:["6E"],watersport:["6L1","6E"],whirlpool:[],helpinghand:[],confide:["6M"]}}, + poliwhirl:{learnset:{attract:["6M"],bellydrum:["6L37"],blizzard:["6M"],bodyslam:["6L21"],brickbreak:["6M"],bubble:["6L1","6L5"],bubblebeam:["6L27"],bulldoze:["6M"],captivate:[],counter:[],defensecurl:[],dig:["6M"],dive:[],doubleedge:[],doubleslap:["6L15"],doubleteam:["6M"],earthquake:["6M"],endure:[],facade:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydropump:["6L48"],hypnosis:["6L1","6L8"],icebeam:["6M"],icepunch:[],icywind:[],megakick:[],megapunch:[],metronome:[],mimic:[],mudbomb:["6L53"],mudshot:["6L32"],mudslap:[],naturalgift:[],protect:["6M"],psychic:["6M"],raindance:["6L18","6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],scald:["6M"],secretpower:[],seismictoss:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],thief:["6M"],toxic:["6M"],wakeupslap:["6L43"],waterfall:["6M"],watergun:["6L11"],waterpulse:[],watersport:["6L1"],whirlpool:[],helpinghand:[],endeavor:[],poweruppunch:["6M"],confide:["6M"]}}, + poliwrath:{learnset:{attract:["6M"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bubblebeam:["6L1"],bulkup:["6M"],bulldoze:["6M"],captivate:[],circlethrow:["6L1","6L53"],counter:[],defensecurl:[],dig:["6M"],dive:[],doubleedge:[],doubleslap:["6L1"],doubleteam:["6M"],dynamicpunch:["6L32"],earthquake:["6M"],endure:[],facade:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hydropump:[],hyperbeam:["6M"],hypnosis:["6L1"],icebeam:["6M"],icepunch:[],icywind:[],lowsweep:["6M"],megakick:[],megapunch:[],metronome:[],mimic:[],mindreader:["6L43"],mudslap:[],naturalgift:[],payback:["6M"],poisonjab:["6M"],protect:["6M"],psychic:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],secretpower:[],seismictoss:[],sleeptalk:["6M"],snore:[],strength:["6M"],submission:["6L1"],substitute:["6M"],surf:["6M"],swagger:["6M"],thief:["6M"],toxic:["6M"],vacuumwave:[],waterfall:["6M"],watergun:[],waterpulse:[],whirlpool:[],workup:[],endeavor:[],poweruppunch:["6M"],confide:["6M"]}}, + politoed:{learnset:{attract:["6M"],blizzard:["6M"],bodyslam:[],bounce:["6L37"],brickbreak:["6M"],bubblebeam:["6L1"],bulldoze:["6M"],captivate:[],counter:[],defensecurl:[],dig:["6M"],dive:[],doubleedge:[],doubleslap:["6L1"],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],hypervoice:["6L48"],hypnosis:["6L1"],icebeam:["6M"],icywind:[],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],payback:["6M"],perishsong:["6L1"],protect:["6M"],psychic:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],scald:["6M"],secretpower:[],seismictoss:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6L27","6M"],thief:["6M"],toxic:["6M"],waterfall:["6M"],watergun:[],waterpulse:[],whirlpool:[],icepunch:[],endeavor:[],poweruppunch:["6M"],confide:["6M"]}}, + abra:{learnset:{allyswitch:["6E"],attract:["6M"],barrier:["6E"],bodyslam:[],calmmind:["6M"],captivate:[],chargebeam:["6M"],counter:[],doubleedge:[],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],embargo:["6M"],encore:["6E"],endure:[],energyball:["6M"],facade:["6M"],firepunch:["6E"],flash:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],grassknot:["6M"],gravity:[],guardsplit:["6E"],guardswap:["6E"],headbutt:[],hiddenpower:["6M"],icepunch:["6E"],irontail:[],knockoff:["6E"],lightscreen:["6M"],magiccoat:[],megakick:[],megapunch:[],metronome:[],mimic:[],naturalgift:[],nightmare:[],powertrick:["6E"],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],roleplay:[],round:["6M"],safeguard:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:["6E"],sleeptalk:["6M"],snatch:[],snore:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],teleport:["6L1"],thief:["6M"],thunderpunch:["6E"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],zenheadbutt:[],foulplay:[],magicroom:[],wonderroom:[],dazzlinggleam:["6M"],confide:["6M"],psychoshift:["6E"]}}, + kadabra:{learnset:{allyswitch:["6L24"],attract:["6M"],bodyslam:[],calmmind:["6M"],captivate:[],chargebeam:["6M"],confusion:["6L1","6L16"],counter:[],disable:["6L18"],doubleedge:[],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],embargo:["6M"],endure:[],energyball:["6M"],facade:["6M"],firepunch:[],flash:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],futuresight:["6L48"],grassknot:["6M"],gravity:[],headbutt:[],hiddenpower:["6M"],icepunch:[],irontail:[],kinesis:["6L1"],knockoff:[],lightscreen:["6M"],magiccoat:[],megakick:[],megapunch:[],metronome:[],mimic:[],miracleeye:["6L22"],naturalgift:[],nightmare:[],protect:["6M"],psybeam:["6L28"],psychic:["6L46","6M"],psychocut:["6L40"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recover:["6L36"],recycle:[],reflect:["6L30","6M"],rest:["6M"],"return":["6M"],roleplay:["6L42"],round:["6M"],safeguard:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snatch:[],snore:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:["6L34"],teleport:["6L1"],thief:["6M"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:["6L50"],trickroom:["6M"],zenheadbutt:[],foulplay:[],magicroom:[],wonderroom:[],dazzlinggleam:["6M"],confide:["6M"]}}, + alakazam:{learnset:{allyswitch:["6L24"],attract:["6M"],bodyslam:[],calmmind:["6L42","6M"],captivate:[],chargebeam:["6M"],confusion:["6L1","6L16"],counter:[],disable:["6L18"],doubleedge:[],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],embargo:["6M"],endure:[],energyball:["6M"],facade:["6M"],firepunch:[],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],futuresight:["6L48"],gigaimpact:["6M"],grassknot:["6M"],gravity:[],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],irontail:[],kinesis:["6L1"],knockoff:[],lightscreen:["6M"],magiccoat:[],megakick:[],megapunch:[],metronome:[],mimic:[],miracleeye:["6L22"],naturalgift:[],nightmare:[],protect:["6M"],psybeam:["6L28"],psychic:["6L46","6M"],psychocut:["6L40"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recover:["6L36"],recycle:[],reflect:["6L30","6M"],rest:["6M"],"return":["6M"],roleplay:[],round:["6M"],safeguard:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snatch:[],snore:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:["6L34"],teleport:["6L1"],thief:["6M"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:["6L50"],trickroom:["6M"],zenheadbutt:[],foulplay:[],magicroom:[],wonderroom:[],dazzlinggleam:["6M"],confide:["6M"]}}, + machop:{learnset:{attract:["6M"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],bulletpunch:["6E"],captivate:[],closecombat:["6E"],counter:["6E"],crosschop:["6L43"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:["6L49"],earthquake:["6M"],encore:["6E"],endure:[],facade:["6M"],fireblast:["6M"],firepunch:["6E"],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focusenergy:["6L7"],focuspunch:[],foresight:["6L19"],frustration:["6M"],headbutt:[],heavyslam:["6E"],helpinghand:[],hiddenpower:["6M"],icepunch:["6E"],incinerate:["6M"],karatechop:["6L10"],knockoff:["6E"],leer:["6L1"],lightscreen:["6M"],lowkick:["6L1"],lowsweep:["6L13","6M"],meditate:["6E"],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],payback:["6M"],poisonjab:["6M"],powertrick:["6E"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L25"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],rollingkick:["6E"],round:["6M"],scaryface:["6L46"],secretpower:[],seismictoss:["6L22"],sleeptalk:["6M"],smackdown:["6M"],smellingsalts:["6E"],snore:[],strength:["6M"],submission:["6L34"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],thief:["6M"],thunderpunch:["6E"],tickle:["6E"],toxic:["6M"],vacuumwave:[],vitalthrow:["6L31"],wakeupslap:["6L37"],workup:[],dualchop:[],poweruppunch:["6M"],confide:["6M"]}}, + machoke:{learnset:{attract:["6M"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],captivate:[],counter:[],crosschop:["6L44"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:["6L55"],earthquake:["6M"],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focusenergy:["6L1","6L7"],focuspunch:[],foresight:["6L19"],frustration:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],icepunch:[],incinerate:["6M"],karatechop:["6L1","6L10"],leer:["6L1"],lightscreen:["6M"],lowkick:["6L1"],lowsweep:["6L13","6M"],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],payback:["6M"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L25"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],scaryface:["6L51"],secretpower:[],seismictoss:["6L22"],sleeptalk:["6M"],smackdown:["6M"],snore:[],strength:["6M"],submission:["6L36"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],thief:["6M"],thunderpunch:[],toxic:["6M"],vacuumwave:[],vitalthrow:["6L32"],wakeupslap:["6L40"],workup:[],dualchop:[],knockoff:[],poweruppunch:["6M"],confide:["6M"]}}, + machamp:{learnset:{attract:["6M"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],bulletpunch:[],captivate:[],counter:[],crosschop:["6L44"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:["6L55"],earthquake:["6M"],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focusenergy:["6L1","6L7"],focuspunch:[],foresight:["6L19"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],incinerate:["6M"],karatechop:["6L1","6L10"],leer:["6L1"],lightscreen:["6M"],lowkick:["6L1"],lowsweep:["6L13","6M"],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],payback:["6M"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L25"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],scaryface:["6L51"],secretpower:[],seismictoss:["6L22"],sleeptalk:["6M"],smackdown:["6M"],snore:[],stoneedge:["6M"],strength:["6M"],submission:["6L36"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],thief:["6M"],thunderpunch:[],toxic:["6M"],vacuumwave:[],vitalthrow:["6L32"],wakeupslap:["6L40"],wideguard:["6L1"],workup:[],dualchop:[],knockoff:[],poweruppunch:["6M"],confide:["6M"]}}, + bellsprout:{learnset:{acid:["6L23"],attract:["6M"],bulletseed:["6E"],captivate:[],clearsmog:["6E"],cut:["6M"],doubleedge:[],doubleteam:["6M"],encore:["6E"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gastroacid:["6L35"],gigadrain:["6E"],grassknot:["6M"],growth:["6L7"],hiddenpower:["6M"],ingrain:["6E"],knockoff:["6L27"],leechlife:["6E"],magicalleaf:["6E"],mimic:[],naturalgift:["6E"],poisonpowder:["6L15"],powerwhip:["6E"],protect:["6M"],razorleaf:["6L39"],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],seedbomb:[],slam:["6L41"],sleeppowder:["6L13"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],stunspore:["6L17"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L29"],swordsdance:["6M"],synthesis:["6E"],teeterdance:[],thief:["6M"],tickle:["6E"],toxic:["6M"],venoshock:["6M"],vinewhip:["6L1"],weatherball:["6E"],worryseed:["6E"],wrap:["6L11"],wringout:["6L47"],bind:[],infestation:["6M"],naturepower:["6M"],confide:["6M"],belch:["6E"],acidspray:["6E"]}}, + weepinbell:{learnset:{acid:["6L23"],attract:["6M"],bulletseed:[],captivate:[],cut:["6M"],doubleedge:[],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gastroacid:["6L35"],gigadrain:[],grassknot:["6M"],growth:["6L1","6L7"],hiddenpower:["6M"],knockoff:["6L27"],magicalleaf:[],mimic:[],morningsun:[],naturalgift:[],poisonpowder:["6L15"],protect:["6M"],razorleaf:["6L39"],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],seedbomb:[],slam:["6L41"],sleeppowder:["6L13"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],stunspore:["6L17"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L29"],swordsdance:["6M"],synthesis:[],thief:["6M"],toxic:["6M"],venoshock:["6M"],vinewhip:["6L1"],worryseed:[],wrap:["6L1","6L11"],wringout:["6L47"],bugbite:[],bind:[],infestation:["6M"],naturepower:["6M"],confide:["6M"]}}, + victreebel:{learnset:{attract:["6M"],bodyslam:[],bulletseed:[],captivate:[],cut:["6M"],doubleedge:[],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gastroacid:[],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],knockoff:[],leafblade:["6L47"],leafstorm:["6L47"],leaftornado:["6L27"],mimic:[],naturalgift:[],protect:["6M"],razorleaf:["6L1"],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],seedbomb:[],sleeppowder:["6L1"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],spitup:["6L1"],stockpile:["6L1"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swallow:["6L1"],sweetscent:["6L1"],swordsdance:["6M"],synthesis:[],thief:["6M"],toxic:["6M"],venoshock:["6M"],vinewhip:["6L1"],worryseed:[],bugbite:[],bind:[],infestation:["6M"],naturepower:["6M"],confide:["6M"]}}, + tentacool:{learnset:{acid:["6L12"],acidspray:["6L26"],acupressure:["6E"],aquaring:["6E"],attract:["6M"],aurorabeam:["6E"],barrier:["6L29"],blizzard:["6M"],brine:[],bubble:["6E"],bubblebeam:["6L19"],captivate:[],confuseray:["6E"],constrict:["6L8"],cut:["6M"],dive:[],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],frustration:["6M"],gigadrain:[],hail:["6M"],haze:["6E"],hex:["6L43"],hiddenpower:["6M"],hydropump:["6L47"],icebeam:["6M"],icywind:[],knockoff:["6E"],magiccoat:[],mimic:[],mirrorcoat:["6E"],muddywater:["6E"],naturalgift:[],payback:["6M"],poisonjab:["6L36","6M"],poisonsting:["6L1"],protect:["6M"],raindance:["6M"],rapidspin:["6E"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],scald:["6M"],screech:["6L40"],secretpower:[],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6L50","6M"],snore:[],substitute:["6M"],supersonic:["6L5"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],thief:["6M"],tickle:["6E"],toxic:["6M"],toxicspikes:["6L15"],venoshock:["6M"],waterfall:["6M"],waterpulse:["6L33"],whirlpool:[],wrap:["6L22"],wringout:["6L54"],bind:[],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + tentacruel:{learnset:{acid:["6L12"],acidspray:["6L26"],attract:["6M"],barrier:["6L29"],blizzard:["6M"],brine:[],bubblebeam:["6L19"],captivate:[],constrict:["6L1","6L8"],cut:["6M"],dive:[],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],hail:["6M"],hex:["6L47"],hiddenpower:["6M"],hydropump:["6L52"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],knockoff:[],magiccoat:[],mimic:[],naturalgift:[],payback:["6M"],poisonjab:["6L38","6M"],poisonsting:["6L1"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],scald:["6M"],screech:["6L43"],secretpower:[],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6L56","6M"],snore:[],substitute:["6M"],supersonic:["6L1","6L5"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],thief:["6M"],toxic:["6M"],toxicspikes:["6L15"],venoshock:["6M"],waterfall:["6M"],waterpulse:["6L34"],whirlpool:[],wrap:["6L22"],wringout:["6L1","6L61"],bind:[],reflecttype:["6L1"],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + geodude:{learnset:{ancientpower:[],attract:["6M"],autotomize:["6E"],block:["6E"],bodyslam:[],brickbreak:["6M"],bulldoze:["6L32","6M"],captivate:[],counter:[],curse:["6E"],defensecurl:["6L1"],dig:["6M"],doubleedge:["6L46"],doubleteam:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6L39","6M"],endure:["6E"],explosion:["6L43","6M"],facade:["6M"],fireblast:["6M"],firepunch:[],flail:["6E"],flamethrower:["6M"],fling:["6M"],focuspunch:["6E"],frustration:["6M"],gyroball:["6M"],hammerarm:["6E"],headbutt:[],hiddenpower:["6M"],incinerate:["6M"],magnitude:["6L15"],megapunch:["6E"],metronome:[],mimic:[],mudslap:[],mudsport:["6L4"],naturalgift:[],protect:["6M"],rest:["6M"],"return":["6M"],rockblast:["6L22"],rockclimb:["6E"],rockpolish:["6L8","6M"],rockslide:["6M"],rocksmash:["6M"],rockthrow:["6L11"],rocktomb:["6M"],rollout:["6L18"],round:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:[],selfdestruct:["6L29"],sleeptalk:["6M"],smackdown:["6L25","6M"],snore:[],stealthrock:["6L36"],stoneedge:["6L50","6M"],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],superpower:[],swagger:["6M"],tackle:["6L1"],thunderpunch:[],toxic:["6M"],irondefense:[],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + graveler:{learnset:{ancientpower:[],attract:["6M"],block:[],bodyslam:[],brickbreak:["6M"],bulldoze:["6L36","6M"],captivate:[],counter:[],defensecurl:["6L1"],dig:["6M"],doubleedge:["6L58"],doubleteam:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6L47","6M"],endure:[],explosion:["6L53","6M"],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],gyroball:["6M"],headbutt:[],hiddenpower:["6M"],incinerate:["6M"],magnitude:["6L15"],megapunch:[],metronome:[],mimic:[],mudslap:[],mudsport:["6L1","6L4"],naturalgift:[],protect:["6M"],rest:["6M"],"return":["6M"],rockblast:["6L22"],rockclimb:[],rockpolish:["6L1","6L8","6M"],rockslide:["6M"],rocksmash:["6M"],rockthrow:["6L11"],rocktomb:["6M"],rollout:["6L18"],round:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:[],selfdestruct:["6L31"],sleeptalk:["6M"],smackdown:["6L27","6M"],snore:[],stealthrock:["6L42"],stoneedge:["6L64","6M"],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],superpower:[],swagger:["6M"],tackle:["6L1"],thunderpunch:[],toxic:["6M"],irondefense:[],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + golem:{learnset:{ancientpower:[],attract:["6M"],block:[],bodyslam:[],brickbreak:["6M"],bulldoze:["6L36","6M"],captivate:[],counter:[],defensecurl:["6L1"],dig:["6M"],doubleedge:["6L58"],doubleteam:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6L47","6M"],endure:[],explosion:["6L53","6M"],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],gyroball:["6M"],headbutt:[],heavyslam:["6L1","6L69"],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],ironhead:[],magnitude:["6L15"],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],mudsport:["6L1","6L4"],naturalgift:[],protect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockblast:["6L22"],rockclimb:[],rockpolish:["6L1","6L8","6M"],rockslide:["6M"],rocksmash:["6M"],rockthrow:["6L11"],rocktomb:["6M"],rollout:[],round:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:[],selfdestruct:["6L31"],sleeptalk:["6M"],smackdown:["6L27","6M"],snore:[],stealthrock:["6L42"],steamroller:["6L18"],stoneedge:["6L64","6M"],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],superpower:[],swagger:["6M"],tackle:["6L1"],thunderpunch:[],toxic:["6M"],irondefense:[],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + ponyta:{learnset:{agility:["6L37"],attract:["6M"],bodyslam:[],bounce:["6L45"],captivate:["6E"],charm:["6E"],doubleedge:["6E"],doublekick:["6E"],doubleteam:["6M"],echoedvoice:["6M"],ember:["6L9"],endure:[],facade:["6M"],fireblast:["6L41","6M"],firespin:["6L25"],flamecharge:["6L21","6M"],flamethrower:["6M"],flamewheel:["6L13","6E"],flareblitz:["6L49"],frustration:["6M"],growl:["6L1"],headbutt:[],heatwave:[],hiddenpower:["6M"],horndrill:["6E"],hypnosis:["6E"],incinerate:["6M"],inferno:["6L33"],irontail:[],lowkick:["6E"],mimic:[],morningsun:["6E"],naturalgift:[],overheat:["6M"],protect:["6M"],quickattack:[],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stomp:["6L17"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwhip:["6L4"],takedown:["6L29"],thrash:["6E"],toxic:["6M"],wildcharge:["6M"],willowisp:["6M"],confide:["6M"],allyswitch:["6E"]}}, + rapidash:{learnset:{agility:["6L37"],attract:["6M"],batonpass:[],bodyslam:[],bounce:["6L45"],captivate:[],doubleedge:[],doubleteam:["6M"],echoedvoice:["6M"],ember:["6L1","6L9"],endure:[],facade:["6M"],fireblast:["6L41","6M"],firespin:["6L25"],flamecharge:["6L21","6M"],flamethrower:["6M"],flamewheel:["6L13"],flareblitz:["6L49"],frustration:["6M"],furyattack:["6L40"],gigaimpact:["6M"],growl:["6L1"],headbutt:[],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],inferno:["6L33"],irontail:[],megahorn:["6L1"],mimic:[],naturalgift:[],overheat:["6M"],poisonjab:["6L1","6M"],protect:["6M"],quickattack:["6L1"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stomp:["6L17"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:[],tailwhip:["6L1","6L4"],takedown:["6L29"],toxic:["6M"],wildcharge:["6M"],willowisp:["6M"],drillrun:[],lowkick:[],confide:["6M"]}}, + slowpoke:{learnset:{amnesia:["6L41"],aquatail:[],attract:["6M"],bellydrum:["6E"],blizzard:["6M"],block:["6E"],bodyslam:[],brine:[],bulldoze:["6M"],calmmind:["6M"],captivate:[],confusion:["6L14"],curse:["6L1"],dig:["6M"],disable:["6L19"],dive:[],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],frustration:["6M"],futuresight:["6E"],grassknot:["6M"],growl:["6L5"],hail:["6M"],headbutt:["6L23"],healpulse:["6L58"],hiddenpower:["6M"],icebeam:["6M"],icywind:[],incinerate:["6M"],irontail:[],lightscreen:["6M"],magiccoat:[],mefirst:["6E"],mimic:[],mudslap:[],mudsport:["6E"],naturalgift:[],nightmare:[],protect:["6M"],psychic:["6L45","6M"],psychup:["6L54","6M"],psyshock:["6M"],raindance:["6L49","6M"],recycle:[],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],scald:["6M"],secretpower:[],shadowball:["6M"],signalbeam:[],skillswap:[],slackoff:["6L36"],sleeptalk:["6M","6E"],snore:["6E"],stomp:["6E"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],telekinesis:[],thunderwave:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],watergun:["6L9"],waterpulse:["6L28"],whirlpool:[],wonderroom:["6E"],yawn:["6L1"],zenheadbutt:["6L32","6E"],afteryou:[],confide:["6M"],belch:["6E"]}}, + slowbro:{learnset:{aerialace:["6M"],amnesia:["6L43"],aquatail:[],attract:["6M"],avalanche:[],blizzard:["6M"],block:[],bodyslam:[],brickbreak:["6M"],brine:[],bulldoze:["6M"],calmmind:["6M"],captivate:[],confusion:["6L14"],counter:[],curse:["6L1"],dig:["6M"],disable:["6L19"],dive:[],doubleedge:[],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],grassknot:["6M"],growl:["6L1","6L5"],hail:["6M"],headbutt:["6L23"],healpulse:["6L1","6L68"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irondefense:[],irontail:[],lightscreen:["6M"],magiccoat:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],protect:["6M"],psychic:["6L49","6M"],psychup:["6L62","6M"],psyshock:["6M"],raindance:["6L55","6M"],recycle:[],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],safeguard:["6M"],scald:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],signalbeam:[],skillswap:[],slackoff:["6L36"],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],telekinesis:[],thunderwave:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],watergun:["6L9"],waterpulse:["6L28"],whirlpool:[],withdraw:["6L37"],yawn:["6L1"],zenheadbutt:["6L32"],foulplay:[],afteryou:[],wonderroom:[],confide:["6M"]}}, + slowking:{learnset:{aquatail:[],attract:["6M"],avalanche:[],blizzard:["6M"],block:[],bodyslam:[],brickbreak:["6M"],brine:[],bulldoze:["6M"],calmmind:["6M"],captivate:[],confusion:["6L14"],counter:[],curse:["6L1"],dig:["6M"],disable:["6L19"],dive:[],doubleedge:[],doubleteam:["6M"],dragontail:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],grassknot:["6M"],growl:["6L5"],hail:["6M"],headbutt:["6L23"],healpulse:["6L1","6L58"],hiddenpower:["6L1","6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irondefense:[],irontail:[],lightscreen:["6M"],magiccoat:[],megakick:[],megapunch:[],mimic:[],mudslap:[],nastyplot:["6L36"],naturalgift:[],nightmare:[],powergem:["6L1"],protect:["6M"],psychic:["6L45","6M"],psychup:["6L54","6M"],psyshock:["6M"],quash:["6M"],raindance:["6M"],recycle:[],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],safeguard:["6M"],scald:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6L41","6M"],swift:[],tackle:["6L1"],telekinesis:[],thunderwave:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],trumpcard:["6L49"],watergun:["6L9"],waterpulse:["6L28"],whirlpool:[],yawn:["6L1"],zenheadbutt:["6L32"],foulplay:[],afteryou:[],wonderroom:[],poweruppunch:["6M"],confide:["6M"]}}, + magnemite:{learnset:{chargebeam:["6M"],discharge:["6L43"],doubleedge:[],doubleteam:["6M"],electroball:["6L32"],endure:[],explosion:["6M"],facade:["6M"],flash:["6M"],flashcannon:["6L35","6M"],frustration:["6M"],gravity:[],gyroball:["6L53","6M"],hiddenpower:["6M"],irondefense:[],lightscreen:["6M"],lockon:["6L46"],magiccoat:[],magnetbomb:["6L18"],magnetrise:["6L49"],metalsound:["6L29"],mimic:[],mirrorshot:["6L25"],naturalgift:[],protect:["6M"],psychup:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],screech:["6L39"],secretpower:[],shockwave:[],signalbeam:[],sleeptalk:["6M"],snore:[],sonicboom:["6L11"],spark:["6L21"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L4"],swagger:["6M"],swift:[],tackle:["6L1"],thunder:["6M"],thunderbolt:["6M"],thundershock:["6L7"],thunderwave:["6L15","6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6M"],zapcannon:["6L57"],electroweb:[],confide:["6M"]}}, + magneton:{learnset:{chargebeam:["6M"],discharge:["6L51"],doubleedge:[],doubleteam:["6M"],electroball:["6L34"],endure:[],explosion:["6M"],facade:["6M"],flash:["6M"],flashcannon:["6L39","6M"],frustration:["6M"],gigaimpact:["6M"],gravity:[],gyroball:["6L67","6M"],hiddenpower:["6M"],hyperbeam:["6M"],irondefense:[],lightscreen:["6M"],lockon:["6L56"],magiccoat:[],magnetbomb:["6L18"],magnetrise:["6L62"],metalsound:["6L29"],mimic:[],mirrorshot:["6L25"],naturalgift:[],protect:["6M"],psychup:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],refresh:[],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],screech:["6L45"],secretpower:[],shockwave:[],signalbeam:[],sleeptalk:["6M"],snore:[],sonicboom:["6L1"],spark:["6L21"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L1","6L4"],swagger:["6M"],swift:[],tackle:["6L1"],thunder:["6M"],thunderbolt:["6M"],thundershock:["6L1","6L7"],thunderwave:["6L15","6M"],toxic:["6M"],triattack:["6L1"],voltswitch:["6M"],wildcharge:["6M"],zapcannon:["6L1","6L73"],electroweb:[],electricterrain:["6L11"],confide:["6M"]}}, + magnezone:{learnset:{barrier:["6L1"],chargebeam:["6M"],discharge:["6L51"],doubleteam:["6M"],electroball:["6L34"],endure:[],explosion:["6M"],facade:["6M"],flash:["6M"],flashcannon:["6L39","6M"],frustration:["6M"],gigaimpact:["6M"],gravity:[],gyroball:["6L67","6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],irondefense:[],ironhead:[],lightscreen:["6M"],lockon:["6L56"],magiccoat:[],magnetbomb:["6L18"],magnetrise:["6L62"],metalsound:["6L29"],mirrorcoat:["6L1"],mirrorshot:["6L25"],naturalgift:[],protect:["6M"],psychup:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],screech:["6L45"],secretpower:[],shockwave:[],signalbeam:[],sleeptalk:["6M"],snore:[],sonicboom:["6L1"],spark:["6L21"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L1","6L4"],swagger:["6M"],swift:[],tackle:["6L1"],thunder:["6M"],thunderbolt:["6M"],thundershock:["6L7"],thunderwave:["6L15","6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6M"],zapcannon:["6L1","6L73"],electroweb:[],magneticflux:["6L1"],electricterrain:["6L11"],confide:["6M"]}}, + farfetchd:{learnset:{acrobatics:["6L37","6M"],aerialace:["6L9","6M"],agility:["6L31"],aircutter:["6L21"],airslash:["6L49"],attract:["6M"],batonpass:[],bodyslam:[],bravebird:["6L1","6L55"],captivate:[],covet:["6E"],curse:["6E"],cut:["6M"],defog:[],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],falseswipe:["6L45","6M"],featherdance:["6E"],feint:["6L43"],flail:["6E"],fly:["6M"],foresight:["6E"],frustration:["6M"],furyattack:["6L7"],furycutter:["6L1"],gust:["6E"],headbutt:[],heatwave:[],hiddenpower:["6M"],irontail:[],knockoff:["6L13"],lastresort:[],leafblade:["6E"],leer:["6L1"],mimic:[],mirrormove:["6E"],mudslap:["6E"],naturalgift:[],nightslash:["6L33","6E"],ominouswind:[],peck:["6L1"],pluck:[],poisonjab:["6L1","6M"],protect:["6M"],psychup:["6M"],quickattack:["6E"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6E"],roost:["6M","6E"],round:["6M"],sandattack:["6L1"],secretpower:[],slash:["6L19"],sleeptalk:["6M"],snore:[],steelwing:["6M","6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6L25","6M"],thief:["6M"],toxic:["6M"],trumpcard:["6E"],twister:[],uproar:[],uturn:["6M"],wish:[],workup:[],yawn:[],tailwind:[],skyattack:[],helpinghand:[],confide:["6M"],simplebeam:["6E"]}}, + doduo:{learnset:{acupressure:["6L28"],aerialace:["6M"],agility:["6L37"],aircutter:[],assurance:["6E"],attract:["6M"],bodyslam:[],bravebird:["6E"],captivate:[],doubleedge:[],doublehit:["6L32"],doubleteam:["6M"],drillpeck:["6L41"],echoedvoice:["6M"],endeavor:["6L46","6E"],endure:[],facade:["6M"],feintattack:["6E"],flail:["6E"],fly:["6M"],frustration:["6M"],furyattack:["6L14"],growl:["6L1"],haze:["6E"],hiddenpower:["6M"],knockoff:[],mimic:[],mirrormove:["6E"],mudslap:[],naturalgift:["6E"],peck:["6L1"],pluck:[],protect:["6M"],pursuit:["6L19"],quickattack:["6L5","6E"],rage:["6L10"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],secretpower:[],skyattack:[],sleeptalk:["6M"],snore:[],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],supersonic:["6E"],swagger:["6M"],swift:[],thief:["6M"],thrash:["6L50"],toxic:["6M"],triattack:[],uproar:["6L23"],workup:[],confide:["6M"]}}, + dodrio:{learnset:{acupressure:["6L28"],aerialace:["6M"],agility:["6L41"],aircutter:[],attract:["6M"],batonpass:[],bodyslam:[],captivate:[],doubleedge:[],doubleteam:["6M"],drillpeck:["6L47"],echoedvoice:["6M"],endeavor:["6L54"],endure:[],facade:["6M"],fly:["6M"],frustration:["6M"],furyattack:["6L14"],gigaimpact:["6M"],growl:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],knockoff:[],mimic:[],mudslap:[],naturalgift:[],payback:["6M"],peck:["6L1"],pluck:["6L1"],protect:["6M"],pursuit:["6L19"],quickattack:["6L1","6L5"],rage:["6L1","6L10"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],secretpower:[],skyattack:[],sleeptalk:["6M"],snore:[],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],taunt:["6M"],thief:["6M"],thrash:["6L60"],torment:["6M"],toxic:["6M"],triattack:["6L34"],uproar:["6L23"],workup:[],confide:["6M"]}}, + seel:{learnset:{aquajet:["6L31"],aquaring:["6L23"],aquatail:["6L43"],attract:["6M"],aurorabeam:["6L27"],blizzard:["6M"],bodyslam:[],brine:["6L33"],captivate:[],disable:["6E"],dive:["6L41"],doubleedge:[],doubleteam:["6M"],echoedvoice:["6M"],encore:["6L13","6E"],endure:[],facade:["6M"],fakeout:["6E"],fling:["6M"],frustration:["6M"],growl:["6L3"],hail:["6L53","6M"],headbutt:["6L1"],helpinghand:[],hiddenpower:["6M"],horndrill:["6E"],icebeam:["6L47","6M"],iceshard:["6L17"],iciclespear:["6E"],icywind:["6L11"],irontail:["6E"],lick:["6E"],mimic:[],naturalgift:[],perishsong:["6E"],protect:["6M"],raindance:["6M"],rest:["6L21","6M"],"return":["6M"],round:["6M"],safeguard:["6L51","6M"],secretpower:[],signalbeam:["6E"],slam:["6E"],sleeptalk:["6M","6E"],snore:[],spitup:["6E"],stockpile:["6E"],substitute:["6M"],surf:["6M"],swagger:["6M"],swallow:["6E"],takedown:["6L37"],thief:["6M"],toxic:["6M"],waterfall:["6M"],waterpulse:["6E"],watersport:["6L7"],whirlpool:[],drillrun:[],confide:["6M"],entrainment:["6E"],belch:["6E"]}}, + dewgong:{learnset:{aquajet:["6L31"],aquaring:["6L23"],aquatail:["6L49"],attract:["6M"],aurorabeam:["6L27"],avalanche:[],blizzard:["6M"],bodyslam:[],brine:["6L33"],captivate:[],dive:["6L45"],doubleedge:[],doubleteam:["6M"],echoedvoice:["6M"],encore:["6L13"],endure:[],facade:["6M"],fling:["6M"],frostbreath:["6M"],frustration:["6M"],gigaimpact:["6M"],growl:["6L1","6L3"],hail:["6L65","6M"],headbutt:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6L55","6M"],iceshard:["6L17"],icywind:["6L1","6L11"],mimic:[],naturalgift:[],protect:["6M"],raindance:["6M"],rest:["6L21","6M"],"return":["6M"],round:["6M"],safeguard:["6L61","6M"],secretpower:[],sheercold:["6L34"],signalbeam:["6L1","6L7"],sleeptalk:["6M"],snore:[],substitute:["6M"],surf:["6M"],swagger:["6M"],takedown:["6L39"],thief:["6M"],toxic:["6M"],waterfall:["6M"],waterpulse:[],whirlpool:[],drillrun:[],irontail:[],confide:["6M"]}}, + grimer:{learnset:{acidarmor:["6L40"],acidspray:["6E"],attract:["6M"],bodyslam:[],captivate:[],curse:["6E"],dig:["6M"],disable:["6L12"],doubleteam:["6M"],dynamicpunch:[],endure:[],explosion:["6M"],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6L29","6M"],frustration:["6M"],gigadrain:[],gunkshot:["6L43"],harden:["6L4"],haze:["6E"],helpinghand:[],hiddenpower:["6M"],icepunch:[],imprison:["6E"],incinerate:["6M"],lick:["6E"],meanlook:["6E"],memento:["6L48"],mimic:[],minimize:["6L18"],mudbomb:["6L21"],mudslap:["6L7"],naturalgift:[],painsplit:[],payback:["6M"],poisongas:["6L1"],poisonjab:["6M"],pound:["6L1"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6E"],screech:["6L32"],secretpower:[],selfdestruct:[],shadowball:["6M"],shadowpunch:["6E"],shadowsneak:["6E"],shockwave:[],sleeptalk:["6M"],sludge:["6L15"],sludgebomb:["6L26","6M"],sludgewave:["6L37","6M"],snore:[],spitup:["6E"],stockpile:["6E"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swallow:["6E"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],torment:["6M"],toxic:["6M"],venoshock:["6M"],belch:["6L46"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + muk:{learnset:{acidarmor:["6L43"],attract:["6M"],block:[],bodyslam:[],brickbreak:["6M"],captivate:[],darkpulse:["6M"],dig:["6M"],disable:["6L12"],doubleteam:["6M"],dynamicpunch:[],endure:[],explosion:["6M"],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6L29","6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],gunkshot:["6L49"],harden:["6L1","6L4"],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],incinerate:["6M"],memento:["6L57"],mimic:[],minimize:["6L18"],mudbomb:["6L21"],mudslap:["6L1","6L7"],naturalgift:[],painsplit:[],payback:["6M"],poisongas:["6L1"],poisonjab:["6M"],pound:["6L1"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],screech:["6L32"],secretpower:[],selfdestruct:[],shadowball:["6M"],shockwave:[],sleeptalk:["6M"],sludge:["6L15"],sludgebomb:["6L26","6M"],sludgewave:["6L37","6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],torment:["6M"],toxic:["6M"],venoshock:["6M"],belch:["6L53"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + shellder:{learnset:{aquaring:["6E"],attract:["6M"],aurorabeam:["6L37"],avalanche:["6E"],barrier:["6E"],blizzard:["6M"],brine:["6L44"],bubblebeam:["6E"],captivate:[],clamp:["6L25"],dive:[],doubleedge:[],doubleteam:["6M"],endure:[],explosion:["6M"],facade:["6M"],frustration:["6M"],hail:["6M"],hiddenpower:["6M"],hydropump:["6L61"],icebeam:["6L52","6M"],iceshard:["6L28"],iciclespear:["6L13","6E"],icywind:[],irondefense:["6L49"],leer:["6L20"],mimic:[],mudshot:["6E"],naturalgift:[],payback:["6M"],protect:["6L16","6M"],raindance:["6M"],rapidspin:["6E"],razorshell:["6L32"],refresh:[],rest:["6M"],"return":["6M"],rockblast:["6E"],round:["6M"],screech:["6E"],secretpower:[],selfdestruct:[],shellsmash:["6L56"],sleeptalk:["6M"],snore:[],substitute:["6M"],supersonic:["6L8"],surf:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],takedown:["6E"],toxic:["6M"],twineedle:["6E"],waterpulse:["6E"],whirlpool:["6L40"],withdraw:["6L4"],confide:["6M"]}}, + cloyster:{learnset:{attract:["6M","6M"],aurorabeam:["6L1"],avalanche:[],blizzard:["6M"],brine:[],captivate:[],dive:[],doubleedge:[],doubleteam:["6M"],endure:[],explosion:["6M"],facade:["6M"],frostbreath:["6M"],frustration:["6M","6M"],gigaimpact:["6M"],hail:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],iciclecrash:["6L50"],iciclespear:[],icywind:[],irondefense:[],mimic:[],naturalgift:[],payback:["6M"],poisonjab:["6M"],protect:["6L1","6M","6M"],raindance:["6M"],rapidspin:[],razorshell:[],rest:["6M"],"return":["6M","6M"],rockblast:[],round:["6M"],secretpower:[],selfdestruct:[],signalbeam:[],sleeptalk:["6M"],snore:[],spikecannon:["6L13"],spikes:["6L28"],substitute:["6M"],supersonic:["6L1"],surf:["6M","6M"],swagger:["6M"],swift:[],torment:["6M"],toxic:["6M","6M"],toxicspikes:["6L1"],waterpulse:[],whirlpool:[],withdraw:["6L1"],hydropump:["6L1"],shellsmash:["6L1"],confide:["6M"]}}, + gastly:{learnset:{astonish:["6E"],attract:["6M"],captivate:[],clearsmog:["6E"],confuseray:["6L19"],curse:["6L12"],darkpulse:["6L36","6M"],destinybond:["6L40"],disable:["6E"],doubleteam:["6M"],dreameater:["6L33","6M"],embargo:["6M"],endure:[],energyball:["6M"],explosion:["6M"],facade:["6M"],firepunch:["6E"],frustration:["6M"],gigadrain:[],grudge:["6E"],haze:["6E"],hex:["6L43"],hiddenpower:["6M"],hypnosis:["6L1"],icepunch:["6E"],icywind:[],knockoff:[],lick:["6L1"],meanlook:["6L8"],mimic:[],naturalgift:[],nightmare:["6L47"],nightshade:["6L15"],ominouswind:[],painsplit:[],payback:["6L26","6M"],perishsong:["6E"],protect:["6M"],psychic:["6M"],psychup:["6M"],psywave:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],scaryface:["6E"],secretpower:[],selfdestruct:[],shadowball:["6L29","6M"],skillswap:[],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:[],smog:["6E"],snatch:[],snore:[],spite:["6L5"],substitute:["6M"],suckerpunch:["6L22"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],thunderbolt:["6M"],thunderpunch:["6E"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],uproar:[],venoshock:["6M"],willowisp:["6M"],foulplay:[],wonderroom:[],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"],reflecttype:["6E"]}}, + haunter:{learnset:{attract:["6M"],captivate:[],confuseray:["6L19"],curse:["6L12"],darkpulse:["6L44","6M"],destinybond:["6L50"],doubleteam:["6M"],dreameater:["6L39","6M"],embargo:["6M"],endure:[],energyball:["6M"],explosion:["6M"],facade:["6M"],firepunch:[],fling:["6M"],frustration:["6M"],gigadrain:[],hex:["6L55"],hiddenpower:["6M"],hypnosis:["6L1"],icepunch:[],icywind:[],knockoff:[],lick:["6L1"],meanlook:["6L8"],mimic:[],naturalgift:[],nightmare:["6L61"],nightshade:["6L15"],ominouswind:[],painsplit:[],payback:["6L28","6M"],poisonjab:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],selfdestruct:[],shadowball:["6L33","6M"],shadowclaw:["6M"],shadowpunch:["6L25"],skillswap:[],sleeptalk:["6M"],sludgebomb:["6M"],snatch:[],snore:[],spite:["6L1","6L5"],substitute:["6M"],suckerpunch:["6L22"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],thunderbolt:["6M"],thunderpunch:[],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],uproar:[],venoshock:["6M"],willowisp:["6M"],foulplay:[],wonderroom:[],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + gengar:{learnset:{attract:["6M"],bodyslam:[],brickbreak:["6M"],captivate:[],confuseray:["6L19"],counter:[],curse:["6L12"],darkpulse:["6L44","6M"],destinybond:["6L50"],doubleedge:[],doubleteam:["6M"],drainpunch:[],dreameater:["6L39","6M"],dynamicpunch:[],embargo:["6M"],endure:[],energyball:["6M"],explosion:["6M"],facade:["6M"],firepunch:[],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],headbutt:[],hex:["6L55"],hiddenpower:["6M"],hyperbeam:["6M"],hypnosis:["6L1"],icepunch:[],icywind:[],knockoff:[],lick:["6L1"],meanlook:["6L8"],megakick:[],megapunch:[],metronome:[],mimic:[],naturalgift:[],nightmare:["6L61"],nightshade:["6L15"],ominouswind:[],painsplit:[],payback:["6L28","6M"],poisonjab:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],roleplay:[],round:["6M"],secretpower:[],seismictoss:[],selfdestruct:[],shadowball:["6L33","6M"],shadowclaw:["6M"],shadowpunch:["6L25"],skillswap:[],sleeptalk:["6M"],sludgebomb:["6M"],snatch:[],snore:[],spite:["6L1","6L5"],strength:["6M"],substitute:["6M"],suckerpunch:["6L22"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],uproar:[],venoshock:["6M"],willowisp:["6M"],foulplay:[],wonderroom:[],infestation:["6M"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + onix:{learnset:{ancientpower:[],attract:["6M"],bind:["6L1"],block:["6E"],bodyslam:[],bulldoze:["6M"],captivate:[],curse:["6L4"],defensecurl:["6E"],dig:["6L43","6M"],doubleedge:["6L49"],doubleteam:["6M"],dragonbreath:["6L25"],dragonpulse:[],dragontail:["6M"],earthpower:[],earthquake:["6M"],endure:[],explosion:["6M"],facade:["6M"],flail:["6E"],flashcannon:["6M"],frustration:["6M"],gyroball:["6M"],harden:["6L1"],headbutt:[],heavyslam:["6E"],hiddenpower:["6M"],ironhead:[],irontail:["6L40"],mimic:[],mudslap:[],mudsport:["6L1"],naturalgift:[],payback:["6M"],protect:["6M"],psychup:["6M"],rage:["6L13"],rest:["6M"],"return":["6M"],roar:["6M"],rockblast:["6E"],rockclimb:["6E"],rockpolish:["6L19","6M"],rockslide:["6L34","6M"],rocksmash:["6M"],rockthrow:["6L7"],rocktomb:["6L10","6M"],rollout:["6E"],round:["6M"],sandstorm:["6L52","6M"],sandtomb:["6L37"],screech:["6L31"],secretpower:[],selfdestruct:[],slam:["6L28"],sleeptalk:["6M"],smackdown:["6L22","6M"],snore:[],stealthrock:["6L16","6E"],stoneedge:["6L46","6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],taunt:["6M"],torment:["6M"],toxic:["6M"],twister:[],naturepower:["6M"],confide:["6M"]}}, + steelix:{learnset:{ancientpower:[],aquatail:[],attract:["6M"],autotomize:["6L19"],bind:["6L1"],block:[],bodyslam:[],bulldoze:["6M"],captivate:[],crunch:["6L37"],curse:["6L4"],cut:["6M"],darkpulse:["6M"],defensecurl:[],dig:["6L43","6M"],doubleedge:["6L49"],doubleteam:["6M"],dragonbreath:["6L25"],dragonpulse:[],dragontail:["6M"],earthpower:[],earthquake:["6M"],endure:[],explosion:["6M"],facade:["6M"],firefang:["6L1"],flashcannon:["6M"],frustration:["6M"],gigaimpact:["6M"],gyroball:["6L20","6M"],harden:["6L1"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icefang:["6L1"],ironhead:[],irontail:["6L40"],magnetrise:[],mimic:[],mudslap:[],mudsport:["6L1"],naturalgift:[],payback:["6M"],protect:["6M"],psychup:["6M"],rage:["6L13"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockpolish:["6M"],rockslide:["6L34","6M"],rocksmash:["6M"],rockthrow:["6L7"],rocktomb:["6L10","6M"],rollout:[],round:["6M"],sandstorm:["6L52","6M"],screech:["6L31"],secretpower:[],selfdestruct:[],slam:["6L28"],sleeptalk:["6M"],smackdown:["6L22","6M"],snore:[],stealthrock:["6L16"],stoneedge:["6L46","6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],taunt:["6M"],thunderfang:["6L1"],torment:["6M"],toxic:["6M"],twister:[],naturepower:["6M"],confide:["6M"]}}, + drowzee:{learnset:{assist:["6E"],attract:["6M"],barrier:["6E"],bellydrum:[],bodyslam:[],brickbreak:["6M"],calmmind:["6M"],captivate:[],confusion:["6L9"],counter:[],disable:["6L5"],doubleedge:[],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],endure:[],facade:["6M"],firepunch:["6E"],flash:["6M"],flatter:["6E"],fling:["6M"],focuspunch:[],frustration:["6M"],futuresight:["6L61"],grassknot:["6M"],guardswap:["6E"],headbutt:["6L13","6L29"],hiddenpower:["6M"],hypnosis:["6L1"],icepunch:["6E"],lightscreen:["6M"],lowkick:[],lowsweep:["6M"],magiccoat:[],meditate:["6L21"],megakick:[],megapunch:[],metronome:[],mimic:[],nastyplot:["6L53","6E"],naturalgift:[],nightmare:[],poisongas:["6L17"],pound:["6L1"],protect:["6M"],psybeam:["6L25"],psychic:["6L49","6M"],psychocut:["6E"],psychup:["6L33","6M"],psyshock:["6L57","6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],roleplay:["6E"],round:["6M"],safeguard:["6M"],secretpower:["6E"],seismictoss:[],shadowball:["6M"],signalbeam:[],skillswap:["6E"],sleeptalk:["6M"],snatch:[],snore:[],substitute:["6M"],sunnyday:["6M"],swagger:["6L45","6M"],synchronoise:["6L37"],taunt:["6M"],telekinesis:[],thief:["6M"],thunderpunch:["6E"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],wish:[],zenheadbutt:["6L41"],foulplay:[],magicroom:[],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + hypno:{learnset:{attract:["6M"],batonpass:[],bodyslam:[],brickbreak:["6M"],calmmind:["6M"],captivate:[],confusion:["6L1","6L9"],counter:[],disable:["6L1","6L5"],doubleedge:[],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],endure:[],facade:["6M"],firepunch:[],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],futuresight:["6L1","6L61"],gigaimpact:["6M"],grassknot:["6M"],headbutt:["6L13","6L29"],hiddenpower:["6M"],hyperbeam:["6M"],hypnosis:["6L1"],icepunch:[],lightscreen:["6M"],lowkick:[],lowsweep:["6M"],magiccoat:[],meditate:["6L21"],megakick:[],megapunch:[],metronome:[],mimic:[],nastyplot:["6L1","6L53"],naturalgift:[],nightmare:["6L1"],poisongas:["6L17"],pound:["6L1"],protect:["6M"],psybeam:["6L25"],psychic:["6L49","6M"],psychup:["6L33","6M"],psyshock:["6L57","6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],roleplay:[],round:["6M"],safeguard:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],signalbeam:[],skillswap:[],sleeptalk:["6M"],snatch:[],snore:[],substitute:["6M"],sunnyday:["6M"],swagger:["6L45","6M"],switcheroo:["6L1"],synchronoise:["6L37"],taunt:["6M"],telekinesis:[],thief:["6M"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],zenheadbutt:["6L41"],foulplay:[],magicroom:[],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + krabby:{learnset:{agility:["6E"],amnesia:["6E"],ancientpower:["6E"],attract:["6M"],bide:["6E"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],brine:["6L39"],bubble:["6L1"],bubblebeam:["6L15"],captivate:[],chipaway:["6E"],crabhammer:["6L41"],cut:["6M"],dig:["6M"],dive:[],doubleedge:[],doubleteam:["6M"],endure:["6E"],facade:["6M"],falseswipe:["6M"],flail:["6L45","6E"],fling:["6M"],frustration:["6M"],furycutter:[],guillotine:["6L31"],hail:["6M"],harden:["6L11"],haze:["6E"],hiddenpower:["6M"],honeclaws:["6M"],icebeam:["6M"],icywind:[],irondefense:[],knockoff:["6E"],leer:["6L9"],metalclaw:["6L21"],mimic:[],mudshot:["6L19"],mudslap:[],mudsport:["6L1"],naturalgift:[],protect:["6L29","6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],secretpower:[],slam:["6L35","6E"],sleeptalk:["6M"],snore:[],stomp:["6L25"],strength:["6M"],substitute:["6M"],superpower:[],surf:["6M"],swagger:["6M"],swordsdance:["6M"],thief:["6M"],tickle:["6E"],toxic:["6M"],vicegrip:["6L5"],waterpulse:[],whirlpool:[],xscissor:["6M"],confide:["6M"]}}, + kingler:{learnset:{ancientpower:[],attract:["6M"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],brine:["6L51"],bubble:["6L1"],bubblebeam:["6L15"],captivate:[],crabhammer:["6L56"],cut:["6M"],dig:["6M"],dive:[],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],falseswipe:["6M"],flail:["6L63"],fling:["6M"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],guillotine:["6L37"],hail:["6M"],harden:["6L11"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],irondefense:[],knockoff:[],leer:["6L1","6L9"],metalclaw:["6L21"],mimic:[],mudshot:["6L19"],mudslap:[],mudsport:["6L1"],naturalgift:[],protect:["6L32","6M"],quash:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],secretpower:[],slam:["6L44"],sleeptalk:["6M"],snore:[],stomp:["6L25"],strength:["6M"],substitute:["6M"],superpower:[],surf:["6M"],swagger:["6M"],swordsdance:["6M"],thief:["6M"],toxic:["6M"],vicegrip:["6L1","6L5"],waterpulse:[],whirlpool:[],wideguard:["6L1"],xscissor:["6M"],confide:["6M"]}}, + voltorb:{learnset:{charge:["6L1"],chargebeam:["6L22","6M"],doubleteam:["6M"],electroball:["6L29"],endure:[],explosion:["6L47","6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gyroball:["6L43","6M"],headbutt:[],hiddenpower:["6M"],lightscreen:["6L26","6M"],magiccoat:[],magnetrise:["6L40"],mimic:[],mirrorcoat:["6L50"],naturalgift:[],protect:["6M"],raindance:["6M"],refresh:[],rest:["6M"],"return":["6M"],rollout:["6L15"],round:["6M"],screech:["6L19"],secretpower:[],selfdestruct:["6L33"],shockwave:[],signalbeam:[],sleeptalk:["6M"],snore:[],sonicboom:["6L8"],spark:["6L12"],substitute:["6M"],suckerpunch:[],swagger:["6M"],swift:["6L36"],tackle:["6L5"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6M"],foulplay:[],eerieimpulse:["6L10"],confide:["6M"]}}, + electrode:{learnset:{charge:["6L1"],chargebeam:["6L22","6M"],doubleteam:["6M"],electroball:["6L29"],endure:[],explosion:["6L57","6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],gyroball:["6L51","6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],lightscreen:["6L26","6M"],magiccoat:[],magnetrise:["6L46"],mimic:[],mirrorcoat:["6L62"],naturalgift:[],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rollout:["6L15"],round:["6M"],screech:["6L19"],secretpower:[],selfdestruct:["6L35"],shockwave:[],signalbeam:[],sleeptalk:["6M"],snore:[],sonicboom:["6L1"],spark:["6L1","6L12"],substitute:["6M"],suckerpunch:[],swagger:["6M"],swift:["6L40"],tackle:["6L1","6L5"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6M"],foulplay:[],magneticflux:["6L1"],eerieimpulse:["6L8"],confide:["6M"]}}, + exeggcute:{learnset:{ancientpower:["6E"],attract:["6M"],barrage:["6L1"],bestow:["6L50"],block:["6E"],bulletseed:["6L17"],captivate:[],confusion:["6L27"],curse:["6E"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],endure:[],energyball:["6M"],explosion:["6M"],extrasensory:["6L47"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:["6E"],grassknot:["6M"],gravity:[],hiddenpower:["6M"],hypnosis:["6L1"],ingrain:["6E"],leafstorm:["6E"],leechseed:["6L11"],lightscreen:["6M"],luckychant:["6E"],mimic:[],moonlight:["6E"],naturalgift:["6L37","6E"],naturepower:["6M","6E"],nightmare:[],poisonpowder:["6L21"],powerswap:["6E"],protect:["6M"],psychic:["6M"],psychup:["6M"],reflect:["6L7","6M"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],secretpower:[],seedbomb:[],selfdestruct:[],skillswap:["6E"],sleeppowder:["6L23"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6L43","6M"],strength:["6M"],stunspore:["6L19"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:[],swordsdance:["6M"],synthesis:["6E"],telekinesis:[],thief:["6M"],toxic:["6M"],trickroom:["6M"],uproar:["6L1"],wish:[],worryseed:["6L33"],rockslide:["6M"],infestation:["6M"],confide:["6M"],grassyterrain:["6E"]}}, + exeggutor:{learnset:{ancientpower:[],attract:["6M"],barrage:["6L1"],bulletseed:[],captivate:[],confusion:["6L1"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],eggbomb:["6L27"],endure:[],energyball:["6M"],explosion:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],gravity:[],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],hypnosis:["6L1"],leafstorm:["6L47"],lightscreen:["6M"],lowkick:[],mimic:[],naturalgift:[],nightmare:[],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6L17","6M"],reflect:["6M"],refresh:[],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],secretpower:[],seedbomb:["6L1"],selfdestruct:[],skillswap:[],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],stomp:["6L1"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],synthesis:[],telekinesis:[],thief:["6M"],toxic:["6M"],trickroom:["6M"],woodhammer:["6L37"],worryseed:[],zenheadbutt:[],block:[],rockslide:["6M"],infestation:["6M"],naturepower:["6M"],confide:["6M"]}}, + cubone:{learnset:{aerialace:["6M"],ancientpower:["6E"],attract:["6M"],bellydrum:["6E"],blizzard:["6M"],bodyslam:[],boneclub:["6L7"],bonemerang:["6L21"],bonerush:["6L37"],brickbreak:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6E"],counter:[],detect:["6E"],dig:["6M"],doubleedge:["6L43"],doublekick:["6E"],doubleteam:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6M"],echoedvoice:["6M"],endeavor:["6L41"],endure:["6E"],facade:["6M"],falseswipe:["6L27","6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6L33","6M"],focusenergy:["6L17"],focuspunch:[],frustration:["6M"],furycutter:[],growl:["6L1"],headbutt:["6L11"],hiddenpower:["6M"],icebeam:["6M"],icywind:[],incinerate:["6M"],irondefense:[],ironhead:["6E"],irontail:[],knockoff:[],leer:["6L13"],lowkick:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],perishsong:["6E"],protect:["6M"],rage:["6L23"],rest:["6M"],retaliate:["6L47","6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],screech:["6E"],secretpower:[],seismictoss:[],skullbash:["6E"],sleeptalk:["6M"],smackdown:["6M"],snore:[],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],tailwhip:["6L3"],thief:["6M"],thrash:["6L31"],thunderpunch:[],toxic:["6M"],uproar:[],poweruppunch:["6M"],confide:["6M"],playrough:["6E"]}}, + marowak:{learnset:{aerialace:["6M"],attract:["6M"],blizzard:["6M"],bodyslam:[],boneclub:["6L1","6L7"],bonemerang:["6L21"],bonerush:["6L43"],brickbreak:["6M"],bulldoze:[],captivate:[],counter:[],dig:["6M"],doubleedge:["6L53"],doubleteam:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6M"],echoedvoice:["6M"],endeavor:["6L49"],endure:[],facade:["6M"],falseswipe:["6L27","6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6L37"],focusblast:["6M"],focusenergy:["6L17"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:[],growl:["6L1"],headbutt:["6L1","6L11"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],incinerate:[],irondefense:[],irontail:[],knockoff:[],leer:["6L13"],lowkick:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],outrage:[],protect:["6M"],rage:["6L23"],rest:["6M"],retaliate:["6L59"],"return":["6M"],rockclimb:[],rockslide:[],rocksmash:[],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:[],sing:[],sleeptalk:[],smackdown:["6M"],snore:[],stealthrock:[],stoneedge:[],strength:[],substitute:[],sunnyday:["6M"],swagger:[],swordsdance:[],tailwhip:["6L1","6L3"],thief:["6M"],thrash:["6L33"],thunderpunch:[],toxic:["6M"],uproar:[],ironhead:[]}}, + tyrogue:{learnset:{attract:["6M"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],bulletpunch:["6E"],captivate:[],counter:["6E"],doubleedge:[],doubleteam:["6M"],earthquake:["6M"],endure:["6E"],facade:["6M"],fakeout:["6L1"],feint:["6E"],foresight:["6L1"],frustration:["6M"],headbutt:[],helpinghand:["6L1","6E"],hiddenpower:["6M"],highjumpkick:["6E"],lowkick:[],lowsweep:["6M"],machpunch:["6E"],megakick:[],mimic:[],mindreader:["6E"],mudslap:[],naturalgift:[],protect:["6M"],pursuit:["6E"],raindance:["6M"],rapidspin:["6E"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],roleplay:[],round:["6M"],secretpower:[],seismictoss:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],thief:["6M"],toxic:["6M"],uproar:[],vacuumwave:["6E"],workup:[],covet:[],confide:["6M"]}}, + hitmonlee:{learnset:{attract:["6M"],blazekick:["6L45"],bodyslam:[],bounce:[],brickbreak:["6L17","6M"],bulkup:["6M"],bulldoze:["6M"],captivate:[],closecombat:["6L1","6L57"],counter:[],doubleedge:[],doublekick:["6L1"],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],endure:["6L49"],facade:["6M"],feint:["6L25"],fling:["6M"],focusblast:["6M"],focusenergy:["6L21"],focuspunch:[],foresight:["6L37"],frustration:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],highjumpkick:["6L29"],jumpkick:["6L13"],knockoff:[],lowkick:[],lowsweep:["6M"],meditate:["6L5"],megakick:["6L1","6L53"],megapunch:[],metronome:[],mimic:[],mindreader:["6L33"],mudslap:[],naturalgift:[],poisonjab:["6M"],protect:["6M"],raindance:["6M"],refresh:[],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L1"],reversal:["6L1","6L61"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],rollingkick:["6L9"],round:["6M"],secretpower:[],seismictoss:[],sleeptalk:["6M"],snore:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],superpower:[],swagger:["6M"],swift:[],thief:["6M"],toxic:["6M"],vacuumwave:[],wideguard:["6L41"],workup:[],covet:[],poweruppunch:["6M"],confide:["6M"]}}, + hitmonchan:{learnset:{agility:["6L6"],attract:["6M"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],bulletpunch:["6L16"],captivate:[],closecombat:["6L1","6L66"],cometpunch:["6L1"],counter:["6L1","6L61"],detect:["6L50"],doubleedge:[],doubleteam:["6M"],drainpunch:[],dynamicpunch:[],earthquake:["6M"],endure:[],facade:["6M"],feint:["6L21"],firepunch:["6L36"],fling:["6M"],focusblast:["6M"],focuspunch:["6L1","6L56"],frustration:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],icepunch:["6L36"],lowkick:[],lowsweep:["6M"],machpunch:["6L16"],megakick:[],megapunch:["6L46"],metronome:[],mimic:[],mindreader:[],mudslap:[],naturalgift:[],protect:["6M"],pursuit:["6L11"],quickguard:["6L31"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L1"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],secretpower:[],seismictoss:[],skyuppercut:["6L41"],sleeptalk:["6M"],snore:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],thief:["6M"],thunderpunch:["6L36"],toxic:["6M"],vacuumwave:["6L26"],workup:[],covet:[],poweruppunch:["6M"],confide:["6M"]}}, + hitmontop:{learnset:{aerialace:["6M"],agility:["6L37"],attract:["6M"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],captivate:[],closecombat:["6L1","6L55"],counter:["6L28"],detect:["6L50"],dig:["6M"],doubleedge:[],doubleteam:["6M"],earthquake:["6M"],endeavor:["6L1","6L60"],endure:[],facade:["6M"],fakeout:[],feint:["6L33"],focusenergy:["6L6"],foresight:[],frustration:["6M"],gyroball:["6L42","6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],lowkick:[],lowsweep:["6M"],machpunch:[],megakick:[],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],pursuit:["6L10"],quickattack:["6L15"],quickguard:["6L46"],raindance:["6M"],rapidspin:["6L24"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L1"],rockslide:["6M"],rocksmash:["6M"],roleplay:[],rollingkick:["6L1"],rollout:[],round:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:[],sleeptalk:["6M"],snore:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swift:[],thief:["6M"],toxic:["6M"],triplekick:["6L19"],twister:[],vacuumwave:[],wideguard:["6L46"],workup:[],covet:[],drillrun:[],confide:["6M"]}}, + lickitung:{learnset:{amnesia:["6E"],aquatail:[],attract:["6M"],bellydrum:["6E"],blizzard:["6M"],bodyslam:["6E"],brickbreak:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L37"],counter:[],curse:["6E"],cut:["6M"],defensecurl:["6L9"],dig:["6M"],disable:["6L25"],doubleedge:[],doubleteam:["6M"],dragontail:["6M"],dreameater:["6M"],dynamicpunch:[],earthquake:["6M"],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],hammerarm:["6E"],headbutt:[],healbell:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irontail:[],knockoff:["6L13"],lick:["6L1"],magnitude:["6E"],mefirst:["6L41"],megakick:[],megapunch:[],mimic:[],muddywater:["6E"],mudslap:[],naturalgift:[],nightmare:[],powerwhip:["6L53"],protect:["6M"],psychup:["6M"],raindance:["6M"],refresh:["6L45"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L33"],round:["6M"],sandstorm:["6M"],screech:["6L49"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],slam:["6L29"],sleeptalk:["6M","6E"],smellingsalts:["6E"],snore:["6E"],solarbeam:["6M"],stomp:["6L21"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L5"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],waterpulse:[],whirlpool:[],wish:[],workup:[],wrap:["6L17"],wringout:["6L57"],zenheadbutt:["6E"],bind:[],poweruppunch:["6M"],confide:["6M"],belch:["6E"]}}, + lickilicky:{learnset:{aquatail:[],attract:["6M"],blizzard:["6M"],block:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L37"],cut:["6M"],defensecurl:["6L9"],dig:["6M"],disable:["6L25"],doubleteam:["6M"],dragontail:["6M"],dreameater:["6M"],earthquake:["6M"],endure:[],explosion:["6M"],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],gyroball:["6L61","6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irontail:[],knockoff:["6L13"],lick:["6L1"],mefirst:["6L41"],mudslap:[],naturalgift:[],powerwhip:["6L1","6L53"],protect:["6M"],psychup:["6M"],raindance:["6M"],refresh:["6L45"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L33"],round:["6M"],sandstorm:["6M"],screech:["6L49"],secretpower:[],shadowball:["6M"],shockwave:[],slam:["6L29"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stomp:["6L21"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L5"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],waterpulse:[],whirlpool:[],workup:[],wrap:["6L17"],wringout:["6L1","6L57"],zenheadbutt:[],bind:[],poweruppunch:["6M"],confide:["6M"]}}, + koffing:{learnset:{assurance:["6L0"],attract:["6M"],captivate:[],clearsmog:["6L0"],curse:["6E"],darkpulse:[],destinybond:["6E"],doubleteam:["6M"],endure:[],explosion:["6M"],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],frustration:["6M"],grudge:["6E"],gyroball:["6M"],haze:["6L0"],hiddenpower:["6M"],incinerate:["6M"],memento:["6L0"],mimic:[],naturalgift:[],painsplit:["6E"],payback:["6M"],poisongas:["6L0"],protect:["6M"],psybeam:["6E"],psywave:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],screech:["6E"],secretpower:[],selfdestruct:["6L0"],shadowball:["6M"],shockwave:[],sleeptalk:["6M"],sludge:["6L0"],sludgebomb:["6M"],sludgewave:[],smog:["6L0"],smokescreen:["6L0"],snore:[],spite:["6E"],spitup:["6E"],stockpile:["6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swallow:["6E"],tackle:["6L0"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],torment:["6M"],toxic:["6M"],uproar:[],venoshock:["6M"],willowisp:["6M"]}}, + weezing:{learnset:{assurance:["6L0"],attract:["6M"],captivate:[],clearsmog:["6L0"],darkpulse:[],destinybond:["6L0"],doublehit:["6L0"],doubleteam:["6M"],endure:[],explosion:["6M"],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],gyroball:["6M"],haze:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],memento:["6L0"],mimic:[],mudslap:[],naturalgift:[],painsplit:[],payback:["6M"],poisongas:["6L0"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],secretpower:[],selfdestruct:["6L0"],shadowball:["6M"],shockwave:[],sleeptalk:["6M"],sludge:["6L0"],sludgebomb:["6M"],smog:["6L0"],smokescreen:["6L0"],snore:[],spite:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L0"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],torment:["6M"],toxic:["6M"],uproar:[],venoshock:["6M"],willowisp:["6M"]}}, + rhyhorn:{learnset:{ancientpower:[],aquatail:[],attract:["6M"],blizzard:["6M"],bodyslam:[],bulldoze:["6L30","6M"],captivate:[],chipaway:["6L34"],counter:["6E"],crunch:["6E"],crushclaw:["6E"],curse:["6E"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dragonpulse:[],dragonrush:["6E"],drillrun:["6L45"],earthpower:[],earthquake:["6L56","6M"],endeavor:[],endure:[],facade:["6M"],fireblast:["6M"],firefang:["6E"],flamethrower:["6M"],frustration:["6M"],furyattack:["6L12"],headbutt:[],hiddenpower:["6M"],hornattack:["6L1"],horndrill:["6L63"],icebeam:["6M"],icefang:["6E"],icywind:[],incinerate:["6M"],irontail:["6E"],magnitude:["6E"],megahorn:["6L67"],mimic:[],mudslap:[],naturalgift:[],payback:["6M"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],reversal:["6E"],roar:["6M"],rockblast:["6L23"],rockclimb:["6E"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],sandstorm:["6M"],scaryface:["6L19"],secretpower:[],shockwave:[],skullbash:["6E"],sleeptalk:["6M"],snore:[],spite:[],stealthrock:[],stomp:["6L8"],stoneedge:["6L52","6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],swordsdance:["6M"],tailwhip:["6L1"],takedown:["6L41"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderfang:["6E"],toxic:["6M"],uproar:[],confide:["6M"],metalburst:["6E"],rototiller:["6E"]}}, + rhydon:{learnset:{ancientpower:[],aquatail:[],attract:["6M"],avalanche:[],blizzard:["6M"],block:[],bodyslam:[],brickbreak:["6M"],bulldoze:["6L30","6M"],captivate:[],chipaway:["6L34"],counter:[],cut:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dragonpulse:[],dragontail:["6M"],drillrun:["6L47"],dynamicpunch:[],earthpower:[],earthquake:["6L62","6M"],endeavor:[],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furyattack:["6L1","6L12"],furycutter:[],gigaimpact:["6M"],hammerarm:["6L42"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hornattack:["6L1"],horndrill:["6L1","6L71"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irontail:[],megahorn:["6L1","6L77"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],outrage:[],payback:["6M"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockblast:["6L23"],rockclimb:[],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],sandstorm:["6M"],scaryface:["6L19"],secretpower:[],seismictoss:[],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],spite:[],stealthrock:[],stomp:["6L1","6L9"],stoneedge:["6L56","6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],surf:["6M"],swagger:["6M"],swordsdance:["6M"],tailwhip:["6L1"],takedown:["6L41"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],uproar:[],whirlpool:[],poweruppunch:["6M"],confide:["6M"]}}, + rhyperior:{learnset:{ancientpower:[],aquatail:[],attract:["6M"],avalanche:[],blizzard:["6M"],block:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L30"],cut:["6M"],dig:["6M"],doubleteam:["6M"],dragonpulse:[],dragontail:["6M"],drillrun:["6L47"],earthpower:[],earthquake:["6L62","6M"],endeavor:[],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],flashcannon:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furyattack:["6L1","6L19"],furycutter:[],gigaimpact:["6M"],hammerarm:["6L42"],headbutt:[],hiddenpower:["6M"],hornattack:["6L1"],horndrill:["6L1","6L71"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],ironhead:[],irontail:[],megahorn:["6L1","6L77"],mudslap:[],naturalgift:[],outrage:[],payback:["6M"],poisonjab:["6L1","6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockblast:["6L23"],rockclimb:[],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rockwrecker:["6L1","6L86"],rollout:[],round:["6M"],sandstorm:["6M"],scaryface:["6L19"],secretpower:[],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],spite:[],stealthrock:[],stomp:["6L1","6L9"],stoneedge:["6L56","6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],surf:["6M"],swagger:["6M"],swordsdance:["6M"],tailwhip:["6L1"],takedown:["6L41"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],uproar:[],whirlpool:[],poweruppunch:["6M"],confide:["6M"]}}, + happiny:{learnset:{aromatherapy:["6E"],attract:["6M"],captivate:[],charm:["6L1"],copycat:["6L5"],counter:["6E"],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],echoedvoice:["6M"],endeavor:[],endure:["6E"],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],grassknot:["6M"],gravity:["6E"],hail:["6M"],headbutt:[],healbell:["6E"],helpinghand:["6E"],hiddenpower:["6M"],icywind:[],incinerate:["6M"],lastresort:["6E"],lightscreen:["6M"],metronome:["6E"],mudbomb:["6E"],mudslap:[],naturalgift:["6E"],pound:["6L1"],present:["6E"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],recycle:[],refresh:["6L9"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetkiss:["6L12"],thunderwave:["6M"],toxic:["6M"],uproar:[],waterpulse:[],workup:[],zenheadbutt:[],covet:[],hypervoice:[],confide:["6M"],seismictoss:["6E"]}}, + chansey:{learnset:{aromatherapy:["6E"],attract:["6M"],bestow:["6L20"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],counter:["6E"],defensecurl:["6L1"],doubleedge:["6L1","6L54"],doubleslap:["6L12"],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],earthquake:["6M"],echoedvoice:["6M"],eggbomb:["6L42"],endeavor:[],endure:["6E"],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],flash:["6M"],fling:["6L34","6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gravity:["6E"],growl:["6L1"],hail:["6M"],headbutt:[],healbell:["6E"],healingwish:["6L50"],healpulse:["6L38"],helpinghand:["6E"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irontail:[],lastresort:["6E"],lightscreen:["6L46","6M"],megakick:[],megapunch:[],metronome:["6E"],mimic:[],minimize:["6L23"],mudbomb:["6E"],mudslap:[],naturalgift:["6E"],pound:["6L1"],present:["6E"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],recycle:[],refresh:["6L9"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:["6E"],shadowball:["6M"],shockwave:[],sing:["6L31"],skillswap:[],sleeptalk:["6M"],snatch:[],snore:[],softboiled:["6L16"],solarbeam:["6M"],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetkiss:[],sweetscent:[],tailwhip:["6L5"],takedown:["6L27"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],waterpulse:[],wildcharge:["6M"],wish:[],workup:[],zenheadbutt:[],covet:[],hypervoice:[],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + blissey:{learnset:{attract:["6M"],avalanche:[],bestow:["6L20"],blizzard:["6M"],block:[],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],counter:[],defensecurl:["6L1"],doubleedge:["6L1","6L54"],doubleslap:["6L12"],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],earthquake:["6M"],echoedvoice:["6M"],eggbomb:["6L42"],endeavor:[],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],flash:["6M"],fling:["6L34","6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gravity:[],growl:["6L1"],hail:["6M"],headbutt:[],healbell:[],healingwish:["6L50"],healpulse:["6L38"],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irontail:[],lastresort:[],lightscreen:["6L46","6M"],megakick:[],megapunch:[],metronome:[],mimic:[],minimize:["6L23"],mudslap:[],naturalgift:[],pound:["6L1"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],recycle:[],refresh:["6L9"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],sing:["6L31"],skillswap:[],sleeptalk:["6M"],snatch:[],snore:[],softboiled:["6L16"],solarbeam:["6M"],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tailwhip:["6L5"],takedown:["6L27"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],waterpulse:[],wildcharge:["6M"],workup:[],zenheadbutt:[],covet:[],hypervoice:[],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + tangela:{learnset:{absorb:["6L10"],amnesia:["6E"],ancientpower:["6L38"],attract:["6M"],bind:["6L17"],bodyslam:[],bulletseed:[],captivate:[],confusion:["6E"],constrict:["6L1"],cut:["6M"],doubleedge:[],doubleteam:["6M"],endeavor:["6E"],endure:[],energyball:["6M"],facade:["6M"],flail:["6E"],flash:["6M"],frustration:["6M"],gigadrain:["6L36","6E"],gigaimpact:["6M"],grassknot:["6M"],growth:["6L20"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],ingrain:["6L1"],knockoff:["6L27"],leafstorm:["6E"],leechseed:["6E"],megadrain:["6L23","6E"],mimic:[],morningsun:[],naturalgift:["6L33","6E"],naturepower:["6E"],painsplit:[],poisonpowder:["6L14"],powerswap:["6E"],powerwhip:["6L50"],protect:["6M"],psychup:["6M"],ragepowder:["6E"],reflect:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],secretpower:[],seedbomb:[],shockwave:[],slam:["6L41"],sleeppowder:["6L4"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],stunspore:["6L30"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],synthesis:[],thief:["6M"],tickle:["6L44"],toxic:["6M"],vinewhip:["6L7"],worryseed:[],wringout:["6L46"],grassyterrain:["6L48"],infestation:["6M"],confide:["6M"]}}, + tangrowth:{learnset:{absorb:["6L10"],aerialace:["6M"],ancientpower:["6L40"],attract:["6M"],bind:["6L17"],block:["6L1","6L56"],brickbreak:["6M"],bulldoze:["6M"],bulletseed:[],captivate:[],constrict:["6L1"],cut:["6M"],doubleteam:["6M"],earthquake:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],gigadrain:["6L36"],gigaimpact:["6M"],grassknot:["6M"],growth:["6L20"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],ingrain:["6L1"],knockoff:["6L27"],megadrain:["6L23"],mudslap:[],naturalgift:["6L33"],painsplit:[],payback:["6M"],poisonjab:["6M"],poisonpowder:["6L14"],powerwhip:["6L53"],protect:["6M"],psychup:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],secretpower:[],seedbomb:[],shockwave:[],slam:["6L43"],sleeppowder:["6L4"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],stunspore:["6L30"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],synthesis:[],thief:["6M"],tickle:["6L46"],toxic:["6M"],vinewhip:["6L7"],worryseed:[],wringout:["6L49"],endeavor:[],grassyterrain:["6L50"],infestation:["6M"],naturepower:["6M"],confide:["6M"]}}, + kangaskhan:{learnset:{aerialace:["6M"],aquatail:[],attract:["6M"],avalanche:[],bite:["6L13"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L31"],circlethrow:["6E"],cometpunch:["6L1"],counter:["6E"],crunch:["6L37"],crushclaw:["6E"],cut:["6M"],dig:["6M"],disable:["6E"],dizzypunch:["6L34"],doubleedge:["6E"],doublehit:["6L19"],doubleteam:["6M"],drainpunch:[],dynamicpunch:[],earthquake:["6M"],endeavor:["6E"],endure:["6L43"],facade:["6M"],fakeout:["6L7"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focusenergy:["6E"],focuspunch:["6E"],foresight:["6E"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],hail:["6M"],hammerarm:["6E"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irontail:[],knockoff:[],leer:["6L1"],lowkick:[],megakick:[],megapunch:["6L25"],mimic:[],mudslap:[],naturalgift:[],outrage:["6L46"],protect:["6M"],rage:["6L22"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],reversal:["6L50"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],sing:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],spite:[],stomp:["6E"],strength:["6M"],substitute:["6M"],suckerpunch:["6L49"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],tailwhip:["6L10"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],trumpcard:["6E"],uproar:["6E"],waterpulse:[],whirlpool:[],wish:[],workup:[],yawn:[],covet:[],poweruppunch:["6M"],confide:["6M"]}}, + horsea:{learnset:{agility:["6L23"],attract:["6M"],aurorabeam:["6E"],blizzard:["6M"],bounce:[],brine:["6L30"],bubble:["6L1"],bubblebeam:["6L18"],captivate:[],clearsmog:["6E"],disable:["6E"],dive:[],doubleedge:[],doubleteam:["6M"],dragonbreath:["6E"],dragondance:["6L38"],dragonpulse:["6L42"],dragonrage:["6E"],endure:[],facade:["6M"],flail:["6E"],flashcannon:["6M"],focusenergy:["6L14"],frustration:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydropump:["6L35"],icebeam:["6M"],icywind:[],leer:["6L8"],mimic:[],muddywater:["6E"],naturalgift:[],octazooka:["6E"],outrage:["6E"],protect:["6M"],raindance:["6M"],razorwind:["6E"],rest:["6M"],"return":["6M"],round:["6M"],scald:["6M"],secretpower:[],signalbeam:["6E"],sleeptalk:["6M"],smokescreen:["6L4"],snore:[],splash:["6E"],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:[],toxic:["6M"],twister:["6L26"],waterfall:["6M"],watergun:["6L11"],waterpulse:["6E"],whirlpool:[],confide:["6M"]}}, + seadra:{learnset:{agility:["6L23"],attract:["6M"],blizzard:["6M"],bounce:[],brine:["6L30"],bubble:["6L1"],bubblebeam:["6L18"],captivate:[],dive:[],doubleedge:[],doubleteam:["6M"],dragondance:["6L48"],dragonpulse:["6L57"],endure:[],facade:["6M"],flashcannon:["6M"],focusenergy:["6L14"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydropump:["6L40"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],leer:["6L1","6L8"],mimic:[],naturalgift:[],outrage:[],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],scald:["6M"],secretpower:[],signalbeam:[],sleeptalk:["6M"],smokescreen:["6L1","6L4"],snore:[],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:[],toxic:["6M"],twister:["6L26"],waterfall:["6M"],watergun:["6L1","6L11"],waterpulse:[],whirlpool:[],confide:["6M"]}}, + kingdra:{learnset:{agility:["6L23"],attract:["6M"],blizzard:["6M"],bodyslam:[],bounce:[],brine:["6L30"],bubble:["6L1"],bubblebeam:["6L18"],captivate:[],dive:[],doubleedge:[],doubleteam:["6M"],dracometeor:["6T"],dragondance:["6L48"],dragonpulse:["6L1","6L57"],endure:[],facade:["6M"],flashcannon:["6M"],focusenergy:["6L14"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydropump:["6L40"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],ironhead:[],leer:["6L1","6L8"],mimic:[],muddywater:[],naturalgift:[],outrage:[],protect:["6M"],quash:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],scald:["6M"],secretpower:[],signalbeam:[],sleeptalk:["6M"],smokescreen:["6L1","6L4"],snore:[],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:[],toxic:["6M"],twister:["6L26"],waterfall:["6M"],watergun:["6L1","6L11"],waterpulse:[],whirlpool:[],yawn:["6L1"],confide:["6M"]}}, + goldeen:{learnset:{agility:["6L47"],aquaring:["6L27"],aquatail:["6E"],attract:["6M"],blizzard:["6M"],bodyslam:["6E"],bounce:[],captivate:[],dive:[],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],flail:["6L21"],frustration:["6M"],furyattack:["6L31"],furycutter:[],hail:["6M"],haze:["6E"],hiddenpower:["6M"],hornattack:["6L11"],horndrill:["6L41"],hydropump:["6E"],icebeam:["6M"],icywind:[],knockoff:[],megahorn:["6L57"],mimic:[],mudshot:["6E"],mudslap:["6E"],mudsport:["6E"],naturalgift:[],peck:["6L1"],poisonjab:["6M"],protect:["6M"],psybeam:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],scald:["6M"],secretpower:[],signalbeam:["6E"],skullbash:["6E"],sleeptalk:["6M","6E"],snore:[],soak:["6L50"],substitute:["6M"],supersonic:["6L7"],surf:["6M"],swagger:["6M"],swift:[],tailwhip:["6L1"],toxic:["6M"],waterfall:["6L37","6M"],waterpulse:["6L17"],watersport:["6L1"],whirlpool:[],drillrun:[],confide:["6M"]}}, + seaking:{learnset:{agility:["6L56"],aquaring:["6L27"],aquatail:[],attract:["6M"],blizzard:["6M"],bounce:[],captivate:[],dive:[],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],flail:["6L21"],frustration:["6M"],furyattack:["6L31"],furycutter:[],gigaimpact:["6M"],hail:["6M"],hiddenpower:["6M"],hornattack:["6L11"],horndrill:["6L47"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],knockoff:[],megahorn:["6L1","6L72"],mimic:[],mudslap:[],naturalgift:[],peck:["6L1"],poisonjab:["6L1","6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],scald:["6M"],secretpower:[],sleeptalk:["6M"],snore:[],soak:["6L63"],substitute:["6M"],supersonic:["6L1","6L7"],surf:["6M"],swagger:["6M"],swift:[],tailwhip:["6L1"],toxic:["6M"],waterfall:["6L40","6M"],waterpulse:["6L17"],watersport:["6L1"],whirlpool:[],signalbeam:[],drillrun:[],confide:["6M"]}}, + staryu:{learnset:{blizzard:["6M"],brine:["6L36"],bubblebeam:["6L22"],camouflage:["6L15"],cosmicpower:["6L48"],dive:[],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],flash:["6M"],flashcannon:["6M"],frustration:["6M"],gravity:[],gyroball:["6L30","6M"],hail:["6M"],harden:["6L1"],hiddenpower:["6M"],hydropump:["6L52"],icebeam:["6M"],icywind:[],lightscreen:["6L33","6M"],magiccoat:[],mimic:[],minimize:["6L25"],naturalgift:[],painsplit:[],powergem:["6L43"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],rapidspin:["6L10"],recover:["6L12"],recycle:[],reflect:["6M"],reflecttype:["6L40"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],scald:["6M"],secretpower:[],signalbeam:[],sleeptalk:["6M"],snore:[],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:["6L18"],tackle:["6L1"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],twister:[],waterfall:["6M"],watergun:["6L6"],waterpulse:[],whirlpool:[],dazzlinggleam:["6M"],confide:["6M"]}}, + starmie:{learnset:{avalanche:[],blizzard:["6M"],brine:[],confuseray:["6L22"],dive:[],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],endure:[],facade:["6M"],flash:["6M"],flashcannon:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gravity:[],gyroball:["6M"],hail:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],lightscreen:["6M"],magiccoat:[],mimic:[],naturalgift:[],nightmare:[],painsplit:[],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],rapidspin:["6L1"],recover:["6L1"],recycle:[],reflect:["6M"],refresh:[],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],scald:["6M"],secretpower:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:["6L1"],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],twister:[],waterfall:["6M"],watergun:["6L1"],waterpulse:[],whirlpool:[],wonderroom:[],hydropump:["6L1"],dazzlinggleam:["6M"],confide:["6M"]}}, + mimejr:{learnset:{attract:["6M"],barrier:["6L1"],batonpass:["6L46"],brickbreak:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],charm:["6E"],confuseray:["6E"],confusion:["6L1"],copycat:["6L4"],doubleslap:["6L11"],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],encore:["6L18"],endure:[],facade:["6M"],fakeout:["6E"],flash:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],futuresight:["6E"],grassknot:["6M"],headbutt:[],healingwish:["6E"],helpinghand:[],hiddenpower:["6M"],hypnosis:["6E"],icywind:["6E"],lightscreen:["6L22","6M"],magiccoat:[],magicroom:["6E"],meditate:["6L8"],mimic:["6L15","6E"],mudslap:[],nastyplot:["6E"],naturalgift:[],powersplit:["6E"],protect:["6M"],psybeam:["6L25"],psychic:["6L39","6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:["6L32"],reflect:["6L22","6M"],rest:["6M"],"return":["6M"],roleplay:["6L43"],round:["6M"],safeguard:["6L50","6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snatch:[],snore:[],solarbeam:["6M"],substitute:["6L29","6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],teeterdance:["6E"],telekinesis:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],tickle:["6L1"],torment:["6M"],toxic:["6M"],trick:["6L36","6E"],trickroom:["6M"],uproar:[],wakeupslap:["6E"],covet:[],wonderroom:[],infestation:["6M"],confide:["6M"]}}, + mrmime:{learnset:{aerialace:["6M"],attract:["6M"],barrier:["6L1"],batonpass:["6L46"],bodyslam:[],brickbreak:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],confuseray:["6E"],confusion:["6L1"],copycat:["6L4"],counter:[],doubleedge:[],doubleslap:["6L11"],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],encore:["6L18"],endure:[],energyball:["6M"],facade:["6M"],fakeout:["6E"],firepunch:[],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],followme:[],frustration:["6M"],futuresight:["6E"],gigaimpact:["6M"],grassknot:["6M"],guardswap:["6L1"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],hypnosis:["6E"],icepunch:[],icywind:["6E"],irondefense:[],lightscreen:["6L22","6M"],magicalleaf:["6L1"],magiccoat:[],magicroom:["6E"],meditate:["6L8"],megakick:[],megapunch:[],metronome:[],mimic:["6L15","6E"],mudslap:[],nastyplot:["6E"],naturalgift:[],nightmare:[],payback:["6M"],powersplit:["6E"],powerswap:["6L1"],protect:["6M"],psybeam:["6L25"],psychic:["6L39","6M"],psychup:["6M"],psyshock:["6M"],psywave:["6L15"],quickguard:["6L1"],raindance:["6M"],recycle:["6L32"],reflect:["6L22","6M"],rest:["6M"],"return":["6M"],roleplay:["6L43"],round:["6M"],safeguard:["6L50","6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snatch:[],snore:[],solarbeam:["6M"],substitute:["6L29","6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],teeterdance:["6E"],telekinesis:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:["6L36","6E"],trickroom:["6M"],wakeupslap:["6E"],wideguard:["6L1"],zenheadbutt:[],covet:[],foulplay:[],wonderroom:[],mistyterrain:["6L1"],infestation:["6M"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + scyther:{learnset:{aerialace:["6M"],agility:["6L17"],airslash:["6L50"],attract:["6M"],batonpass:["6E"],brickbreak:["6M"],bugbite:[],bugbuzz:["6E"],captivate:[],counter:["6E"],cut:["6M"],defog:["6E"],doubleedge:[],doublehit:["6L49"],doubleteam:["6L37","6M"],endure:["6E"],facade:["6M"],falseswipe:["6L13","6M"],feint:["6L61"],focusenergy:["6L5"],frustration:["6M"],furycutter:["6L25"],gigaimpact:["6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],knockoff:[],leer:["6L1"],lightscreen:["6M"],mimic:[],morningsun:[],naturalgift:[],nightslash:["6L45","6E"],ominouswind:[],protect:["6M"],pursuit:["6L9"],quickattack:["6L1"],raindance:["6M"],razorwind:["6L33","6E"],rest:["6M"],"return":["6M"],reversal:["6E"],rocksmash:["6M"],roost:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],silverwind:["6E"],slash:["6L29"],sleeptalk:["6M"],snore:[],steelwing:["6M","6E"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6L57","6M"],tailwind:[],thief:["6M"],toxic:["6M"],uturn:["6M"],vacuumwave:["6L1"],wingattack:["6L21"],xscissor:["6L41","6M"],confide:["6M"]}}, + scizor:{learnset:{acrobatics:["6M"],aerialace:["6M"],agility:["6L17"],attract:["6M"],brickbreak:["6M"],bugbite:[],bulletpunch:["6L1"],captivate:[],counter:[],cut:["6M"],defog:[],doubleedge:[],doublehit:["6L49"],doubleteam:["6M"],endure:[],facade:["6M"],falseswipe:["6L13","6M"],feint:["6L1","6L61"],flashcannon:["6M"],fling:["6M"],focusenergy:["6L5"],frustration:["6M"],furycutter:["6L25"],gigaimpact:["6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],irondefense:["6L37"],ironhead:["6L50"],knockoff:[],leer:["6L1"],lightscreen:["6M"],metalclaw:["6L21"],mimic:[],naturalgift:[],nightslash:["6L45"],ominouswind:[],protect:["6M"],pursuit:["6L9"],quickattack:["6L1"],raindance:["6M"],razorwind:["6L33"],rest:["6M"],"return":["6M"],rocksmash:["6M"],roost:["6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],silverwind:[],slash:["6L29"],sleeptalk:["6M"],snore:[],steelwing:["6M"],strength:["6M"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],swift:[],swordsdance:["6L57","6M"],tailwind:[],thief:["6M"],toxic:["6M"],uturn:["6M"],venoshock:["6M"],xscissor:["6L41","6M"],confide:["6M"]}}, + smoochum:{learnset:{attract:["6M"],avalanche:["6L35"],blizzard:["6L48","6M"],bodyslam:[],calmmind:["6M"],captivate:["6E"],confusion:["6L15"],copycat:["6L41"],counter:[],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],dynamicpunch:[],echoedvoice:["6M"],endure:[],facade:["6M"],fakeout:["6E"],faketears:["6L28"],flash:["6M"],fling:["6M"],frostbreath:["6M"],frustration:["6M"],grassknot:["6M"],hail:["6M"],healbell:[],heartstamp:["6L21"],helpinghand:[],hiddenpower:["6M"],icebeam:["6M"],icepunch:["6E"],icywind:[],lick:["6L5"],lightscreen:["6M"],luckychant:["6L31"],magiccoat:[],meanlook:["6L25"],meditate:["6E"],megakick:[],megapunch:[],metronome:[],mimic:[],miracleeye:["6E"],mudslap:[],nastyplot:["6E"],naturalgift:[],nightmare:[],payback:["6M"],perishsong:["6L45"],pound:["6L1"],powdersnow:["6L11"],protect:["6M"],psychic:["6L38","6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],roleplay:[],round:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],signalbeam:[],sing:["6L18"],skillswap:[],sleeptalk:["6M"],snore:[],substitute:["6M"],swagger:["6M"],sweetkiss:["6L8"],thief:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],uproar:[],wakeupslap:["6E"],waterpulse:[],wish:["6E"],zenheadbutt:[],covet:[],magicroom:[],confide:["6M"]}}, + jynx:{learnset:{attract:["6M"],avalanche:["6L39"],blizzard:["6L60","6M"],bodyslam:["6L44"],brickbreak:["6M"],calmmind:["6M"],captivate:[],counter:[],doubleedge:[],doubleslap:["6L15"],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],echoedvoice:["6M"],endure:[],energyball:["6M"],facade:["6M"],faketears:["6L28"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frostbreath:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],hail:["6M"],headbutt:[],healbell:[],heartstamp:["6L21"],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:["6L18"],icywind:[],lick:["6L1","6L5"],lightscreen:["6M"],lovelykiss:["6L1","6L8"],magiccoat:[],meanlook:["6L25"],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],payback:["6M"],perishsong:["6L1","6L55"],pound:["6L1"],powdersnow:["6L1","6L11"],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],roleplay:[],round:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],substitute:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],wakeupslap:["6L33"],waterpulse:[],wringout:["6L49"],zenheadbutt:[],covet:[],hypervoice:[],magicroom:[],drainingkiss:["6L1"],poweruppunch:["6M"],confide:["6M"]}}, + elekid:{learnset:{attract:["6M"],barrier:["6E"],bodyslam:[],brickbreak:["6M"],captivate:[],chargebeam:["6M"],counter:[],crosschop:["6E"],discharge:["6L33"],doubleedge:[],doubleteam:["6M"],dynamicpunch:["6E"],electroball:["6L22"],endure:[],facade:["6M"],feint:["6E"],firepunch:["6E"],flash:["6M"],fling:["6M"],focuspunch:["6E"],frustration:["6M"],hammerarm:["6E"],headbutt:[],helpinghand:[],hiddenpower:["6M"],icepunch:["6E"],karatechop:["6E"],leer:["6L1"],lightscreen:["6L26","6M"],lowkick:["6L8"],magnetrise:[],meditate:["6E"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],psychic:["6M"],quickattack:["6L1"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rollingkick:["6E"],round:["6M"],screech:["6L36"],secretpower:[],seismictoss:[],shockwave:["6L15"],signalbeam:[],sleeptalk:["6M"],snore:[],substitute:["6M"],swagger:["6M"],swift:["6L12"],thief:["6M"],thunder:["6L43","6M"],thunderbolt:["6L40","6M"],thunderpunch:["6L29"],thundershock:["6L5"],thunderwave:["6L19","6M"],toxic:["6M"],uproar:[],voltswitch:["6M"],wildcharge:["6M"],covet:[],dualchop:[],electroweb:[],poweruppunch:["6M"],confide:["6M"]}}, + electabuzz:{learnset:{attract:["6M"],bodyslam:[],brickbreak:["6M"],captivate:[],chargebeam:["6M"],crosschop:[],counter:[],discharge:["6L36"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],electroball:["6L22"],endure:[],facade:["6M"],firepunch:[],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],followme:[],frustration:["6M"],gigaimpact:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],irontail:[],leer:["6L1"],lightscreen:["6L26","6M"],lowkick:["6L8"],lowsweep:["6M"],magnetrise:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],psychic:["6M"],quickattack:["6L1"],raindance:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rocksmash:["6M"],round:["6M"],screech:["6L42"],secretpower:[],seismictoss:[],shockwave:["6L15"],signalbeam:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],swagger:["6M"],swift:["6L12"],thief:["6M"],thunder:["6L55","6M"],thunderbolt:["6L49","6M"],thunderpunch:["6L29"],thundershock:["6L1","6L5"],thunderwave:["6L19","6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6M"],covet:[],dualchop:[],electroweb:[],poweruppunch:["6M"],confide:["6M"]}}, + electivire:{learnset:{attract:["6M"],brickbreak:["6M"],bulldoze:["6M"],captivate:[],chargebeam:["6M"],crosschop:[],dig:["6M"],discharge:["6L36"],doubleteam:["6M"],earthquake:["6M"],electroball:["6L22"],endure:[],facade:["6M"],firepunch:["6L1"],flamethrower:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6L62","6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],irontail:[],leer:["6L1"],lightscreen:["6L26","6M"],lowkick:["6L1","6L8"],lowsweep:["6M"],magnetrise:[],mudslap:[],naturalgift:[],protect:["6M"],psychic:["6M"],quickattack:["6L1"],raindance:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],screech:["6L42"],secretpower:[],shockwave:["6L15"],signalbeam:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],swagger:["6M"],swift:["6L12"],taunt:["6M"],thief:["6M"],thunder:["6L55","6M"],thunderbolt:["6L49","6M"],thunderpunch:["6L29"],thundershock:["6L1","6L5"],thunderwave:["6L19","6M"],torment:["6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6M"],covet:[],dualchop:[],electroweb:[],electricterrain:["6L1","6L65"],iondeluge:["6L1"],poweruppunch:["6M"],confide:["6M"]}}, + magby:{learnset:{attract:["6M"],barrier:["6E"],bellydrum:["6E"],bodyslam:[],brickbreak:["6M"],captivate:[],clearsmog:["6L19"],confuseray:["6L26"],counter:[],crosschop:["6E"],doubleedge:[],doubleteam:["6M"],dynamicpunch:["6E"],ember:["6L5"],endure:[],facade:["6M"],feintattack:["6L12"],fireblast:["6L43","6M"],firepunch:["6L29"],firespin:["6L15"],flameburst:["6L22"],flamecharge:["6M"],flamethrower:["6L40","6M"],flareblitz:["6E"],fling:["6M"],focusenergy:["6E"],focuspunch:[],frustration:["6M"],headbutt:[],heatwave:[],helpinghand:[],hiddenpower:["6M"],incinerate:["6M"],irontail:["6E"],karatechop:["6E"],lavaplume:["6L33"],leer:["6L1"],machpunch:["6E"],megakick:[],megapunch:["6E"],mimic:[],mudslap:[],naturalgift:[],overheat:["6M"],protect:["6M"],psychic:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],screech:["6E"],secretpower:[],seismictoss:[],sleeptalk:["6M"],smog:["6L1"],smokescreen:["6L8"],snore:[],substitute:["6M"],sunnyday:["6L36","6M"],swagger:["6M"],thief:["6M"],thunderpunch:["6E"],toxic:["6M"],uproar:[],willowisp:["6M"],covet:[],dualchop:[],poweruppunch:["6M"],confide:["6M"],powerswap:["6E"],belch:["6E"]}}, + magmar:{learnset:{attract:["6M"],bodyslam:[],brickbreak:["6M"],captivate:[],clearsmog:["6L19"],crosschop:[],confuseray:["6L26"],counter:[],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],ember:["6L1","6L5"],endure:[],facade:["6M"],feintattack:["6L12"],fireblast:["6L55","6M"],firepunch:["6L29"],firespin:["6L15"],flameburst:["6L22"],flamecharge:["6M"],flamethrower:["6L49","6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],followme:[],frustration:["6M"],gigaimpact:["6M"],headbutt:[],heatwave:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],irontail:[],lavaplume:["6L36"],leer:["6L1"],lowkick:[],lowsweep:["6M"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],overheat:["6M"],protect:["6M"],psychic:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rocksmash:["6M"],round:["6M"],secretpower:[],seismictoss:[],sleeptalk:["6M"],smog:["6L1"],smokescreen:["6L8"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6L42","6M"],swagger:["6M"],thief:["6M"],thunderpunch:[],toxic:["6M"],willowisp:["6M"],covet:[],dualchop:[],poweruppunch:["6M"],confide:["6M"]}}, + magmortar:{learnset:{attract:["6M"],brickbreak:["6M"],bulldoze:["6M"],captivate:[],clearsmog:["6L19"],confuseray:["6L26"],doubleteam:["6M"],earthquake:["6M"],ember:["6L1","6L5"],endure:[],facade:["6M"],feintattack:["6L12"],fireblast:["6L55","6M"],firepunch:["6L29"],firespin:["6L15"],flameburst:["6L22"],flamecharge:["6M"],flamethrower:["6L49","6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],headbutt:[],heatwave:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6L62","6M"],incinerate:["6M"],irontail:[],lavaplume:["6L36"],leer:["6L1"],lowkick:[],lowsweep:["6M"],mudslap:[],naturalgift:[],overheat:["6M"],protect:["6M"],psychic:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],secretpower:[],sleeptalk:["6M"],smog:["6L1"],smokescreen:["6L1","6L8"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6L42","6M"],swagger:["6M"],taunt:["6M"],thief:["6M"],thunderbolt:["6M"],thunderpunch:["6L1"],torment:["6M"],toxic:["6M"],willowisp:["6M"],covet:[],dualchop:[],poweruppunch:["6M"],confide:["6M"]}}, + pinsir:{learnset:{attract:["6M"],bind:["6L4"],bodyslam:[],brickbreak:["6L18","6M"],bugbite:["6E"],bulkup:["6M"],bulldoze:["6M"],captivate:[],closecombat:["6E"],cut:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],earthquake:["6M"],endure:[],facade:["6M"],feintattack:["6E"],falseswipe:["6M"],feint:["6E"],flail:["6E"],fling:["6M"],focusblast:["6M"],focusenergy:["6L1"],focuspunch:[],frustration:["6M"],furyattack:["6E"],furycutter:[],gigaimpact:["6M"],guillotine:["6L47"],harden:["6L11"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],irondefense:[],knockoff:[],mefirst:["6E"],mimic:[],naturalgift:[],protect:["6M"],quickattack:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],revenge:["6L15"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],secretpower:[],seismictoss:["6L8"],sleeptalk:["6M"],smackdown:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],stormthrow:["6L33"],strength:["6M"],stringshot:[],strugglebug:["6M"],submission:["6L26"],substitute:["6M"],sunnyday:["6M"],superpower:["6L43","6E"],swagger:["6M"],swordsdance:["6L40","6M"],thief:["6M"],thrash:["6L36"],toxic:["6M"],vicegrip:["6L1"],vitalthrow:["6L22"],xscissor:["6L29","6M"],confide:["6M"]}}, + tauros:{learnset:{attract:["6M"],blizzard:["6M"],bodyslam:[],bulldoze:["6M"],captivate:[],doubleedge:[],doubleteam:["6M"],earthquake:["6M"],endeavor:[],endure:[],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],frustration:["6M"],gigaimpact:["6L63","6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hornattack:["6L8"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],incinerate:["6M"],ironhead:[],irontail:[],mimic:[],naturalgift:[],outrage:[],payback:["6L24","6M"],protect:["6M"],pursuit:["6L15"],rage:["6L5"],raindance:["6M"],refresh:[],rest:["6L19","6M"],retaliate:["6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],sandstorm:["6M"],scaryface:["6L11"],secretpower:[],shockwave:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],spite:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6L48","6M"],tackle:["6L1"],tailwhip:["6L3"],takedown:["6L41"],thrash:["6L50"],thunder:["6M"],thunderbolt:["6M"],toxic:["6M"],waterpulse:[],whirlpool:[],wildcharge:["6M"],workup:["6L29"],zenheadbutt:["6L35"],uproar:[],confide:["6M"]}}, + magikarp:{learnset:{bounce:[],flail:["6L30"],hydropump:[],splash:["6L1"],tackle:["6L15"]}}, + gyarados:{learnset:{aquatail:["6L35"],attract:["6M"],avalanche:[],bite:["6L20"],blizzard:["6M"],bodyslam:[],bounce:[],brine:[],bulldoze:["6M"],captivate:[],darkpulse:["6M"],dive:[],doubleedge:[],doubleteam:["6M"],dragondance:["6L44"],dragonpulse:[],dragonrage:["6L23"],dragontail:["6M"],earthquake:["6M"],endure:[],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydropump:["6L41"],hyperbeam:["6L47","6M"],icebeam:["6M"],icefang:["6L32"],icywind:[],incinerate:["6M"],ironhead:[],leer:["6L26"],mimic:[],naturalgift:[],outrage:[],payback:["6M"],protect:["6M"],raindance:["6L38","6M"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],round:["6M"],sandstorm:["6M"],scald:["6M"],secretpower:[],sleeptalk:["6M"],snore:[],spite:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],taunt:["6M"],thrash:["6L1"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],twister:["6L29"],uproar:[],waterfall:["6M"],waterpulse:[],whirlpool:[],irontail:[],confide:["6M"]}}, + lapras:{learnset:{ancientpower:["6E"],aquatail:[],attract:["6M"],avalanche:["6E"],blizzard:["6M"],block:[],bodyslam:["6L18"],brine:["6L37"],bulldoze:["6M"],captivate:[],confuseray:["6L7"],curse:["6E"],dive:[],doubleedge:[],doubleteam:["6M"],dragondance:["6E"],dragonpulse:["6E"],dreameater:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fissure:["6E"],foresight:["6E"],frostbreath:["6M"],frustration:["6M"],futuresight:["6E"],gigaimpact:["6M"],growl:["6L1"],hail:["6M"],headbutt:[],healbell:[],hiddenpower:["6M"],horndrill:["6E"],hydropump:["6L47"],hyperbeam:["6M"],icebeam:["6L32","6M"],iceshard:["6L10"],icywind:[],ironhead:[],irontail:[],mimic:[],mist:["6L4"],naturalgift:[],nightmare:[],outrage:[],perishsong:["6L27"],protect:["6M"],psychic:["6M"],raindance:["6L22","6M"],refresh:["6E"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],round:["6M"],safeguard:["6L43","6M"],secretpower:[],sheercold:["6L50"],shockwave:[],signalbeam:[],sing:["6L1"],sleeptalk:["6M","6E"],snore:[],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],thunder:["6M"],thunderbolt:["6M"],tickle:["6E"],toxic:["6M"],waterfall:["6M"],watergun:["6L1"],waterpulse:["6L14"],whirlpool:["6E"],zenheadbutt:[],drillrun:[],hypervoice:[],confide:["6M"],freezedry:["6E"]}}, + ditto:{learnset:{transform:["6L1"]}}, + eevee:{learnset:{attract:["6M"],batonpass:["6L33"],bite:["6L17"],bodyslam:[],captivate:[],charm:["6L29","6E"],covet:["6L23","6E"],curse:["6E"],detect:["6E"],dig:["6M"],doubleedge:["6L37"],doubleteam:["6M"],echoedvoice:["6M"],endure:["6E"],facade:["6M"],faketears:["6E"],flail:["6E"],frustration:["6M"],growl:["6L1"],headbutt:[],healbell:[],helpinghand:["6L1"],hiddenpower:["6M"],hypervoice:[],irontail:[],lastresort:["6L41"],mimic:[],mudslap:[],naturalgift:["6E"],protect:["6M"],quickattack:["6L13"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],round:["6M"],sandattack:["6L5"],secretpower:[],shadowball:["6M"],sing:[],sleeptalk:["6M"],snore:[],storedpower:["6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L10"],synchronoise:["6E"],tackle:["6L1"],tailwhip:["6L1"],takedown:["6L25"],tickle:["6E"],toxic:["6M"],trumpcard:["6L45"],wish:["6E"],workup:[],yawn:["6E"],babydolleyes:["6L9"],refresh:["6L20"],confide:["6M"]}}, + vaporeon:{learnset:{acidarmor:["6L29"],aquaring:["6L25"],aquatail:[],attract:["6M"],aurorabeam:["6L20"],bite:[],blizzard:["6M"],bodyslam:[],brine:[],captivate:[],dig:["6M"],dive:[],doubleedge:[],doubleteam:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],haze:["6L33"],headbutt:[],healbell:[],helpinghand:["6L1"],hiddenpower:["6M"],hydropump:["6L45"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],irontail:[],lastresort:["6L41"],mimic:[],muddywater:["6L37"],mudslap:[],naturalgift:[],protect:["6M"],quickattack:["6L13"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],round:["6M"],sandattack:["6L5"],scald:["6M"],secretpower:[],shadowball:["6M"],signalbeam:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwhip:["6L1"],toxic:["6M"],waterfall:["6M"],watergun:["6L9"],waterpulse:["6L17"],whirlpool:[],workup:[],covet:[],hypervoice:[],confide:["6M"]}}, + jolteon:{learnset:{agility:["6L29"],attract:["6M"],bodyslam:[],captivate:[],chargebeam:["6M"],dig:["6M"],discharge:["6L37"],doubleedge:[],doublekick:["6L17"],doubleteam:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],healbell:[],helpinghand:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],irontail:[],lastresort:["6L41"],lightscreen:["6M"],magnetrise:[],mimic:[],mudslap:[],naturalgift:[],pinmissile:["6L25"],protect:["6M"],quickattack:["6L13"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],round:["6M"],sandattack:["6L5"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwhip:["6L1"],thunder:["6L45","6M"],thunderbolt:["6M"],thunderfang:["6L20"],thundershock:["6L9"],thunderwave:["6L33","6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6M"],workup:[],covet:[],hypervoice:[],confide:["6M"]}}, + flareon:{learnset:{attract:["6M"],bite:["6L17"],bodyslam:[],captivate:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],echoedvoice:["6M"],ember:["6L9"],endure:[],facade:["6M"],fireblast:["6M"],firefang:["6L20"],firespin:["6L25"],flamecharge:["6M"],flamethrower:["6M"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],healbell:[],heatwave:[],helpinghand:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],irontail:[],lastresort:["6L41"],lavaplume:["6L37"],leer:[],mimic:[],mudslap:[],naturalgift:[],overheat:["6M"],protect:["6M"],quickattack:["6L13"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],round:["6M"],sandattack:["6L5"],scaryface:["6L29"],secretpower:[],shadowball:["6M"],sleeptalk:["6M"],smog:["6L33"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],swift:[],tackle:["6L1"],tailwhip:["6L1"],toxic:["6M"],willowisp:["6M"],workup:[],covet:[],hypervoice:[],flareblitz:["6L45"],confide:["6M"]}}, + espeon:{learnset:{attract:["6M"],bodyslam:[],calmmind:["6M"],captivate:[],confusion:["6L9"],cut:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],flash:["6M"],frustration:["6M"],futuresight:["6L25"],gigaimpact:["6M"],grassknot:["6M"],headbutt:[],healbell:[],helpinghand:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],irontail:[],lastresort:["6L41"],lightscreen:["6M"],magiccoat:[],mimic:[],morningsun:["6L33"],mudslap:[],naturalgift:[],nightmare:[],powerswap:["6L45"],protect:["6M"],psybeam:["6L20"],psychic:["6L37","6M"],psychup:["6L29","6M"],psyshock:["6M"],quickattack:["6L13"],raindance:["6M"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],round:["6M"],sandattack:["6L5"],secretpower:[],shadowball:["6M"],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L17"],tackle:["6L1"],tailwhip:["6L1"],telekinesis:[],toxic:["6M"],trick:[],trickroom:["6M"],workup:[],zenheadbutt:[],covet:[],hypervoice:[],magicroom:[],dazzlinggleam:["6M"],confide:["6M"]}}, + umbreon:{learnset:{assurance:["6L25"],attract:["6M"],bodyslam:[],captivate:[],confuseray:["6L17"],cut:["6M"],darkpulse:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],feintattack:["6L20"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],guardswap:["6L45"],headbutt:[],healbell:[],helpinghand:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],irontail:[],lastresort:["6L41"],meanlook:["6L37"],mimic:[],moonlight:["6L33"],mudslap:[],naturalgift:[],nightmare:[],payback:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],pursuit:["6L9"],quickattack:["6L13"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],round:["6M"],sandattack:["6L5"],screech:["6L29"],secretpower:[],shadowball:["6M"],sleeptalk:["6M"],snarl:["6M"],snatch:[],snore:[],spite:[],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwhip:["6L1"],taunt:["6M"],torment:["6M"],toxic:["6M"],workup:[],covet:[],foulplay:[],hypervoice:[],wonderroom:[],confide:["6M"]}}, + leafeon:{learnset:{aerialace:["6M"],attract:["6M"],bulletseed:[],captivate:[],dig:["6M"],doubleteam:["6M"],echoedvoice:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],furycutter:[],gigadrain:["6L25"],gigaimpact:["6M"],grassknot:["6M"],grasswhistle:["6L17"],headbutt:[],healbell:[],helpinghand:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],irontail:[],knockoff:[],lastresort:["6L41"],leafblade:["6L45"],magicalleaf:["6L20"],mudslap:[],naturalgift:[],protect:["6M"],quickattack:["6L13"],raindance:["6M"],razorleaf:["6L9"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],round:["6M"],sandattack:["6L5"],secretpower:[],seedbomb:[],shadowball:["6M"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6L37","6M"],swagger:["6M"],swift:[],swordsdance:["6L29","6M"],synthesis:["6L33"],tackle:["6L1"],tailwhip:["6L1"],toxic:["6M"],workup:[],worryseed:[],xscissor:["6M"],covet:[],hypervoice:[],naturepower:["6M"],confide:["6M"]}}, + glaceon:{learnset:{aquatail:[],attract:["6M"],avalanche:[],barrier:["6L29"],bite:["6L17"],blizzard:["6L45","6M"],captivate:[],dig:["6M"],doubleteam:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],frostbreath:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6L37","6M"],headbutt:[],healbell:[],helpinghand:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icefang:["6L20"],iceshard:["6L25"],icywind:["6L9"],irontail:[],lastresort:["6L41"],mirrorcoat:["6L33"],mudslap:[],naturalgift:[],protect:["6M"],quickattack:["6L13"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],round:["6M"],sandattack:["6L5"],secretpower:[],shadowball:["6M"],signalbeam:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwhip:["6L1"],toxic:["6M"],waterpulse:[],workup:[],covet:[],hypervoice:[],confide:["6M"]}}, + porygon:{learnset:{aerialace:["6M"],agility:["6L0"],blizzard:["6M"],chargebeam:["6M"],conversion:["6L0"],conversion2:["6L0"],discharge:["6L0"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],endure:[],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],gravity:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],irontail:[],lastresort:[],lockon:["6L0"],magiccoat:["6L0"],magnetrise:["6L0"],mimic:[],naturalgift:[],nightmare:[],painsplit:[],protect:["6M"],psybeam:["6L0"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recover:["6L0"],recycle:["6L0"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],shadowball:["6M"],sharpen:["6L0"],shockwave:[],signalbeam:["6L0"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L0"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],triattack:["6L0"],trick:[],trickroom:["6M"],zapcannon:["6L0"],zenheadbutt:[],foulplay:[],electroweb:[],wonderroom:[]}}, + porygon2:{learnset:{aerialace:["6M"],agility:["6L0"],blizzard:["6M"],chargebeam:["6M"],conversion:["6L0"],conversion2:["6L0"],defensecurl:["6L0"],discharge:["6L0"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],endure:[],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],gravity:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],irontail:[],lastresort:[],lockon:["6L0"],magiccoat:["6L0"],magnetrise:["6L0"],mimic:[],naturalgift:[],nightmare:[],painsplit:[],protect:["6M"],psybeam:["6L0"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recover:["6L0"],recycle:["6L0"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:["6L0"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L0"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],triattack:["6L0"],trick:[],trickroom:["6M"],zapcannon:["6L0"],zenheadbutt:[],foulplay:[],electroweb:[],wonderroom:[]}}, + porygonz:{learnset:{aerialace:["6M"],agility:["6L0"],blizzard:["6M"],chargebeam:["6M"],conversion:["6L0"],conversion2:["6L0"],darkpulse:[],discharge:["6L0"],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],endure:[],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],gravity:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],irontail:[],lastresort:[],lockon:["6L0"],magiccoat:["6L0"],magnetrise:["6L0"],nastyplot:["6L0"],naturalgift:[],painsplit:[],protect:["6M"],psybeam:["6L0"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recover:["6L0"],recycle:[],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:["6L0"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L0"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],triattack:["6L0"],trick:[],trickroom:["6M"],uproar:[],zapcannon:["6L0"],zenheadbutt:[],foulplay:[],electroweb:[],wonderroom:[]}}, + omanyte:{learnset:{ancientpower:["6L37"],attract:["6M"],aurorabeam:["6E"],bide:["6E"],bite:["6L7"],blizzard:["6M"],bodyslam:[],brine:["6L28"],bubblebeam:["6E"],captivate:[],constrict:["6L1"],dive:[],doubleedge:[],doubleteam:["6M"],earthpower:[],endure:[],facade:["6M"],frustration:["6M"],gyroball:["6M"],hail:["6M"],haze:["6E"],headbutt:[],hiddenpower:["6M"],hydropump:["6L55"],icebeam:["6M"],icywind:[],irondefense:[],knockoff:["6E"],leer:["6L19"],mimic:[],muddywater:["6E"],mudshot:["6L25"],naturalgift:[],protect:["6L34","6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockblast:["6L46"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L16"],round:["6M"],sandstorm:["6M"],scald:["6M"],secretpower:[],shellsmash:["6L50"],slam:["6E"],sleeptalk:["6M"],smackdown:["6M"],snore:[],spikes:["6E"],stealthrock:[],substitute:["6M"],supersonic:["6E"],surf:["6M"],swagger:["6M"],thief:["6M"],tickle:["6L43"],toxic:["6M"],toxicspikes:["6E"],waterfall:["6M"],watergun:["6L10"],waterpulse:["6E"],whirlpool:["6E"],withdraw:["6L1"],wringout:["6E"],bind:[],confide:["6M"],reflecttype:["6E"]}}, + omastar:{learnset:{ancientpower:["6L37"],attract:["6M"],bite:["6L1","6L7"],blizzard:["6M"],bodyslam:[],brine:["6L28"],captivate:[],constrict:["6L1"],dive:[],doubleedge:[],doubleteam:["6M"],earthpower:[],endure:[],facade:["6M"],frustration:["6M"],gigaimpact:["6M"],gyroball:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydropump:["6L1","6L75"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],irondefense:[],knockoff:[],leer:["6L19"],mimic:[],mudshot:["6L25"],mudslap:[],naturalgift:[],protect:["6L34","6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockblast:["6L56"],rockclimb:[],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L16"],round:["6M"],sandstorm:["6M"],scald:["6M"],secretpower:[],seismictoss:[],shellsmash:["6L67"],sleeptalk:["6M"],smackdown:["6M"],snore:[],spikecannon:["6L40"],stealthrock:[],stoneedge:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],thief:["6M"],tickle:["6L48"],toxic:["6M"],waterfall:["6M"],watergun:["6L10"],waterpulse:[],whirlpool:[],withdraw:["6L1"],bind:[],confide:["6M"]}}, + kabuto:{learnset:{absorb:["6L6"],aerialace:[],ancientpower:["6L46"],aquajet:["6L31"],attract:["6M"],aurorabeam:["6E"],blizzard:["6M"],bodyslam:[],brine:[],bubblebeam:["6E"],captivate:[],confuseray:["6E"],dig:["6M"],doubleedge:[],doubleteam:["6M"],earthpower:[],endure:["6L26"],facade:["6M"],flail:["6E"],foresight:["6E"],frustration:["6M"],gigadrain:["6E"],hail:["6M"],harden:["6L1"],hiddenpower:["6M"],honeclaws:["6M"],icebeam:["6M"],icywind:["6E"],irondefense:[],knockoff:["6E"],leer:["6L11"],megadrain:["6L36"],metalsound:["6L41"],mimic:[],mudshot:["6L16","6E"],mudslap:[],naturalgift:[],protect:["6M"],raindance:["6M"],rapidspin:["6E"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],sandattack:["6L21"],sandstorm:["6M"],scald:["6M"],scratch:["6L1"],screech:["6E"],secretpower:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],stealthrock:[],substitute:["6M"],surf:["6M"],swagger:["6M"],thief:["6M"],toxic:["6M"],waterfall:["6M"],waterpulse:[],whirlpool:[],wringout:["6L50"],confide:["6M"]}}, + kabutops:{learnset:{absorb:["6L1","6L6"],aerialace:["6M"],ancientpower:["6L54"],aquajet:["6L31"],aquatail:[],attract:["6M"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],brine:[],captivate:[],cut:["6M"],dig:["6M"],dive:[],doubleedge:[],doubleteam:["6M"],earthpower:[],endure:["6L26"],facade:["6M"],feint:["6L1"],frustration:["6M"],furycutter:[],gigadrain:[],gigaimpact:["6M"],hail:["6M"],harden:["6L1"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],irondefense:[],knockoff:[],leer:["6L1","6L11"],lowkick:[],megadrain:["6L36"],megakick:[],metalsound:["6L45"],mimic:[],mudshot:["6L16"],mudslap:[],naturalgift:[],nightslash:["6L1","6L72"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],sandattack:["6L21"],sandstorm:["6M"],scald:["6M"],scratch:["6L1"],secretpower:[],seismictoss:[],slash:["6L40"],sleeptalk:["6M"],smackdown:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],substitute:["6M"],superpower:[],surf:["6M"],swagger:["6M"],swordsdance:["6M"],thief:["6M"],toxic:["6M"],waterfall:["6M"],waterpulse:[],whirlpool:[],wringout:["6L63"],xscissor:["6M"],naturepower:["6M"],confide:["6M"]}}, + aerodactyl:{learnset:{aerialace:["6M"],agility:["6L17"],aircutter:[],ancientpower:["6L25"],aquatail:[],assurance:["6E"],attract:["6M"],bite:["6L1"],bulldoze:["6M"],captivate:[],crunch:["6L33"],curse:["6E"],defog:[],doubleedge:[],doubleteam:["6M"],dragonbreath:["6E"],dragonclaw:["6M"],dragonpulse:[],earthpower:[],earthquake:["6M"],endure:[],facade:["6M"],fireblast:["6M"],firefang:["6L1"],flamethrower:["6M"],fly:["6M"],foresight:["6E"],frustration:["6M"],gigaimpact:["6L81","6M"],headbutt:[],heatwave:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6L65","6M"],icefang:["6L1"],incinerate:["6M"],ironhead:["6L1","6L57"],irontail:[],mimic:[],naturalgift:[],ominouswind:[],payback:["6M"],protect:["6M"],pursuit:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6L9","6M"],rockpolish:["6M"],rockslide:["6L73","6M"],rocksmash:["6M"],rocktomb:["6M"],roost:["6M","6E"],round:["6M"],sandstorm:["6M"],scaryface:["6L1"],secretpower:[],skyattack:[],skydrop:["6L49","6M"],sleeptalk:["6M"],smackdown:["6M"],snore:[],stealthrock:[],steelwing:["6M","6E"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L1"],swagger:["6M"],swift:[],tailwind:["6E"],takedown:["6L41"],taunt:["6M"],thief:["6M"],thunderfang:["6L1"],torment:["6M"],toxic:["6M"],twister:[],whirlwind:["6E"],wingattack:["6L1"],confide:["6M"],wideguard:["6E"]}}, + munchlax:{learnset:{afteryou:["6E"],amnesia:["6L9"],attract:["6M"],blizzard:["6M"],bodyslam:["6L25"],brickbreak:["6M"],bulldoze:["6M"],captivate:[],charm:["6E"],chipaway:["6L17"],counter:["6E"],curse:["6E"],defensecurl:["6L4"],doubleedge:["6E"],doubleteam:["6M"],earthquake:["6M"],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6L41","6M"],focuspunch:[],frustration:["6M"],gunkshot:[],headbutt:[],hiddenpower:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],lastresort:["6L1","6L57"],lick:["6L1","6L12","6E"],metronome:["6L1"],mudslap:[],naturalgift:["6L49","6E"],odorsleuth:["6L1"],outrage:[],protect:["6M"],psychic:["6M"],pursuit:["6E"],raindance:["6M"],recycle:[],rest:["6M"],retaliate:["6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L36"],round:["6M"],sandstorm:["6M"],screech:["6L20"],secretpower:[],seedbomb:[],selfdestruct:["6E"],shadowball:["6M"],shockwave:[],sleeptalk:["6M"],snatch:["6L1","6L52"],snore:[],solarbeam:["6M"],stockpile:["6L28"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swallow:["6L33"],tackle:["6L1"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],uproar:[],waterpulse:[],whirlpool:[],whirlwind:["6E"],workup:[],zenheadbutt:["6E"],covet:[],superpower:[],hypervoice:[],bellydrum:["6L44"],poweruppunch:["6M"],confide:["6M"],belch:["6E"]}}, + snorlax:{learnset:{afteryou:["6E"],amnesia:["6L9"],attract:["6M"],bellydrum:["6L44"],blizzard:["6M"],block:["6L41"],bodyslam:["6L25"],brickbreak:["6M"],bulldoze:["6M"],captivate:[],charm:["6E"],chipaway:["6L17"],counter:["6E"],covet:[],crunch:["6L49"],curse:["6E"],defensecurl:["6L4"],doubleedge:["6E"],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],fissure:["6E"],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6L57","6M"],gunkshot:[],headbutt:[],heavyslam:["6L50"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],ironhead:[],lastresort:[],lick:["6L12","6E"],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:["6E"],outrage:[],protect:["6M"],psychic:["6M"],psychup:[],pursuit:["6E"],raindance:["6M"],recycle:[],refresh:[],rest:["6L28","6M"],retaliate:["6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L36"],round:["6M"],sandstorm:["6M"],secretpower:[],seedbomb:[],seismictoss:[],selfdestruct:[],shadowball:["6M"],shockwave:[],sleeptalk:["6L33","6M"],smackdown:["6M"],snore:["6L28"],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],surf:["6M"],swagger:["6M"],tackle:["6L1"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],waterpulse:[],whirlpool:[],whirlwind:["6E"],wildcharge:["6M"],workup:[],yawn:["6L20"],zenheadbutt:[],hypervoice:[],poweruppunch:["6M"],confide:["6M"],belch:["6E"]}}, + articuno:{learnset:{aerialace:["6M"],agility:["6L1"],aircutter:[],ancientpower:["6L1"],avalanche:[],blizzard:["6L71","6M"],defog:[],doubleedge:[],doubleteam:["6M"],endure:[],extrasensory:[],facade:["6M"],fly:["6M"],frostbreath:["6M"],frustration:["6M"],gigaimpact:["6M"],gust:["6L1"],hail:["6L1","6M"],haze:[],healbell:[],hiddenpower:["6M"],hurricane:["6L1","6L92"],hyperbeam:["6M"],icebeam:["6L1","6M"],iceshard:["6L1"],icywind:[],mimic:[],mindreader:["6L1"],mist:["6L1"],mudslap:[],naturalgift:[],ominouswind:[],pluck:[],powdersnow:["6L1"],protect:["6M"],raindance:["6M"],reflect:["6L1","6M"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],roost:["6L85","6M"],round:["6M"],sandstorm:["6M"],secretpower:[],sheercold:["6L1","6L78"],signalbeam:[],skyattack:[],skydrop:["6M"],sleeptalk:["6M"],snore:[],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tailwind:["6L1","6L1"],toxic:["6M"],twister:[],uturn:["6M"],waterpulse:[],freezedry:["6L1"],confide:["6M"]}}, + zapdos:{learnset:{aerialace:["6M"],agility:["6L1"],aircutter:[],ancientpower:["6L1"],batonpass:[],charge:["6L1"],chargebeam:["6M"],defog:[],detect:["6L1"],discharge:["6L1"],doubleedge:[],doubleteam:["6M"],drillpeck:["6L1","6L71"],endure:[],extrasensory:[],facade:["6M"],flash:["6M"],fly:["6M"],frustration:["6M"],gigaimpact:["6M"],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],lightscreen:["6L1","6M"],metalsound:[],mimic:[],mudslap:[],naturalgift:[],ominouswind:[],peck:["6L1"],pluck:["6L1"],protect:["6M"],raindance:["6L1","6M"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],roost:["6L85","6M"],round:["6M"],sandstorm:["6M"],secretpower:[],shockwave:[],signalbeam:[],skyattack:[],skydrop:["6M"],sleeptalk:["6M"],snore:[],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tailwind:[],thunder:["6L78","6M"],thunderbolt:["6M"],thundershock:["6L1"],thunderwave:["6L1","6M"],toxic:["6M"],twister:[],uturn:["6M"],voltswitch:["6M"],wildcharge:["6M"],zapcannon:["6L1","6L92"],confide:["6M"]}}, + moltres:{learnset:{aerialace:["6M"],agility:["6L1"],aircutter:[],airslash:["6L1"],ancientpower:["6L1"],defog:[],doubleedge:[],doubleteam:["6M"],ember:["6L1"],endure:["6L1"],extrasensory:[],facade:["6M"],fireblast:["6M"],firespin:["6L1"],flamecharge:["6M"],flamethrower:["6L1","6M"],fly:["6M"],frustration:["6M"],gigaimpact:["6M"],heatwave:["6L1"],hiddenpower:["6M"],hurricane:["6L1","6L92"],hyperbeam:["6M"],incinerate:["6M"],mimic:[],morningsun:[],mudslap:[],naturalgift:[],ominouswind:[],overheat:["6M"],pluck:[],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],roost:["6L1","6L85","6M"],round:["6M"],safeguard:["6L1","6M"],sandstorm:["6M"],secretpower:[],skyattack:["6L1","6L78"],skydrop:["6M"],sleeptalk:["6M"],snore:[],solarbeam:["6L71","6M"],steelwing:["6M"],substitute:["6M"],sunnyday:["6L1","6M"],swagger:["6M"],swift:[],tailwind:[],toxic:["6M"],twister:[],uturn:["6M"],willowisp:["6M"],wingattack:["6L1"],confide:["6M"]}}, + dratini:{learnset:{agility:["6L25"],aquajet:["6E"],aquatail:["6L35"],attract:["6M"],blizzard:["6M"],bodyslam:[],captivate:[],doubleedge:[],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6E"],dragondance:["6L51","6E"],dragonpulse:["6E"],dragonrage:["6L15"],dragonrush:["6L41","6E"],dragontail:["6L31","6M"],endure:[],extremespeed:["6E"],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],frustration:["6M"],hail:["6M"],haze:["6E"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6L61","6M"],icebeam:["6M"],icywind:[],incinerate:["6M"],irontail:["6E"],leer:["6L1"],lightscreen:["6M"],mimic:[],mist:["6E"],naturalgift:[],outrage:["6L55"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6L45","6M"],secretpower:[],shockwave:[],slam:["6L21"],sleeptalk:["6M"],snore:[],substitute:["6M"],sunnyday:["6M"],supersonic:["6E"],surf:["6M"],swagger:["6M"],swift:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6L5","6M"],toxic:["6M"],twister:["6L11"],waterfall:["6M"],waterpulse:["6E"],whirlpool:[],wrap:["6L1"],bind:[],confide:["6M"]}}, + dragonair:{learnset:{agility:["6L25"],aquatail:["6L39"],attract:["6M"],blizzard:["6M"],bodyslam:[],captivate:[],doubleedge:[],doubleteam:["6M"],dracometeor:["6T"],dragondance:["6L61"],dragonpulse:[],dragonrage:["6L15"],dragonrush:["6L47"],dragontail:["6L33","6M"],endure:[],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],frustration:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6L75","6M"],icebeam:["6M"],icywind:[],incinerate:["6M"],irontail:[],leer:["6L1"],lightscreen:["6M"],mimic:[],naturalgift:[],outrage:["6L67"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6L53","6M"],secretpower:[],shockwave:[],slam:["6L21"],sleeptalk:["6M"],snore:[],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6L1","6L5","6M"],toxic:["6M"],twister:["6L1","6L11"],waterfall:["6M"],waterpulse:[],whirlpool:[],wrap:["6L1"],bind:[],confide:["6M"]}}, + dragonite:{learnset:{aerialace:["6M"],agility:["6L25"],aircutter:[],aquatail:["6L39"],attract:["6M"],bind:[],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],cut:["6M"],defog:[],dive:[],doubleedge:[],doubleteam:["6M"],dracometeor:["6T"],dragonclaw:["6M"],dragondance:["6L61"],dragonpulse:[],dragonrage:["6L15"],dragonrush:["6L47"],dragontail:["6L33","6M"],dynamicpunch:[],earthquake:["6M"],endure:[],extremespeed:[],facade:["6M"],fireblast:["6M"],firepunch:["6L1"],flamethrower:["6M"],fling:["6M"],fly:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],hail:["6M"],headbutt:[],healbell:[],heatwave:[],hiddenpower:["6M"],honeclaws:["6M"],hurricane:["6L1","6L81"],hyperbeam:["6L75","6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],ironhead:[],irontail:[],leer:["6L1"],lightscreen:["6M"],mimic:[],mudslap:[],naturalgift:[],ominouswind:[],outrage:["6L67"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roost:["6L1","6M"],round:["6M"],safeguard:["6L53","6M"],sandstorm:["6M"],secretpower:[],shockwave:[],skydrop:["6M"],slam:["6L21"],sleeptalk:["6M"],snore:[],steelwing:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],surf:["6M"],swagger:["6M"],swift:[],tailwind:[],thunder:["6M"],thunderbolt:["6M"],thunderpunch:["6L1"],thunderwave:["6L1","6L5","6M"],toxic:["6M"],twister:["6L1","6L11"],waterfall:["6M"],waterpulse:[],whirlpool:[],wingattack:["6L55"],wrap:["6L1"],poweruppunch:["6M"],confide:["6M"]}}, + mewtwo:{learnset:{aerialace:["6M"],amnesia:["6L79"],aquatail:[],aurasphere:["6L1"],avalanche:[],barrier:["6L1"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],calmmind:["6M"],chargebeam:["6M"],confusion:["6L1"],counter:[],disable:["6L1"],doubleedge:[],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],earthquake:["6M"],electroball:[],embargo:["6M"],endure:[],energyball:["6M"],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],futuresight:["6L1"],gigaimpact:["6M"],grassknot:["6M"],gravity:[],guardswap:["6L1"],hail:["6M"],headbutt:[],healpulse:[],hiddenpower:["6M"],hurricane:[],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irontail:[],lightscreen:["6M"],lowkick:[],lowsweep:["6M"],magiccoat:[],mefirst:["6L93"],megakick:[],megapunch:[],metronome:[],mimic:[],miracleeye:["6L1"],mist:["6L86"],mudslap:[],naturalgift:[],nightmare:[],poisonjab:["6M"],powerswap:["6L1"],protect:["6M"],psychic:["6L1","6M"],psychocut:["6L1"],psychup:["6L1","6M"],psyshock:["6M"],psystrike:["6L100"],raindance:["6M"],recover:["6L1"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],safeguard:["6L1","6M"],sandstorm:["6M"],secretpower:[],seismictoss:[],selfdestruct:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snatch:[],snore:[],solarbeam:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L1"],taunt:["6M"],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],waterpulse:[],willowisp:["6M"],zenheadbutt:[],foulplay:[],magicroom:[],wonderroom:[],poweruppunch:["6M"],confide:["6M"]}}, + mew:{learnset:{acrobatics:["6M"],aerialace:["6M"],aircutter:[],allyswitch:[],amnesia:["6L0"],ancientpower:["6L0"],aquatail:[],attract:["6M"],aurasphere:["6L0"],avalanche:[],barrier:["6L0"],batonpass:["6L0"],blizzard:["6M"],block:[],bodyslam:[],bounce:[],brickbreak:["6M"],brine:[],bugbite:[],bulkup:["6M"],bulldoze:["6M"],bulletseed:[],calmmind:["6M"],captivate:[],chargebeam:["6M"],counter:[],cut:["6M"],darkpulse:["6M"],defensecurl:[],defog:[],dig:["6M"],dive:["6M"],doubleedge:[],doubleteam:["6M"],dragonclaw:["6M"],dragonpulse:[],dragontail:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6M"],echoedvoice:["6M"],embargo:["6M"],endeavor:[],endure:[],energyball:["6M"],explosion:["6M"],facade:["6M"],feintattack:[],fakeout:[],falseswipe:["6M"],fireblast:["6M"],firepunch:[],flamecharge:["6M"],flamethrower:["6M"],flash:["6M"],flashcannon:["6M"],fling:["6M"],fly:["6M"],focusblast:["6M"],focuspunch:[],frostbreath:["6M"],frustration:["6M"],furycutter:[],gastroacid:[],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],gravity:[],gunkshot:[],gyroball:["6M"],hail:["6M"],headbutt:[],healbell:[],heatwave:[],helpinghand:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],hypnosis:[],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irondefense:[],ironhead:[],irontail:[],knockoff:[],lastresort:[],lightscreen:["6M"],lowkick:[],lowsweep:["6M"],magiccoat:[],magnetrise:[],mefirst:["6L0"],megakick:[],megapunch:["6L0"],metronome:["6L0"],mimic:[],mudslap:[],nastyplot:["6L0"],naturalgift:[],nightmare:[],nightshade:[],ominouswind:[],outrage:[],overheat:["6M"],painsplit:[],payback:["6M"],pluck:[],poisonjab:["6M"],pound:["6L0"],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],quash:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],reflecttype:["6L0"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],rollout:[],roost:["6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],scald:["6M"],secretpower:[],seedbomb:[],seismictoss:[],selfdestruct:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],signalbeam:[],silverwind:[],skillswap:[],skyattack:[],skydrop:["6M"],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6M"],smackdown:["6M"],snarl:["6M"],snatch:[],snore:[],softboiled:[],solarbeam:["6M"],spite:[],stealthrock:[],steelwing:["6M"],stoneedge:["6M"],strength:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],superfang:[],superpower:[],surf:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],synthesis:[],tailwind:[],taunt:["6M"],telekinesis:[],teleport:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],transform:["6L0"],trick:[],trickroom:["6M"],twister:[],uproar:[],uturn:["6M"],vacuumwave:[],venoshock:["6M"],voltswitch:["6M"],waterfall:["6M"],waterpulse:[],whirlpool:[],wildcharge:["6M"],willowisp:["6M"],workup:[],worryseed:[],xscissor:["6M"],zapcannon:[],zenheadbutt:[],covet:[],dualchop:[],drillrun:[],foulplay:[],electroweb:[],hypervoice:[],bind:[],afteryou:[],magicroom:[],wonderroom:[],naturepower:["6M"],dazzlinggleam:["6M"],infestation:["6M"],confide:["6M"],poweruppunch:["6M"]}}, + chikorita:{learnset:{ancientpower:["6E"],aromatherapy:["6E"],attract:["6M"],bodyslam:["6E"],bulletseed:[],captivate:[],counter:["6E"],cut:["6M"],doubleedge:[],doubleteam:["6M"],echoedvoice:["6M"],endure:[],energyball:["6M"],facade:["6M"],flail:["6E"],flash:["6M"],frustration:["6M"],furycutter:[],gigadrain:[],grassknot:["6M"],grasspledge:["6T"],grasswhistle:["6E"],growl:["6L0"],headbutt:[],healpulse:["6E"],hiddenpower:["6M"],ingrain:["6E"],irontail:[],leafstorm:["6E"],leechseed:["6E"],lightscreen:["6M"],magicalleaf:["6L0"],magiccoat:[],mimic:[],mudslap:[],naturalgift:["6L0"],naturepower:["6E"],poisonpowder:["6L0"],protect:["6M"],razorleaf:["6L0"],reflect:["6M"],refresh:["6E"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L0"],swordsdance:["6M"],synthesis:["6L0"],tackle:["6L0"],toxic:["6M"],vinewhip:["6E"],worryseed:[],wringout:["6E"]}}, + bayleef:{learnset:{ancientpower:[],aromatherapy:["6L0"],attract:["6M"],bodyslam:["6L0"],bulletseed:[],captivate:[],counter:[],cut:["6M"],doubleedge:[],doubleteam:["6M"],echoedvoice:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],furycutter:[],gigadrain:[],grassknot:["6M"],grasspledge:["6T"],growl:["6L0"],headbutt:[],hiddenpower:["6M"],irontail:[],lightscreen:["6M"],magicalleaf:["6L0"],magiccoat:[],mimic:[],mudslap:[],naturalgift:["6L0"],poisonpowder:["6L0"],protect:["6M"],razorleaf:["6L0"],reflect:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L0"],swordsdance:["6M"],synthesis:["6L0"],tackle:["6L0"],toxic:["6M"],worryseed:[]}}, + meganium:{learnset:{ancientpower:[],aromatherapy:["6L0"],attract:["6M"],bodyslam:["6L0"],bulldoze:["6M"],bulletseed:[],captivate:[],counter:[],cut:["6M"],doubleedge:[],doubleteam:["6M"],dragontail:["6M"],earthquake:["6M"],echoedvoice:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frenzyplant:["6T"],frustration:["6M"],furycutter:[],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],grasspledge:["6T"],growl:["6L0"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],irontail:[],lightscreen:["6M"],magicalleaf:["6L0"],magiccoat:[],mimic:[],mudslap:[],naturalgift:["6L0"],outrage:[],petaldance:["6L0"],poisonpowder:["6L0"],protect:["6M"],razorleaf:["6L0"],reflect:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rocksmash:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L0"],swordsdance:["6M"],synthesis:["6L0"],tackle:["6L0"],toxic:["6M"],worryseed:[],petalblizzard:["6L0"]}}, + cyndaquil:{learnset:{aerialace:["6M"],attract:["6M"],bodyslam:[],captivate:[],covet:["6E"],crushclaw:["6E"],cut:["6M"],defensecurl:["6L0"],dig:["6M"],doubleedge:["6E"],doublekick:["6E"],doubleteam:["6M"],ember:["6L0"],endure:[],eruption:["6L0"],extrasensory:["6E"],facade:["6M"],fireblast:["6M"],firepledge:["6T"],flameburst:["6E"],flamecharge:["6M"],flamethrower:["6M"],flamewheel:["6L0"],flareblitz:["6E"],foresight:["6E"],frustration:["6M"],furyswipes:["6E"],headbutt:[],heatwave:[],hiddenpower:["6M"],howl:["6E"],incinerate:["6M"],inferno:["6L0"],lavaplume:["6L0"],leer:["6L0"],mimic:[],mudslap:[],naturalgift:[],naturepower:["6E"],overheat:["6M"],protect:["6M"],quickattack:["6E"],rest:["6M"],"return":["6M"],reversal:["6E"],rollout:["6L0"],round:["6M"],secretpower:[],sleeptalk:["6M"],smokescreen:["6L0"],snore:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L0"],tackle:["6L0"],thrash:["6E"],toxic:["6M"],wildcharge:["6M"],willowisp:["6M"]}}, + quilava:{learnset:{aerialace:["6M"],attract:["6M"],bodyslam:[],brickbreak:["6M"],captivate:[],cut:["6M"],defensecurl:["6L0"],dig:["6M"],doubleedge:["6L0"],doubleteam:["6M"],ember:["6L0"],endure:[],eruption:["6L0"],facade:["6M"],fireblast:["6M"],firepledge:["6T"],flamecharge:["6M"],flamethrower:["6M"],flamewheel:["6L0"],focuspunch:[],frustration:["6M"],furycutter:[],headbutt:[],heatwave:[],hiddenpower:["6M"],incinerate:["6M"],inferno:["6L0"],lavaplume:["6L0"],leer:["6L0"],mimic:[],mudslap:[],naturalgift:[],overheat:["6M"],protect:["6M"],quickattack:["6L0"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],rollout:["6L0"],round:["6M"],secretpower:[],sleeptalk:["6M"],smokescreen:["6L0"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L0"],tackle:["6L0"],toxic:["6M"],wildcharge:["6M"],willowisp:["6M"],covet:[]}}, + typhlosion:{learnset:{aerialace:["6M"],attract:["6M"],blastburn:["6T"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],counter:[],cut:["6M"],defensecurl:["6L0"],dig:["6M"],doubleedge:["6L0"],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],ember:["6L0"],endure:[],eruption:["6L0"],facade:["6M"],fireblast:["6M"],firepledge:["6T"],firepunch:[],flamecharge:["6M"],flamethrower:["6M"],flamewheel:["6L0"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],gyroball:["6M"],headbutt:[],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],inferno:["6L0"],lavaplume:["6L0"],leer:["6L0"],lowkick:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],overheat:["6M"],protect:["6M"],quickattack:["6L0"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L0"],round:["6M"],secretpower:[],seismictoss:[],shadowclaw:["6M"],sleeptalk:["6M"],smokescreen:["6L0"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L0"],tackle:["6L0"],thunderpunch:[],toxic:["6M"],wildcharge:["6M"],willowisp:["6M"],covet:[]}}, + totodile:{learnset:{aerialace:["6M"],ancientpower:["6E"],aquajet:["6E"],aquatail:["6L0"],attract:["6M"],bite:["6L0"],blizzard:["6M"],block:["6E"],bodyslam:[],brickbreak:["6M"],captivate:[],chipaway:["6L0"],counter:[],crunch:["6E"],cut:["6M"],dig:["6M"],dive:["6M"],doubleedge:[],doubleteam:["6M"],dragonclaw:["6M"],dragondance:["6E"],dynamicpunch:[],endure:[],facade:["6M"],faketears:["6E"],flail:["6L0"],fling:["6M"],focuspunch:[],frustration:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hydropump:["6E"],icebeam:["6M"],icefang:["6L0"],icepunch:["6E"],icywind:[],irontail:[],leer:["6L0"],lowkick:[],megakick:[],megapunch:[],metalclaw:["6E"],mimic:[],mudslap:[],mudsport:["6E"],naturalgift:[],protect:["6M"],rage:["6L0"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],scaryface:["6L0"],scratch:["6L0"],screech:["6L0"],secretpower:[],seismictoss:[],shadowclaw:["6M"],slash:["6L0"],sleeptalk:["6M"],snore:[],spite:[],substitute:["6M"],superpower:["6L0"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],thrash:["6E"],toxic:["6M"],uproar:[],waterfall:["6M"],watergun:["6L0"],waterpledge:["6T"],waterpulse:["6E"],watersport:["6E"],whirlpool:[]}}, + croconaw:{learnset:{aerialace:["6M"],ancientpower:[],aquatail:["6L0"],attract:["6M"],bite:["6L0"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],captivate:[],chipaway:["6L0"],counter:[],crunch:["6L0"],cut:["6M"],dig:["6M"],dive:["6M"],doubleedge:[],doubleteam:["6M"],dragonclaw:["6M"],dynamicpunch:[],endure:[],facade:["6M"],flail:["6L0"],fling:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],hail:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hydropump:["6L0"],icebeam:["6M"],icefang:["6L0"],icepunch:[],icywind:[],irontail:[],leer:["6L0"],lowkick:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],rage:["6L0"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],scaryface:["6L0"],scratch:["6L0"],screech:["6L0"],secretpower:[],seismictoss:[],shadowclaw:["6M"],slash:["6L0"],sleeptalk:["6M"],snore:[],spite:[],strength:["6M"],substitute:["6M"],superpower:["6L0"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],thrash:["6L0"],toxic:["6M"],uproar:[],waterfall:["6M"],watergun:["6L0"],waterpledge:["6T"],waterpulse:[],whirlpool:[],block:[]}}, + feraligatr:{learnset:{aerialace:["6M"],agility:["6L0"],ancientpower:[],aquatail:["6L0"],attract:["6M"],avalanche:[],bite:["6L0"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L0"],counter:[],crunch:["6L0"],cut:["6M"],dig:["6M"],dive:["6M"],doubleedge:[],doubleteam:["6M"],dragonclaw:["6M"],dragonpulse:[],dragontail:["6M"],dynamicpunch:[],earthquake:["6M"],endure:[],facade:["6M"],flail:["6L0"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hydrocannon:["6T"],hydropump:["6L0"],hyperbeam:["6M"],icebeam:["6M"],icefang:["6L0"],icepunch:[],icywind:[],irontail:[],leer:["6L0"],lowkick:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],outrage:[],protect:["6M"],rage:["6L0"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],scaryface:["6L0"],scratch:["6L0"],screech:["6L0"],secretpower:[],seismictoss:[],shadowclaw:["6M"],slash:["6L0"],sleeptalk:["6M"],snore:[],spite:[],strength:["6M"],substitute:["6M"],superpower:["6L0"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],thrash:["6L0"],toxic:["6M"],uproar:[],waterfall:["6M"],watergun:["6L0"],waterpledge:["6T"],waterpulse:[],whirlpool:[],block:[]}}, + sentret:{learnset:{amnesia:["6L36"],aquatail:[],assist:["6E"],attract:["6M"],batonpass:["6L39"],bodyslam:[],brickbreak:["6M"],captivate:[],chargebeam:["6M"],charm:["6E"],covet:["6E"],cut:["6M"],defensecurl:["6L4"],dig:["6M"],doubleedge:["6E"],doubleteam:["6M"],dynamicpunch:[],echoedvoice:["6M"],endure:[],facade:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusenergy:["6E"],focuspunch:[],followme:["6L19"],foresight:["6L1"],frustration:["6M"],furycutter:[],furyswipes:["6L13"],grassknot:["6M"],headbutt:[],helpinghand:["6L16"],hiddenpower:["6M"],honeclaws:["6M"],hypervoice:["6L47"],icebeam:["6M"],icepunch:[],irontail:["6E"],knockoff:[],lastresort:["6E"],mefirst:["6L42"],mimic:[],mudslap:[],naturalgift:["6E"],protect:["6M"],pursuit:["6E"],quickattack:["6L7"],raindance:["6M"],rest:["6L28","6M"],retaliate:["6M"],"return":["6M"],reversal:["6E"],rollout:[],round:["6M"],scratch:["6L1"],secretpower:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],slam:["6L25"],slash:["6E"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],suckerpunch:["6L31"],sunnyday:["6M"],superfang:[],surf:["6M"],swagger:["6M"],swift:[],thief:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],trick:["6E"],uproar:[],uturn:["6M"],waterpulse:[],whirlpool:[],workup:[],poweruppunch:["6M"],confide:["6M"]}}, + furret:{learnset:{amnesia:["6L42"],aquatail:[],attract:["6M"],batonpass:["6L46"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],captivate:[],chargebeam:["6M"],cut:["6M"],defensecurl:["6L1","6L4"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],echoedvoice:["6M"],endure:[],facade:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],followme:["6L21"],foresight:["6L1"],frustration:["6M"],furycutter:[],furyswipes:["6L13"],gigaimpact:["6M"],grassknot:["6M"],headbutt:[],helpinghand:["6L17"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],hypervoice:["6L56"],icebeam:["6M"],icepunch:[],irontail:[],knockoff:[],lastresort:[],mefirst:["6L50"],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],quickattack:["6L1","6L7"],raindance:["6M"],rest:["6L32","6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],rollout:[],round:["6M"],scratch:["6L1"],secretpower:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],slam:["6L28"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],suckerpunch:["6L36"],sunnyday:["6M"],superfang:[],surf:["6M"],swagger:["6M"],swift:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],uproar:[],uturn:["6M"],waterpulse:[],whirlpool:[],workup:[],covet:[],trick:[],poweruppunch:["6M"],confide:["6M"]}}, + hoothoot:{learnset:{aerialace:["6M"],agility:["6E"],aircutter:[],airslash:["6L33"],attract:["6M"],captivate:[],confusion:["6L21"],defog:["6E"],doubleedge:[],doubleteam:["6M"],dreameater:["6L57","6M"],echoedvoice:["6L25","6M"],endure:[],extrasensory:["6L45"],facade:["6M"],feintattack:["6E"],featherdance:["6E"],flash:[],fly:["6M"],foresight:["6L1"],frustration:["6M"],growl:["6L1"],heatwave:[],hiddenpower:["6M"],hypnosis:["6L5"],magiccoat:[],mimic:[],mirrormove:["6E"],mudslap:[],naturalgift:[],nightmare:[],nightshade:["6E"],ominouswind:[],peck:["6L9"],pluck:[],protect:["6M"],psychic:["6M"],psychoshift:["6L49"],psychup:["6M"],raindance:["6M"],recycle:[],reflect:["6L17","6M"],rest:["6M"],"return":["6M"],roost:["6L53","6M"],round:["6M"],secretpower:[],shadowball:["6M"],silverwind:[],skyattack:["6E"],sleeptalk:["6M"],snore:[],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],supersonic:["6E"],swagger:["6M"],swift:[],synchronoise:["6L41"],tackle:["6L1"],tailwind:[],takedown:["6L29"],thief:["6M"],toxic:["6M"],twister:[],uproar:["6L13"],whirlwind:["6E"],wingattack:["6E"],workup:[],zenheadbutt:["6L37"],hypervoice:[],confide:["6M"]}}, + noctowl:{learnset:{aerialace:["6M"],aircutter:[],airslash:["6L37"],attract:["6M"],captivate:[],confusion:["6L22"],defog:[],doubleedge:[],doubleteam:["6M"],dreameater:["6L1","6L67","6M"],echoedvoice:["6L27","6M"],endure:[],extrasensory:["6L52"],facade:["6M"],flash:[],fly:["6M"],foresight:["6L1"],frustration:["6M"],gigaimpact:["6M"],growl:["6L1"],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],hypnosis:["6L1","6L5"],magiccoat:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],ominouswind:[],peck:["6L9"],pluck:[],protect:["6M"],psychic:["6M"],psychoshift:["6L57"],psychup:["6M"],raindance:["6M"],recycle:[],reflect:["6L17","6M"],rest:["6M"],"return":["6M"],roost:["6L62","6M"],round:["6M"],secretpower:[],shadowball:["6M"],silverwind:[],skyattack:["6L1"],sleeptalk:["6M"],snore:[],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],synchronoise:["6L47"],tackle:["6L1"],tailwind:[],takedown:["6L32"],thief:["6M"],toxic:["6M"],twister:[],uproar:["6L13"],workup:[],zenheadbutt:["6L42"],hypervoice:[],confide:["6M"]}}, + ledyba:{learnset:{acrobatics:["6M"],aerialace:["6M"],agility:["6L30"],aircutter:[],attract:["6M"],batonpass:["6L22"],bide:["6E"],brickbreak:["6M"],bugbite:["6E"],bugbuzz:["6L41","6E"],captivate:[],cometpunch:["6L9"],dig:["6M"],dizzypunch:["6E"],doubleedge:["6L38"],doubleteam:["6M"],drainpunch:["6E"],dynamicpunch:[],encore:["6E"],endure:[],facade:["6M"],flash:["6M"],fling:["6M"],focuspunch:["6E"],frustration:["6M"],gigadrain:[],headbutt:[],hiddenpower:["6M"],icepunch:[],knockoff:["6E"],lightscreen:["6L14","6M"],machpunch:["6L17"],megapunch:[],mimic:[],naturalgift:[],ominouswind:[],protect:["6M"],psybeam:["6E"],reflect:["6L14","6M"],refresh:[],rest:["6M"],"return":["6M"],rollout:[],roost:["6M"],round:["6M"],safeguard:["6L14","6M"],screech:["6E"],secretpower:[],silverwind:["6L25","6E"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L6"],swagger:["6M"],swift:["6L33"],swordsdance:["6M"],tackle:["6L1"],tailwind:[],thief:["6M"],thunderpunch:[],toxic:["6M"],uproar:[],uturn:["6M"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + ledian:{learnset:{acrobatics:["6M"],aerialace:["6M"],agility:["6L36"],aircutter:[],attract:["6M"],batonpass:["6L24"],brickbreak:["6M"],bugbite:[],bugbuzz:["6L53"],captivate:[],cometpunch:["6L1","6L9"],dig:["6M"],doubleedge:["6L48"],doubleteam:["6M"],drainpunch:[],dynamicpunch:[],endure:[],facade:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],knockoff:[],lightscreen:["6L14","6M"],machpunch:["6L17"],megapunch:[],mimic:[],mudslap:[],naturalgift:[],ominouswind:[],protect:["6M"],reflect:["6L14","6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rollout:[],roost:["6M"],round:["6M"],safeguard:["6L14","6M"],secretpower:[],silverwind:["6L29"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L1","6L6"],swagger:["6M"],swift:["6L41"],swordsdance:["6M"],tackle:["6L1"],tailwind:[],thief:["6M"],thunderpunch:[],toxic:["6M"],uproar:[],uturn:["6M"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + spinarak:{learnset:{agility:["6L33"],attract:["6M"],batonpass:["6E"],bodyslam:[],bounce:[],bugbite:[],captivate:[],constrict:["6L8"],crosspoison:["6L47"],dig:["6M"],disable:["6E"],doubleedge:[],doubleteam:["6M"],electroweb:["6E"],endure:[],facade:["6M"],flash:["6M"],frustration:["6M"],furyswipes:["6L22"],gigadrain:[],hiddenpower:["6M"],honeclaws:["6M"],leechlife:["6L12"],mimic:[],naturalgift:[],nightshade:["6L15"],nightslash:["6E"],pinmissile:["6L36"],poisonjab:["6L43","6M"],poisonsting:["6L1"],protect:["6M"],psybeam:["6E"],psychic:["6L40","6M"],pursuit:["6E"],ragepowder:["6E"],refresh:[],rest:["6M"],"return":["6M"],round:["6M"],scaryface:["6L5"],secretpower:[],shadowsneak:["6L19"],signalbeam:["6E"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],sonicboom:["6E"],spiderweb:["6L29"],stringshot:["6L1"],strugglebug:["6M"],substitute:["6M"],suckerpunch:["6L26"],sunnyday:["6M"],swagger:["6M"],thief:["6M"],toxic:["6M"],toxicspikes:["6E"],twineedle:["6E"],venoshock:["6M"],xscissor:["6M"],foulplay:[],stickyweb:["6L50"],infestation:["6M"],confide:["6M"],megahorn:["6E"]}}, + ariados:{learnset:{agility:["6L37"],attract:["6M"],bodyslam:[],bounce:[],bugbite:["6L1"],captivate:[],constrict:["6L1","6L8"],crosspoison:["6L55"],dig:["6M"],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],flash:["6M"],frustration:["6M"],furyswipes:["6L23"],gigadrain:[],gigaimpact:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],leechlife:["6L12"],mimic:[],naturalgift:[],nightshade:["6L15"],pinmissile:["6L41"],poisonjab:["6L50","6M"],poisonsting:["6L1"],protect:["6M"],psychic:["6L46","6M"],rest:["6M"],"return":["6M"],round:["6M"],scaryface:["6L1","6L5"],secretpower:[],shadowsneak:["6L19"],signalbeam:[],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],spiderweb:["6L32"],stringshot:["6L1"],strugglebug:["6M"],substitute:["6M"],suckerpunch:["6L28"],sunnyday:["6M"],swagger:["6M"],thief:["6M"],toxic:["6M"],venoshock:["6M"],xscissor:["6M"],foulplay:[],electroweb:[],venomdrench:["6L1"],fellstinger:["6L1"],stickyweb:["6L58"],infestation:["6M"],confide:["6M"]}}, + chinchou:{learnset:{agility:["6E"],amnesia:["6E"],aquaring:["6L42"],attract:["6M"],blizzard:["6M"],bounce:[],brine:["6E"],bubble:["6L12"],bubblebeam:["6L31"],captivate:[],charge:["6L50"],chargebeam:["6M"],confuseray:["6L17"],discharge:["6L39"],dive:[],doubleedge:[],doubleteam:["6M"],electroball:["6L28"],endure:[],facade:["6M"],flail:["6L9","6E"],flash:["6M"],frustration:["6M"],hail:["6M"],healbell:[],hiddenpower:["6M"],hydropump:["6L45"],icebeam:["6M"],icywind:[],mimic:[],mist:["6E"],naturalgift:[],protect:["6M"],psybeam:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],scald:["6M"],screech:["6E"],secretpower:[],shockwave:["6E"],signalbeam:["6L34"],sleeptalk:["6M"],snore:[],spark:["6L20"],substitute:["6M"],suckerpunch:[],supersonic:["6L1"],surf:["6M"],swagger:["6M"],takedown:["6L23"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6L6","6M"],toxic:["6M"],voltswitch:["6M"],waterfall:["6M"],watergun:["6L1"],waterpulse:["6E"],whirlpool:["6E"],wildcharge:["6M"],iondeluge:["6L47"],dazzlinggleam:["6M"],confide:["6M"]}}, + lanturn:{learnset:{aquaring:["6L52"],aquatail:[],attract:["6M"],blizzard:["6M"],bounce:[],brine:[],bubble:["6L12"],bubblebeam:["6L35"],captivate:[],charge:["6L64"],chargebeam:["6M"],confuseray:["6L17"],discharge:["6L47"],dive:[],doubleedge:[],doubleteam:["6M"],electroball:["6L30"],endure:[],facade:["6M"],flail:["6L9"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],healbell:[],hiddenpower:["6M"],hydropump:["6L57"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],mimic:[],naturalgift:[],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],scald:["6M"],secretpower:[],shockwave:[],signalbeam:["6L40"],sleeptalk:["6M"],snore:[],spark:["6L20"],spitup:["6L27"],stockpile:["6L27"],substitute:["6M"],suckerpunch:[],supersonic:["6L1"],surf:["6M"],swagger:["6M"],swallow:["6L27"],takedown:["6L23"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6L6","6M"],toxic:["6M"],voltswitch:["6M"],waterfall:["6M"],watergun:["6L1"],waterpulse:[],whirlpool:[],wildcharge:["6M"],eerieimpulse:["6L1"],iondeluge:["6L60"],dazzlinggleam:["6M"],confide:["6M"]}}, + togepi:{learnset:{afteryou:["6L53"],ancientpower:["6L33"],attract:["6M"],batonpass:["6L41"],bestow:["6L25"],bodyslam:[],captivate:[],charm:["6L1"],counter:[],defensecurl:[],doubleedge:["6L45"],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],encore:["6L17"],endeavor:[],endure:[],extrasensory:["6E"],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],fling:["6M"],followme:["6L21"],foresight:["6E"],frustration:["6M"],futuresight:["6E"],grassknot:["6M"],growl:["6L1"],headbutt:[],healbell:[],helpinghand:[],hiddenpower:["6M"],incinerate:["6M"],lastresort:["6L49"],lightscreen:["6M"],luckychant:["6E"],magiccoat:[],megakick:[],megapunch:[],metronome:["6L5"],mimic:[],mirrormove:["6E"],morningsun:["6E"],mudslap:[],nastyplot:["6E"],naturalgift:[],peck:["6E"],present:["6E"],protect:["6M"],psychic:["6M"],psychoshift:["6E"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rollout:[],round:["6M"],safeguard:["6L37","6M"],secretpower:["6E"],seismictoss:[],shadowball:["6M"],shockwave:[],signalbeam:[],sleeptalk:["6M"],snore:[],softboiled:[],solarbeam:["6M"],storedpower:["6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetkiss:["6L9"],swift:[],telekinesis:[],thunderwave:["6M"],toxic:["6M"],triattack:[],trick:[],uproar:[],waterpulse:[],wish:["6L29"],workup:[],yawn:["6L13"],zenheadbutt:[],covet:[],hypervoice:[],dazzlinggleam:["6M"],confide:["6M"]}}, + togetic:{learnset:{aerialace:["6M"],afteryou:["6L53"],aircutter:[],ancientpower:["6L33"],attract:["6M"],batonpass:["6L41"],bestow:["6L25"],bodyslam:[],brickbreak:["6M"],captivate:[],charm:["6L1"],counter:[],defensecurl:[],defog:[],doubleedge:["6L45"],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],echoedvoice:["6M"],encore:["6L17"],endeavor:[],endure:[],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],fling:["6M"],fly:["6M"],focuspunch:[],followme:["6L21"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],growl:["6L1"],headbutt:[],healbell:[],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],lastresort:["6L49"],lightscreen:["6M"],magicalleaf:["6L1"],magiccoat:[],megakick:[],megapunch:[],metronome:["6L1","6L5"],mimic:[],mudslap:[],naturalgift:[],ominouswind:[],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],rollout:[],roost:["6M"],round:["6M"],safeguard:["6L37","6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],signalbeam:[],silverwind:[],skyattack:[],sleeptalk:["6M"],snore:[],softboiled:[],solarbeam:["6M"],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetkiss:["6L1","6L9"],swift:[],tailwind:[],telekinesis:[],thunderwave:["6M"],toxic:["6M"],trick:[],twister:[],waterpulse:[],wish:["6L29"],workup:[],yawn:["6L13"],zenheadbutt:[],covet:[],hypervoice:[],fairywind:["6L14"],dazzlinggleam:["6M"],confide:["6M"]}}, + togekiss:{learnset:{aerialace:["6M"],aircutter:[],airslash:["6L1"],ancientpower:[],attract:["6M"],aurasphere:["6L1"],brickbreak:["6M"],captivate:[],defog:[],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],echoedvoice:["6M"],endeavor:[],endure:[],extremespeed:["6L1"],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],fling:["6M"],fly:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],headbutt:[],healbell:[],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],lastresort:[],lightscreen:["6M"],magiccoat:[],mudslap:[],naturalgift:[],ominouswind:[],pluck:[],present:[],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],rollout:[],roost:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],silverwind:[],skyattack:["6L1"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tailwind:[],telekinesis:[],thunderwave:["6M"],toxic:["6M"],trick:[],twister:[],waterpulse:[],workup:[],zenheadbutt:[],covet:[],hypervoice:[],afteryou:["6L1"],dazzlinggleam:["6M"],confide:["6M"]}}, + natu:{learnset:{aerialace:["6M"],aircutter:[],allyswitch:[],attract:["6M"],batonpass:[],calmmind:["6M"],captivate:[],confuseray:["6L23"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],drillpeck:["6E"],endure:[],facade:["6M"],feintattack:["6E"],featherdance:["6E"],flash:["6M"],frustration:["6M"],futuresight:["6L36"],gigadrain:[],grassknot:["6M"],guardswap:["6L47"],haze:["6E"],heatwave:[],hiddenpower:["6M"],leer:["6L1"],lightscreen:["6M"],luckychant:["6L12"],magiccoat:[],mefirst:["6L20"],mimic:[],miracleeye:["6L17"],naturalgift:[],nightmare:[],nightshade:["6L6"],ominouswind:["6L44"],painsplit:[],peck:["6L1"],pluck:[],powerswap:["6L47"],protect:["6M"],psychic:["6L50","6M"],psychoshift:["6L33"],psychup:["6M"],psyshock:["6M"],quickattack:["6E"],raindance:["6M"],reflect:["6M"],refresh:["6E"],rest:["6M"],"return":["6M"],roost:["6M","6E"],round:["6M"],secretpower:[],shadowball:["6M"],signalbeam:[],silverwind:[],skillswap:["6E"],skyattack:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],steelwing:["6M","6E"],storedpower:["6L39"],substitute:["6M"],suckerpunch:["6E"],sunnyday:["6M"],swagger:["6M"],swift:[],synchronoise:["6E"],tailwind:[],telekinesis:[],teleport:["6L9"],thief:["6M"],thunderwave:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],twister:[],uturn:["6M"],wish:["6L28"],zenheadbutt:["6E"],magicroom:[],dazzlinggleam:["6M"],confide:["6M"]}}, + xatu:{learnset:{aerialace:["6M"],aircutter:[],allyswitch:[],attract:["6M"],calmmind:["6M"],captivate:[],confuseray:["6L23"],defog:[],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],endure:[],facade:["6M"],flash:["6M"],fly:["6M"],frustration:["6M"],futuresight:["6L42"],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],guardswap:["6L59"],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],leer:["6L1"],lightscreen:["6M"],luckychant:["6L12"],magiccoat:[],mefirst:["6L20"],mimic:[],miracleeye:["6L17"],naturalgift:[],nightmare:[],nightshade:["6L6"],ominouswind:["6L54"],painsplit:[],peck:["6L1"],pluck:[],powerswap:["6L54"],protect:["6M"],psychic:["6L66","6M"],psychoshift:["6L37"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],secretpower:[],shadowball:["6M"],signalbeam:[],silverwind:[],skillswap:[],skyattack:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],steelwing:["6M"],storedpower:["6L47"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swift:[],tailwind:["6L27"],telekinesis:[],teleport:["6L9"],thief:["6M"],thunderwave:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],twister:[],uturn:["6M"],wish:["6L30"],zenheadbutt:[],foulplay:[],magicroom:[],dazzlinggleam:["6M"],confide:["6M"]}}, + mareep:{learnset:{afteryou:["6E"],agility:["6E"],attract:["6M"],bodyslam:["6E"],captivate:[],charge:["6L15","6E"],chargebeam:["6M"],confuseray:["6L25"],cottonguard:["6L36"],cottonspore:["6L11"],defensecurl:[],discharge:["6L32"],doubleedge:[],doubleteam:["6M"],echoedvoice:["6M"],electroball:["6L22"],endure:[],facade:["6M"],flash:["6M"],flatter:["6E"],frustration:["6M"],growl:["6L1"],headbutt:[],healbell:[],hiddenpower:["6M"],irontail:["6E"],lightscreen:["6L43","6M"],magnetrise:[],mimic:[],naturalgift:[],odorsleuth:["6E"],powergem:["6L29"],protect:["6M"],raindance:["6M"],reflect:[],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],sandattack:["6E"],screech:["6E"],secretpower:[],shockwave:[],signalbeam:["6L39"],sleeptalk:["6M"],snore:[],substitute:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],takedown:["6L18","6E"],thunder:["6L46","6M"],thunderbolt:["6M"],thundershock:["6L8"],thunderwave:["6L4","6M"],toxic:["6M"],wildcharge:["6M"],confide:["6M"],eerieimpulse:["6E"],electricterrain:["6E"]}}, + flaaffy:{learnset:{attract:["6M"],bodyslam:[],brickbreak:["6M"],captivate:[],charge:["6L16"],chargebeam:["6M"],confuseray:["6L29"],cottonguard:["6L43"],cottonspore:["6L11"],counter:[],defensecurl:[],discharge:["6L38"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],echoedvoice:["6M"],electroball:["6L25"],endure:[],facade:["6M"],firepunch:[],flash:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],growl:["6L1"],headbutt:[],healbell:[],hiddenpower:["6M"],irontail:[],lightscreen:["6L52","6M"],magnetrise:[],megakick:[],megapunch:[],mimic:[],naturalgift:[],powergem:["6L34"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seismictoss:[],shockwave:[],signalbeam:["6L47"],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],takedown:["6L20"],thunder:["6L56","6M"],thunderbolt:["6M"],thunderpunch:[],thundershock:["6L1","6L8"],thunderwave:["6L1","6L4","6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6M"],afteryou:[],poweruppunch:["6M"],confide:["6M"]}}, + ampharos:{learnset:{attract:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],charge:["6L16"],chargebeam:["6M"],confuseray:["6L29"],cottonguard:["6L46"],cottonspore:["6L11"],counter:[],defensecurl:[],discharge:["6L40"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],echoedvoice:["6M"],electroball:["6L25"],endure:[],facade:["6M"],firepunch:["6L1"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],growl:["6L1"],headbutt:[],healbell:[],hiddenpower:["6M"],hyperbeam:["6M"],irontail:[],lightscreen:["6L57","6M"],magnetrise:[],megakick:[],megapunch:[],mimic:[],naturalgift:[],outrage:[],powergem:["6L35"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rocksmash:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seismictoss:[],shockwave:[],signalbeam:["6L51"],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],takedown:["6L20"],thunder:["6L62","6M"],thunderbolt:["6M"],thunderpunch:["6L30"],thundershock:["6L8"],thunderwave:["6L4","6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6M"],afteryou:[],zapcannon:["6L1"],magneticflux:["6L1"],iondeluge:["6L1"],dragonpulse:["6L1","6L65"],poweruppunch:["6M"],confide:["6M"]}}, + azurill:{learnset:{attract:["6M"],blizzard:["6M"],bodyslam:["6E"],bounce:["6L23"],bubble:["6L7"],bubblebeam:["6L13"],captivate:[],charm:["6L10"],defensecurl:[],doubleedge:[],doubleteam:["6M"],encore:["6E"],endure:[],facade:["6M"],faketears:["6E"],frustration:["6M"],hail:["6M"],headbutt:[],helpinghand:["6L16"],hiddenpower:["6M"],icebeam:["6M"],icywind:[],irontail:[],knockoff:[],lightscreen:["6M"],mimic:[],muddywater:["6E"],mudslap:[],naturalgift:[],protect:["6M"],raindance:["6M"],refresh:["6E"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],scald:["6M"],secretpower:[],sing:["6E"],slam:["6L20","6E"],sleeptalk:["6M"],snore:[],soak:["6E"],splash:["6L1"],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:[],tailwhip:["6L2"],tickle:["6E"],toxic:["6M"],uproar:[],waterfall:["6M"],watergun:["6L1"],waterpulse:[],watersport:["6L5","6E"],whirlpool:[],workup:[],covet:[],hypervoice:[],confide:["6M"]}}, + marill:{learnset:{amnesia:["6E"],aquajet:["6E"],aquaring:["6L28"],aquatail:["6L20"],attract:["6M"],bellydrum:["6E"],blizzard:["6M"],bodyslam:["6E"],brickbreak:["6M"],bubble:["6L1"],bubblebeam:["6L13"],captivate:[],defensecurl:["6L10"],dig:["6M"],dive:[],doubleedge:["6L23"],doubleteam:["6M"],dynamicpunch:[],endure:[],facade:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],futuresight:["6E"],grassknot:["6M"],hail:["6M"],headbutt:[],helpinghand:["6L16"],hiddenpower:["6M"],hydropump:["6L40"],icebeam:["6M"],icepunch:[],icywind:[],irontail:[],knockoff:[],lightscreen:["6M"],megakick:[],megapunch:[],mimic:[],muddywater:["6E"],mudslap:[],naturalgift:[],perishsong:["6E"],present:["6E"],protect:["6M"],raindance:["6L31","6M"],refresh:["6E"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rollout:["6L10"],round:["6M"],scald:["6M"],secretpower:[],seismictoss:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],superpower:["6L37","6E"],supersonic:["6E"],surf:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwhip:["6L2"],toxic:["6M"],waterfall:["6M"],watergun:["6L7"],waterpulse:[],watersport:["6L5","6E"],whirlpool:[],workup:[],covet:[],bounce:[],hypervoice:[],playrough:["6L45"],poweruppunch:["6M"],confide:["6M"],camouflage:["6E"]}}, + azumarill:{learnset:{aquaring:["6L31"],aquatail:["6L21"],attract:["6M"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bubble:["6L1"],bubblebeam:["6L13"],bulldoze:["6M"],captivate:[],defensecurl:["6L10"],dig:["6M"],dive:[],doubleedge:["6L25"],doubleteam:["6M"],dynamicpunch:[],endure:[],facade:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],hail:["6M"],headbutt:[],helpinghand:["6L16"],hiddenpower:["6M"],hydropump:["6L46"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],irontail:[],knockoff:[],lightscreen:["6M"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],raindance:["6L35","6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rollout:["6L10"],round:["6M"],scald:["6M"],secretpower:[],seismictoss:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],superpower:["6L42"],surf:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwhip:["6L1","6L2"],toxic:["6M"],waterfall:["6M"],watergun:["6L7"],waterpulse:[],watersport:["6L1","6L5"],whirlpool:[],workup:[],covet:[],bounce:[],hypervoice:[],playrough:["6L50"],poweruppunch:["6M"],confide:["6M"]}}, + bonsly:{learnset:{attract:["6M"],block:["6L26"],brickbreak:["6M"],calmmind:["6M"],captivate:[],copycat:["6L1"],curse:["6E"],defensecurl:["6E"],dig:["6M"],doubleedge:["6L40"],doubleteam:["6M"],earthpower:[],endure:["6E"],explosion:["6M"],facade:["6M"],feintattack:["6L19"],faketears:["6L1"],flail:["6L5"],frustration:["6M"],harden:["6E"],headbutt:["6E"],helpinghand:[],hiddenpower:["6M"],lowkick:["6L8"],mimic:["6L15"],naturalgift:[],protect:["6M"],psychup:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6L29","6M"],rockthrow:["6L12"],rocktomb:["6L22","6M"],roleplay:[],rollout:["6E"],round:["6M"],sandstorm:["6M"],sandtomb:["6E"],secretpower:[],selfdestruct:["6E"],slam:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],stealthrock:["6E"],substitute:["6M"],suckerpunch:["6L36"],sunnyday:["6M"],swagger:["6M"],thief:["6M"],toxic:["6M"],uproar:[],covet:[],foulplay:[],afteryou:[],counter:["6L33"],naturepower:["6M"],confide:["6M"]}}, + sudowoodo:{learnset:{attract:["6M"],block:["6L26"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],calmmind:["6M"],captivate:[],copycat:["6L1"],counter:["6L33"],curse:["6E"],defensecurl:["6E"],dig:["6M"],doubleedge:["6L40"],doubleteam:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6M"],endure:["6E"],explosion:["6M"],facade:["6M"],feintattack:["6L19"],firepunch:[],flail:["6L1","6L5"],fling:["6M"],focuspunch:[],frustration:["6M"],hammerarm:["6L47"],harden:["6E"],headbutt:["6E"],helpinghand:[],hiddenpower:["6M"],icepunch:[],lowkick:["6L1","6L8"],megakick:[],megapunch:[],mimic:["6L15"],mudslap:[],naturalgift:[],protect:["6M"],psychup:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6L29","6M"],rocksmash:["6M"],rockthrow:["6L1","6L12"],rocktomb:["6L22","6M"],roleplay:[],rollout:["6E"],round:["6M"],sandstorm:["6M"],sandtomb:["6E"],secretpower:[],seismictoss:[],selfdestruct:["6E"],slam:["6L15"],sleeptalk:["6M"],smackdown:["6M"],snore:[],stealthrock:["6E"],stoneedge:["6L43","6M"],strength:["6M"],substitute:["6M"],suckerpunch:["6L36"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],thief:["6M"],thunderpunch:[],torment:["6M"],toxic:["6M"],woodhammer:["6L1"],covet:[],foulplay:[],afteryou:[],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + hoppip:{learnset:{acrobatics:["6L28","6M"],aerialace:["6M"],amnesia:["6E"],aromatherapy:["6E"],attract:["6M"],bounce:["6L46"],bulletseed:["6L19"],captivate:[],confusion:["6E"],cottonguard:["6E"],cottonspore:["6L34"],defensecurl:[],doubleedge:["6E"],doubleteam:["6M"],encore:["6E"],endure:["6E"],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:["6L43"],grassknot:["6M"],headbutt:[],helpinghand:["6E"],hiddenpower:["6M"],leechseed:["6L22"],megadrain:["6L25"],memento:["6L49"],mimic:[],naturalgift:[],poisonpowder:["6L12"],protect:["6M"],psychup:["6M"],ragepowder:["6L31"],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],seedbomb:["6E"],silverwind:[],sleeppowder:["6L16"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],splash:["6L1"],stunspore:["6L14"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],synthesis:["6L4"],tackle:["6L8"],tailwhip:["6L6"],toxic:["6M"],uturn:["6L37","6M"],worryseed:["6L40","6E"],fairywind:["6L10"],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + skiploom:{learnset:{acrobatics:["6L32","6M"],aerialace:["6M"],attract:["6M"],bounce:["6L56"],bulletseed:["6L20"],captivate:[],cottonspore:["6L40"],defensecurl:[],doubleedge:[],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:["6L52"],grassknot:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],leechseed:["6L24"],megadrain:["6L28"],memento:["6L60"],mimic:[],naturalgift:[],poisonpowder:["6L12"],protect:["6M"],psychup:["6M"],ragepowder:["6L36"],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],seedbomb:[],silverwind:[],sleeppowder:["6L16"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],splash:["6L1"],stunspore:["6L14"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],synthesis:["6L1","6L4"],tackle:["6L1","6L8"],tailwhip:["6L1","6L6"],toxic:["6M"],uturn:["6L44","6M"],worryseed:["6L48"],fairywind:["6L10"],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + jumpluff:{learnset:{acrobatics:["6L34","6M"],aerialace:["6M"],attract:["6M"],bounce:["6L64"],bulletseed:["6L20"],captivate:[],cottonspore:["6L44"],defensecurl:[],doubleedge:[],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],falseswipe:[],flash:["6M"],frustration:["6M"],gigadrain:["6L59"],gigaimpact:["6M"],grassknot:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],leechseed:["6L24"],megadrain:["6L29"],memento:["6L69"],mimic:[],naturalgift:[],poisonpowder:["6L12"],protect:["6M"],psychup:["6M"],ragepowder:["6L39"],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],seedbomb:[],silverwind:[],sleeppowder:["6L16"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],splash:["6L1"],stunspore:["6L14"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],synthesis:["6L1","6L4"],tackle:["6L1","6L8"],tailwhip:["6L1","6L6"],toxic:["6M"],uturn:["6L49","6M"],worryseed:["6L54"],fairywind:["6L10"],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + aipom:{learnset:{acrobatics:["6M"],aerialace:["6M"],agility:["6L29","6E"],astonish:["6L8"],attract:["6M"],batonpass:["6L11"],beatup:["6E"],bodyslam:[],bounce:["6E"],brickbreak:["6M"],captivate:[],counter:["6E"],covet:["6E"],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:[],doublehit:["6L32"],doubleslap:["6E"],doubleteam:["6M"],dreameater:["6M"],dynamicpunch:[],endure:[],facade:["6M"],fakeout:["6E"],firepunch:[],fling:["6L36","6M"],focuspunch:[],frustration:["6M"],furycutter:[],furyswipes:["6L18"],grassknot:["6M"],gunkshot:[],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],icepunch:[],irontail:[],knockoff:[],lastresort:["6L43"],lowkick:[],lowsweep:["6M"],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],nastyplot:["6L39"],naturalgift:[],nightmare:[],payback:["6M"],protect:["6M"],pursuit:["6E"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6E"],rocksmash:["6M"],roleplay:[],round:["6M"],sandattack:["6L4"],scratch:["6L1"],screech:["6L25","6E"],secretpower:[],seedbomb:[],seismictoss:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],slam:["6E"],sleeptalk:["6M"],snatch:[],snore:[],solarbeam:["6M"],spite:["6E"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L22"],switcheroo:["6E"],tailwhip:["6L1"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],tickle:["6L15"],toxic:["6M"],uproar:[],uturn:["6M"],waterpulse:[],workup:[],foulplay:[],poweruppunch:["6M"],confide:["6M"]}}, + ambipom:{learnset:{acrobatics:["6M"],aerialace:["6M"],agility:["6L29"],astonish:["6L1","6L8"],attract:["6M"],batonpass:["6L11"],bounce:[],brickbreak:["6M"],captivate:[],cut:["6M"],dig:["6M"],doublehit:["6L32"],doubleteam:["6M"],dreameater:["6M"],endure:[],facade:["6M"],firepunch:[],fling:["6L36","6M"],focuspunch:[],frustration:["6M"],furycutter:[],furyswipes:["6L18"],gigaimpact:["6M"],grassknot:["6M"],gunkshot:[],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icepunch:[],irontail:[],knockoff:[],lastresort:["6L43"],lowkick:[],lowsweep:["6M"],mudslap:[],nastyplot:["6L39"],naturalgift:[],payback:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],roleplay:[],round:["6M"],sandattack:["6L1","6L4"],scratch:["6L1"],screech:["6L25"],secretpower:[],seedbomb:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],snatch:[],snore:[],solarbeam:["6M"],spite:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L22"],tailwhip:["6L1"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],tickle:["6L15"],toxic:["6M"],uproar:[],uturn:["6M"],waterpulse:[],workup:[],covet:[],foulplay:[],poweruppunch:["6M"],confide:["6M"]}}, + sunkern:{learnset:{absorb:["6L1"],attract:["6M"],bide:["6E"],bulletseed:[],captivate:[],curse:["6E"],cut:["6M"],doubleedge:["6L37"],doubleteam:["6M"],earthpower:[],encore:["6E"],endeavor:["6L25"],endure:["6E"],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:["6L22"],grassknot:["6M"],grasswhistle:["6L7","6E"],growth:["6L1"],helpinghand:["6E"],hiddenpower:["6M"],ingrain:["6L4","6E"],leechseed:["6L13","6E"],lightscreen:["6M"],megadrain:["6L10"],mimic:[],morningsun:["6E"],naturalgift:["6L31","6E"],naturepower:["6M","6E"],protect:["6M"],razorleaf:["6L16"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:["6L43"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6L34","6M"],substitute:["6M"],sunnyday:["6L40","6M"],swagger:["6M"],sweetscent:["6E"],swordsdance:["6M"],synthesis:["6L28"],toxic:["6M"],uproar:[],worryseed:["6L19"],afteryou:[],confide:["6M"]}}, + sunflora:{learnset:{absorb:["6L1"],attract:["6M"],bulletseed:["6L25"],captivate:[],cut:["6M"],doubleedge:["6L37"],doubleteam:["6M"],earthpower:[],endeavor:[],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:["6L22"],gigaimpact:["6M"],grassknot:["6M"],grasswhistle:["6L7"],growth:["6L1"],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],ingrain:["6L4"],leafstorm:["6L43"],leechseed:["6L13"],lightscreen:["6M"],megadrain:["6L10"],mimic:[],naturalgift:["6L31"],petaldance:["6L28"],pound:["6L1"],protect:["6M"],razorleaf:["6L16"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:[],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6L34","6M"],substitute:["6M"],sunnyday:["6L40","6M"],swagger:["6M"],swordsdance:["6M"],synthesis:[],toxic:["6M"],uproar:[],worryseed:["6L19"],afteryou:[],flowershield:["6L1"],petalblizzard:["6L50"],naturepower:["6M"],confide:["6M"]}}, + yanma:{learnset:{aerialace:["6M"],aircutter:[],airslash:["6L54"],ancientpower:["6L33"],attract:["6M"],bugbite:[],bugbuzz:["6L57"],captivate:[],defog:[],detect:["6L17"],doubleedge:["6E"],doubleteam:["6L11","6M"],dreameater:["6M"],endure:[],facade:["6M"],feintattack:["6E"],feint:["6E"],flash:["6M"],foresight:["6L1"],frustration:["6M"],gigadrain:[],headbutt:[],hiddenpower:["6M"],hypnosis:["6L38"],leechlife:["6E"],mimic:[],naturalgift:[],ominouswind:[],protect:["6M"],psychic:["6M"],pursuit:["6L30","6E"],quickattack:["6L6"],rest:["6M"],"return":["6M"],reversal:["6E"],roost:["6M"],round:["6M"],screech:["6L46"],secretpower:["6E"],shadowball:["6M"],signalbeam:["6E"],silverwind:["6E"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],sonicboom:["6L14"],steelwing:["6M"],stringshot:[],substitute:["6M"],sunnyday:["6M"],supersonic:["6L22"],swagger:["6M"],swift:[],tackle:["6L1"],tailwind:[],thief:["6M"],toxic:["6M"],uproar:["6L27"],uturn:["6L49","6M"],whirlwind:["6E"],wingattack:["6L43"],confide:["6M"]}}, + yanmega:{learnset:{aerialace:["6M"],aircutter:[],airslash:["6L1","6L54"],ancientpower:["6L33"],attract:["6M"],bugbite:["6L1"],bugbuzz:["6L1","6L57"],captivate:[],defog:[],detect:["6L17"],doubleteam:["6L1","6L11","6M"],dreameater:["6M"],endure:[],facade:["6M"],feint:["6L38"],flash:["6M"],foresight:["6L1"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],mudslap:[],naturalgift:[],nightslash:["6L1"],ominouswind:[],protect:["6M"],psychic:["6M"],psychup:["6M"],pursuit:["6L30"],quickattack:["6L1","6L6"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],screech:["6L46"],secretpower:[],shadowball:["6M"],signalbeam:[],silverwind:[],slash:["6L43"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],sonicboom:["6L14"],steelwing:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L22"],swagger:["6M"],swift:[],tackle:["6L1"],tailwind:[],thief:["6M"],toxic:["6M"],uproar:["6L27"],uturn:["6L49","6M"],confide:["6M"]}}, + wooper:{learnset:{acidspray:["6E"],afteryou:["6E"],amnesia:["6L23"],ancientpower:["6E"],aquatail:[],attract:["6M"],blizzard:["6M"],bodyslam:["6E"],bulldoze:["6M"],captivate:[],counter:["6E"],curse:["6E"],defensecurl:[],dig:["6M"],dive:[],doubleedge:[],doublekick:["6E"],doubleteam:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6L33","6M"],encore:["6E"],endure:[],facade:["6M"],flash:["6M"],frustration:["6M"],hail:["6M"],haze:["6L43"],headbutt:[],hiddenpower:["6M"],icebeam:["6M"],icepunch:[],icywind:[],irontail:[],mimic:[],mist:["6L43"],mudbomb:["6L19"],muddywater:["6L47"],mudshot:["6L9"],mudslap:[],mudsport:["6L5","6E"],naturalgift:[],protect:["6M"],raindance:["6L37","6M"],recover:["6E"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rollout:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],scald:["6M"],secretpower:[],slam:["6L15"],sleeptalk:["6M","6E"],sludgebomb:["6M"],sludgewave:["6M"],snore:[],spitup:["6E"],stockpile:["6E"],substitute:["6M"],surf:["6M"],swagger:["6M"],swallow:["6E"],tailwhip:["6L1"],toxic:["6M"],waterfall:["6M"],watergun:["6L1"],waterpulse:[],whirlpool:[],yawn:["6L29"],infestation:["6M"],confide:["6M"],eerieimpulse:["6E"]}}, + quagsire:{learnset:{amnesia:["6L24"],ancientpower:[],aquatail:[],attract:["6M"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],counter:[],defensecurl:[],dig:["6M"],dive:[],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6L36","6M"],endure:[],facade:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],haze:["6L48"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],irontail:[],megakick:[],megapunch:[],mimic:[],mist:["6L48"],mudbomb:["6L19"],muddywater:["6L53"],mudshot:["6L9"],mudslap:[],mudsport:["6L1","6L5"],naturalgift:[],protect:["6M"],raindance:["6L41","6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],scald:["6M"],secretpower:[],seismictoss:[],slam:["6L15"],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6M"],snore:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],tailwhip:["6L1"],thief:["6M"],toxic:["6M"],waterfall:["6M"],watergun:["6L1"],waterpulse:[],whirlpool:[],yawn:["6L31"],afteryou:[],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + murkrow:{learnset:{aerialace:["6M"],aircutter:[],assurance:["6L25","6E"],astonish:["6L1"],attract:["6M"],bravebird:["6E"],calmmind:["6M"],captivate:[],confuseray:["6E"],darkpulse:["6M"],defog:[],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],drillpeck:["6E"],embargo:["6M"],endure:[],facade:["6M"],feintattack:["6L35","6E"],featherdance:["6E"],fly:["6M"],foulplay:["6L45"],frustration:["6M"],haze:["6L11"],heatwave:[],hiddenpower:["6M"],icywind:[],meanlook:["6L41"],mimic:[],mirrormove:["6E"],mudslap:[],naturalgift:[],nightmare:[],nightshade:["6L21"],ominouswind:[],payback:["6M"],peck:["6L1"],perishsong:["6E"],pluck:[],protect:["6M"],psychic:["6M"],psychoshift:["6E"],psychup:["6M"],pursuit:["6L5"],quash:["6L65","6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roost:["6M","6E"],round:["6M"],screech:["6E"],secretpower:[],shadowball:["6M"],skyattack:["6E"],sleeptalk:["6M"],snarl:["6M"],snatch:[],snore:[],spite:[],steelwing:["6M"],substitute:["6M"],suckerpunch:["6L55"],sunnyday:["6M"],swagger:["6M"],swift:[],tailwind:["6L50"],taunt:["6L31","6M"],thief:["6M"],thunderwave:["6M"],torment:["6L61","6M"],toxic:["6M"],twister:[],uproar:[],whirlwind:["6E"],wingattack:["6L15","6E"],confide:["6M"]}}, + honchkrow:{learnset:{aerialace:["6M"],aircutter:[],astonish:["6L1"],attract:["6M"],calmmind:["6M"],captivate:[],darkpulse:["6L75","6M"],defog:[],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],endure:[],facade:["6M"],fly:["6M"],foulplay:["6L45"],frustration:["6M"],gigaimpact:["6M"],haze:["6L1"],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],mudslap:[],nastyplot:["6L35"],naturalgift:[],nightslash:["6L1","6L55"],ominouswind:[],payback:["6M"],pluck:[],protect:["6M"],psychic:["6M"],psychup:["6M"],pursuit:["6L1"],quash:["6L65","6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roost:["6M"],round:["6M"],secretpower:[],shadowball:["6M"],skyattack:[],sleeptalk:["6M"],snarl:["6M"],snatch:[],spite:[],steelwing:["6M"],substitute:["6M"],suckerpunch:["6L1"],sunnyday:["6M"],superpower:[],swagger:["6L25","6M"],swift:[],tailwind:[],taunt:["6M"],thief:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],twister:[],uproar:[],wingattack:["6L1"],icywind:[],confide:["6M"]}}, + misdreavus:{learnset:{aerialace:["6M"],astonish:["6L0"],attract:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],confuseray:["6L0"],curse:["6E"],darkpulse:[],defensecurl:[],destinybond:["6E"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],embargo:["6M"],endure:[],facade:["6M"],flash:["6M"],frustration:["6M"],growl:["6L0"],grudge:["6L0"],headbutt:[],healbell:[],hex:["6L0"],hiddenpower:["6M"],icywind:[],imprison:["6E"],inferno:[],magiccoat:[],meanlook:["6L0"],memento:["6E"],mimic:[],nastyplot:["6E"],naturalgift:[],nightmare:[],ominouswind:["6E"],painsplit:["6L0"],payback:["6M"],perishsong:["6L0"],powergem:["6L0"],protect:["6M"],psybeam:["6L0"],psychic:["6M"],psychup:["6M"],psywave:["6L0"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],screech:["6E"],secretpower:[],shadowball:["6M"],shadowsneak:["6E"],shockwave:[],skillswap:["6E"],sleeptalk:["6M"],snatch:[],snore:[],spite:["6E"],substitute:["6M"],suckerpunch:["6E"],sunnyday:["6M"],swagger:["6M"],swift:[],taunt:["6M"],telekinesis:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],uproar:[],willowisp:["6M"],wonderroom:["6E"],foulplay:[],hypervoice:[],magicroom:[]}}, + mismagius:{learnset:{aerialace:["6M"],astonish:["6L0"],attract:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],darkpulse:[],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],embargo:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],growl:["6L0"],headbutt:[],healbell:[],hiddenpower:["6M"],hyperbeam:["6M"],icywind:[],luckychant:["6L0"],magicalleaf:["6L0"],magiccoat:[],naturalgift:[],ominouswind:[],painsplit:[],payback:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],psywave:["6L0"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],skillswap:[],sleeptalk:["6M"],snatch:[],snore:[],spite:["6L0"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swift:[],taunt:["6M"],telekinesis:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],uproar:[],willowisp:["6M"],foulplay:[],hypervoice:[],magicroom:[],wonderroom:[]}}, + unown:{learnset:{hiddenpower:["6L1"]}}, + wynaut:{learnset:{charm:["6L1"],counter:["6L15"],destinybond:["6L15"],encore:["6L1"],mirrorcoat:["6L15"],safeguard:["6L15","6M"],splash:["6L1"],tickle:[]}}, + wobbuffet:{learnset:{charm:[],counter:["6L1"],destinybond:["6L1"],encore:[],mirrorcoat:["6L1"],safeguard:["6L1","6M"]}}, + girafarig:{learnset:{agility:["6L14"],amnesia:["6E"],assurance:["6L28"],astonish:["6L1"],attract:["6M"],batonpass:["6L23"],beatup:["6E"],bodyslam:[],bulldoze:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],confusion:["6L1"],crunch:["6L46"],doubleedge:[],doublehit:["6L32"],doublekick:["6E"],doubleteam:["6M"],dreameater:["6M"],earthquake:["6M"],echoedvoice:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],foresight:["6E"],frustration:["6M"],futuresight:["6E"],grassknot:["6M"],gravity:[],growl:["6L1"],guardswap:["6L1"],headbutt:[],hiddenpower:["6M"],irontail:[],lightscreen:["6M"],magiccoat:["6E"],meanlook:["6E"],mimic:[],mirrorcoat:["6E"],mudslap:[],naturalgift:[],nightmare:[],odorsleuth:["6L5"],powerswap:["6L1"],protect:["6M"],psybeam:["6L19"],psychic:["6L37","6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],razorwind:["6E"],recycle:[],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],secretpower:["6E"],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:["6E"],sleeptalk:["6M"],snore:[],stomp:["6L10"],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],takedown:["6E"],telekinesis:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],uproar:[],wish:["6E"],workup:[],zenheadbutt:["6L41"],foulplay:[],hypervoice:[],dazzlinggleam:["6M"],confide:["6M"]}}, + pineco:{learnset:{attract:["6M"],bide:["6L20"],bodyslam:[],bugbite:["6L9"],bulldoze:["6M"],captivate:[],counter:["6E"],defensecurl:[],dig:["6M"],doubleedge:["6L45","6E"],doubleteam:["6M"],earthquake:["6M"],endure:["6E"],explosion:["6L34","6M"],facade:["6M"],flail:["6E"],frustration:["6M"],gigadrain:[],gravity:[],gyroball:["6L42","6M"],headbutt:[],hiddenpower:["6M"],irondefense:["6L39"],lightscreen:["6M"],mimic:[],naturalgift:["6L23"],painsplit:[],payback:["6L31","6M"],pinmissile:["6E"],powertrick:["6E"],protect:["6L1","6M"],rapidspin:["6L17"],reflect:["6M"],refresh:[],rest:["6M"],"return":["6M"],revenge:["6E"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],sandstorm:["6M"],sandtomb:["6E"],secretpower:[],selfdestruct:["6L6"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],spikes:["6L28"],stealthrock:["6E"],strength:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6E"],tackle:["6L1"],takedown:["6L12"],toxic:["6M"],toxicspikes:["6E"],venoshock:["6M"],drillrun:[],confide:["6M"]}}, + forretress:{learnset:{attract:["6M"],autotomize:["6L32"],bide:["6L20"],block:[],bodyslam:[],bugbite:["6L1"],bulldoze:["6M"],captivate:[],counter:[],defensecurl:[],dig:["6M"],doubleedge:["6L56"],doubleteam:["6M"],earthquake:["6M"],endure:[],explosion:["6L42","6M"],facade:["6M"],flashcannon:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],gravity:[],gyroball:["6L50","6M"],headbutt:[],heavyslam:["6L1","6L70"],hiddenpower:["6M"],hyperbeam:["6M"],irondefense:["6L46"],lightscreen:["6M"],magnetrise:["6L1","6L60"],mimic:[],mirrorshot:["6L31"],naturalgift:["6L23"],painsplit:[],payback:["6L36","6M"],protect:["6L1","6M"],rapidspin:["6L17"],reflect:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],sandstorm:["6M"],secretpower:[],selfdestruct:["6L1"],signalbeam:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],spikes:["6L28"],stealthrock:[],strength:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],takedown:["6L12"],toxic:["6M"],toxicspikes:["6L1"],venoshock:["6M"],voltswitch:["6M"],zapcannon:["6L1","6L64"],drillrun:[],confide:["6M"]}}, + dunsparce:{learnset:{agility:["6E"],ancientpower:["6L19","6E"],aquatail:[],astonish:["6E"],attract:["6M"],bide:["6E"],bite:["6E"],blizzard:["6M"],bodyslam:[],bulldoze:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],coil:["6L37"],counter:[],curse:["6E"],defensecurl:["6L1"],dig:["6L31","6M"],doubleedge:["6L34"],doubleteam:["6M"],dreameater:["6M"],drillrun:["6L43"],earthquake:["6M"],endeavor:["6L46"],endure:["6L40"],facade:["6M"],fireblast:["6M"],flail:["6L49"],flamethrower:["6M"],frustration:["6M"],glare:["6L28"],gyroball:["6M"],headbutt:["6E"],hex:["6E"],hiddenpower:["6M"],icebeam:["6M"],incinerate:["6M"],irontail:[],lastresort:[],magiccoat:["6E"],mimic:[],mudslap:[],naturalgift:[],nightmare:[],painsplit:[],poisonjab:["6M"],protect:["6M"],psychup:["6M"],pursuit:["6L10"],rage:["6L1"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L4"],roost:["6L25","6M"],round:["6M"],screech:["6L13"],secretpower:["6E"],shadowball:["6M"],shockwave:[],sleeptalk:["6M","6E"],snore:["6E"],solarbeam:["6M"],spite:["6L7"],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],takedown:["6L22"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trumpcard:["6E"],waterpulse:[],wildcharge:["6M"],yawn:["6L16"],zenheadbutt:[],bind:[],confide:["6M"]}}, + gligar:{learnset:{acrobatics:["6L22","6M"],aerialace:["6M"],agility:["6E"],aquatail:[],attract:["6M"],batonpass:["6E"],brickbreak:["6M"],bulldoze:["6M"],captivate:[],counter:["6E"],crosspoison:["6E"],cut:["6M"],darkpulse:["6M"],defog:[],dig:["6M"],doubleedge:["6E"],doubleteam:["6M"],dreameater:[],earthpower:[],earthquake:["6M"],endure:[],facade:["6M"],feintattack:["6L19"],falseswipe:["6M"],feint:["6E"],fling:["6M"],frustration:["6M"],furycutter:["6L16"],guillotine:["6L55"],harden:["6L7"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],irontail:[],knockoff:["6L10"],metalclaw:["6E"],mimic:[],naturalgift:[],nightslash:["6E"],payback:["6M"],poisonjab:["6M"],poisonsting:["6L1"],poisontail:["6E"],powertrick:["6E"],protect:["6M"],quickattack:["6L13"],raindance:["6M"],razorwind:["6E"],rest:["6M"],"return":["6M"],rockclimb:["6E"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roost:["6M"],round:["6M"],sandattack:["6L4"],sandstorm:["6M"],sandtomb:["6E"],screech:["6L35"],secretpower:[],skyuppercut:["6L45"],slash:["6L27"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],stealthrock:[],steelwing:["6M"],stoneedge:["6M"],strength:["6M"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6L50","6M"],tailwind:[],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6M"],uturn:["6L30","6M"],venoshock:["6M"],wingattack:["6E"],xscissor:["6L40","6M"],bugbite:[],confide:["6M"]}}, + gliscor:{learnset:{acrobatics:["6L22","6M"],aerialace:["6M"],aquatail:[],attract:["6M"],batonpass:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],cut:["6M"],darkpulse:["6M"],defog:[],dig:["6M"],doubleteam:["6M"],earthpower:[],earthquake:["6M"],endure:[],facade:["6M"],feintattack:["6L19"],falseswipe:["6M"],firefang:["6L1"],fling:["6M"],frustration:["6M"],furycutter:["6L16"],gigaimpact:["6M"],guillotine:["6L1","6L55"],harden:["6L1","6L7"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icefang:["6L1"],irontail:[],knockoff:["6L1","6L10"],mudslap:[],naturalgift:[],nightslash:["6L27"],payback:["6M"],poisonjab:["6L1","6M"],protect:["6M"],quickattack:["6L13"],raindance:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roost:["6M"],round:["6M"],sandattack:["6L1","6L4"],sandstorm:["6M"],screech:["6L35"],secretpower:[],skyattack:[],skyuppercut:["6L45"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],stealthrock:[],steelwing:["6M"],stoneedge:["6M"],strength:["6M"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6L50","6M"],tailwind:[],taunt:["6M"],thief:["6M"],thunderfang:["6L1"],torment:["6M"],toxic:["6M"],uturn:["6L30","6M"],venoshock:["6M"],xscissor:["6L40","6M"],bugbite:[],confide:["6M"]}}, + snubbull:{learnset:{attract:["6M"],bite:["6L7"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],captivate:[],charm:["6L1"],closecombat:["6E"],counter:[],crunch:["6L49","6E"],defensecurl:[],dig:["6M"],doubleedge:["6E"],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],endure:[],facade:["6M"],feintattack:["6E"],fireblast:["6M"],firefang:["6L1","6E"],firepunch:[],flamethrower:["6M"],fling:["6M"],focuspunch:["6E"],frustration:["6M"],headbutt:["6L19"],healbell:["6E"],hiddenpower:["6M"],icefang:["6L1","6E"],icepunch:[],incinerate:["6M"],lastresort:[],lick:["6L13"],lowkick:[],megakick:[],megapunch:[],metronome:["6E"],mimic:["6E"],mudslap:[],naturalgift:[],overheat:["6M"],payback:["6L43","6M"],present:["6E"],protect:["6M"],rage:["6L31"],raindance:["6M"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6L25","6M"],rocksmash:["6M"],round:["6M"],scaryface:["6L1"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],sleeptalk:["6M"],sludgebomb:["6M"],smellingsalts:["6E"],snarl:["6M"],snore:["6E"],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superfang:[],superpower:[],swagger:["6M"],tackle:["6L1"],tailwhip:["6L1"],takedown:[],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderfang:["6L1","6E"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],waterpulse:[],wildcharge:["6M"],workup:[],covet:[],hypervoice:[],playrough:["6L37"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + granbull:{learnset:{attract:["6M"],bite:["6L7"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],captivate:[],charm:["6L1"],counter:[],crunch:["6L59"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],endure:[],facade:["6M"],fireblast:["6M"],firefang:["6L1"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],headbutt:["6L19"],healbell:[],hiddenpower:["6M"],hyperbeam:["6M"],icefang:["6L1"],icepunch:[],incinerate:["6M"],irontail:[],lastresort:[],lick:["6L13"],lowkick:[],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],outrage:["6L1","6L67"],overheat:["6M"],payback:["6L51","6M"],protect:["6M"],rage:["6L35"],raindance:["6M"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6L27","6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6L1"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],sleeptalk:["6M"],sludgebomb:["6M"],snarl:["6M"],snore:[],solarbeam:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superfang:[],superpower:[],swagger:["6M"],tackle:["6L1"],tailwhip:["6L1"],takedown:[],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderfang:["6L1"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],waterpulse:[],wildcharge:["6M"],workup:[],covet:[],hypervoice:[],playrough:["6L43"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + qwilfish:{learnset:{acidspray:["6E"],aquajet:["6E"],aquatail:["6L45"],astonish:["6E"],attract:["6M"],blizzard:["6M"],bounce:[],brine:["6L33","6E"],bubblebeam:["6E"],captivate:[],defensecurl:[],destinybond:["6L1","6L53"],dive:[],doubleedge:[],doubleteam:["6M"],endure:[],explosion:["6M"],facade:["6M"],flail:["6E"],frustration:["6M"],gyroball:["6M"],hail:["6M"],harden:["6L9"],haze:["6E"],headbutt:[],hiddenpower:["6M"],hydropump:["6L1","6L57"],icebeam:["6M"],icywind:[],mimic:[],minimize:["6L9"],mudslap:[],naturalgift:[],painsplit:[],payback:["6M"],pinmissile:["6L37"],poisonjab:["6L49","6M"],poisonsting:["6L1"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],revenge:["6L29"],rollout:["6L17"],round:["6M"],scald:["6M"],secretpower:[],selfdestruct:[],shadowball:["6M"],shockwave:[],signalbeam:["6E"],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6M"],snore:[],spikes:["6L1"],spitup:["6L25"],stockpile:["6L25"],substitute:["6M"],supersonic:["6E"],surf:["6M"],swagger:["6M"],swift:[],swordsdance:[],tackle:["6L1"],takedown:["6L41"],taunt:["6M"],thunderwave:["6M"],toxic:["6M"],toxicspikes:["6L21"],venoshock:["6M"],waterfall:["6M"],watergun:["6L13"],waterpulse:["6E"],whirlpool:[],fellstinger:["6L1","6L60"],bubble:["6L1"],confide:["6M"]}}, + shuckle:{learnset:{acid:["6E"],acupressure:["6E"],ancientpower:[],attract:["6M"],bide:["6L1"],bodyslam:[],bugbite:["6L42"],bulldoze:["6M"],captivate:[],constrict:["6L1"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],earthpower:[],earthquake:["6M"],encore:["6L5"],endure:[],facade:["6M"],finalgambit:["6E"],flash:["6M"],frustration:["6M"],gastroacid:["6L27"],guardsplit:["6L45"],gyroball:["6M"],headbutt:[],helpinghand:["6E"],hiddenpower:["6M"],knockoff:["6E"],mimic:[],mudslap:["6E"],naturalgift:[],powersplit:["6L45"],powertrick:["6L31"],protect:["6M"],rest:["6L20","6M"],"return":["6M"],rockblast:["6E"],rockpolish:["6M"],rockslide:["6L38","6M"],rocksmash:["6M"],rockthrow:["6L23"],rocktomb:["6M"],rollout:["6L1"],round:["6M"],safeguard:["6L16","6M"],sandstorm:["6M"],sandtomb:["6E"],secretpower:[],shellsmash:["6L34"],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6M"],smackdown:["6M"],snore:[],stealthrock:[],stoneedge:["6L49","6M"],strength:["6M"],stringshot:[],strugglebug:["6L12","6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6E"],toxic:["6M"],venoshock:["6M"],withdraw:["6L1"],wrap:["6L9"],bind:[],afteryou:[],stickyweb:["6L1","6L53"],infestation:["6M"],confide:["6M"]}}, + heracross:{learnset:{aerialace:["6L10","6M"],attract:["6M"],bide:["6E"],bodyslam:[],brickbreak:["6L25","6M"],bugbite:[],bulkup:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L16"],closecombat:["6L34"],counter:["6L19"],cut:["6M"],dig:["6M"],doubleedge:["6E"],doubleteam:["6M"],earthquake:["6M"],endure:["6L1"],facade:["6M"],falseswipe:["6M"],feint:["6L37"],flail:["6E"],fling:["6M"],focusblast:["6M"],focuspunch:["6E"],frustration:["6M"],furyattack:["6L7"],furycutter:[],gigaimpact:["6M"],harden:["6E"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hornattack:["6L1"],hyperbeam:["6M"],irondefense:[],knockoff:[],leer:["6L1"],lowkick:[],megahorn:["6L46","6E"],mimic:[],naturalgift:[],nightslash:["6L1"],protect:["6M"],pursuit:["6E"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6E"],reversal:["6L43"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],secretpower:[],seismictoss:["6E"],shadowclaw:["6M"],sleeptalk:["6M"],smackdown:["6M"],snore:[],stoneedge:["6M"],strength:["6M"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],tackle:["6L1"],takedown:["6L28"],thief:["6M"],toxic:["6M"],vacuumwave:[],venoshock:["6M"],workup:[],armthrust:["6L1"],bulletseed:["6L1"],pinmissile:["6L31"],confide:["6M"],rockblast:["6E"]}}, + sneasel:{learnset:{aerialace:["6M"],agility:["6L20"],assist:["6E"],attract:["6M"],avalanche:["6E"],beatup:["6L28"],bite:["6E"],blizzard:["6M"],brickbreak:["6M"],calmmind:["6M"],captivate:[],counter:["6E"],crushclaw:["6E"],cut:["6M"],darkpulse:["6M"],defensecurl:[],dig:["6M"],doubleedge:[],doublehit:["6E"],doubleteam:["6M"],dreameater:["6M"],dynamicpunch:[],embargo:["6M"],endure:[],facade:["6M"],feintattack:["6L10"],fakeout:["6E"],falseswipe:["6M"],feint:["6E"],fling:["6M"],focuspunch:[],foresight:["6E"],frustration:["6M"],furycutter:[],furyswipes:["6L16"],hail:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6L25","6M"],icebeam:["6M"],icepunch:["6E"],iceshard:["6L47","6E"],icywind:["6L14"],irontail:[],knockoff:[],leer:["6L1"],lowkick:[],lowsweep:["6M"],metalclaw:["6L22"],mimic:[],mudslap:[],naturalgift:[],nightmare:[],payback:["6M"],poisonjab:["6M"],protect:["6M"],psychup:["6M"],punishment:["6L44","6E"],pursuit:["6E"],quickattack:["6L8"],raindance:["6M"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],scratch:["6L1"],screech:["6L32"],secretpower:[],shadowball:["6M"],shadowclaw:["6M"],slash:["6L35"],sleeptalk:["6M"],snarl:["6M"],snatch:["6L40"],snore:[],spite:["6E"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],taunt:["6L1","6M"],thief:["6M"],torment:["6M"],toxic:["6M"],whirlpool:[],xscissor:["6M"],foulplay:[],poweruppunch:["6M"],confide:["6M"],iciclecrash:["6E"]}}, + weavile:{learnset:{aerialace:["6M"],assurance:["6L1"],attract:["6M"],avalanche:[],blizzard:["6M"],brickbreak:["6M"],calmmind:["6M"],captivate:[],cut:["6M"],darkpulse:["6L47","6M"],dig:["6M"],doubleteam:["6M"],dreameater:["6M"],embargo:["6L1","6M"],endure:[],facade:["6M"],feintattack:["6L10"],fakeout:[],falseswipe:["6M"],fling:["6L28","6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],furyswipes:["6L16"],gigaimpact:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6L25","6M"],hyperbeam:["6M"],icebeam:["6M"],iceshard:[],icywind:["6L14"],irontail:[],knockoff:[],leer:["6L1"],lowkick:[],lowsweep:["6M"],metalclaw:["6L22"],mudslap:[],nastyplot:["6L20"],naturalgift:[],nightslash:["6L35"],payback:["6M"],poisonjab:["6M"],protect:["6M"],psychup:["6M"],quickattack:["6L1","6L8"],raindance:["6M"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L1"],rocksmash:["6M"],round:["6M"],scratch:["6L1"],screech:["6L32"],secretpower:[],shadowball:["6M"],shadowclaw:["6M"],sleeptalk:["6M"],snarl:["6M"],snatch:["6L40"],snore:[],spite:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],taunt:["6L1","6M"],thief:["6M"],torment:["6M"],toxic:["6M"],whirlpool:[],xscissor:["6M"],icepunch:[],foulplay:[],punishment:["6L44"],poweruppunch:["6M"],confide:["6M"]}}, + teddiursa:{learnset:{aerialace:["6M"],attract:["6M"],bellydrum:["6E"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],captivate:[],charm:["6L36"],chipaway:["6E"],closecombat:["6E"],counter:["6E"],covet:["6L1"],crosschop:["6E"],crunch:["6E"],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:["6E"],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],endure:[],facade:["6M"],feintattack:["6L15"],faketears:["6L1","6E"],firepunch:[],fling:["6L1","6L57","6M"],focuspunch:[],frustration:["6M"],furycutter:[],furyswipes:["6L8"],gunkshot:[],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],icepunch:[],lastresort:[],leer:[],lick:["6L1"],megakick:[],megapunch:[],metalclaw:["6E"],metronome:[],mimic:[],mudslap:[],naturalgift:[],nightslash:["6E"],payback:["6M"],protect:["6M"],raindance:["6M"],refresh:[],rest:["6L43","6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],scratch:["6L1"],secretpower:[],seedbomb:[],seismictoss:["6E"],shadowclaw:["6M"],slash:["6L29"],sleeptalk:["6M","6E"],snore:["6L43"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],sweetscent:["6L22"],swift:[],swordsdance:["6M"],takedown:["6E"],taunt:["6M"],thief:["6M"],thrash:["6L50"],thunderpunch:[],torment:["6M"],toxic:["6M"],workup:[],yawn:["6E"],hypervoice:[],babydolleyes:["6L1"],playnice:["6L25"],poweruppunch:["6M"],confide:["6M"],playrough:["6E"]}}, + ursaring:{learnset:{aerialace:["6M"],attract:["6M"],avalanche:[],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],captivate:[],counter:[],covet:["6L1"],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],endure:[],facade:["6M"],feintattack:["6L15"],faketears:["6L1"],firepunch:[],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],furyswipes:["6L8"],gigaimpact:["6M"],gunkshot:[],hammerarm:["6L1","6L67"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icepunch:[],lastresort:[],leer:["6L1"],lick:["6L1"],lowkick:[],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],payback:["6M"],protect:["6M"],raindance:["6M"],rest:["6L47","6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],scaryface:["6L38"],scratch:["6L1"],secretpower:[],seedbomb:[],seismictoss:[],shadowclaw:["6M"],slash:["6L29"],sleeptalk:["6M"],smackdown:["6M"],snore:["6L49"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],sweetscent:["6L22"],swift:[],swordsdance:["6M"],taunt:["6M"],thief:["6M"],thrash:["6L58"],thunderpunch:[],torment:["6M"],toxic:["6M"],uproar:[],workup:[],hypervoice:[],playnice:["6L25"],poweruppunch:["6M"],confide:["6M"]}}, + slugma:{learnset:{acidarmor:["6E"],amnesia:["6L32"],ancientpower:["6L28"],attract:["6M"],bodyslam:["6L46"],captivate:[],curse:["6E"],defensecurl:[],doubleedge:[],doubleteam:["6M"],earthpower:["6L55","6E"],ember:["6L5"],endure:[],facade:["6M"],fireblast:["6M"],flameburst:["6L23"],flamecharge:["6M"],flamethrower:["6L50","6M"],frustration:["6M"],harden:["6L14"],heatwave:["6E"],hiddenpower:["6M"],incinerate:["6M"],inferno:["6E"],irondefense:[],lavaplume:["6L37"],lightscreen:["6M"],memento:["6E"],mimic:[],mudslap:[],naturalgift:[],overheat:["6M"],painsplit:[],protect:["6M"],recover:["6L19"],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6L41","6M"],rocksmash:["6M"],rockthrow:["6L10"],rocktomb:["6M"],rollout:["6E"],round:["6M"],secretpower:[],selfdestruct:[],sleeptalk:["6M"],smog:["6L1"],smokescreen:["6E"],snore:[],spitup:["6E"],stockpile:["6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swallow:["6E"],toxic:["6M"],willowisp:["6M"],yawn:["6L1"],afteryou:[],infestation:["6M"],naturepower:["6M"],confide:["6M"]}}, + magcargo:{learnset:{amnesia:["6L32"],ancientpower:["6L28"],attract:["6M"],bodyslam:["6L52"],bulldoze:["6M"],captivate:[],defensecurl:[],doubleedge:[],doubleteam:["6M"],earthpower:["6L1","6L67"],earthquake:["6M"],ember:["6L1","6L5"],endure:[],explosion:["6M"],facade:["6M"],fireblast:["6M"],flameburst:["6L23"],flamecharge:["6M"],flamethrower:["6L59","6M"],frustration:["6M"],gigaimpact:["6M"],gyroball:["6M"],harden:["6L14"],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],irondefense:[],lavaplume:["6L37"],lightscreen:["6M"],mimic:[],mudslap:[],naturalgift:[],overheat:["6M"],painsplit:[],protect:["6M"],recover:["6L19"],reflect:["6M"],refresh:[],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6L44","6M"],rocksmash:["6M"],rockthrow:["6L1","6L10"],rocktomb:["6M"],rollout:[],round:["6M"],sandstorm:["6M"],secretpower:[],selfdestruct:[],shellsmash:["6L38"],sleeptalk:["6M"],smackdown:["6M"],smog:["6L1"],snore:[],solarbeam:["6M"],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],toxic:["6M"],willowisp:["6M"],yawn:["6L1"],afteryou:[],infestation:["6M"],naturepower:["6M"],confide:["6M"]}}, + swinub:{learnset:{amnesia:["6L48"],ancientpower:["6E"],attract:["6M"],avalanche:["6E"],bite:["6E"],blizzard:["6L44","6M"],bodyslam:["6E"],bulldoze:["6M"],captivate:[],charm:[],curse:["6E"],defensecurl:[],dig:["6M"],doubleedge:["6E"],doubleteam:["6M"],earthpower:[],earthquake:["6L37","6M"],endeavor:[],endure:["6L14"],facade:["6M"],fissure:["6E"],flail:["6L40"],frustration:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],icebeam:["6M"],iceshard:["6L24"],iciclecrash:["6E"],iciclespear:["6E"],icywind:["6L21"],lightscreen:["6M"],mimic:[],mist:["6L35"],mudbomb:["6L18"],mudshot:["6E"],mudslap:["6L11"],mudsport:["6L5"],naturalgift:[],odorsleuth:["6L1"],powdersnow:["6L8"],protect:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],secretpower:[],sleeptalk:["6M"],snore:[],stealthrock:["6E"],strength:["6M"],substitute:["6M"],superpower:[],swagger:["6M"],tackle:["6L1"],takedown:["6L28","6E"],toxic:["6M"],confide:["6M"],freezedry:["6E"]}}, + piloswine:{learnset:{amnesia:["6L58"],ancientpower:["6L1"],attract:["6M"],avalanche:[],blizzard:["6L52","6M"],bodyslam:[],bulldoze:["6M"],captivate:[],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],earthpower:[],earthquake:["6L46","6M"],endeavor:[],endure:["6L14"],facade:["6M"],frustration:["6M"],furyattack:["6L33"],gigaimpact:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hornattack:[],hyperbeam:["6M"],icebeam:["6M"],icefang:["6L24"],icywind:["6L21"],lightscreen:["6M"],mimic:[],mist:["6L37"],mudbomb:["6L18"],mudslap:["6L11"],mudsport:["6L1","6L5"],naturalgift:[],odorsleuth:["6L1"],peck:["6L1"],powdersnow:["6L1","6L8"],protect:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],secretpower:[],sleeptalk:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],superpower:[],swagger:["6M"],takedown:["6L28"],thrash:["6L41"],toxic:["6M"],confide:["6M"]}}, + mamoswine:{learnset:{ancientpower:["6L1"],attract:["6M"],avalanche:[],blizzard:["6L52","6M"],block:[],bulldoze:["6M"],captivate:[],dig:["6M"],doublehit:["6L33"],doubleteam:["6M"],earthpower:[],earthquake:["6L46","6M"],endeavor:[],endure:["6L14"],facade:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6L21","6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icefang:["6L24"],icywind:[],lightscreen:["6M"],mist:["6L37"],mudbomb:["6L18"],mudslap:["6L11"],mudsport:["6L1","6L5"],naturalgift:[],odorsleuth:["6L1"],peck:["6L1"],powdersnow:["6L1","6L8"],protect:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scaryface:["6L1","6L58"],secretpower:[],sleeptalk:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],superpower:[],swagger:["6M"],takedown:["6L28"],thrash:["6L41"],toxic:["6M"],ironhead:[],knockoff:[],confide:["6M"]}}, + corsola:{learnset:{amnesia:["6E"],ancientpower:["6L20"],aquaring:["6L38","6E"],attract:["6M"],barrier:["6E"],bide:["6E"],blizzard:["6M"],bodyslam:[],brine:[],bubble:["6L8"],bubblebeam:["6L17"],bulldoze:["6M"],calmmind:["6M"],captivate:[],confuseray:["6E"],curse:["6E"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],earthpower:["6L47"],earthquake:["6M"],endeavor:[],endure:["6L35"],explosion:["6M"],facade:["6M"],flail:["6L50"],frustration:["6M"],hail:["6M"],harden:["6L4"],headbutt:[],headsmash:["6E"],hiddenpower:["6M"],icebeam:["6M"],iciclespear:["6E"],icywind:[],ingrain:["6E"],irondefense:["6L29"],lightscreen:["6M"],luckychant:["6L23"],magiccoat:[],mimic:[],mirrorcoat:["6L45"],mist:["6E"],mudslap:[],mudsport:[],naturalgift:[],naturepower:["6M","6E"],powergem:["6L41"],protect:["6M"],psychic:["6M"],raindance:["6M"],recover:["6L10"],reflect:["6M"],refresh:["6L13"],rest:["6M"],"return":["6M"],rockblast:["6L31"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],scald:["6M"],screech:["6E"],secretpower:[],selfdestruct:[],shadowball:["6M"],sleeptalk:["6M"],snore:[],spikecannon:["6L27"],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],surf:["6M"],swagger:["6M"],tackle:["6L1"],toxic:["6M"],waterpulse:["6E"],whirlpool:[],confide:["6M"]}}, + remoraid:{learnset:{acidspray:["6E"],attract:["6M"],aurorabeam:["6L14","6E"],blizzard:["6M"],bounce:[],brine:[],bubblebeam:["6L18"],bulletseed:["6L38"],captivate:[],chargebeam:["6M"],defensecurl:[],dive:[],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],fireblast:["6M"],flail:["6E"],flamethrower:["6M"],focusenergy:["6L22"],frustration:["6M"],gunkshot:[],haze:["6E"],hiddenpower:["6M"],hydropump:["6L42"],hyperbeam:["6L46","6M"],icebeam:["6L34","6M"],icywind:[],incinerate:["6M"],lockon:["6L6"],mimic:[],mudshot:["6E"],mudslap:[],naturalgift:[],octazooka:["6E"],protect:["6M"],psybeam:["6L10"],psychic:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockblast:["6E"],round:["6M"],scald:["6M"],screech:["6E"],secretpower:[],seedbomb:[],signalbeam:["6L30"],sleeptalk:["6M"],smackdown:["6M"],snore:["6E"],soak:["6L50"],stringshot:[],substitute:["6M"],sunnyday:["6M"],supersonic:["6E"],surf:["6M"],swagger:["6M"],swift:["6E"],thief:["6M"],thunderwave:["6M"],toxic:["6M"],waterfall:["6M"],watergun:["6L1"],waterpulse:["6L26","6E"],waterspout:["6E"],whirlpool:[],confide:["6M"],entrainment:["6E"]}}, + octillery:{learnset:{attract:["6M"],aurorabeam:["6L1","6L14"],blizzard:["6M"],bounce:[],brine:[],bubblebeam:["6L18"],bulletseed:["6L46"],captivate:[],chargebeam:["6M"],constrict:["6L1","6L6"],defensecurl:[],dive:[],doubleedge:[],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flashcannon:["6M"],focusenergy:["6L22"],frustration:["6M"],gigaimpact:["6M"],gunkshot:["6L1"],hiddenpower:["6M"],hydropump:["6L52"],hyperbeam:["6L58","6M"],icebeam:["6L40","6M"],icywind:[],incinerate:["6M"],mimic:[],mudslap:[],naturalgift:[],octazooka:["6L25"],payback:["6M"],protect:["6M"],psybeam:["6L1","6L10"],psychic:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockblast:["6L1"],round:["6M"],scald:["6M"],secretpower:[],seedbomb:[],seismictoss:[],signalbeam:["6L34"],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6M"],smackdown:["6M"],snore:[],soak:["6L64"],stringshot:[],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],thief:["6M"],thunderwave:["6M"],toxic:["6M"],waterfall:["6M"],watergun:["6L1"],waterpulse:[],whirlpool:[],wringout:["6L28"],bind:[],confide:["6M"]}}, + delibird:{learnset:{aerialace:["6M"],attract:["6M"],aurorabeam:["6E"],avalanche:[],bestow:["6E"],blizzard:["6M"],bodyslam:[],bounce:[],brickbreak:["6M"],captivate:[],counter:[],defog:[],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],fakeout:["6E"],fling:["6M"],fly:["6M"],focuspunch:[],frostbreath:["6M"],frustration:["6M"],futuresight:["6E"],gunkshot:[],hail:["6M"],headbutt:[],hiddenpower:["6M"],iceball:["6E"],icebeam:["6M"],icepunch:["6E"],iceshard:["6E"],icywind:["6E"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],pluck:[],present:["6L1"],protect:["6M"],quickattack:["6E"],raindance:["6M"],rapidspin:["6E"],recycle:[],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],secretpower:[],seedbomb:[],seismictoss:[],signalbeam:[],skyattack:[],sleeptalk:["6M"],snore:[],splash:["6E"],substitute:["6M"],swagger:["6M"],swift:[],thief:["6M"],toxic:["6M"],waterpulse:[],poweruppunch:["6M"],confide:["6M"],freezedry:["6E"],destinybond:["6E"],spikes:["6E"]}}, + mantyke:{learnset:{acrobatics:["6M"],aerialace:["6M"],agility:["6L32"],aircutter:[],airslash:["6L36"],amnesia:["6E"],aquaring:["6L39"],attract:["6M"],blizzard:["6M"],bounce:["6L46"],bubble:["6L1"],bubblebeam:["6L7"],bulldoze:["6M"],captivate:[],confuseray:["6L11"],dive:[],doubleteam:["6M"],earthquake:["6M"],endure:[],facade:["6M"],frustration:["6M"],hail:["6M"],haze:["6E"],headbutt:["6L16"],helpinghand:[],hiddenpower:["6M"],hydropump:["6L49","6E"],icebeam:["6M"],icywind:[],mirrorcoat:["6E"],mudslap:[],mudsport:["6E"],naturalgift:[],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],round:["6M"],scald:["6M"],secretpower:[],signalbeam:["6E"],slam:["6E"],sleeptalk:["6M"],snore:[],splash:["6E"],substitute:["6M"],supersonic:["6L3"],surf:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],takedown:["6L27"],toxic:["6M"],twister:["6E"],waterfall:["6M"],waterpulse:["6L19"],watersport:["6E"],whirlpool:[],wideguard:["6L23","6E"],wingattack:["6L14"],confide:["6M"]}}, + mantine:{learnset:{acrobatics:["6M"],aerialace:["6M"],agility:["6L32"],aircutter:[],airslash:["6L36"],amnesia:["6E"],aquaring:["6L39"],aquatail:[],attract:["6M"],blizzard:["6M"],bodyslam:[],bounce:["6L46"],brine:[],bubble:["6L1"],bubblebeam:["6L1","6L7"],bulldoze:["6M"],bulletseed:["6L1"],captivate:[],confuseray:["6L11"],defog:[],dive:[],doubleedge:[],doubleteam:["6M"],earthquake:["6M"],endure:[],facade:["6M"],frustration:["6M"],gigaimpact:["6M"],gunkshot:[],hail:["6M"],haze:["6E"],headbutt:["6L16"],helpinghand:[],hiddenpower:["6M"],hydropump:["6L49","6E"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],ironhead:[],mimic:[],mirrorcoat:["6E"],mudslap:[],mudsport:["6E"],naturalgift:[],protect:["6M"],psybeam:["6L1"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],secretpower:[],seedbomb:[],signalbeam:["6L1"],slam:["6E"],sleeptalk:["6M"],snore:[],splash:["6E"],stringshot:[],substitute:["6M"],supersonic:["6L1","6L3"],surf:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwind:[],takedown:["6L27"],toxic:["6M"],twister:["6E"],waterfall:["6M"],waterpulse:["6L19"],watersport:["6E"],whirlpool:[],wideguard:["6L23","6E"],wingattack:["6L14"],confide:["6M"]}}, + skarmory:{learnset:{aerialace:["6M"],agility:["6L12"],aircutter:["6L23"],airslash:["6L42"],assurance:["6E"],attract:["6M"],autotomize:["6L39"],bravebird:["6E"],captivate:[],counter:[],curse:["6E"],cut:["6M"],darkpulse:["6M"],defog:[],doubleedge:[],doubleteam:["6M"],drillpeck:["6E"],endure:["6E"],facade:["6M"],feint:["6L20"],flash:["6M"],flashcannon:["6M"],fly:["6M"],frustration:["6M"],furyattack:["6L17"],furycutter:[],guardswap:["6E"],hiddenpower:["6M"],icywind:[],irondefense:[],leer:["6L1"],metalsound:["6L31"],mimic:[],mudslap:[],naturalgift:[],nightslash:["6L50"],ominouswind:[],payback:["6M"],peck:["6L1"],pluck:[],protect:["6M"],pursuit:["6E"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roost:["6M"],round:["6M"],sandattack:["6L6"],sandstorm:["6M"],secretpower:[],skyattack:["6E"],skydrop:["6M"],slash:["6L45"],sleeptalk:["6M"],snore:[],spikes:["6L28"],stealthrock:["6E"],steelwing:["6L34","6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L9"],swordsdance:["6M"],tailwind:[],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6M"],twister:[],whirlwind:["6E"],xscissor:["6M"],ironhead:[],confide:["6M"]}}, + houndour:{learnset:{attract:["6M"],beatup:["6L25","6E"],bite:["6L16"],bodyslam:[],captivate:[],charm:[],counter:["6E"],crunch:["6L49"],darkpulse:["6M"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],embargo:["6L37","6M"],ember:["6L1"],endure:[],facade:["6M"],feintattack:["6L32"],feint:["6E"],fireblast:["6M"],firefang:["6L28","6E"],firespin:["6E"],flamecharge:["6M"],flamethrower:["6L44","6M"],foulplay:["6L40"],frustration:["6M"],headbutt:[],heatwave:[],hiddenpower:["6M"],howl:["6L4"],incinerate:["6M"],inferno:["6L56"],irontail:[],leer:["6L1"],mimic:[],mudslap:[],nastyplot:["6L52","6E"],naturalgift:[],nightmare:[],odorsleuth:["6L20"],overheat:["6M"],payback:["6M"],protect:["6M"],punishment:["6E"],pursuit:["6E"],rage:["6E"],rest:["6M"],retaliate:["6M"],"return":["6M"],reversal:["6E"],roar:["6L13","6M"],rocksmash:["6M"],roleplay:[],round:["6M"],secretpower:[],shadowball:["6M"],sleeptalk:["6M"],sludgebomb:["6M"],smog:["6L8"],snarl:["6M"],snatch:[],snore:[],solarbeam:["6M"],spite:["6E"],substitute:["6M"],suckerpunch:["6E"],sunnyday:["6M"],superfang:[],swagger:["6M"],swift:[],taunt:["6M"],thief:["6M"],thunderfang:["6E"],torment:["6M"],toxic:["6M"],uproar:[],willowisp:["6M"],hypervoice:[],confide:["6M"],destinybond:["6E"]}}, + houndoom:{learnset:{attract:["6M"],beatup:["6L26"],bite:["6L16"],bodyslam:[],captivate:[],counter:[],crunch:["6L56"],darkpulse:["6M"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],embargo:["6L41","6M"],ember:["6L1"],endure:[],facade:["6M"],feintattack:["6L35"],fireblast:["6M"],firefang:["6L30"],flamecharge:["6M"],flamethrower:["6L50","6M"],foulplay:["6L45"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],heatwave:[],hiddenpower:["6M"],howl:["6L1","6L4"],hyperbeam:["6M"],incinerate:["6M"],inferno:["6L1","6L65"],irontail:[],leer:["6L1"],mimic:[],mudslap:[],nastyplot:["6L1","6L60"],naturalgift:[],nightmare:[],odorsleuth:["6L20"],overheat:["6M"],payback:["6M"],protect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6L13","6M"],rocksmash:["6M"],roleplay:[],round:["6M"],secretpower:[],shadowball:["6M"],sleeptalk:["6M"],sludgebomb:["6M"],smog:["6L1","6L8"],snarl:["6M"],snatch:[],snore:[],solarbeam:["6M"],spite:[],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],superfang:[],swagger:["6M"],swift:[],taunt:["6M"],thief:["6M"],thunderfang:["6L1"],torment:["6M"],toxic:["6M"],uproar:[],willowisp:["6M"],hypervoice:[],confide:["6M"]}}, + phanpy:{learnset:{ancientpower:["6E"],attract:["6M"],bodyslam:["6E"],bulldoze:["6M"],captivate:[],charm:["6L33"],counter:["6E"],defensecurl:["6L1"],doubleedge:["6L42"],doubleteam:["6M"],earthpower:[],earthquake:["6M"],echoedvoice:["6M"],endeavor:["6E"],endure:["6L28"],facade:["6M"],fissure:["6E"],flail:["6L6"],focusenergy:["6E"],frustration:["6M"],growl:["6L1"],gunkshot:[],headbutt:[],headsmash:["6E"],heavyslam:["6E"],hiddenpower:["6M"],iceshard:["6E"],irontail:[],knockoff:[],lastresort:["6L37"],mimic:[],mudslap:["6E"],naturalgift:["6L19"],odorsleuth:["6L1"],protect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L15"],round:["6M"],sandstorm:["6M"],secretpower:[],seedbomb:[],slam:["6L24"],sleeptalk:["6M"],snore:["6E"],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],tackle:["6L1"],takedown:["6L10"],toxic:["6M"],hypervoice:[],confide:["6M"],playrough:["6E"]}}, + donphan:{learnset:{ancientpower:[],assurance:["6L31"],attract:["6M"],block:[],bodyslam:[],bounce:[],bulldoze:["6L1","6M"],captivate:[],counter:[],defensecurl:["6L1"],doubleedge:[],doubleteam:["6M"],earthpower:[],earthquake:["6L46","6M"],echoedvoice:["6M"],endure:[],facade:["6M"],firefang:["6L1"],flail:[],frustration:["6M"],furyattack:["6L25"],gigaimpact:["6L54","6M"],growl:["6L1"],gunkshot:[],gyroball:["6M"],headbutt:[],hiddenpower:["6M"],hornattack:["6L1"],hyperbeam:["6M"],irondefense:[],irontail:[],knockoff:["6L10"],magnitude:["6L19"],mimic:[],mudslap:[],naturalgift:[],odorsleuth:[],poisonjab:["6M"],protect:["6M"],rapidspin:["6L6"],rest:["6M"],"return":["6M"],roar:["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L15"],round:["6M"],sandstorm:["6M"],scaryface:["6L39"],secretpower:[],seedbomb:[],slam:["6L24"],sleeptalk:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],thunderfang:["6L1"],toxic:["6M"],lastresort:[],hypervoice:[],endeavor:[],confide:["6M"]}}, + stantler:{learnset:{astonish:["6L0"],attract:["6M"],bite:["6E"],bodyslam:[],bounce:[],bulldoze:["6M"],calmmind:["6M"],captivate:["6L0"],chargebeam:["6M"],confuseray:["6L0"],disable:["6E"],doubleedge:[],doublekick:["6E"],doubleteam:["6M"],dreameater:["6M"],earthquake:["6M"],endure:[],energyball:["6M"],extrasensory:["6E"],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],gravity:[],headbutt:[],hiddenpower:["6M"],hypnosis:["6L0"],imprison:["6L0"],irontail:[],jumpkick:["6L0"],lastresort:[],leer:["6L0"],lightscreen:["6M"],mefirst:["6E"],megahorn:["6E"],mimic:[],mudslap:[],mudsport:["6E"],naturalgift:[],nightmare:[],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],rage:["6E"],raindance:["6M"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],roleplay:["6L0"],round:["6M"],sandattack:["6L0"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],spite:["6E"],stomp:["6L0"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L0"],takedown:["6L0"],thief:["6M"],thrash:["6E"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trickroom:["6M"],uproar:[],wildcharge:["6M"],workup:[],zenheadbutt:["6E"],magicroom:[]}}, + smeargle:{learnset:{captivate:[],falseswipe:[],meanlook:[],odorsleuth:[],sketch:["6L1","6L11","6L21","6L31","6L41","6L51","6L61","6L71","6L81","6L91"],sleeptalk:[],spore:[]}}, + miltank:{learnset:{attract:["6M"],bide:["6L15"],blizzard:["6M"],block:[],bodyslam:["6L24"],brickbreak:["6M"],bulldoze:["6M"],captivate:["6L35"],counter:[],curse:["6E"],defensecurl:["6L5"],dizzypunch:["6E"],doubleedge:["6E"],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],echoedvoice:["6M"],endure:["6E"],facade:["6M"],firepunch:[],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],growl:["6L3"],gyroball:["6L41","6M"],hammerarm:["6E"],headbutt:[],healbell:["6L48"],heartstamp:["6E"],helpinghand:["6E"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],ironhead:[],irontail:[],megakick:[],megapunch:[],metronome:[],milkdrink:["6L11"],mimic:[],mudslap:[],naturalgift:["6E"],present:["6E"],protect:["6M"],psychup:["6M"],punishment:["6E"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],reversal:["6E"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L19"],round:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:["6E"],shadowball:["6M"],shockwave:[],sleeptalk:["6M","6E"],snore:[],solarbeam:["6M"],stealthrock:[],stomp:["6L8"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],tackle:["6L1"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],wakeupslap:["6L50"],waterpulse:[],whirlpool:[],workup:[],zenheadbutt:["6L29"],afteryou:[],poweruppunch:["6M"],confide:["6M"]}}, + raikou:{learnset:{aurasphere:[],bite:["6L0"],bodyslam:[],bulldoze:["6M"],calmmind:["6M"],chargebeam:["6M"],crunch:["6L0"],cut:["6M"],dig:["6M"],discharge:["6L0"],doubleedge:[],doubleteam:["6M"],endure:[],extrasensory:["6L0"],extremespeed:[],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],ironhead:[],irontail:[],leer:["6L0"],lightscreen:["6M"],magnetrise:[],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],psychup:["6M"],quash:["6M"],quickattack:["6L0"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rocksmash:["6M"],round:["6M"],sandstorm:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],sleeptalk:["6M"],snarl:["6M"],snore:[],spark:["6L0"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],thunder:["6M"],thunderbolt:["6M"],thunderfang:["6L0"],thundershock:["6L0"],thunderwave:["6M"],toxic:["6M"],voltswitch:["6M"],weatherball:[],wildcharge:["6M"],zapcannon:[]}}, + entei:{learnset:{bite:["6L0"],bodyslam:[],bulldoze:["6M"],calmmind:["6M"],crushclaw:[],cut:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],ember:["6L0"],endure:[],eruption:["6L0"],extrasensory:["6L0"],extremespeed:[],facade:["6M"],fireblast:["6M"],firefang:["6L0"],firespin:["6L0"],flamecharge:["6M"],flamethrower:["6M"],flareblitz:[],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],heatwave:[],hiddenpower:["6M"],howl:[],hyperbeam:["6M"],incinerate:["6M"],ironhead:[],irontail:[],lavaplume:["6L0"],leer:["6L0"],mimic:[],mudslap:[],naturalgift:[],overheat:["6M"],protect:["6M"],psychup:["6M"],quash:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rocksmash:["6M"],round:["6M"],sandstorm:["6M"],secretpower:[],shadowball:["6M"],sleeptalk:["6M"],snarl:["6M"],snore:[],solarbeam:["6M"],stomp:["6L0"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],toxic:["6M"],willowisp:["6M"]}}, + suicune:{learnset:{airslash:[],aquaring:[],aurorabeam:["6L0"],avalanche:[],bite:["6L0"],blizzard:["6M"],bodyslam:[],brine:[],bubblebeam:["6L0"],bulldoze:["6M"],calmmind:["6M"],cut:["6M"],dig:["6M"],dive:["6M"],doubleedge:[],doubleteam:["6M"],endure:[],extrasensory:["6L0"],extremespeed:[],facade:["6M"],frustration:["6M"],gigaimpact:["6M"],gust:["6L0"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydropump:["6L0"],hyperbeam:["6M"],icebeam:["6M"],icefang:["6L0"],icywind:[],ironhead:[],irontail:[],leer:["6L0"],mimic:[],mirrorcoat:["6L0"],mist:["6L0"],mudslap:[],naturalgift:[],ominouswind:[],protect:["6M"],psychup:["6M"],quash:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rocksmash:["6M"],round:["6M"],sandstorm:["6M"],scald:["6M"],secretpower:[],shadowball:["6M"],sheercold:[],signalbeam:[],sleeptalk:["6M"],snarl:["6M"],snore:[],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],tailwind:["6L0"],toxic:["6M"],waterfall:["6M"],waterpulse:[],whirlpool:[]}}, + larvitar:{learnset:{ancientpower:["6E"],assurance:["6E"],attract:["6M"],bite:["6L1"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L14"],crunch:["6L41"],curse:["6E"],darkpulse:["6L32","6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dragondance:["6E"],earthpower:[],earthquake:["6L46","6M"],endure:[],facade:["6M"],focusenergy:["6E"],frustration:["6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6L55","6M"],irondefense:["6E"],ironhead:["6E"],irontail:["6E"],leer:["6L1"],mimic:[],mudslap:[],naturalgift:[],outrage:["6E"],payback:["6L37","6M"],protect:["6M"],pursuit:["6E"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6L19","6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6L5","6M"],scaryface:["6L23"],screech:["6L10"],secretpower:[],sleeptalk:["6M"],smackdown:["6M"],snarl:["6M"],snore:[],spite:[],stealthrock:["6E"],stomp:["6E"],stoneedge:["6L50","6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],taunt:["6M"],thrash:["6L28"],torment:["6M"],toxic:["6M"],uproar:[],poweruppunch:["6M"],confide:["6M"]}}, + pupitar:{learnset:{ancientpower:[],attract:["6M"],bite:["6L1"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L14"],crunch:["6L47"],darkpulse:["6L34","6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],earthpower:[],earthquake:["6L54","6M"],endure:[],facade:["6M"],frustration:["6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6L67","6M"],irondefense:[],ironhead:[],leer:["6L1"],mimic:[],mudslap:[],naturalgift:[],payback:["6L41","6M"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6L19","6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6L1","6L5","6M"],scaryface:["6L23"],screech:["6L1","6L10"],secretpower:[],sleeptalk:["6M"],smackdown:["6M"],snarl:["6M"],snore:[],spite:[],stealthrock:[],stoneedge:["6L60","6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],taunt:["6M"],thrash:["6L28"],torment:["6M"],toxic:["6M"],uproar:[],irontail:[],outrage:[],poweruppunch:["6M"],confide:["6M"]}}, + tyranitar:{learnset:{aerialace:["6M"],ancientpower:[],aquatail:[],attract:["6M"],avalanche:[],bite:["6L1"],blizzard:["6M"],block:[],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L14"],counter:[],crunch:["6L47"],cut:["6M"],darkpulse:["6L34","6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dragonclaw:["6M"],dragonpulse:[],dragontail:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6L54","6M"],endure:[],facade:["6M"],fireblast:["6M"],firefang:["6L1"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6L82","6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6L73","6M"],icebeam:["6M"],icefang:["6L1"],icepunch:[],incinerate:["6M"],ironhead:[],irontail:[],leer:["6L1"],lowkick:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],outrage:[],payback:["6L41","6M"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockpolish:["6M"],rockslide:["6L19","6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6L1","6L5","6M"],scaryface:["6L23"],screech:["6L1","6L10"],secretpower:[],seismictoss:[],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],smackdown:["6M"],snarl:["6M"],snore:[],spite:[],stealthrock:[],stoneedge:["6L63","6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],surf:["6M"],swagger:["6M"],taunt:["6M"],thrash:["6L28"],thunder:["6M"],thunderbolt:["6M"],thunderfang:["6L1"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],uproar:[],waterpulse:[],whirlpool:[],foulplay:[],irondefense:[],poweruppunch:["6M"],confide:["6M"]}}, + lugia:{learnset:{aerialace:["6M"],aeroblast:["6L0"],aircutter:[],ancientpower:["6L0"],aquatail:[],avalanche:[],blizzard:["6M"],bodyslam:[],brine:[],bulldoze:["6M"],calmmind:["6M"],chargebeam:["6M"],defog:[],dive:["6M"],doubleedge:[],doubleteam:["6M"],dragonpulse:[],dragonrush:["6L0"],dragontail:["6M"],dreameater:["6M"],earthpower:[],earthquake:["6M"],echoedvoice:["6M"],endure:[],extrasensory:["6L0"],facade:["6M"],featherdance:[],flash:["6M"],fly:["6M"],frustration:["6M"],futuresight:["6L0"],gigadrain:[],gigaimpact:["6M"],gust:["6L0"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydropump:["6L0"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],ironhead:[],irontail:[],lightscreen:["6M"],mimic:[],mudslap:[],naturalgift:["6L0"],nightmare:[],ominouswind:[],protect:["6M"],psychic:["6M"],psychoboost:[],psychup:["6M"],psyshock:["6M"],punishment:["6L0"],raindance:["6M"],recover:["6L0"],reflect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],roost:["6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],skyattack:["6L0"],skydrop:["6M"],sleeptalk:["6M"],snore:[],steelwing:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],tailwind:[],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trick:[],twister:[],waterfall:["6M"],waterpulse:[],weatherball:["6L0"],whirlpool:[],whirlwind:["6L0"],zenheadbutt:[],hypervoice:[],wonderroom:[]}}, + hooh:{learnset:{aerialace:["6M"],aircutter:[],ancientpower:["6L0"],bravebird:["6L0"],bulldoze:["6M"],calmmind:["6M"],chargebeam:["6M"],defog:[],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],earthpower:[],earthquake:["6M"],echoedvoice:["6M"],endure:[],extrasensory:["6L0"],facade:["6M"],fireblast:["6M"],flamecharge:["6M"],flamethrower:["6M"],flash:["6M"],fly:["6M"],frustration:["6M"],futuresight:["6L0"],gigadrain:[],gigaimpact:["6M"],gust:["6L0"],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],ironhead:[],lightscreen:["6M"],mimic:[],mudslap:[],naturalgift:["6L0"],nightmare:[],ominouswind:[],overheat:["6M"],pluck:[],protect:["6M"],psychic:["6M"],psychup:["6M"],punishment:["6L0"],raindance:["6M"],recover:["6L0"],reflect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],roost:["6M"],round:["6M"],sacredfire:["6L0"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],skyattack:["6L0"],skydrop:["6M"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],steelwing:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tailwind:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],twister:[],weatherball:["6L0"],whirlwind:["6L0"],willowisp:["6M"],zenheadbutt:[],hypervoice:[]}}, + celebi:{learnset:{aerialace:["6M"],ancientpower:["6L0"],batonpass:["6L0"],calmmind:["6M"],chargebeam:["6M"],confusion:["6L0"],cut:["6M"],defensecurl:[],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],earthpower:[],echoedvoice:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],futuresight:["6L0"],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],healbell:["6L0"],healblock:["6L0"],healingwish:["6L0"],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],lastresort:[],leafstorm:["6L0"],leechseed:["6L0"],lightscreen:["6M"],magicalleaf:["6L0"],magiccoat:[],metronome:[],mimic:[],mudslap:[],nastyplot:[],naturalgift:["6L0"],nightmare:[],perishsong:["6L0"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],recover:["6L0"],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],seedbomb:[],shadowball:["6M"],shockwave:[],signalbeam:[],silverwind:[],skillswap:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stealthrock:[],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],synthesis:[],thunderwave:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],uproar:[],uturn:["6M"],waterpulse:[],worryseed:[],zenheadbutt:[],magicroom:[],wonderroom:[]}}, + treecko:{learnset:{absorb:["6L0"],acrobatics:["6M"],aerialace:["6M"],agility:["6L0"],attract:["6M"],bodyslam:[],brickbreak:["6M"],bulletseed:["6E"],captivate:[],counter:[],crunch:["6E"],crushclaw:["6E"],cut:["6M"],detect:["6L0"],dig:["6M"],doubleedge:[],doublekick:["6E"],doubleteam:["6M"],dragonbreath:["6E"],drainpunch:[],dynamicpunch:[],endeavor:["6E"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigadrain:["6L0"],grassknot:["6M"],grasspledge:["6T"],grasswhistle:["6E"],headbutt:[],hiddenpower:["6M"],irontail:[],leafstorm:["6E"],leechseed:["6E"],leer:["6L0"],lowkick:[],magicalleaf:["6E"],megadrain:["6L0"],megakick:[],megapunch:[],mimic:[],mudslap:[],mudsport:["6E"],naturalgift:["6E"],pound:["6L0"],protect:["6M"],pursuit:["6L0"],quickattack:["6L0"],razorwind:["6E"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],screech:["6L0"],secretpower:[],seedbomb:[],seismictoss:[],slam:["6L0"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],synthesis:["6E"],thunderpunch:[],toxic:["6M"],worryseed:["6E"]}}, + grovyle:{learnset:{absorb:["6L0"],acrobatics:["6M"],aerialace:["6M"],agility:["6L0"],attract:["6M"],bodyslam:[],brickbreak:["6M"],bulletseed:[],captivate:[],counter:[],cut:["6M"],detect:["6L0"],dig:["6M"],doubleedge:[],doubleteam:["6M"],drainpunch:[],dynamicpunch:[],endeavor:[],endure:[],energyball:["6M"],facade:["6M"],falseswipe:["6M"],flash:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],furycutter:["6L0"],gigadrain:[],grassknot:["6M"],grasspledge:["6T"],headbutt:[],hiddenpower:["6M"],irontail:[],leafblade:["6L0"],leafstorm:["6L0"],leer:["6L0"],lowkick:[],lowsweep:["6M"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],pound:["6L0"],protect:["6M"],pursuit:["6L0"],quickattack:["6L0"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],screech:["6L0"],secretpower:[],seedbomb:[],seismictoss:[],slam:["6L0"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],synthesis:[],thunderpunch:[],toxic:["6M"],worryseed:[],xscissor:["6M"]}}, + sceptile:{learnset:{absorb:["6L0"],acrobatics:["6M"],aerialace:["6M"],agility:["6L0"],attract:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],bulletseed:[],captivate:[],counter:[],cut:["6M"],detect:["6L0"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dragonclaw:["6M"],dragonpulse:[],drainpunch:[],dynamicpunch:[],earthquake:["6M"],endeavor:[],endure:[],energyball:["6M"],facade:["6M"],falseswipe:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frenzyplant:["6T"],frustration:["6M"],furycutter:[],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],grasspledge:["6T"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],irontail:[],leafblade:["6L0"],leafstorm:["6L0"],leer:["6L0"],lowkick:[],lowsweep:["6M"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],nightslash:["6L0"],outrage:[],pound:["6L0"],protect:["6M"],pursuit:["6L0"],quickattack:["6L0"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],screech:["6L0"],secretpower:[],seedbomb:[],seismictoss:[],slam:["6L0"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],synthesis:[],thunderpunch:[],toxic:["6M"],worryseed:[],xscissor:["6M"]}}, + torchic:{learnset:{aerialace:["6M"],agility:["6E"],attract:["6M"],batonpass:["6E"],bodyslam:[],bounce:[],captivate:[],counter:["6E"],crushclaw:["6E"],curse:["6E"],cut:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],echoedvoice:["6M"],ember:["6L10"],endure:["6E"],facade:["6M"],featherdance:["6E"],feint:["6E"],fireblast:["6M"],firepledge:["6T"],firespin:["6L25"],flameburst:["6E"],flamecharge:["6M"],flamethrower:["6L43","6M"],focusenergy:["6L7"],frustration:["6M"],growl:["6L1"],headbutt:[],heatwave:[],helpinghand:[],hiddenpower:["6M"],honeclaws:["6M"],incinerate:["6M"],lastresort:["6E"],lowkick:["6E"],megakick:[],megapunch:[],mimic:[],mirrormove:["6L37"],mudslap:[],naturalgift:[],nightslash:["6E"],overheat:["6M"],peck:["6L16"],protect:["6M"],quickattack:["6L28"],rest:["6M"],"return":["6M"],reversal:["6E"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L19"],scratch:["6L1"],secretpower:[],seismictoss:[],shadowclaw:["6M"],slash:["6L34"],sleeptalk:["6M"],smellingsalts:["6E"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],toxic:["6M"],willowisp:["6M"],confide:["6M"]}}, + combusken:{learnset:{aerialace:["6M"],attract:["6M"],bodyslam:[],bounce:[],brickbreak:["6M"],bulkup:["6L28","6M"],captivate:[],counter:[],cut:["6M"],dig:["6M"],doubleedge:[],doublekick:["6L16"],doubleteam:["6M"],dynamicpunch:[],echoedvoice:["6M"],ember:["6L10"],endure:[],facade:["6M"],fireblast:["6M"],firepledge:["6T"],firepunch:[],flamecharge:["6M"],flamethrower:["6M"],flareblitz:["6L54"],fling:["6M"],focusblast:["6M"],focusenergy:["6L7"],focuspunch:[],frustration:["6M"],furycutter:[],growl:["6L1"],headbutt:[],heatwave:[],helpinghand:[],hiddenpower:["6M"],honeclaws:["6M"],incinerate:["6M"],lastresort:[],lowkick:[],lowsweep:["6M"],megakick:[],megapunch:[],mimic:[],mirrormove:["6L43"],mudslap:[],naturalgift:[],overheat:["6M"],peck:["6L16"],poisonjab:["6M"],protect:["6M"],quickattack:["6L32"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L21"],scratch:["6L1"],secretpower:[],seismictoss:[],shadowclaw:["6M"],skyuppercut:["6L50"],slash:["6L39"],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],thunderpunch:[],toxic:["6M"],vacuumwave:[],willowisp:["6M"],workup:[],dualchop:[],poweruppunch:["6M"],confide:["6M"]}}, + blaziken:{learnset:{acrobatics:["6M"],aerialace:["6M"],attract:["6M"],blastburn:["6T"],blazekick:["6L36"],bodyslam:[],bounce:[],bravebird:["6L49"],brickbreak:["6M"],bulkup:["6L28","6M"],bulldoze:["6M"],captivate:[],counter:[],cut:["6M"],dig:["6M"],doubleedge:[],doublekick:["6L16"],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],echoedvoice:["6M"],ember:["6L10"],endure:[],facade:["6M"],fireblast:["6M"],firepledge:["6T"],firepunch:["6L1"],flamecharge:["6M"],flamethrower:["6M"],flareblitz:["6L1","6L66"],fling:["6M"],focusblast:["6M"],focusenergy:["6L7"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],growl:["6L1"],headbutt:[],heatwave:[],helpinghand:[],hiddenpower:["6M"],highjumpkick:["6L1"],honeclaws:["6M"],hyperbeam:["6M"],incinerate:["6M"],knockoff:[],lastresort:[],lowkick:[],lowsweep:["6M"],megakick:[],megapunch:[],mimic:[],mirrormove:[],mudslap:[],naturalgift:[],overheat:["6M"],peck:["6L16"],poisonjab:["6M"],protect:["6M"],quickattack:["6L32"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],sandattack:["6L21"],scratch:["6L1"],secretpower:[],seismictoss:[],shadowclaw:["6M"],skyuppercut:["6L59"],slash:["6L42"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],swift:[],swordsdance:["6M"],thunderpunch:[],toxic:["6M"],vacuumwave:[],willowisp:["6M"],workup:[],dualchop:[],poweruppunch:["6M"],confide:["6M"]}}, + mudkip:{learnset:{ancientpower:["6E"],aquatail:[],attract:["6M"],avalanche:["6E"],bide:["6L0"],bite:["6E"],blizzard:["6M"],bodyslam:[],captivate:[],counter:["6E"],curse:["6E"],defensecurl:[],dig:["6M"],dive:["6M"],doubleedge:["6E"],doubleteam:["6M"],echoedvoice:["6M"],endeavor:["6L0"],endure:[],facade:["6M"],foresight:["6L0"],frustration:["6M"],growl:["6L0"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydropump:["6L0"],iceball:["6E"],icebeam:["6M"],icywind:[],irontail:[],lowkick:[],mimic:[],mirrorcoat:["6E"],mudbomb:["6E"],mudslap:["6L0"],mudsport:["6L0"],naturalgift:[],protect:["6M"],raindance:["6M"],refresh:["6E"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],scald:["6M"],secretpower:[],sleeptalk:["6M"],sludge:["6E"],sludgewave:["6M"],snore:[],stomp:["6E"],strength:["6M"],substitute:["6M"],superpower:[],surf:["6M"],swagger:["6M"],tackle:["6L0"],takedown:["6L0"],toxic:["6M"],uproar:["6E"],waterfall:["6M"],watergun:["6L0"],waterpledge:["6T"],waterpulse:[],whirlpool:["6E"],wideguard:["6E"],yawn:["6E"],earthpower:[]}}, + marshtomp:{learnset:{ancientpower:[],aquatail:[],attract:["6M"],bide:["6L0"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],counter:[],defensecurl:[],dig:["6M"],dive:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6M"],echoedvoice:["6M"],endeavor:["6L0"],endure:[],facade:["6M"],fling:["6M"],foresight:["6L0"],frustration:["6M"],growl:["6L0"],hail:["6M"],headbutt:[],hiddenpower:["6M"],icebeam:["6M"],icepunch:[],icywind:[],irontail:[],lowkick:[],megakick:[],megapunch:[],mimic:[],mudbomb:["6L0"],muddywater:["6L0"],mudshot:["6L0"],mudslap:["6L0"],mudsport:[],naturalgift:[],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],scald:["6M"],secretpower:[],seismictoss:[],sleeptalk:["6M"],sludgewave:["6M"],snore:[],stealthrock:[],strength:["6M"],substitute:["6M"],superpower:[],surf:["6M"],swagger:["6M"],tackle:["6L0"],takedown:["6L0"],toxic:["6M"],waterfall:["6M"],watergun:["6L0"],waterpledge:["6T"],waterpulse:[],whirlpool:[]}}, + swampert:{learnset:{ancientpower:[],aquatail:[],attract:["6M"],avalanche:[],bide:["6L0"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],counter:[],defensecurl:[],dig:["6M"],dive:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6M"],echoedvoice:["6M"],endeavor:["6L0"],endure:[],facade:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],foresight:["6L0"],frustration:["6M"],gigaimpact:["6M"],growl:["6L0"],hail:["6M"],hammerarm:["6L0"],headbutt:[],hiddenpower:["6M"],hydrocannon:["6T"],hydropump:[],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],irontail:[],lowkick:[],megakick:[],megapunch:[],mimic:[],mudbomb:["6L0"],muddywater:["6L0"],mudshot:["6L0"],mudslap:["6L0"],mudsport:[],naturalgift:[],outrage:[],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],scald:["6M"],secretpower:[],seismictoss:[],sleeptalk:["6M"],sludgewave:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],superpower:[],surf:["6M"],swagger:["6M"],tackle:["6L0"],takedown:["6L0"],toxic:["6M"],waterfall:["6M"],watergun:["6L0"],waterpledge:["6T"],waterpulse:[],whirlpool:[]}}, + poochyena:{learnset:{assurance:["6L29"],astonish:["6E"],attract:["6M"],bite:["6L13"],bodyslam:[],captivate:[],counter:[],covet:["6E"],crunch:["6L53"],darkpulse:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],embargo:["6L41","6M"],endure:[],facade:["6M"],firefang:["6E"],frustration:["6M"],headbutt:[],healbell:[],hiddenpower:["6M"],howl:["6L5"],icefang:["6E"],incinerate:["6M"],irontail:[],leer:["6E"],mefirst:["6E"],mimic:[],mudslap:[],naturalgift:[],odorsleuth:["6L17"],payback:["6M"],poisonfang:["6E"],protect:["6M"],psychup:[],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6L21","6M"],rocksmash:["6M"],round:["6M"],sandattack:["6L9"],scaryface:["6L33"],secretpower:[],shadowball:["6M"],sleeptalk:["6M","6E"],snarl:["6M"],snatch:["6E"],snore:[],spite:[],substitute:["6M"],suckerpunch:["6L49","6E"],sunnyday:["6M"],superfang:[],swagger:["6L25","6M"],tackle:["6L1"],takedown:["6L45"],taunt:["6L37","6M"],thief:["6M"],thunderfang:["6E"],torment:["6M"],toxic:["6M"],uproar:[],yawn:["6E"],foulplay:[],hypervoice:[],confide:["6M"],playrough:["6E"]}}, + mightyena:{learnset:{assurance:["6L32"],attract:["6M"],bite:["6L1","6L13"],bodyslam:[],captivate:[],counter:[],crunch:["6L1","6L65"],darkpulse:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],embargo:["6L47","6M"],endure:[],facade:["6M"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],hiddenpower:["6M"],howl:["6L1","6L5"],hyperbeam:["6M"],incinerate:["6M"],irontail:[],mimic:[],mudslap:[],naturalgift:[],odorsleuth:["6L17"],payback:["6M"],protect:["6M"],psychup:[],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6L22","6M"],rocksmash:["6M"],round:["6M"],sandattack:["6L1","6L9"],scaryface:["6L37"],secretpower:[],shadowball:["6M"],sleeptalk:["6M"],snarl:["6M"],snatch:[],snore:[],spite:[],strength:["6M"],substitute:["6M"],suckerpunch:["6L62"],sunnyday:["6M"],superfang:[],swagger:["6L27","6M"],tackle:["6L1"],takedown:["6L52"],taunt:["6L42","6M"],thief:["6L57","6M"],torment:["6M"],toxic:["6M"],uproar:[],covet:[],foulplay:[],hypervoice:[],confide:["6M"]}}, + zigzagoon:{learnset:{attract:["6M"],bellydrum:["6L45"],bestow:["6L33"],blizzard:["6M"],bodyslam:[],captivate:[],chargebeam:["6M"],charm:["6E"],covet:["6L29"],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],echoedvoice:["6M"],endure:[],extremespeed:[],facade:["6M"],flail:["6L37"],fling:["6L49","6M"],frustration:["6M"],furycutter:[],grassknot:["6M"],growl:["6L1"],gunkshot:[],headbutt:["6L9"],helpinghand:["6E"],hiddenpower:["6M"],honeclaws:["6M"],icebeam:["6M"],icywind:[],irontail:[],lastresort:[],mimic:[],mudslap:["6E"],mudsport:["6L21"],naturalgift:[],odorsleuth:["6L17"],pinmissile:["6L25"],protect:["6M"],pursuit:["6E"],raindance:["6M"],rest:["6L41","6M"],retaliate:["6M"],"return":["6M"],rockclimb:["6E"],rocksmash:["6M"],rollout:[],round:["6M"],sandattack:["6L13"],secretpower:[],seedbomb:[],shadowball:["6M"],shockwave:[],simplebeam:["6E"],sleeptalk:["6M","6E"],snore:[],substitute:["6M"],sunnyday:["6M"],superfang:[],surf:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwhip:["6L5"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],tickle:["6E"],toxic:["6M"],trick:["6E"],waterpulse:[],whirlpool:[],workup:[],hypervoice:[],babydolleyes:["6L11"],confide:["6M"]}}, + linoone:{learnset:{attract:["6M"],bellydrum:["6L59"],bestow:["6L41"],blizzard:["6M"],bodyslam:[],captivate:[],chargebeam:["6M"],covet:["6L35"],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fling:["6L65","6M"],frustration:["6M"],furycutter:[],furyswipes:["6L29"],gigaimpact:["6M"],grassknot:["6M"],growl:["6L1"],gunkshot:[],headbutt:["6L1","6L9"],helpinghand:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],irontail:[],lastresort:[],mimic:[],mudslap:[],mudsport:["6L23"],naturalgift:[],odorsleuth:["6L17"],protect:["6M"],raindance:["6M"],rest:["6L53","6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],rollout:[],round:["6M"],sandattack:["6L13"],secretpower:[],seedbomb:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],slash:["6L47"],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superfang:[],surf:["6M"],swagger:["6M"],swift:[],switcheroo:["6L1"],tackle:["6L1"],tailwhip:["6L1","6L5"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trick:[],waterpulse:[],whirlpool:[],workup:[],hypervoice:[],playrough:["6L1"],rototiller:["6L1"],confide:["6M"]}}, + wurmple:{learnset:{bugbite:["6L15"],poisonsting:["6L5"],snore:[],stringshot:["6L1"],tackle:["6L1"],electroweb:[]}}, + silcoon:{learnset:{bugbite:[],harden:["6L1","6L7"],irondefense:[],stringshot:[],electroweb:[]}}, + beautifly:{learnset:{absorb:["6L1","6L10"],acrobatics:["6M"],aerialace:["6M"],aircutter:[],attract:["6L31","6M"],bugbite:[],bugbuzz:["6L41"],captivate:[],defog:[],doubleedge:[],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:["6L38"],gigaimpact:["6M"],gust:["6L13"],hiddenpower:["6M"],hyperbeam:["6M"],megadrain:["6L24"],mimic:[],morningsun:["6L20"],naturalgift:[],ominouswind:[],protect:["6M"],psychic:["6M"],quiverdance:["6L45"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],signalbeam:[],silverwind:["6L34"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stringshot:[],strugglebug:["6M"],stunspore:["6L17"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tailwind:[],thief:["6M"],toxic:["6M"],twister:[],uturn:["6M"],venoshock:["6M"],whirlwind:["6L27"],electroweb:[],infestation:["6M"],confide:["6M"]}}, + cascoon:{learnset:{bugbite:[],harden:["6L1","6L7"],irondefense:[],stringshot:[],electroweb:[]}}, + dustox:{learnset:{acrobatics:["6M"],aerialace:["6M"],aircutter:[],attract:["6M"],bugbite:[],bugbuzz:["6L41"],captivate:[],confusion:["6L10"],defog:[],doubleedge:[],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],gust:["6L13"],hiddenpower:["6M"],hyperbeam:["6M"],lightscreen:["6L31","6M"],mimic:[],moonlight:["6L20"],naturalgift:[],ominouswind:[],protect:["6L17","6M"],psybeam:["6L24"],psychic:["6M"],quiverdance:["6L45"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],secretpower:[],shadowball:["6M"],signalbeam:[],silverwind:["6L34"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tailwind:[],thief:["6M"],toxic:["6L38","6M"],twister:[],uturn:["6M"],venoshock:["6M"],whirlwind:["6L27"],electroweb:[],infestation:["6M"],confide:["6M"]}}, + lotad:{learnset:{absorb:["6L5"],astonish:["6L1"],attract:["6M"],blizzard:["6M"],bodyslam:[],bubblebeam:["6L25"],bulletseed:[],captivate:[],counter:["6E"],doubleedge:[],doubleteam:["6M"],echoedvoice:["6M"],endure:[],energyball:["6L45","6M"],facade:["6M"],flail:["6E"],flash:["6M"],frustration:["6M"],gigadrain:["6E"],grassknot:["6M"],growl:["6L3"],hail:["6M"],headbutt:[],hiddenpower:["6M"],icebeam:["6M"],icywind:[],leechseed:["6E"],megadrain:["6L19"],mimic:[],mist:["6L11"],naturalgift:["6L15"],naturepower:["6L7","6M"],protect:["6M"],raindance:["6L37","6M"],razorleaf:["6E"],rest:["6M"],"return":["6M"],round:["6M"],scald:["6M"],secretpower:[],seedbomb:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],sweetscent:["6E"],swordsdance:["6M"],synthesis:["6E"],teeterdance:["6E"],thief:["6M"],tickle:["6E"],toxic:["6M"],uproar:[],watergun:["6E"],waterpulse:[],whirlpool:[],zenheadbutt:["6L31"],confide:["6M"]}}, + lombre:{learnset:{absorb:["6L5"],astonish:["6L1"],attract:["6M"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bubblebeam:["6L25"],bulletseed:[],captivate:[],dive:[],doubleedge:[],doubleteam:["6M"],drainpunch:[],dynamicpunch:[],echoedvoice:["6M"],endure:[],energyball:["6M"],facade:["6M"],fakeout:["6L11"],firepunch:[],flash:["6M"],fling:["6M"],frustration:["6M"],furyswipes:["6L15"],gigadrain:[],grassknot:["6M"],growl:["6L3"],hail:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hydropump:["6L45"],icebeam:["6M"],icepunch:[],icywind:[],mimic:[],mudslap:[],naturalgift:[],naturepower:["6L7","6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],scald:["6M"],secretpower:[],seedbomb:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],synthesis:[],thief:["6M"],thunderpunch:[],toxic:["6M"],uproar:["6L37"],waterfall:["6M"],waterpulse:[],watersport:["6L19"],whirlpool:[],zenheadbutt:["6L31"],hypervoice:[],poweruppunch:["6M"],confide:["6M"]}}, + ludicolo:{learnset:{absorb:[],astonish:["6L1"],attract:["6M"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulletseed:[],captivate:[],counter:[],dive:[],doubleedge:[],doubleteam:["6M"],drainpunch:[],dynamicpunch:[],echoedvoice:["6M"],endure:[],energyball:["6M"],facade:["6M"],fakeout:[],firepunch:[],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],growl:["6L1"],hail:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hydropump:[],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],megadrain:["6L1"],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],naturepower:["6L1","6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rocksmash:["6M"],round:["6M"],scald:["6M"],secretpower:[],seedbomb:[],seismictoss:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],synthesis:[],thief:["6M"],thunderpunch:[],toxic:["6M"],uproar:[],waterfall:["6M"],waterpulse:[],whirlpool:[],zenheadbutt:[],hypervoice:[],poweruppunch:["6M"],confide:["6M"]}}, + seedot:{learnset:{amnesia:["6E"],attract:["6M"],beatup:["6E"],bide:["6L1"],bodyslam:[],bulletseed:["6E"],captivate:[],defensecurl:[],defog:["6E"],dig:["6M"],doubleedge:[],doubleteam:["6M"],endure:[],energyball:["6M"],explosion:["6L43","6M"],facade:["6M"],falseswipe:["6M"],flash:["6M"],foulplay:["6E"],frustration:["6M"],gigadrain:[],grassknot:["6M"],growth:["6L7"],harden:["6L3"],headbutt:[],hiddenpower:["6M"],leechseed:["6E"],mimic:[],nastyplot:["6E"],naturalgift:[],naturepower:["6L13","6M"],powerswap:["6E"],protect:["6M"],quickattack:["6E"],razorwind:["6E"],refresh:[],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],rollout:[],round:["6M"],secretpower:[],seedbomb:[],selfdestruct:[],shadowball:["6M"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],spite:[],substitute:["6M"],sunnyday:["6L31","6M"],swagger:["6M"],swordsdance:["6M"],synthesis:["6L21"],takedown:["6E"],toxic:["6M"],worryseed:["6E"],confide:["6M"],grassyterrain:["6E"]}}, + nuzleaf:{learnset:{attract:["6M"],bodyslam:[],brickbreak:["6M"],bulletseed:[],captivate:[],cut:["6M"],darkpulse:["6M"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],embargo:["6M"],endure:[],energyball:["6M"],explosion:["6M"],extrasensory:["6L49"],facade:["6M"],feintattack:["6L31"],fakeout:["6L19"],falseswipe:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],furycutter:[],gigadrain:[],grassknot:["6M"],growth:["6L7"],harden:["6L3"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],lowkick:[],lowsweep:["6M"],megakick:[],mimic:[],mudslap:[],naturalgift:[],naturepower:["6L13","6M"],payback:["6M"],pound:["6L1"],protect:["6M"],psychup:["6M"],razorleaf:["6L1"],razorwind:["6L37"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],secretpower:[],seedbomb:[],selfdestruct:[],shadowball:["6M"],sleeptalk:["6M"],snarl:["6M"],snore:[],solarbeam:["6M"],spite:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6L43","6M"],swift:[],swordsdance:["6M"],synthesis:[],thief:["6M"],torment:["6L25","6M"],toxic:["6M"],worryseed:[],foulplay:[],poweruppunch:["6M"],confide:["6M"]}}, + shiftry:{learnset:{aerialace:["6M"],aircutter:[],attract:["6M"],bodyslam:[],bounce:[],brickbreak:["6M"],bulletseed:[],captivate:[],cut:["6M"],darkpulse:["6M"],defensecurl:[],defog:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],embargo:["6M"],endure:[],energyball:["6M"],explosion:["6M"],facade:["6M"],feintattack:["6L1"],falseswipe:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],furycutter:[],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],growth:[],harden:[],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icywind:[],knockoff:[],leafstorm:["6L49"],leaftornado:["6L19"],lowkick:[],lowsweep:["6M"],megakick:[],mimic:[],mudslap:[],nastyplot:["6L1"],naturalgift:[],naturepower:["6M"],ominouswind:[],payback:["6M"],pound:[],protect:["6M"],psychup:["6M"],razorleaf:["6L1"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],secretpower:[],seedbomb:[],selfdestruct:[],shadowball:["6M"],silverwind:[],sleeptalk:["6M"],snarl:["6M"],snore:[],solarbeam:["6M"],spite:[],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],synthesis:[],tailwind:[],thief:["6M"],torment:["6M"],toxic:["6M"],twister:[],whirlwind:["6L1"],worryseed:[],xscissor:["6M"],foulplay:[],poweruppunch:["6M"],confide:["6M"]}}, + taillow:{learnset:{aerialace:["6L34","6M"],agility:["6L43"],aircutter:[],airslash:["6L53"],attract:["6M"],bravebird:["6E"],captivate:[],counter:[],defog:["6E"],doubleedge:[],doubleteam:["6L19","6M"],echoedvoice:["6M"],endeavor:["6L26"],endure:[],facade:["6M"],featherdance:[],fly:["6M"],focusenergy:["6L4"],frustration:["6M"],growl:["6L1"],heatwave:[],hiddenpower:["6M"],mimic:[],mirrormove:["6E"],mudslap:[],naturalgift:[],ominouswind:[],peck:["6L1"],pluck:[],protect:["6M"],pursuit:["6E"],quickattack:["6L8"],rage:["6E"],raindance:["6M"],refresh:["6E"],rest:["6M"],"return":["6M"],roost:["6M","6E"],round:["6M"],secretpower:[],skyattack:["6E"],sleeptalk:["6M"],snore:[],steelwing:["6M","6E"],substitute:["6M"],sunnyday:["6M"],supersonic:["6E"],swagger:["6M"],swift:[],tailwind:[],thief:["6M"],toxic:["6M"],twister:[],uturn:["6M"],whirlwind:["6E"],wingattack:["6L13"],workup:[],confide:["6M"]}}, + swellow:{learnset:{aerialace:["6L38","6M"],agility:["6L49"],aircutter:[],airslash:["6L1","6L61"],attract:["6M"],batonpass:[],captivate:[],counter:[],defog:[],doubleedge:[],doubleteam:["6L19","6M"],echoedvoice:["6M"],endeavor:["6L28"],endure:[],facade:["6M"],fly:["6M"],focusenergy:["6L1","6L4"],frustration:["6M"],gigaimpact:["6M"],growl:["6L1"],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],mimic:[],mudslap:[],naturalgift:[],ominouswind:[],peck:["6L1"],pluck:["6L1"],protect:["6M"],quickattack:["6L1","6L8"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],secretpower:[],skyattack:[],sleeptalk:["6M"],snore:[],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tailwind:[],thief:["6M"],toxic:["6M"],twister:[],uturn:["6M"],wingattack:["6L13"],workup:[],confide:["6M"]}}, + wingull:{learnset:{aerialace:["6L42","6M"],agility:["6L38","6E"],aircutter:["6L33"],airslash:["6L46"],aquaring:["6E"],attract:["6M"],blizzard:["6M"],brine:["6E"],captivate:[],defog:[],doubleedge:[],doubleteam:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fly:["6M"],frustration:["6M"],growl:["6L1"],gust:["6E"],hail:["6M"],hiddenpower:["6M"],hurricane:["6L49"],icebeam:["6M"],icywind:[],knockoff:["6E"],mimic:[],mist:["6L14","6E"],mudslap:[],naturalgift:[],ominouswind:[],pluck:[],protect:["6M"],pursuit:["6L30"],quickattack:["6L22"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6L26","6M","6E"],round:["6M"],scald:["6M"],secretpower:[],shockwave:[],skyattack:[],sleeptalk:["6M"],snore:[],steelwing:["6M"],substitute:["6M"],supersonic:["6L6"],swagger:["6M"],swift:[],tailwind:[],thief:["6M"],toxic:["6M"],twister:["6E"],uproar:[],uturn:["6M"],watergun:["6L1"],waterpulse:["6L17"],watersport:["6E"],wingattack:["6L9"],confide:["6M"],wideguard:["6E"]}}, + pelipper:{learnset:{aerialace:["6M"],aircutter:[],attract:["6M"],blizzard:["6M"],brine:["6L34"],captivate:[],defog:[],doubleedge:[],doubleteam:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fling:["6L46","6M"],fly:["6M"],frustration:["6M"],gigaimpact:["6M"],growl:["6L1"],gunkshot:[],hail:["6M"],hiddenpower:["6M"],hurricane:["6L63"],hydropump:["6L1","6L58"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],knockoff:[],mimic:[],mist:["6L14"],mudslap:[],naturalgift:[],ominouswind:[],payback:["6L22","6M"],pluck:[],protect:["6L25","6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6L28","6M"],round:["6M"],scald:["6M"],secretpower:[],seedbomb:[],shockwave:[],skyattack:[],skydrop:["6M"],sleeptalk:["6M"],snore:[],soak:["6L1"],spitup:["6L39"],steelwing:["6M"],stockpile:["6L39"],substitute:["6M"],supersonic:["6L6"],surf:["6M"],swagger:["6M"],swallow:["6L39"],swift:[],tailwind:["6L1","6L52"],thief:["6M"],toxic:["6M"],twister:[],uproar:[],uturn:["6M"],watergun:["6L1"],waterpulse:["6L17"],watersport:["6L1"],whirlpool:[],wingattack:["6L1","6L9"],confide:["6M"]}}, + ralts:{learnset:{allyswitch:[],attract:["6M"],bodyslam:[],calmmind:["6L28","6M"],captivate:[],chargebeam:["6M"],charm:["6L43"],confuseray:["6E"],confusion:["6L6"],defensecurl:[],destinybond:["6E"],disable:["6E"],doubleedge:[],doubleteam:["6L10","6M"],dreameater:["6L49","6M"],echoedvoice:["6M"],encore:["6E"],endure:[],facade:["6M"],firepunch:[],flash:["6M"],fling:["6M"],frustration:["6M"],futuresight:["6L39"],grassknot:["6M"],growl:["6L1"],grudge:["6E"],headbutt:[],healpulse:["6L23"],helpinghand:[],hiddenpower:["6M"],hypnosis:["6L45"],icepunch:[],icywind:[],imprison:["6L34"],lightscreen:["6M"],luckychant:["6L17"],magicalleaf:["6L21"],magiccoat:[],meanlook:["6E"],memento:["6E"],mimic:[],mudslap:[],naturalgift:[],nightmare:[],painsplit:[],protect:["6M"],psychic:["6L32","6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],shadowsneak:["6E"],shockwave:[],signalbeam:[],sing:[],skillswap:["6E"],sleeptalk:["6M"],snatch:[],snore:[],storedpower:["6L54"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],synchronoise:["6E"],taunt:["6M"],telekinesis:[],teleport:["6L12"],thief:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],willowisp:["6M"],wish:[],zenheadbutt:[],hypervoice:[],magicroom:[],wonderroom:[],dazzlinggleam:["6M"],confide:["6M"]}}, + kirlia:{learnset:{allyswitch:[],attract:["6M"],bodyslam:[],calmmind:["6L31","6M"],captivate:[],chargebeam:["6M"],charm:["6L50"],confusion:["6L1","6L6"],defensecurl:[],doubleedge:[],doubleteam:["6L1","6L10","6M"],dreameater:["6L59","6M"],echoedvoice:["6M"],endure:[],facade:["6M"],firepunch:[],flash:["6M"],fling:["6M"],frustration:["6M"],futuresight:["6L45"],grassknot:["6M"],growl:["6L1"],headbutt:[],healpulse:["6L25"],helpinghand:[],hiddenpower:["6M"],hypnosis:["6L53"],icepunch:[],icywind:[],imprison:["6L39"],lightscreen:["6M"],luckychant:["6L17"],magicalleaf:["6L22"],magiccoat:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],painsplit:[],protect:["6M"],psychic:["6L36","6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snatch:[],snore:[],storedpower:["6L64"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],taunt:["6M"],telekinesis:[],teleport:["6L1","6L12"],thief:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],willowisp:["6M"],zenheadbutt:[],hypervoice:[],magicroom:[],wonderroom:[],dazzlinggleam:["6M"],confide:["6M"]}}, + gardevoir:{learnset:{allyswitch:[],attract:["6M"],bodyslam:[],calmmind:["6L33","6M"],captivate:["6L60"],chargebeam:["6M"],confusion:["6L1","6L6"],defensecurl:[],doubleedge:[],doubleteam:["6L1","6L10","6M"],dreameater:["6L73","6M"],echoedvoice:["6M"],endure:[],energyball:["6M"],facade:["6M"],firepunch:[],flash:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],futuresight:["6L53"],gigaimpact:["6M"],grassknot:["6M"],growl:["6L1"],headbutt:[],healbell:[],healingwish:["6L1"],healpulse:["6L25"],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],hypnosis:["6L65"],icepunch:[],icywind:[],imprison:["6L45"],lightscreen:["6M"],magicalleaf:["6L22"],magiccoat:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],painsplit:[],protect:["6M"],psychic:["6L40","6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snatch:[],snore:[],storedpower:["6L1","6L80"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],taunt:["6M"],telekinesis:[],teleport:["6L1","6L12"],thief:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],willowisp:["6M"],wish:["6L17"],zenheadbutt:[],hypervoice:[],magicroom:[],wonderroom:[],moonblast:["6L1","6L85"],mistyterrain:["6L1"],dazzlinggleam:["6M"],confide:["6M"]}}, + gallade:{learnset:{aerialace:["6M"],allyswitch:[],attract:["6M"],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],closecombat:["6L1","6L59"],confusion:["6L1","6L6"],cut:["6M"],doubleteam:["6L1","6L10","6M"],drainpunch:[],dreameater:["6M"],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],falseswipe:["6L50","6M"],feint:["6L45"],firepunch:[],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:["6L17"],gigaimpact:["6M"],grassknot:["6M"],headbutt:[],healpulse:["6L25"],helpinghand:["6L39"],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],knockoff:[],leafblade:["6L1"],leer:["6L1"],lightscreen:["6M"],lowkick:[],lowsweep:["6M"],magiccoat:[],mudslap:[],naturalgift:[],nightslash:["6L1"],painsplit:[],poisonjab:["6M"],protect:["6L53","6M"],psychic:["6M"],psychocut:["6L36"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],slash:["6L22"],sleeptalk:["6M"],snatch:[],snore:[],stoneedge:["6M"],storedpower:["6L1","6L64"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6L31","6M"],taunt:["6M"],telekinesis:[],teleport:["6L1","6L12"],thief:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],vacuumwave:[],willowisp:["6M"],workup:[],xscissor:["6M"],zenheadbutt:[],dualchop:[],hypervoice:[],magicroom:[],wonderroom:[],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + surskit:{learnset:{agility:["6L31"],aquajet:["6E"],attract:["6M"],batonpass:["6L43"],blizzard:["6M"],bubble:["6L1"],bubblebeam:["6L25"],bugbite:["6E"],captivate:[],doubleedge:[],doubleteam:["6M"],endure:["6E"],facade:["6M"],flash:["6M"],foresight:["6E"],frustration:["6M"],gigadrain:[],haze:["6L37"],hiddenpower:["6M"],hydropump:["6E"],icebeam:["6M"],icywind:[],mimic:[],mindreader:["6E"],mist:["6L37"],mudshot:["6E"],mudslap:[],mudsport:[],naturalgift:[],protect:["6M"],psybeam:["6E"],psychup:["6M"],quickattack:["6L7"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],scald:["6M"],secretpower:[],shadowball:["6M"],signalbeam:["6E"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L13"],swift:[],thief:["6M"],toxic:["6M"],waterpulse:[],watersport:["6L19"],stickyweb:["6L46"],infestation:["6M"],confide:["6M"],powersplit:["6E"],fellstinger:["6E"]}}, + masquerain:{learnset:{aerialace:["6M"],aircutter:[],airslash:["6L47"],attract:["6M"],blizzard:["6M"],bubble:["6L1"],bugbite:[],bugbuzz:["6L1","6L61"],captivate:[],defog:[],doubleedge:[],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],gust:["6L22"],hiddenpower:["6M"],hydropump:[],hyperbeam:["6M"],icebeam:["6M"],icywind:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],ominouswind:["6L1"],protect:["6M"],psychup:["6M"],quickattack:["6L1","6L7"],quiverdance:["6L1","6L68"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],scald:["6M"],scaryface:["6L26"],secretpower:[],shadowball:["6M"],signalbeam:[],silverwind:["6L40"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stringshot:[],strugglebug:["6M"],stunspore:["6L33"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L1","6L13"],swift:[],tailwind:[],thief:["6M"],toxic:["6M"],twister:[],uturn:["6M"],waterpulse:[],watersport:["6L1","6L19"],whirlwind:["6L1","6L54"],infestation:["6M"],confide:["6M"]}}, + shroomish:{learnset:{absorb:["6L1"],attract:["6M"],bodyslam:[],bulletseed:["6E"],captivate:[],charm:["6E"],doubleedge:[],doubleteam:["6M"],drainpunch:["6E"],endure:[],energyball:["6M"],facade:["6M"],faketears:["6E"],falseswipe:["6M"],flash:["6M"],focuspunch:["6E"],frustration:["6M"],gigadrain:["6L37"],grassknot:["6M"],growth:["6L33"],headbutt:["6L21"],helpinghand:["6E"],hiddenpower:["6M"],leechseed:["6L13"],megadrain:["6L17"],mimic:[],naturalgift:["6E"],poisonpowder:["6L25"],protect:["6M"],refresh:[],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:["6L41","6E"],sleeptalk:["6M"],sludgebomb:["6M"],snatch:[],snore:[],solarbeam:["6M"],spore:["6L45"],stunspore:["6L9"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],synthesis:[],tackle:["6L5"],toxic:["6M"],venoshock:["6M"],wakeupslap:["6E"],worryseed:["6L29","6E"],confide:["6M"]}}, + breloom:{learnset:{absorb:["6L1"],attract:["6M"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulletseed:[],captivate:[],counter:["6L25"],cut:["6M"],doubleedge:[],doubleteam:["6M"],drainpunch:[],dynamicpunch:["6L45"],endure:[],energyball:["6M"],facade:["6M"],falseswipe:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],forcepalm:["6L29"],frustration:["6M"],furycutter:[],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],headbutt:["6L21"],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],irontail:[],leechseed:["6L1","6L13"],lowsweep:["6M"],machpunch:["6L23"],megadrain:["6L17"],megakick:[],megapunch:[],mimic:[],mindreader:["6L37"],mudslap:[],naturalgift:[],protect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:["6L41"],seismictoss:[],skyuppercut:["6L33"],sleeptalk:["6M"],sludgebomb:["6M"],snatch:[],snore:[],solarbeam:["6M"],stoneedge:["6M"],strength:["6M"],stunspore:["6L1","6L9"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],swordsdance:["6M"],synthesis:[],tackle:["6L1","6L5"],thunderpunch:[],toxic:["6M"],vacuumwave:[],venoshock:["6M"],workup:[],worryseed:[],poweruppunch:["6M"],confide:["6M"]}}, + slakoth:{learnset:{aerialace:["6M"],afteryou:["6E"],amnesia:["6L0"],attract:["6M"],blizzard:["6M"],bodyslam:["6E"],brickbreak:["6M"],bulkup:["6M"],captivate:[],chipaway:["6L0"],counter:["6L0"],covet:["6L0"],crushclaw:["6E"],curse:["6E"],cut:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],encore:["6L0"],endure:[],facade:["6M"],feintattack:["6L0"],fireblast:["6M"],firepunch:[],flail:["6L0"],flamethrower:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gunkshot:[],hammerarm:["6E"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],nightslash:["6E"],protect:["6M"],pursuit:["6E"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scratch:["6L0"],secretpower:[],seismictoss:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],slackoff:["6L0"],slash:["6E"],sleeptalk:["6E"],snore:["6E"],solarbeam:["6M"],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],tickle:["6E"],toxic:["6M"],waterpulse:[],workup:[],yawn:["6L0"]}}, + vigoroth:{learnset:{aerialace:["6M"],attract:["6M"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L0"],counter:["6L0"],cut:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],encore:["6L0"],endure:["6L0"],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focusenergy:["6L0"],focuspunch:["6L0"],frustration:["6M"],furycutter:[],furyswipes:["6L0"],gunkshot:[],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],lowkick:[],lowsweep:["6M"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],reversal:["6L0"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scratch:["6L0"],secretpower:[],seismictoss:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],slash:["6L0"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],uproar:["6L0"],waterpulse:[],workup:[],covet:[],afteryou:[]}}, + slaking:{learnset:{aerialace:["6M"],amnesia:["6L0"],attract:["6M"],blizzard:["6M"],block:[],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L0"],counter:["6L0"],covet:["6L0"],cut:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],encore:["6L0"],endure:[],facade:["6M"],feintattack:["6L0"],fireblast:["6M"],firepunch:[],flail:["6L0"],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],gunkshot:[],hammerarm:["6L0"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],lowkick:[],lowsweep:["6M"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],punishment:["6L0"],quash:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scratch:["6L0"],secretpower:[],seismictoss:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],slackoff:["6L0"],sleeptalk:["6M"],smackdown:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],waterpulse:[],workup:[],yawn:["6L0"],afteryou:[]}}, + nincada:{learnset:{aerialace:["6M"],bugbite:["6E"],bugbuzz:["6E"],cut:["6M"],dig:["6L45","6M"],doubleedge:[],doubleteam:["6M"],endure:["6E"],facade:["6M"],feintattack:["6E"],falseswipe:["6L25","6M"],finalgambit:["6E"],flash:["6M"],frustration:["6M"],furycutter:[],furyswipes:["6L14"],gigadrain:[],gust:["6E"],harden:["6L1"],hiddenpower:["6M"],honeclaws:["6M"],leechlife:["6L5"],metalclaw:["6L38"],mimic:[],mindreader:["6L19"],mudslap:["6L31"],naturalgift:[],nightslash:["6E"],protect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],sandattack:["6L9"],sandstorm:["6M"],scratch:["6L1"],secretpower:[],shadowball:["6M"],silverwind:["6E"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],spite:[],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],toxic:["6M"],xscissor:["6M"],confide:["6M"]}}, + ninjask:{learnset:{aerialace:["6M"],agility:["6L38"],aircutter:[],attract:["6M"],batonpass:["6L45"],bugbite:["6L1"],captivate:[],cut:["6M"],defog:[],dig:["6M"],doubleedge:[],doubleteam:["6L20","6M"],endure:[],facade:["6M"],falseswipe:["6M"],flash:["6M"],frustration:["6M"],furycutter:["6L20"],furyswipes:["6L14"],gigadrain:[],gigaimpact:["6M"],harden:["6L1"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],leechlife:["6L1","6L5"],mimic:[],mindreader:["6L19"],mudslap:[],naturalgift:[],ominouswind:[],protect:["6M"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],sandattack:["6L1","6L9"],sandstorm:["6M"],scratch:["6L1"],screech:["6L20"],secretpower:[],shadowball:["6M"],silverwind:[],slash:["6L31"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],spite:[],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6L25","6M"],thief:["6M"],toxic:["6M"],uproar:[],uturn:["6M"],xscissor:["6L52","6M"],confide:["6M"]}}, + shedinja:{learnset:{aerialace:["6M"],agility:[],batonpass:[],bugbite:[],confuseray:["6L31"],cut:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],endure:[],facade:["6M"],falseswipe:["6M"],flash:["6M"],frustration:["6M"],furycutter:[],furyswipes:["6L14"],gigadrain:[],gigaimpact:["6M"],grudge:["6L43"],harden:["6L1"],healblock:["6L50"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],leechlife:["6L5"],mimic:[],mindreader:["6L19"],mudslap:[],naturalgift:[],nightmare:[],protect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],sandattack:["6L9"],sandstorm:["6M"],scratch:["6L1"],screech:[],secretpower:[],shadowball:["6L59","6M"],shadowclaw:["6M"],shadowsneak:["6L38"],slash:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],spite:["6L25"],stringshot:[],strugglebug:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swordsdance:[],telekinesis:[],thief:["6M"],toxic:["6M"],trick:[],willowisp:["6M"],xscissor:["6M"],phantomforce:["6L47"],confide:["6M"]}}, + whismur:{learnset:{astonish:["6L11"],attract:["6M"],blizzard:["6M"],bodyslam:[],captivate:[],circlethrow:["6E"],counter:[],defensecurl:[],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],echoedvoice:["6M"],endeavor:["6E"],endure:[],extrasensory:["6E"],facade:["6M"],faketears:["6E"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],frustration:["6M"],hammerarm:["6E"],headbutt:[],hiddenpower:["6M"],howl:["6L15"],hypervoice:["6L50"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],pound:["6L1"],protect:["6M"],psychup:[],raindance:["6M"],rest:["6L45","6M"],retaliate:["6M"],"return":["6M"],roar:["6L35","6M"],rollout:[],round:["6M"],screech:["6L31"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],sleeptalk:["6L45","6M"],smellingsalts:["6E"],smokescreen:["6E"],snore:["6E"],solarbeam:["6M"],stomp:["6L25"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L21"],swagger:["6M"],synchronoise:["6L41"],takedown:["6E"],teeterdance:[],thunderpunch:[],toxic:["6M"],uproar:["6L5"],waterpulse:[],workup:[],zenheadbutt:[],confide:["6M"]}}, + loudred:{learnset:{astonish:["6L1","6L11"],attract:["6M"],bite:["6L20"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],counter:[],defensecurl:[],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],frustration:["6M"],headbutt:[],hiddenpower:["6M"],howl:["6L1","6L15"],hypervoice:["6L65"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],lowkick:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],overheat:["6M"],pound:["6L1"],protect:["6M"],psychup:[],raindance:["6M"],rest:["6L57","6M"],retaliate:["6M"],"return":["6M"],roar:["6L43","6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],screech:["6L37"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],sleeptalk:["6L57","6M"],smackdown:["6M"],snore:[],solarbeam:["6M"],stomp:["6L29"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L23"],swagger:["6M"],synchronoise:["6L51"],taunt:["6M"],thunderpunch:[],torment:["6M"],toxic:["6M"],uproar:["6L1","6L5"],waterpulse:[],workup:[],zenheadbutt:[],endeavor:[],poweruppunch:["6M"],confide:["6M"]}}, + exploud:{learnset:{astonish:["6L1","6L11"],attract:["6M"],avalanche:[],bite:["6L20"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],counter:[],crunch:["6L40"],defensecurl:[],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fireblast:["6M"],firefang:["6L1"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],hiddenpower:["6M"],howl:["6L1","6L15"],hyperbeam:["6L79","6M"],hypervoice:["6L71"],icebeam:["6M"],icefang:["6L1"],icepunch:[],icywind:[],incinerate:["6M"],lowkick:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],outrage:[],overheat:["6M"],pound:["6L1"],protect:["6M"],psychup:[],raindance:["6M"],rest:["6L55","6M"],retaliate:["6M"],"return":["6M"],roar:["6L45","6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],screech:["6L37"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],sleeptalk:["6L63","6M"],smackdown:["6M"],snore:[],solarbeam:["6M"],stomp:["6L29"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L23"],surf:["6M"],swagger:["6M"],synchronoise:["6L55"],taunt:["6M"],thunderfang:["6L1"],thunderpunch:[],torment:["6M"],toxic:["6M"],uproar:["6L1","6L5"],waterpulse:[],whirlpool:[],workup:[],zenheadbutt:[],endeavor:[],boomburst:["6L1","6L85"],poweruppunch:["6M"],confide:["6M"]}}, + makuhita:{learnset:{armthrust:["6L7"],attract:["6M"],bellydrum:["6L25"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],bulletpunch:["6E"],captivate:[],chipaway:["6E"],closecombat:["6L40"],counter:["6E"],crosschop:["6E"],detect:["6E"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:["6E"],earthquake:["6M"],endure:["6L37"],facade:["6M"],feintattack:["6E"],fakeout:["6L13"],feint:["6E"],firepunch:[],fling:["6M"],focusblast:["6M"],focusenergy:["6L1"],focuspunch:["6E"],forcepalm:["6L28"],foresight:["6E"],frustration:["6M"],headbutt:[],heavyslam:["6L46"],helpinghand:["6E"],hiddenpower:["6M"],icepunch:[],knockoff:["6L19"],lowkick:[],lowsweep:["6M"],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],poisonjab:["6M"],protect:["6M"],raindance:["6M"],refresh:[],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6E"],reversal:["6L43"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],sandattack:["6L4"],secretpower:[],seismictoss:["6L31"],sleeptalk:["6M"],smackdown:["6M"],smellingsalts:["6L22"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],surf:["6M"],swagger:["6M"],tackle:["6L1"],thunderpunch:[],toxic:["6M"],vacuumwave:[],vitalthrow:["6L10"],wakeupslap:["6L34","6E"],whirlpool:[],whirlwind:["6L16"],wideguard:["6E"],workup:[],poweruppunch:["6M"],confide:["6M"]}}, + hariyama:{learnset:{armthrust:["6L1","6L7"],attract:["6M"],bellydrum:["6L27"],bodyslam:[],brickbreak:["6M"],brine:["6L1"],bulkup:["6M"],bulldoze:["6M"],captivate:[],closecombat:["6L52"],counter:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],endure:["6L47"],facade:["6M"],fakeout:["6L13"],firepunch:[],fling:["6M"],focusblast:["6M"],focusenergy:["6L1"],focuspunch:[],forcepalm:["6L32"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],heavyslam:["6L62"],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],ironhead:[],knockoff:["6L19"],lowkick:[],lowsweep:["6M"],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],payback:["6M"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],reversal:["6L57"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],sandattack:["6L1","6L4"],secretpower:[],seismictoss:["6L37"],sleeptalk:["6M"],smackdown:["6M"],smellingsalts:["6L22"],snore:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],surf:["6M"],swagger:["6M"],tackle:["6L1"],thunderpunch:[],toxic:["6M"],vacuumwave:[],vitalthrow:["6L10"],wakeupslap:["6L42"],whirlpool:[],whirlwind:["6L16"],workup:[],poweruppunch:["6M"],confide:["6M"]}}, + nosepass:{learnset:{ancientpower:[],attract:["6M"],block:["6L8","6E"],bodyslam:[],bulldoze:["6M"],captivate:[],defensecurl:[],discharge:["6L39"],doubleedge:["6E"],doubleteam:["6M"],dynamicpunch:[],earthpower:["6L43"],earthquake:["6M"],endure:["6E"],explosion:["6M"],facade:["6M"],firepunch:[],frustration:["6M"],gravity:[],harden:["6L4"],headbutt:[],helpinghand:[],hiddenpower:["6M"],icepunch:[],irondefense:[],lockon:["6L50"],magiccoat:[],magnetrise:[],magnitude:["6E"],mimic:[],mudslap:[],naturalgift:[],painsplit:[],powergem:["6L32"],protect:["6M"],rest:["6L22","6M"],"return":["6M"],rockblast:["6L18"],rockpolish:["6M"],rockslide:["6L29","6M"],rocksmash:["6M"],rockthrow:["6L11"],rocktomb:["6M"],rollout:["6E"],round:["6M"],sandstorm:["6L36","6M"],secretpower:[],selfdestruct:[],shockwave:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],spark:["6L25"],stealthrock:["6E"],stoneedge:["6L46","6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],taunt:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6L15","6M"],torment:["6M"],toxic:["6M"],voltswitch:["6M"],zapcannon:["6L50"],dazzlinggleam:["6M"],confide:["6M"]}}, + probopass:{learnset:{ancientpower:[],attract:["6M"],block:["6L1","6L8"],bulldoze:["6M"],captivate:[],discharge:["6L39"],doubleteam:["6M"],earthpower:["6L43"],earthquake:["6M"],endure:[],explosion:["6M"],facade:["6M"],firepunch:[],flashcannon:["6M"],frustration:["6M"],gigaimpact:["6M"],gravity:["6L1"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],irondefense:["6L1","6L4"],ironhead:[],lockon:["6L50"],magiccoat:[],magnetbomb:["6L1","6L11"],magnetrise:["6L1"],mudslap:[],naturalgift:[],painsplit:[],powergem:["6L32"],protect:["6M"],rest:["6L22","6M"],"return":["6M"],rockblast:["6L18"],rockpolish:["6M"],rockslide:["6L29","6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],sandstorm:["6L36","6M"],secretpower:[],shockwave:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],spark:["6L25"],stealthrock:[],stoneedge:["6L46","6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],taunt:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6L15","6M"],torment:["6M"],toxic:["6M"],voltswitch:["6M"],zapcannon:["6L50"],dazzlinggleam:["6M"],confide:["6M"]}}, + skitty:{learnset:{assist:["6L22"],attract:["6L8","6M"],batonpass:["6E"],blizzard:["6M"],bodyslam:[],calmmind:["6M"],captivate:["6L46","6E"],chargebeam:["6M"],charm:["6L25"],copycat:["6L18"],covet:["6L36"],defensecurl:[],dig:["6M"],doubleedge:["6L42"],doubleslap:["6L15"],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],feintattack:["6L29"],fakeout:["6L1","6E"],faketears:["6E"],flash:["6M"],foresight:["6L4"],frustration:["6M"],grassknot:["6M"],growl:["6L1"],headbutt:[],healbell:["6L39"],helpinghand:["6E"],hiddenpower:["6M"],icebeam:["6M"],icywind:[],irontail:[],lastresort:["6E"],mimic:[],mudbomb:["6E"],mudslap:[],naturalgift:[],payback:["6M"],payday:[],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rollout:[],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],simplebeam:["6E"],sing:["6L11"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],suckerpunch:["6E"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwhip:["6L1"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],tickle:["6E"],toxic:["6M"],uproar:["6E"],wakeupslap:["6L32"],waterpulse:[],wildcharge:["6M"],wish:["6E"],workup:[],zenheadbutt:["6E"],hypervoice:[],playrough:["6L49"],confide:["6M"]}}, + delcatty:{learnset:{attract:["6L1","6M"],blizzard:["6M"],bodyslam:[],calmmind:["6M"],captivate:[],chargebeam:["6M"],defensecurl:[],dig:["6M"],doubleedge:[],doubleslap:["6L1"],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fakeout:["6L1"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],growl:[],headbutt:[],healbell:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],irontail:[],lastresort:[],mimic:[],mudslap:[],naturalgift:[],payback:["6M"],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],rollout:[],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],sing:["6L1"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],sweetkiss:[],swift:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],waterpulse:[],wildcharge:["6M"],workup:[],zenheadbutt:[],covet:[],uproar:[],hypervoice:[],confide:["6M"]}}, + sableye:{learnset:{aerialace:["6M"],astonish:["6L11"],attract:["6M"],bodyslam:[],brickbreak:["6M"],calmmind:["6M"],captivate:["6E"],confuseray:["6L46"],counter:[],cut:["6M"],darkpulse:["6M"],detect:["6L22"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],dynamicpunch:[],embargo:["6M"],endure:[],facade:["6M"],feintattack:["6L32"],fakeout:["6L18"],feint:["6E"],firepunch:[],flash:["6M"],flatter:["6E"],fling:["6M"],focuspunch:[],foresight:["6L4"],foulplay:["6L50"],frustration:["6M"],furycutter:[],furyswipes:["6L15"],gravity:[],headbutt:[],helpinghand:[],hiddenpower:["6M"],honeclaws:["6M"],icepunch:[],icywind:[],incinerate:["6M"],knockoff:["6L29"],leer:["6L1"],lowkick:[],lowsweep:["6M"],magiccoat:[],meanlook:["6L1","6L60","6E"],megakick:[],megapunch:[],metalburst:["6E"],metronome:[],mimic:[],moonlight:["6E"],mudslap:[],nastyplot:["6E"],naturalgift:[],nightmare:[],nightshade:["6L8"],octazooka:[],ominouswind:[],painsplit:[],payback:["6M"],poisonjab:["6M"],powergem:["6L43"],protect:["6M"],psychic:["6M"],psychup:["6M"],punishment:["6L36"],raindance:["6M"],recover:["6E"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scratch:["6L1"],secretpower:[],seismictoss:[],shadowball:["6L57","6M"],shadowclaw:["6L39","6M"],shadowsneak:["6L25"],shockwave:[],signalbeam:[],sleeptalk:["6M"],snarl:["6M"],snatch:[],snore:[],spite:[],substitute:["6M"],suckerpunch:["6E"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],thunderpunch:[],tickle:[],torment:["6M"],toxic:["6M"],trick:["6E"],waterpulse:[],willowisp:["6M"],zenheadbutt:["6L1","6L53"],roleplay:[],wonderroom:[],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + mawile:{learnset:{ancientpower:["6E"],astonish:["6L1"],attract:["6M"],batonpass:["6L31"],bite:["6L11"],bodyslam:[],brickbreak:["6M"],captivate:["6E"],chargebeam:["6M"],counter:[],crunch:["6L36"],darkpulse:["6M"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],embargo:["6M"],endure:[],facade:["6M"],feintattack:["6L26"],faketears:["6L6"],falseswipe:["6M"],fireblast:["6M"],firefang:["6E"],flamethrower:["6M"],flashcannon:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],guardswap:["6E"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icefang:["6E"],icepunch:[],icywind:[],incinerate:["6M"],irondefense:["6L41"],ironhead:["6L1","6L56"],knockoff:[],magnetrise:[],megakick:[],megapunch:[],metalburst:["6E"],mimic:[],mudslap:[],naturalgift:[],painsplit:[],payback:["6M"],poisonfang:["6E"],protect:["6M"],psychup:["6M"],punishment:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:["6E"],shadowball:["6M"],sing:[],slam:["6E"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],spitup:["6L50"],stockpile:["6L50"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],suckerpunch:["6L46","6E"],sunnyday:["6M"],superfang:[],swagger:["6M"],swallow:["6L50"],sweetscent:["6L16"],swordsdance:["6M"],taunt:["6L1","6M"],thunderfang:["6E"],thunderpunch:[],tickle:["6E"],torment:["6M"],toxic:["6M"],vicegrip:["6L21"],foulplay:[],lastresort:[],snatch:[],stealthrock:[],playrough:["6L1","6L60"],growl:["6L1"],fairywind:["6L1"],poweruppunch:["6M"],confide:["6M"],mistyterrain:["6E"]}}, + aron:{learnset:{aerialace:["6M"],ancientpower:[],attract:["6M"],autotomize:["6L39"],bodyslam:["6E"],bulldoze:["6M"],captivate:[],curse:["6E"],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:["6L46"],doubleteam:["6M"],dragonrush:["6E"],earthpower:[],earthquake:["6M"],endeavor:["6E"],endure:[],facade:["6M"],frustration:["6M"],furycutter:[],harden:["6L1"],headbutt:["6L8"],headsmash:["6E"],heavyslam:["6L43"],hiddenpower:["6M"],honeclaws:["6M"],irondefense:["6L15"],ironhead:["6L25","6E"],irontail:["6L36"],magnetrise:[],metalburst:["6L50"],metalclaw:["6L11"],metalsound:["6L32"],mimic:[],mudslap:["6L4"],naturalgift:[],protect:["6L29","6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6L18","6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],sandstorm:["6M"],screech:["6E"],secretpower:[],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],smellingsalts:["6E"],snore:[],spite:[],stealthrock:["6E"],stomp:["6E"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:["6E"],swagger:["6M"],tackle:["6L1"],takedown:["6L22"],toxic:["6M"],uproar:[],waterpulse:[],confide:["6M"]}}, + lairon:{learnset:{aerialace:["6M"],ancientpower:[],attract:["6M"],autotomize:["6L45"],bodyslam:[],bulldoze:["6M"],captivate:[],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:["6L56"],doubleteam:["6M"],earthpower:[],earthquake:["6M"],endeavor:[],endure:[],facade:["6M"],frustration:["6M"],furycutter:[],harden:["6L1"],headbutt:["6L1","6L8"],heavyslam:["6L51"],hiddenpower:["6M"],honeclaws:["6M"],irondefense:["6L15"],ironhead:["6L25"],irontail:["6L40"],magnetrise:[],metalburst:["6L62"],metalclaw:["6L11"],metalsound:["6L34"],mimic:[],mudslap:["6L1","6L4"],naturalgift:[],protect:["6L29","6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6L18","6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],sandstorm:["6M"],secretpower:[],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],snore:[],spite:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],tackle:["6L1"],takedown:["6L22"],toxic:["6M"],uproar:[],waterpulse:[],confide:["6M"]}}, + aggron:{learnset:{aerialace:["6M"],ancientpower:[],aquatail:[],attract:["6M"],autotomize:["6L48"],avalanche:[],blizzard:["6M"],block:[],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],counter:[],cut:["6M"],darkpulse:["6M"],defensecurl:[],dig:["6M"],doubleedge:["6L65"],doubleteam:["6M"],dragonclaw:["6M"],dragonpulse:[],dragontail:["6M"],dynamicpunch:[],earthpower:[],earthquake:["6M"],endeavor:[],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],flashcannon:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],harden:["6L1"],headbutt:["6L1","6L8"],heavyslam:["6L57"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irondefense:["6L15"],ironhead:["6L25"],irontail:["6L40"],lowkick:[],magnetrise:[],megakick:[],megapunch:[],metalburst:["6L74"],metalclaw:["6L11"],metalsound:["6L34"],mimic:[],mudslap:["6L1","6L4"],naturalgift:[],outrage:[],payback:["6M"],protect:["6L29","6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6L18","6M"],rockclimb:[],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:[],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],solarbeam:["6M"],spite:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],surf:["6M"],swagger:["6M"],tackle:["6L1"],takedown:["6L22"],taunt:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],uproar:[],waterpulse:[],whirlpool:[],poweruppunch:["6M"],confide:["6M"]}}, + meditite:{learnset:{acupressure:["6L39"],attract:["6M"],batonpass:["6E"],bide:["6L1"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulletpunch:["6E"],calmmind:["6L25","6M"],captivate:[],confusion:["6L8"],counter:[],detect:["6L11"],doubleedge:[],doubleteam:["6M"],drainpunch:["6E"],dreameater:["6M"],dynamicpunch:["6E"],endure:[],facade:["6M"],fakeout:["6E"],feint:["6L22"],firepunch:["6E"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],forcepalm:["6L29"],foresight:["6E"],frustration:["6M"],grassknot:["6M"],gravity:[],guardswap:["6E"],headbutt:[],helpinghand:[],hiddenpower:["6L15","6M"],highjumpkick:["6L32"],icepunch:["6E"],lightscreen:["6M"],lowkick:[],lowsweep:["6M"],magiccoat:[],meditate:["6L4"],megakick:[],megapunch:[],metronome:[],mimic:[],mindreader:["6L18"],mudslap:[],naturalgift:[],painsplit:[],poisonjab:["6M"],powerswap:["6E"],powertrick:["6L43"],protect:["6M"],psychic:["6M"],psychocut:["6E"],psychup:["6L36","6M"],psyshock:["6M"],raindance:["6M"],recover:["6L50"],recycle:[],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],reversal:["6L46"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],secretpower:["6E"],seismictoss:[],shadowball:["6M"],signalbeam:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],telekinesis:[],thunderpunch:["6E"],toxic:["6M"],trick:[],vacuumwave:[],workup:[],zenheadbutt:[],poweruppunch:["6M"],confide:["6M"],quickguard:["6E"]}}, + medicham:{learnset:{acupressure:["6L42"],attract:["6M"],bide:["6L1"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],calmmind:["6L25","6M"],captivate:[],confusion:["6L1","6L8"],counter:[],detect:["6L1","6L11"],doubleedge:[],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],endure:[],energyball:["6M"],facade:["6M"],feint:["6L22"],firepunch:["6L1"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],forcepalm:["6L29"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gravity:[],headbutt:[],helpinghand:[],hiddenpower:["6L15","6M"],highjumpkick:["6L32"],hyperbeam:["6M"],icepunch:["6L1"],lightscreen:["6M"],lowkick:[],lowsweep:["6M"],magiccoat:[],meditate:["6L1","6L4"],megakick:[],megapunch:[],metronome:[],mimic:[],mindreader:["6L18"],mudslap:[],naturalgift:[],painsplit:[],poisonjab:["6M"],powertrick:["6L49"],protect:["6M"],psychic:["6M"],psychup:["6L36","6M"],psyshock:["6M"],raindance:["6M"],recover:["6L62"],recycle:[],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],reversal:["6L55"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],signalbeam:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],telekinesis:[],thunderpunch:["6L1"],toxic:["6M"],trick:[],vacuumwave:[],workup:[],zenheadbutt:["6L1"],poweruppunch:["6M"],confide:["6M"]}}, + electrike:{learnset:{attract:["6M"],bite:["6L28"],bodyslam:[],captivate:[],charge:["6L44"],chargebeam:["6M"],crunch:["6E"],curse:["6E"],discharge:["6L41","6E"],doubleedge:[],doubleteam:["6M"],electroball:["6E"],endure:[],facade:["6M"],firefang:["6E"],flameburst:["6E"],flamethrower:["6M"],flash:["6M"],frustration:["6M"],headbutt:["6E"],hiddenpower:["6M"],howl:["6L12"],icefang:["6E"],irontail:[],leer:["6L9"],lightscreen:["6M"],magnetrise:[],mimic:[],mudslap:[],naturalgift:[],odorsleuth:["6L25"],protect:["6M"],quickattack:["6L17"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6L36","6M"],round:["6M"],secretpower:[],shockwave:["6E"],signalbeam:[],sleeptalk:["6M"],snarl:["6M"],snore:[],spark:["6L20"],strength:["6M"],substitute:["6M"],swagger:["6M"],swift:["6E"],switcheroo:["6E"],tackle:["6L1"],thief:["6M"],thunder:["6L52","6M"],thunderbolt:["6M"],thunderfang:["6L33","6E"],thunderwave:["6L4","6M"],toxic:["6M"],uproar:["6E"],voltswitch:["6M"],wildcharge:["6L49","6M"],confide:["6M"],eerieimpulse:["6E"]}}, + manectric:{learnset:{attract:["6M"],bite:["6L30"],bodyslam:[],captivate:[],charge:["6L54"],chargebeam:["6M"],discharge:["6L49"],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],firefang:["6L1"],flamethrower:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],hiddenpower:["6M"],howl:["6L1","6L12"],hyperbeam:["6M"],irontail:[],leer:["6L1","6L9"],lightscreen:["6M"],magnetrise:[],mimic:[],mudslap:[],naturalgift:[],odorsleuth:["6L25"],overheat:["6M"],protect:["6M"],quickattack:["6L17"],raindance:["6M"],refresh:[],rest:["6M"],"return":["6M"],roar:["6L42","6M"],round:["6M"],secretpower:[],shockwave:[],signalbeam:[],sleeptalk:["6M"],snarl:["6M"],snore:[],spark:["6L20"],strength:["6M"],substitute:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],thief:["6M"],thunder:["6L66","6M"],thunderbolt:["6M"],thunderfang:["6L37"],thunderwave:["6L1","6L4","6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6L61","6M"],uproar:[],electricterrain:["6L1","6L70"],confide:["6M"]}}, + plusle:{learnset:{agility:["6L48"],attract:["6M"],batonpass:["6L44"],bodyslam:[],captivate:[],charge:["6L38"],chargebeam:["6M"],copycat:["6L24"],counter:[],defensecurl:[],discharge:["6E"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],echoedvoice:["6M"],electroball:["6L29"],encore:["6L17"],endure:[],entrainment:["6L1","6L63"],facade:["6M"],faketears:["6L35"],flash:["6M"],fling:["6M"],frustration:["6M"],grassknot:["6M"],growl:["6L1"],headbutt:[],helpinghand:["6L10"],hiddenpower:["6M"],irontail:[],lastresort:["6L50"],lightscreen:["6M"],luckychant:["6E"],magnetrise:[],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],nastyplot:["6L1","6L56"],naturalgift:[],protect:["6M"],quickattack:["6L7"],raindance:["6M"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],secretpower:[],seismictoss:[],shockwave:[],signalbeam:[],sing:["6E"],sleeptalk:["6M"],snore:[],spark:["6L15"],substitute:["6M"],swagger:["6M"],sweetkiss:["6E"],swift:["6L31"],thunder:["6L42","6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6L3","6M"],toxic:["6M"],uproar:[],voltswitch:["6M"],watersport:[],wildcharge:["6M"],wish:["6E"],nuzzle:["6L1"],playnice:["6L1","6L21"],confide:["6M"]}}, + minun:{learnset:{agility:["6L48"],attract:["6M"],batonpass:["6L44"],bodyslam:[],captivate:[],charge:["6L38"],chargebeam:["6M"],charm:["6L21"],copycat:["6L24"],counter:[],defensecurl:[],discharge:["6E"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],echoedvoice:["6M"],electroball:["6L29"],encore:["6L17"],endure:[],entrainment:["6L1","6L63"],facade:["6M"],faketears:["6L35"],flash:["6M"],fling:["6M"],frustration:["6M"],grassknot:["6M"],growl:["6L1"],headbutt:[],helpinghand:["6L10"],hiddenpower:["6M"],irontail:[],lastresort:[],lightscreen:["6M"],luckychant:["6E"],magnetrise:[],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],mudsport:[],nastyplot:["6L1","6L56"],naturalgift:[],protect:["6M"],quickattack:["6L7"],raindance:["6M"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],secretpower:[],seismictoss:[],shockwave:[],signalbeam:[],sing:["6E"],sleeptalk:["6M"],snore:[],spark:["6L15"],substitute:["6M"],swagger:["6M"],sweetkiss:["6E"],swift:["6L31"],thunder:["6L42","6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6L3","6M"],toxic:["6M"],trumpcard:["6L51"],uproar:[],voltswitch:["6M"],wildcharge:["6M"],wish:["6E"],nuzzle:["6L1"],playnice:["6L1"],confide:["6M"]}}, + volbeat:{learnset:{acrobatics:["6M"],aerialace:["6M"],aircutter:[],attract:["6M"],batonpass:["6E"],bodyslam:[],brickbreak:["6M"],bugbite:[],bugbuzz:["6L41","6E"],captivate:[],chargebeam:["6M"],confuseray:["6L9"],counter:[],dizzypunch:["6E"],doubleedge:["6L45"],doubleteam:["6L5","6M"],dynamicpunch:[],encore:["6E"],endure:[],facade:["6M"],flash:["6L1","6M"],fling:["6M"],focuspunch:[],frustration:["6M"],gigadrain:[],helpinghand:["6L33"],hiddenpower:["6M"],icepunch:[],lightscreen:["6M"],megakick:[],megapunch:[],metronome:[],mimic:[],moonlight:["6L13"],mudslap:[],naturalgift:[],ominouswind:[],protect:["6L29","6M"],psychup:["6M"],quickattack:["6L17"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],secretpower:[],seismictoss:["6E"],shadowball:["6M"],shockwave:[],signalbeam:["6L25"],silverwind:["6E"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailglow:["6L21"],tailwind:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],trick:["6E"],uturn:["6M"],waterpulse:[],zenheadbutt:["6L37"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + illumise:{learnset:{acrobatics:["6M"],aerialace:["6M"],aircutter:[],attract:["6M"],batonpass:["6E"],bodyslam:[],brickbreak:["6M"],bugbite:[],bugbuzz:["6L41","6E"],captivate:["6E"],chargebeam:["6M"],charm:["6L9"],confuseray:["6E"],counter:[],covet:["6L45"],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],encore:["6L25","6E"],endure:[],facade:["6M"],faketears:["6E"],flash:["6M"],flatter:["6L29"],fling:["6M"],focuspunch:[],frustration:["6M"],gigadrain:[],growth:["6E"],helpinghand:["6L33"],hiddenpower:["6M"],icepunch:[],lightscreen:["6M"],megakick:[],megapunch:[],metronome:[],mimic:[],moonlight:["6L13"],mudslap:[],naturalgift:[],ominouswind:[],protect:["6M"],psychup:["6M"],quickattack:["6L17"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],silverwind:["6E"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L5"],swift:[],tackle:["6L1"],tailwind:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],uturn:["6M"],waterpulse:[],wish:["6L21"],zenheadbutt:["6L37"],playnice:["6L1"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + budew:{learnset:{absorb:["6L1"],attract:["6M"],bulletseed:[],captivate:[],cottonspore:["6E"],covet:[],cut:["6M"],doubleteam:["6M"],endure:[],energyball:["6M"],extrasensory:["6E"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:["6E"],grassknot:["6M"],grasswhistle:["6E"],growth:["6L4"],hiddenpower:["6M"],leafstorm:["6E"],megadrain:["6L13"],mindreader:["6E"],mudslap:[],naturalgift:["6E"],pinmissile:["6E"],protect:["6M"],psychup:["6M"],raindance:["6M"],razorleaf:["6E"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],seedbomb:["6E"],shadowball:["6M"],sleeppowder:["6E"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],spikes:["6E"],stunspore:["6L10"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],synthesis:["6E"],toxic:["6M"],uproar:[],venoshock:["6M"],watersport:["6L7"],worryseed:["6L16"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + roselia:{learnset:{absorb:["6L1"],aromatherapy:["6L43"],attract:["6M"],bodyslam:[],bulletseed:[],captivate:[],cottonspore:["6E"],covet:[],cut:["6M"],doubleedge:[],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],furycutter:[],gigadrain:["6L25","6E"],grassknot:["6M"],grasswhistle:["6L22","6E"],growth:["6L4"],hiddenpower:["6M"],ingrain:["6L34"],leafstorm:["6E"],leechseed:["6L16"],magicalleaf:["6L19"],megadrain:["6L13"],mimic:[],mindreader:["6E"],mudslap:[],naturalgift:["6E"],nightmare:[],petaldance:["6L37"],pinmissile:["6E"],poisonjab:["6M"],poisonsting:["6L7"],protect:["6M"],psychup:["6M"],raindance:["6M"],razorleaf:["6E"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],seedbomb:["6E"],shadowball:["6M"],sleeppowder:["6E"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],spikes:["6E"],stunspore:["6L10"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetkiss:[],sweetscent:["6L31"],swift:[],swordsdance:["6M"],synthesis:["6L46","6E"],toxic:["6L40","6M"],toxicspikes:["6L28"],venoshock:["6M"],worryseed:[],petalblizzard:["6L50"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + roserade:{learnset:{attract:["6M"],bulletseed:[],captivate:[],covet:[],cut:["6M"],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],furycutter:[],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],magicalleaf:["6L1"],megadrain:["6L1"],mudslap:[],naturalgift:[],poisonjab:["6M"],poisonsting:["6L1"],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],seedbomb:[],shadowball:["6M"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L1"],swift:[],swordsdance:["6M"],synthesis:[],toxic:["6M"],venoshock:["6M"],weatherball:["6L1"],worryseed:[],venomdrench:["6L1"],grassyterrain:["6L1"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + gulpin:{learnset:{acidarmor:["6E"],acidspray:["6L34"],amnesia:["6L17"],attract:["6M"],bodyslam:[],bulletseed:[],captivate:[],counter:[],curse:["6E"],defensecurl:[],destinybond:["6E"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],dynamicpunch:[],encore:["6L23"],endure:[],explosion:["6M"],facade:["6M"],firepunch:[],frustration:["6M"],gastroacid:["6L49"],gigadrain:[],gunkshot:["6L59","6E"],headbutt:[],hiddenpower:["6M"],icebeam:["6M"],icepunch:[],mimic:[],mudslap:["6E"],naturalgift:[],nightmare:[],painsplit:["6E"],poisongas:["6L9"],pound:["6L1"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rollout:[],round:["6M"],secretpower:[],seedbomb:[],selfdestruct:[],shadowball:["6M"],shockwave:[],sing:[],sleeptalk:["6M"],sludge:["6L14"],sludgebomb:["6L44","6M"],sludgewave:["6M"],smog:["6E"],snatch:[],snore:[],solarbeam:["6M"],spitup:["6L39"],stockpile:["6L39"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swallow:["6L39"],thunderpunch:[],toxic:["6L28","6M"],venoshock:["6M"],waterpulse:[],wringout:["6L54"],yawn:["6L6"],belch:["6L40"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"],venomdrench:["6E"]}}, + swalot:{learnset:{acidspray:["6L38"],amnesia:["6L17"],attract:["6M"],block:[],bodyslam:["6L26"],bulldoze:["6M"],bulletseed:[],captivate:[],counter:[],defensecurl:[],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],dynamicpunch:[],earthquake:["6M"],encore:["6L23"],endure:[],explosion:["6M"],facade:["6M"],firepunch:[],frustration:["6M"],gastroacid:["6L59"],gigadrain:[],gigaimpact:["6M"],gunkshot:["6L1","6L73"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],painsplit:[],poisongas:["6L1","6L9"],pound:["6L1"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rollout:[],round:["6M"],secretpower:[],seedbomb:[],selfdestruct:[],shadowball:["6M"],shockwave:[],sleeptalk:["6M"],sludge:["6L1","6L14"],sludgebomb:["6L52","6M"],sludgewave:["6M"],snatch:[],snore:[],solarbeam:["6M"],spitup:["6L45"],stockpile:["6L45"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swallow:["6L45"],thunderpunch:[],toxic:["6L30","6M"],venoshock:["6M"],waterpulse:[],wringout:["6L1","6L66"],yawn:["6L1","6L6"],belch:["6L46"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + carvanha:{learnset:{agility:["6L36"],ancientpower:["6E"],aquajet:["6L31"],assurance:["6L26"],attract:["6M"],bite:["6L1"],blizzard:["6M"],bounce:[],brine:["6E"],captivate:[],crunch:["6L28"],darkpulse:["6M"],dive:[],doubleedge:["6E"],doubleteam:["6M"],endure:[],facade:["6M"],focusenergy:["6L8"],frustration:["6M"],furycutter:[],hail:["6M"],hiddenpower:["6M"],hydropump:["6E"],icebeam:["6M"],icefang:["6L16"],icywind:[],leer:["6L1"],mimic:[],mudslap:[],naturalgift:[],payback:["6M"],protect:["6M"],rage:["6L6"],raindance:["6M"],refresh:[],rest:["6M"],retaliate:["6M"],"return":["6M"],round:["6M"],scald:["6M"],scaryface:["6L11"],screech:["6L18"],secretpower:[],sleeptalk:["6M"],snarl:["6M"],snore:[],spite:[],substitute:["6M"],superfang:[],surf:["6M"],swagger:["6L21","6M"],swift:["6E"],takedown:["6L38"],taunt:["6M"],thief:["6M"],thrash:["6E"],torment:["6M"],toxic:["6M"],uproar:[],waterfall:["6M"],waterpulse:[],whirlpool:[],zenheadbutt:[],confide:["6M"],destinybond:["6E"]}}, + sharpedo:{learnset:{agility:["6L45"],ancientpower:[],aquajet:["6L34"],assurance:["6L26"],attract:["6M"],avalanche:[],bite:["6L1"],blizzard:["6M"],bounce:[],brine:[],bulldoze:["6M"],captivate:[],crunch:["6L28"],darkpulse:["6M"],dive:[],doubleedge:[],doubleteam:["6M"],earthquake:["6M"],endure:[],facade:["6M"],feint:["6L1"],focusenergy:["6L1","6L8"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],hail:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icefang:["6L16"],icywind:[],leer:["6L1"],mimic:[],mudslap:[],naturalgift:[],nightslash:["6L1","6L56"],payback:["6M"],poisonjab:["6M"],protect:["6M"],rage:["6L1","6L6"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],scaryface:["6L11"],screech:["6L18"],secretpower:[],skullbash:["6L50"],slash:["6L30"],sleeptalk:["6M"],snarl:["6M"],snore:[],spite:[],strength:["6M"],substitute:["6M"],superfang:[],surf:["6M"],swagger:["6L21","6M"],swift:[],taunt:["6L40","6M"],thief:["6M"],torment:["6M"],toxic:["6M"],uproar:[],waterfall:["6M"],waterpulse:[],whirlpool:[],zenheadbutt:[],confide:["6M"]}}, + wailmer:{learnset:{amnesia:["6L37"],aquaring:["6E"],astonish:["6L17"],attract:["6M"],avalanche:[],blizzard:["6M"],bodyslam:["6E"],bounce:["6L44"],brine:["6L31"],bulldoze:["6M"],captivate:[],curse:["6E"],defensecurl:["6E"],dive:["6L41"],doubleedge:["6E"],doubleteam:["6M"],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fissure:["6E"],frustration:["6M"],growl:["6L4"],hail:["6M"],headbutt:[],heavyslam:["6L50"],hiddenpower:["6M"],hydropump:["6L47"],icebeam:["6M"],icywind:[],mimic:[],mist:["6L24"],naturalgift:[],protect:["6M"],raindance:["6M"],rest:["6L27","6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L11"],round:["6M"],scald:["6M"],secretpower:[],selfdestruct:[],sleeptalk:["6M","6E"],snore:["6E"],soak:["6E"],splash:["6L1"],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],thrash:["6E"],tickle:["6E"],toxic:["6M"],waterfall:["6M"],watergun:["6L7"],waterpulse:["6L21"],waterspout:["6L34"],whirlpool:["6L14"],zenheadbutt:["6E"],hypervoice:[],confide:["6M"]}}, + wailord:{learnset:{amnesia:["6L37"],astonish:["6L17"],attract:["6M"],avalanche:[],blizzard:["6M"],block:[],bodyslam:[],bounce:["6L54"],brine:["6L31"],bulldoze:["6M"],captivate:[],defensecurl:[],dive:["6L46"],doubleedge:[],doubleteam:["6M"],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],frustration:["6M"],gigaimpact:["6M"],growl:["6L1","6L4"],hail:["6M"],headbutt:[],heavyslam:["6L70"],hiddenpower:["6M"],hydropump:["6L62"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],ironhead:[],mimic:[],mist:["6L24"],naturalgift:[],protect:["6M"],raindance:["6M"],rest:["6L27","6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L1","6L11"],round:["6M"],scald:["6M"],secretpower:[],selfdestruct:[],sleeptalk:["6M"],snore:[],splash:["6L1"],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],toxic:["6M"],waterfall:["6M"],watergun:["6L1","6L7"],waterpulse:["6L21"],waterspout:["6L34"],whirlpool:["6L14"],zenheadbutt:[],hypervoice:[],confide:["6M"]}}, + numel:{learnset:{amnesia:["6L19"],ancientpower:["6E"],attract:["6M"],bodyslam:["6E"],bulldoze:["6M"],captivate:[],charm:[],curse:["6L29"],defensecurl:["6E"],dig:["6M"],doubleedge:["6L47"],doubleteam:["6M"],earthpower:["6L26"],earthquake:["6L40","6M"],echoedvoice:["6M"],ember:["6L5"],endure:["6E"],facade:["6M"],fireblast:["6M"],flameburst:["6L15"],flamecharge:["6M"],flamethrower:["6L43","6M"],focusenergy:["6L12"],frustration:["6M"],growl:["6L1"],headbutt:[],heatwave:["6E"],hiddenpower:["6M"],howl:["6E"],incinerate:["6M"],ironhead:["6E"],lavaplume:["6L22"],magnitude:["6L8"],mimic:[],mudbomb:["6E"],mudslap:[],naturalgift:[],overheat:["6M"],protect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6E"],round:["6M"],sandstorm:["6M"],scaryface:["6E"],secretpower:[],sleeptalk:["6M"],snore:[],spitup:["6E"],stealthrock:[],stockpile:["6E"],stomp:["6E"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swallow:["6E"],tackle:["6L1"],takedown:["6L31"],toxic:["6M"],willowisp:["6M"],yawn:["6L36","6E"],afteryou:[],naturepower:["6M"],confide:["6M"]}}, + camerupt:{learnset:{amnesia:["6L19"],attract:["6M"],bodyslam:[],bulldoze:["6M"],captivate:[],curse:["6L29"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],earthpower:["6L26"],earthquake:["6L46","6M"],echoedvoice:["6M"],ember:["6L1","6L5"],endure:[],eruption:["6L1","6L52"],explosion:["6M"],facade:["6M"],fireblast:["6M"],fissure:["6L1","6L59"],flameburst:["6L15"],flamecharge:["6M"],flamethrower:["6M"],flashcannon:["6M"],focusenergy:["6L12"],frustration:["6M"],gigaimpact:["6M"],growl:["6L1"],headbutt:[],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],ironhead:[],lavaplume:["6L22"],magnitude:["6L1","6L8"],mimic:[],mudslap:[],naturalgift:[],overheat:["6M"],protect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockpolish:["6M"],rockslide:["6L33","6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],sandstorm:["6M"],secretpower:[],selfdestruct:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],takedown:["6L31"],toxic:["6M"],willowisp:["6M"],yawn:["6L39"],afteryou:[],naturepower:["6M"],confide:["6M"]}}, + torkoal:{learnset:{amnesia:["6L49"],attract:["6M"],bodyslam:["6L33"],bulldoze:["6M"],captivate:[],clearsmog:["6E"],curse:["6L12"],doubleedge:[],doubleteam:["6M"],earthpower:[],earthquake:["6M"],ember:["6L1"],endure:["6E"],eruption:["6E"],explosion:["6M"],facade:["6M"],fireblast:["6M"],firespin:["6L17"],fissure:["6E"],flail:["6L1","6L52"],flameburst:["6E"],flamecharge:["6M"],flamethrower:["6L28","6M"],frustration:["6M"],gigaimpact:["6M"],gyroball:["6M"],headbutt:[],heatwave:["6L1","6L55"],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],inferno:["6L1","6L60"],irondefense:["6L44"],irontail:[],lavaplume:["6L39"],mimic:[],mudslap:[],naturalgift:[],overheat:["6M"],protect:["6L1","6L36","6M"],rapidspin:["6L23"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],secretpower:[],selfdestruct:[],shellsmash:["6L1","6L65"],skullbash:["6E"],sleeptalk:["6M","6E"],sludgebomb:["6M"],smog:["6L4"],smokescreen:["6L20"],snore:[],solarbeam:["6M"],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],toxic:["6M"],willowisp:["6M"],withdraw:["6L7"],yawn:["6E"],afteryou:[],naturepower:["6M"],confide:["6M"]}}, + spoink:{learnset:{amnesia:["6E"],attract:["6M"],bodyslam:[],bounce:["6L50"],calmmind:["6M"],captivate:[],chargebeam:["6M"],confuseray:["6L18"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],endure:["6E"],extrasensory:["6E"],facade:["6M"],flash:["6M"],frustration:["6M"],futuresight:["6E"],grassknot:["6M"],headbutt:[],healbell:[],hiddenpower:["6M"],icywind:[],irontail:[],lightscreen:["6M"],luckychant:["6E"],magiccoat:["6L21"],mimic:[],mirrorcoat:["6E"],naturalgift:[],odorsleuth:["6L10"],payback:["6L40","6M"],powergem:["6L33"],protect:["6M"],psybeam:["6L14"],psychic:["6L44","6M"],psychup:["6L15","6M"],psyshock:["6L38","6M"],psywave:["6L7"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6L29","6M"],"return":["6M"],roleplay:[],round:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:["6E"],sleeptalk:["6M"],snatch:[],snore:["6L29"],splash:["6L1"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],taunt:["6M"],telekinesis:[],thief:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:["6E"],trickroom:["6M"],uproar:[],whirlwind:["6E"],zenheadbutt:["6L26","6E"],covet:[],confide:["6M"]}}, + grumpig:{learnset:{attract:["6M"],bodyslam:[],bounce:["6L60"],brickbreak:["6M"],bulldoze:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],confuseray:["6L18"],counter:[],doubleedge:[],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],endure:[],energyball:["6M"],facade:["6M"],firepunch:[],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],headbutt:[],healbell:[],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],icywind:[],irontail:[],lightscreen:["6M"],magiccoat:["6L21"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],odorsleuth:["6L1","6L10"],payback:["6L46","6M"],powergem:["6L35"],protect:["6M"],psybeam:["6L1","6L14"],psychic:["6L52","6M"],psychup:["6L15","6M"],psyshock:["6L42","6M"],psywave:["6L1","6L7"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6L29","6M"],"return":["6M"],roleplay:[],round:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snatch:[],snore:["6L29"],splash:["6L1"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],taunt:["6M"],telekinesis:[],thief:["6M"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],zenheadbutt:["6L26"],covet:[],poweruppunch:["6M"],confide:["6M"]}}, + spinda:{learnset:{assist:["6E"],attract:["6M"],batonpass:["6E"],bodyslam:[],brickbreak:["6M"],calmmind:["6M"],captivate:[],copycat:["6L10"],counter:[],defensecurl:[],dig:["6M"],disable:["6E"],dizzypunch:["6L28"],doubleedge:["6L46"],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],encore:["6E"],endure:[],facade:["6M"],feintattack:["6L14"],fakeout:["6E"],faketears:["6E"],firepunch:[],flail:["6L50"],flash:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hypnosis:["6L23"],icepunch:[],icywind:["6E"],lastresort:[],lowkick:[],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],protect:["6M"],psybeam:["6L19"],psychic:["6M"],psychocut:["6E"],psychup:["6L41","6M"],raindance:["6M"],rapidspin:["6E"],recycle:[],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:["6E"],rollout:[],round:["6M"],safeguard:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],sing:[],skillswap:[],sleeptalk:[],smellingsalts:["6E"],snatch:[],snore:[],strength:["6M"],substitute:["6M"],suckerpunch:["6L32"],sunnyday:["6M"],superpower:[],swagger:["6M"],swift:[],tackle:["6L1"],teeterdance:["6L37"],thief:["6M"],thrash:["6L50"],thunderpunch:[],toxic:["6M"],trick:["6E"],trickroom:["6M"],uproar:["6L5"],waterpulse:["6E"],wildcharge:["6M"],wish:["6E"],workup:[],zenheadbutt:[],covet:[],hypervoice:[],poweruppunch:["6M"],confide:["6M"],psychoshift:["6E"]}}, + trapinch:{learnset:{attract:["6M"],bide:["6L17"],bite:["6L1"],bodyslam:[],bugbite:["6E"],bulldoze:["6L21","6M"],captivate:[],crunch:["6L34"],dig:["6L29","6M"],doubleedge:[],doubleteam:["6M"],earthpower:["6L39","6E"],earthquake:["6L55","6M"],endure:["6E"],facade:["6M"],feintattack:["6L7"],feint:["6L1","6L61"],fissure:["6L1","6L73"],flail:["6E"],focusenergy:["6E"],frustration:["6M"],furycutter:["6E"],gigadrain:[],gust:["6E"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6L49","6M"],mimic:[],mudshot:["6E"],mudslap:["6L13"],naturalgift:[],protect:["6M"],quickattack:["6E"],rest:["6M"],"return":["6M"],rockslide:["6L25","6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L4"],sandstorm:["6L44","6M"],sandtomb:["6L10"],secretpower:[],signalbeam:["6E"],sleeptalk:["6M"],snore:[],superpower:["6L1","6L67"],solarbeam:["6M"],strength:["6M"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],toxic:["6M"],confide:["6M"]}}, + vibrava:{learnset:{aircutter:[],attract:["6M"],bide:["6L17"],bite:[],bodyslam:[],bugbite:[],bulldoze:["6L21","6M"],captivate:[],crunch:[],defog:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L35"],dragonpulse:[],earthpower:["6L39"],earthquake:["6M"],endure:[],facade:["6M"],feintattack:["6L1","6L7"],fly:["6M"],frustration:["6M"],furycutter:[],gigadrain:[],headbutt:[],heatwave:[],hiddenpower:["6M"],hyperbeam:["6L49","6M"],mimic:[],mudslap:["6L13"],naturalgift:[],ominouswind:[],outrage:[],protect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6L25","6M"],rocksmash:["6M"],rocktomb:["6M"],roost:["6M"],round:["6M"],sandattack:["6L1","6L4"],sandstorm:["6L44","6M"],sandtomb:["6L1","6L10"],screech:["6L34"],secretpower:[],silverwind:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],sonicboom:["6L1"],steelwing:["6M"],strength:["6M"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L29"],swagger:["6M"],swift:[],toxic:["6M"],twister:[],uturn:["6M"],signalbeam:[],superpower:[],tailwind:[],confide:["6M"]}}, + flygon:{learnset:{aerialace:["6M"],aircutter:[],attract:["6M"],bide:["6L17"],bite:[],bodyslam:[],bugbite:[],bulldoze:["6L21","6M"],captivate:[],crunch:[],defog:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L35"],dragonclaw:["6L55","6M"],dragonpulse:[],dragontail:["6L45","6M"],earthpower:["6L39"],earthquake:["6M"],endure:[],facade:["6M"],feintattack:["6L1","6L7"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fly:["6M"],frustration:["6M"],furycutter:[],gigadrain:[],gigaimpact:["6M"],headbutt:[],heatwave:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6L49","6M"],incinerate:["6M"],irontail:[],mimic:[],mudslap:["6L13"],naturalgift:[],ominouswind:[],outrage:[],protect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6L25","6M"],rocksmash:["6M"],rocktomb:["6M"],roost:["6M"],round:["6M"],sandattack:["6L1","6L4"],sandstorm:["6L44","6M"],sandtomb:["6L1","6L10"],screech:["6L34"],secretpower:[],silverwind:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],sonicboom:["6L1"],steelwing:["6M"],stoneedge:["6M"],strength:["6M"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],supersonic:["6L29"],swagger:["6M"],swift:[],tailwind:[],thunderpunch:[],toxic:["6M"],twister:[],uturn:["6M"],signalbeam:[],superpower:[],poweruppunch:["6M"],confide:["6M"]}}, + cacnea:{learnset:{absorb:["6L5"],acid:["6E"],attract:["6M"],block:["6E"],bodyslam:[],brickbreak:["6M"],bulletseed:[],captivate:[],cottonspore:["6L49"],counter:["6E"],cut:["6M"],darkpulse:["6M"],destinybond:["6L57"],disable:["6E"],doubleedge:[],doubleteam:["6M"],drainpunch:[],dynamicpunch:["6E"],encore:[],endure:[],energyball:["6M"],facade:["6M"],feintattack:["6L29"],flash:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigadrain:[],grassknot:["6M"],grasswhistle:["6E"],growth:["6L9"],headbutt:[],hiddenpower:["6M"],ingrain:["6L25"],leechseed:["6L13"],leer:["6L1"],lowkick:["6E"],magicalleaf:["6E"],megapunch:[],mimic:[],mudslap:[],nastyplot:["6E"],naturalgift:[],needlearm:["6L45"],payback:["6L41","6M"],pinmissile:["6L21"],poisonjab:["6M"],poisonsting:["6L1"],protect:["6M"],rest:["6M"],"return":["6M"],roleplay:[],round:["6M"],sandattack:["6L17"],sandstorm:["6L53","6M"],secretpower:[],seedbomb:["6E"],seismictoss:[],sleeptalk:["6M"],smellingsalts:["6E"],snore:[],solarbeam:["6M"],spikes:["6L33"],spite:[],substitute:["6M"],suckerpunch:["6L37"],sunnyday:["6M"],swagger:["6M"],switcheroo:["6E"],swordsdance:["6M"],synthesis:[],teeterdance:["6E"],thunderpunch:[],toxic:["6M"],venoshock:["6M"],worryseed:["6E"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],belch:["6E"],fellstinger:["6E"]}}, + cacturne:{learnset:{absorb:["6L1","6L5"],attract:["6M"],bodyslam:[],brickbreak:["6M"],bulletseed:[],captivate:[],cottonspore:["6L59"],counter:[],cut:["6M"],darkpulse:["6M"],destinybond:["6L1","6L71"],doubleedge:[],doubleteam:["6M"],drainpunch:[],dynamicpunch:[],embargo:["6M"],endure:[],energyball:["6M"],facade:["6M"],feintattack:["6L29"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],growth:["6L1","6L9"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],ingrain:["6L25"],leechseed:["6L13"],leer:["6L1"],lowkick:[],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],needlearm:["6L53"],payback:["6L47","6M"],pinmissile:["6L21"],poisonjab:["6M"],poisonsting:["6L1"],protect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L1"],roleplay:[],round:["6M"],sandattack:["6L17"],sandstorm:["6L65","6M"],secretpower:[],seedbomb:[],seismictoss:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],spikes:["6L35"],spite:[],strength:["6M"],substitute:["6M"],suckerpunch:["6L41"],sunnyday:["6M"],superpower:[],swagger:["6M"],swordsdance:["6M"],synthesis:[],thunderpunch:[],toxic:["6M"],venoshock:["6M"],worryseed:[],block:[],foulplay:[],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + swablu:{learnset:{aerialace:["6M"],agility:["6E"],aircutter:[],astonish:["6L4"],attract:["6M"],bodyslam:[],captivate:[],cottonguard:["6L39"],doubleedge:[],doubleteam:["6M"],dragonpulse:["6L42"],dragonrush:["6E"],dreameater:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],falseswipe:[],featherdance:["6E"],fly:["6M"],frustration:["6M"],furyattack:["6L10"],growl:["6L1"],haze:["6E"],healbell:[],heatwave:[],hiddenpower:["6M"],hypervoice:["6E"],icebeam:["6M"],mimic:[],mirrormove:["6L34"],mist:["6L15"],mudslap:[],naturalgift:["6L21"],ominouswind:[],outrage:[],peck:["6L1"],perishsong:["6L48"],pluck:[],powerswap:["6E"],protect:["6M"],psychup:["6M"],pursuit:["6E"],rage:["6E"],raindance:["6M"],refresh:["6L29"],rest:["6M"],"return":["6M"],roost:["6M","6E"],round:["6L18","6M"],safeguard:["6L13","6M"],secretpower:[],sing:["6L8"],skyattack:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],steelwing:["6M","6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tailwind:[],takedown:["6L25"],thief:["6M"],toxic:["6M"],twister:[],uproar:[],moonblast:["6L50"],dazzlinggleam:["6M"],confide:["6M"]}}, + altaria:{learnset:{aerialace:["6M"],aircutter:[],astonish:["6L1","6L4"],attract:["6M"],bodyslam:[],bulldoze:["6M"],captivate:[],cottonguard:["6L42"],doubleedge:[],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L35"],dragonclaw:["6M"],dragondance:["6L34"],dragonpulse:["6L48"],dreameater:["6M"],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],falseswipe:[],fireblast:["6M"],flamethrower:["6M"],fly:["6M"],frustration:["6M"],furyattack:["6L10"],gigaimpact:["6M"],growl:["6L1"],healbell:[],heatwave:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],incinerate:["6M"],irontail:[],mimic:[],mist:["6L15"],mudslap:[],naturalgift:["6L21"],ominouswind:[],outrage:[],peck:["6L1"],perishsong:["6L57"],pluck:["6L1"],protect:["6M"],psychup:["6M"],raindance:["6M"],refresh:["6L29"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],roost:["6M"],round:["6L18","6M"],safeguard:["6L13","6M"],secretpower:[],sing:["6L1","6L8"],skyattack:["6L1","6L64"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tailwind:[],takedown:["6L25"],thief:["6M"],toxic:["6M"],twister:[],uproar:[],hypervoice:[],wonderroom:[],moonblast:["6L60"],dazzlinggleam:["6M"],confide:["6M"]}}, + zangoose:{learnset:{aerialace:["6M"],attract:["6M"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],captivate:[],closecombat:["6L47"],counter:["6E"],crushclaw:["6L22"],curse:["6E"],defensecurl:[],detect:["6L33"],dig:["6M"],disable:["6E"],doubleedge:[],doublehit:["6E"],doublekick:["6E"],doubleteam:["6M"],dynamicpunch:[],embargo:["6L19","6M"],endeavor:[],endure:[],facade:["6M"],falseswipe:["6L29","6M"],feint:["6E"],finalgambit:["6E"],fireblast:["6M"],firepunch:[],flail:["6E"],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:["6L8"],furyswipes:["6E"],gigadrain:[],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irontail:["6E"],knockoff:[],lastresort:[],leer:["6L1"],lowkick:[],megakick:[],megapunch:[],metalclaw:["6E"],mimic:[],mudslap:[],naturalgift:[],nightslash:["6E"],payback:["6M"],poisonjab:["6M"],protect:["6M"],pursuit:["6L12"],quickattack:["6L5"],raindance:["6M"],razorwind:["6E"],refresh:[],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L26"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],scratch:["6L1"],secretpower:[],seismictoss:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],slash:["6L15"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6L43","6M"],taunt:["6L40","6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:[],toxic:["6M"],waterpulse:[],workup:[],xscissor:["6L36","6M"],poweruppunch:["6M"],confide:["6M"]}}, + seviper:{learnset:{aquatail:[],assurance:["6E"],attract:["6M"],bite:["6L5"],bodyslam:["6E"],bulldoze:["6M"],captivate:[],coil:["6L48"],crunch:["6L45"],darkpulse:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dragontail:["6M"],earthquake:["6M"],endure:[],facade:["6M"],finalgambit:["6E"],flamethrower:["6M"],frustration:["6M"],furycutter:[],gastroacid:["6L34"],gigadrain:[],glare:["6L23"],haze:["6L38"],headbutt:[],hiddenpower:["6M"],irontail:["6E"],knockoff:[],lick:["6L1"],mimic:[],mudslap:[],naturalgift:[],nightslash:["6L31","6E"],payback:["6M"],poisonfang:["6L27"],poisonjab:["6L42","6M"],poisontail:["6L12"],protect:["6M"],punishment:["6E"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],scaryface:["6E"],screech:["6L16"],secretpower:[],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6M"],snatch:[],snore:[],spitup:["6E"],stockpile:["6E"],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6L9","6M"],swallow:["6E"],swift:[],switcheroo:["6E"],taunt:["6M"],thief:["6M"],toxic:["6M"],venoshock:["6L20","6M"],wrap:["6L1"],wringout:["6L50","6E"],xscissor:["6M"],bind:[],venomdrench:["6L28"],belch:["6L46"],infestation:["6M"],confide:["6M"]}}, + lunatone:{learnset:{acrobatics:["6M"],ancientpower:[],batonpass:[],blizzard:["6M"],bodyslam:[],bulldoze:["6M"],calmmind:["6M"],chargebeam:["6M"],confusion:["6L1"],cosmicpower:["6L29"],defensecurl:[],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],earthpower:[],earthquake:["6M"],embargo:["6L21","6M"],endure:[],explosion:["6L49","6M"],facade:["6M"],flash:["6M"],frustration:["6M"],futuresight:["6L45"],gigaimpact:["6M"],grassknot:["6M"],gravity:[],gyroball:["6M"],harden:["6L1"],healblock:["6L37"],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],hypnosis:["6L9"],icebeam:["6M"],ironhead:[],lightscreen:["6M"],magiccoat:[],magicroom:["6L1","6L53"],mimic:[],moonlight:[],naturalgift:[],painsplit:[],protect:["6M"],psychic:["6L33","6M"],psychup:["6M"],psyshock:["6M"],psywave:["6L17"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6L13","6M"],rockslide:["6L25","6M"],rockthrow:["6L1","6L5"],rocktomb:["6M"],rollout:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],selfdestruct:[],shadowball:["6M"],signalbeam:[],skillswap:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],stealthrock:[],stoneedge:["6L41","6M"],substitute:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],telekinesis:[],toxic:["6M"],trickroom:["6M"],zenheadbutt:[],icywind:[],moonblast:["6L50"],confide:["6M"]}}, + solrock:{learnset:{acrobatics:["6M"],ancientpower:[],batonpass:[],bodyslam:[],bulldoze:["6M"],calmmind:["6M"],chargebeam:["6M"],confusion:["6L1"],cosmicpower:["6L29"],defensecurl:[],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],earthpower:[],earthquake:["6M"],embargo:["6L21","6M"],endure:[],explosion:["6L49","6M"],facade:["6M"],fireblast:["6M"],firespin:["6L9"],flamethrower:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gravity:[],gyroball:["6M"],harden:["6L1"],healblock:["6L37"],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],irondefense:[],ironhead:[],lightscreen:["6M"],magiccoat:[],mimic:[],morningsun:[],naturalgift:[],overheat:["6M"],painsplit:[],protect:["6M"],psychic:["6L33","6M"],psychup:["6M"],psyshock:["6M"],psywave:["6L17"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6L13","6M"],rockslide:["6L25","6M"],rockthrow:["6L1","6L5"],rocktomb:["6M"],rollout:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],selfdestruct:[],shadowball:["6M"],signalbeam:[],skillswap:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],solarbeam:["6L45","6M"],stealthrock:[],stoneedge:["6L41","6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],telekinesis:[],toxic:["6M"],trickroom:["6M"],willowisp:["6M"],wonderroom:["6L1","6L53"],zenheadbutt:[],heatwave:[],confide:["6M"]}}, + barboach:{learnset:{amnesia:["6L18"],aquatail:["6L35"],attract:["6M"],blizzard:["6M"],bounce:[],bulldoze:["6M"],captivate:[],dive:[],doubleedge:[],doubleteam:["6M"],dragondance:["6E"],earthpower:["6E"],earthquake:["6L39","6M"],endure:[],facade:["6M"],fissure:["6L47"],flail:["6E"],frustration:["6M"],futuresight:["6L43"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydropump:["6E"],icebeam:["6M"],icywind:[],magnitude:["6L26"],mimic:[],mudbomb:["6L14"],muddywater:["6E"],mudshot:["6E"],mudslap:["6L1"],mudsport:["6L6"],naturalgift:[],protect:["6M"],raindance:["6M"],rest:["6L31","6M"],"return":["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scald:["6M"],secretpower:[],sleeptalk:["6M"],snore:["6L31"],spark:["6E"],substitute:["6M"],surf:["6M"],swagger:["6M"],takedown:["6E"],thrash:["6E"],toxic:["6M"],waterfall:["6M"],watergun:["6L10"],waterpulse:["6L22"],watersport:["6L6"],whirlpool:["6E"],confide:["6M"]}}, + whiscash:{learnset:{amnesia:["6L18"],aquatail:["6L39"],attract:["6M"],blizzard:["6M"],bounce:[],bulldoze:["6M"],captivate:[],dive:[],doubleedge:[],doubleteam:["6M"],earthpower:[],earthquake:["6L45","6M"],endure:[],facade:["6M"],fissure:["6L57"],frustration:["6M"],futuresight:["6L51"],gigaimpact:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],magnitude:["6L26"],mimic:[],mudbomb:["6L14"],mudslap:["6L1"],mudsport:["6L1","6L6"],naturalgift:[],protect:["6M"],raindance:["6M"],rest:["6L33","6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scald:["6M"],secretpower:[],sleeptalk:["6M"],snore:["6L33"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],tickle:["6L1"],toxic:["6M"],waterfall:["6M"],watergun:["6L10"],waterpulse:["6L22"],watersport:["6L1","6L6"],whirlpool:[],zenheadbutt:["6L1"],confide:["6M"]}}, + corphish:{learnset:{aerialace:["6M"],ancientpower:["6E"],attract:["6M"],blizzard:["6M"],bodyslam:["6E"],brickbreak:["6M"],bubble:["6L1"],bubblebeam:["6L20"],captivate:[],chipaway:["6E"],counter:[],crabhammer:["6L38"],crunch:["6L47"],cut:["6M"],dig:["6M"],doubleedge:["6E"],doubleteam:["6M"],dragondance:["6E"],endeavor:["6E"],endure:[],facade:["6M"],falseswipe:["6M"],fling:["6M"],frustration:["6M"],furycutter:[],guillotine:["6L53"],hail:["6M"],harden:["6L7"],hiddenpower:["6M"],honeclaws:["6M"],icebeam:["6M"],icywind:[],irondefense:[],knockoff:["6L26","6E"],leer:["6L13"],metalclaw:["6E"],mimic:[],mudslap:[],mudsport:["6E"],naturalgift:[],nightslash:["6L35"],payback:["6M"],protect:["6L23","6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],secretpower:[],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],spite:[],strength:["6M"],substitute:["6M"],superpower:["6E"],surf:["6M"],swagger:["6M"],swordsdance:["6L44","6M"],taunt:["6L32","6M"],toxic:["6M"],trumpcard:["6E"],vicegrip:["6L10"],waterfall:["6M"],waterpulse:[],watersport:[],whirlpool:[],xscissor:["6M"],confide:["6M"],aquajet:["6E"],switcheroo:["6E"]}}, + crawdaunt:{learnset:{aerialace:["6M"],ancientpower:[],attract:["6M"],avalanche:[],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bubble:["6L1"],bubblebeam:["6L20"],captivate:[],counter:[],crabhammer:["6L44"],crunch:["6L57"],cut:["6M"],darkpulse:["6M"],dig:["6M"],dive:[],doubleedge:[],doubleteam:["6M"],endeavor:[],endure:[],facade:["6M"],falseswipe:["6M"],fling:["6M"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],guillotine:["6L1","6L65"],hail:["6M"],harden:["6L1","6L7"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],irondefense:[],knockoff:["6L26"],leer:["6L1","6L13"],mimic:[],mudslap:[],naturalgift:[],nightslash:["6L39"],payback:["6M"],protect:["6L23","6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],secretpower:[],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6M"],snarl:["6M"],snore:[],spite:[],strength:["6M"],substitute:["6M"],superpower:[],surf:["6M"],swagger:["6M"],swift:["6L30"],swordsdance:["6L52","6M"],taunt:["6L34","6M"],toxic:["6M"],vicegrip:["6L1","6L10"],waterfall:["6M"],waterpulse:[],whirlpool:[],xscissor:["6M"],naturepower:["6M"],confide:["6M"]}}, + baltoy:{learnset:{allyswitch:[],ancientpower:["6L0"],bulldoze:["6M"],calmmind:["6M"],chargebeam:["6M"],confusion:["6L0"],cosmicpower:["6L0"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],earthpower:["6L0"],earthquake:["6M"],endure:[],explosion:["6M"],extrasensory:["6L0"],facade:["6M"],flash:["6M"],frustration:["6M"],grassknot:["6M"],gravity:[],guardsplit:["6L0"],gyroball:["6M"],harden:["6L0"],headbutt:[],healblock:["6L0"],hiddenpower:["6M"],icebeam:["6M"],lightscreen:["6M"],magiccoat:[],mimic:[],mudslap:["6L0"],naturalgift:[],powersplit:["6L0"],powertrick:["6L0"],protect:["6M"],psybeam:["6L0"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],rapidspin:["6L0"],recycle:[],reflect:["6M"],refresh:[],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],selfdestruct:["6L0"],shadowball:["6M"],signalbeam:[],skillswap:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],solarbeam:["6M"],stealthrock:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],telekinesis:[],toxic:["6M"],trick:[],trickroom:["6M"],zenheadbutt:[],drillrun:[],wonderroom:[]}}, + claydol:{learnset:{allyswitch:[],ancientpower:["6L0"],bulldoze:["6M"],calmmind:["6M"],chargebeam:["6M"],confusion:["6L0"],cosmicpower:["6L0"],dig:["6M"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],earthpower:["6L0"],earthquake:["6M"],endure:[],explosion:["6M"],extrasensory:["6L0"],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gravity:[],guardsplit:["6L0"],gyroball:["6M"],harden:["6L0"],headbutt:[],healblock:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],lightscreen:["6M"],magiccoat:[],mimic:[],mudslap:["6L0"],naturalgift:[],powersplit:["6L0"],powertrick:["6L0"],protect:["6M"],psybeam:["6L0"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],rapidspin:["6L0"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],selfdestruct:["6L0"],shadowball:["6M"],signalbeam:[],skillswap:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],solarbeam:["6M"],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],telekinesis:[],teleport:["6L0"],toxic:["6M"],trick:[],trickroom:["6M"],zenheadbutt:[],drillrun:[],wonderroom:[]}}, + lileep:{learnset:{acid:["6L8"],amnesia:["6L29"],ancientpower:["6L43"],astonish:["6L1"],attract:["6M"],barrier:["6E"],bodyslam:[],bulletseed:[],captivate:[],confuseray:["6L22"],constrict:["6L1"],curse:["6E"],doubleedge:[],doubleteam:["6M"],earthpower:[],endure:["6E"],energyball:["6L50","6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gastroacid:["6L36"],gigadrain:[],grassknot:["6M"],headbutt:[],hiddenpower:["6M"],ingrain:["6L15"],megadrain:["6E"],mimic:[],mirrorcoat:["6E"],mudslap:[],naturalgift:[],painsplit:[],protect:["6M"],psychup:[],recover:["6E"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],secretpower:[],seedbomb:[],sleeptalk:["6M"],sludgebomb:["6M"],smackdown:["6M"],snore:[],solarbeam:["6M"],spitup:["6L57"],stealthrock:["6E"],stockpile:["6L57"],stringshot:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swallow:["6L57"],swordsdance:["6M"],synthesis:[],tickle:["6E"],toxic:["6M"],worryseed:[],wringout:["6L64","6E"],bind:[],infestation:["6M"],confide:["6M"]}}, + cradily:{learnset:{acid:["6L1","6L8"],amnesia:["6L29"],ancientpower:["6L36"],astonish:["6L1"],attract:["6M"],block:[],bodyslam:[],bulldoze:["6M"],bulletseed:[],captivate:[],confuseray:["6L22"],constrict:["6L1"],doubleedge:[],doubleteam:["6M"],earthpower:[],earthquake:["6M"],endure:[],energyball:["6L56","6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gastroacid:["6L46"],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],ingrain:["6L1","6L15"],mimic:[],mudslap:[],naturalgift:[],painsplit:[],protect:["6M"],psychup:[],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],secretpower:[],seedbomb:[],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6M"],smackdown:["6M"],snore:[],solarbeam:["6M"],spitup:["6L1","6L66"],stealthrock:[],stockpile:["6L1","6L66"],stoneedge:["6M"],strength:["6M"],stringshot:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swallow:["6L1","6L66"],swordsdance:["6M"],synthesis:[],toxic:["6M"],worryseed:[],wringout:["6L1","6L76"],bind:[],infestation:["6M"],confide:["6M"]}}, + anorith:{learnset:{aerialace:["6M"],ancientpower:["6L31"],attract:["6M"],bodyslam:[],brickbreak:["6M"],captivate:[],crosspoison:["6E"],crushclaw:["6L55"],curse:["6E"],cut:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],earthpower:[],endure:[],facade:["6M"],falseswipe:["6M"],frustration:["6M"],furycutter:["6L37"],harden:["6L1"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],irondefense:["6E"],knockoff:["6E"],metalclaw:["6L19"],mimic:[],mudslap:[],mudsport:["6L7"],naturalgift:[],protect:["6L25","6M"],rapidspin:["6E"],rest:["6M"],"return":["6M"],rockblast:["6L49"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6E"],sandstorm:["6M"],scratch:["6L1"],screech:["6E"],secretpower:[],slash:["6L43"],sleeptalk:["6M"],smackdown:["6M"],snore:[],stealthrock:[],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],toxic:["6M"],watergun:["6L13"],waterpulse:["6E"],xscissor:["6L61","6M"],bugbite:[],confide:["6M"],aquajet:["6E"]}}, + armaldo:{learnset:{aerialace:["6M"],ancientpower:["6L31"],aquatail:[],attract:["6M"],block:[],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],crushclaw:["6L1","6L67"],cut:["6M"],dig:["6M"],doubleedge:[],doubleteam:["6M"],earthpower:[],earthquake:["6M"],endure:[],facade:["6M"],falseswipe:["6M"],flashcannon:["6M"],frustration:["6M"],furycutter:["6L37"],gigaimpact:["6M"],harden:["6L1"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],irondefense:[],irontail:[],knockoff:[],lowkick:[],metalclaw:["6L19"],mimic:[],mudslap:[],mudsport:["6L1","6L7"],naturalgift:[],protect:["6L25","6M"],rest:["6M"],"return":["6M"],rockblast:["6L55"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scratch:["6L1"],secretpower:[],seismictoss:[],slash:["6L46"],sleeptalk:["6M"],smackdown:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],swordsdance:["6M"],toxic:["6M"],watergun:["6L1","6L13"],waterpulse:[],xscissor:["6L73","6M"],bugbite:[],confide:["6M"]}}, + feebas:{learnset:{attract:["6M"],blizzard:["6M"],brine:["6E"],captivate:["6E"],confuseray:["6E"],dive:["6M"],doubleedge:[],doubleteam:["6M"],dragonbreath:["6E"],dragonpulse:["6E"],endure:[],facade:["6M"],flail:["6L0"],frustration:["6M"],hail:["6M"],haze:["6E"],hiddenpower:["6M"],hypnosis:["6E"],icebeam:["6M"],icywind:[],irontail:["6E"],lightscreen:["6M"],mimic:[],mirrorcoat:["6E"],mist:["6E"],mudsport:["6E"],naturalgift:[],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],scald:["6M"],secretpower:[],sleeptalk:["6M"],snore:[],splash:["6L0"],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:[],tackle:["6L0"],tickle:["6E"],toxic:["6M"],waterfall:["6M"],waterpulse:[],whirlpool:[]}}, + milotic:{learnset:{aquaring:["6L0"],aquatail:["6L0"],attract:["6M"],avalanche:[],blizzard:["6M"],bodyslam:[],bulldoze:["6M"],captivate:["6L0"],dive:["6M"],doubleedge:[],doubleteam:["6M"],dragonpulse:[],dragontail:["6M"],endure:[],facade:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],hiddenpower:["6M"],hydropump:["6L0"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],ironhead:[],irontail:[],lightscreen:["6M"],magiccoat:[],mimic:[],mirrorcoat:[],mudslap:[],naturalgift:[],protect:["6M"],psychup:["6M"],raindance:["6M"],recover:["6L0"],refresh:["6L0"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],scald:["6M"],secretpower:[],sleeptalk:["6M"],snore:[],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:[],toxic:["6M"],twister:["6L0"],waterfall:["6M"],watergun:["6L0"],waterpulse:["6L0"],watersport:["6L0"],whirlpool:[],wrap:["6L0"],bind:[]}}, + castform:{learnset:{amnesia:["6E"],attract:["6M"],avalanche:[],blizzard:["6M"],bodyslam:[],captivate:[],clearsmog:["6E"],defensecurl:[],disable:["6E"],doubleedge:[],doubleteam:["6M"],ember:["6L0"],endure:[],energyball:["6M"],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],frustration:["6M"],futuresight:["6E"],hail:["6M"],headbutt:["6L0"],hex:["6E"],hiddenpower:["6M"],hydropump:["6L0"],icebeam:["6M"],icywind:[],incinerate:["6M"],lastresort:[],luckychant:["6E"],mimic:[],naturalgift:[],ominouswind:["6E"],powdersnow:["6L0"],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],round:["6M"],sandstorm:["6M"],scald:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L0"],tailwind:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],watergun:["6L0"],waterpulse:[],weatherball:["6L0"],workup:[]}}, + kecleon:{learnset:{aerialace:["6M"],ancientpower:["6L55"],aquatail:[],astonish:["6L1"],attract:["6M"],bind:["6L4"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],captivate:[],chargebeam:["6M"],counter:[],cut:["6M"],defensecurl:[],dig:["6M"],disable:["6E"],dizzypunch:["6E"],doubleedge:[],doubleteam:["6M"],drainpunch:[],dynamicpunch:[],endure:[],facade:["6M"],feintattack:["6L7"],fakeout:["6E"],feint:["6L14"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],flash:["6M"],fling:["6M"],focuspunch:[],foulplay:["6E"],frustration:["6M"],furycutter:[],furyswipes:["6L10"],grassknot:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],icebeam:["6M"],icepunch:[],icywind:[],incinerate:["6M"],irontail:[],knockoff:[],lastresort:[],lick:["6L1"],lowkick:[],magiccoat:["6E"],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],nastyplot:["6E"],naturalgift:[],protect:["6M"],psybeam:["6L18"],psychup:["6M"],raindance:["6M"],recover:["6E"],recycle:[],reflecttype:[],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],rollout:[],round:["6M"],scratch:["6L1"],screech:["6L32"],secretpower:[],seismictoss:[],shadowball:["6M"],shadowclaw:["6L49","6M"],shadowsneak:["6L22"],shockwave:[],skillswap:["6E"],slash:["6L27"],sleeptalk:["6M"],snatch:["6E"],snore:[],solarbeam:["6M"],stealthrock:[],strength:["6M"],substitute:["6L37","6M"],suckerpunch:["6L43"],sunnyday:["6M"],swagger:["6M"],swift:[],synchronoise:["6L58"],tailwhip:["6L1"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],trick:["6E"],trickroom:["6M"],waterpulse:[],workup:[],afteryou:[],wonderroom:[],poweruppunch:["6M"],confide:["6M"]}}, + shuppet:{learnset:{astonish:["6E"],attract:["6M"],bodyslam:[],calmmind:["6M"],captivate:[],chargebeam:["6M"],confuseray:["6E"],curse:["6L19"],darkpulse:["6M"],destinybond:["6E"],disable:["6E"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],embargo:["6L38","6M"],endure:[],facade:["6M"],feintattack:["6L22"],flash:["6M"],foresight:["6E"],frustration:["6M"],grudge:["6L46"],gunkshot:["6E"],headbutt:[],hex:["6L26"],hiddenpower:["6M"],icywind:[],imprison:["6E"],knockoff:["6L1"],magiccoat:[],mimic:[],naturalgift:[],nightmare:[],nightshade:["6L7"],ominouswind:["6E"],painsplit:[],payback:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],pursuit:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],roleplay:[],round:["6M"],screech:["6L4"],secretpower:[],shadowball:["6L30","6M"],shadowsneak:["6L16","6E"],shockwave:[],skillswap:[],sleeptalk:["6M"],snatch:["6L42"],snore:[],spite:["6L10"],substitute:["6M"],suckerpunch:["6L34"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:["6L50"],trickroom:["6M"],willowisp:["6L13","6M"],foulplay:[],magicroom:[],dazzlinggleam:["6M"],confide:["6M"],phantomforce:["6E"]}}, + banette:{learnset:{attract:["6M"],bodyslam:[],calmmind:["6M"],captivate:[],chargebeam:["6M"],cottonguard:[],curse:["6L1","6L19"],darkpulse:["6M"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],embargo:["6L40","6M"],endure:[],facade:["6M"],feintattack:["6L22"],flash:["6M"],fling:["6M"],frustration:["6M"],gigaimpact:["6M"],grudge:["6L52"],headbutt:[],helpinghand:[],hex:["6L26"],hiddenpower:["6M"],hyperbeam:["6M"],icywind:[],knockoff:["6L1"],magiccoat:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],nightshade:["6L1","6L7"],ominouswind:[],painsplit:[],payback:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roleplay:[],round:["6M"],screech:["6L1","6L4"],secretpower:[],shadowball:["6L30","6M"],shadowclaw:["6M"],shadowsneak:["6L16"],shockwave:[],skillswap:[],sleeptalk:["6M"],snatch:["6L46"],snore:[],spite:["6L10"],substitute:["6M"],suckerpunch:["6L34"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:["6L58"],trickroom:["6M"],willowisp:["6L13","6M"],foulplay:[],magicroom:[],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + duskull:{learnset:{astonish:["6L14"],attract:["6M"],blizzard:["6M"],bodyslam:[],calmmind:["6M"],captivate:[],chargebeam:["6M"],confuseray:["6L17"],curse:["6L30"],darkpulse:["6M","6E"],destinybond:["6E"],disable:["6L6"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],endure:[],facade:["6M"],feintattack:["6E"],flash:["6M"],fling:["6M"],foresight:["6L9"],frustration:["6M"],futuresight:["6L49"],gravity:[],grudge:["6E"],headbutt:[],hex:["6L38"],helpinghand:[],hiddenpower:["6M"],icebeam:["6M"],icywind:[],imprison:["6E"],leer:["6L1"],meanlook:["6L41"],memento:["6E"],mimic:[],naturalgift:[],nightmare:[],nightshade:["6L1"],ominouswind:["6E"],painsplit:["6E"],payback:["6L46","6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],pursuit:["6L25"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],shadowball:["6M"],shadowsneak:["6L22"],skillswap:["6E"],sleeptalk:["6M"],snatch:[],snore:[],spite:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],willowisp:["6L33","6M"],wonderroom:[],infestation:["6M"],confide:["6M"]}}, + dusclops:{learnset:{astonish:["6L14"],attract:["6M"],bind:["6L1"],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],confuseray:["6L17"],counter:[],curse:["6L30"],darkpulse:["6M"],disable:["6L1","6L6"],doubleedge:[],doubleteam:["6M"],dreameater:["6M"],dynamicpunch:[],earthquake:["6M"],embargo:["6M"],endure:[],facade:["6M"],firepunch:["6L1"],flash:["6M"],fling:["6M"],focuspunch:[],foresight:["6L9"],frustration:["6M"],futuresight:["6L61"],gigaimpact:["6M"],gravity:["6L1"],headbutt:[],hex:["6L42"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:["6L1"],icywind:[],leer:["6L1"],meanlook:["6L49"],megakick:[],megapunch:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],nightshade:["6L1"],ominouswind:[],painsplit:[],payback:["6L58","6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],pursuit:["6L25"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shadowpunch:["6L37"],shadowsneak:["6L22"],skillswap:[],sleeptalk:["6M"],snatch:[],snore:[],spite:[],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],thunderpunch:["6L1"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],willowisp:["6L33","6M"],wonderroom:[],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + dusknoir:{learnset:{astonish:["6L14"],attract:["6M"],bind:["6L1"],blizzard:["6M"],brickbreak:["6M"],bulldoze:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],confuseray:["6L17"],curse:["6L30"],darkpulse:["6M"],disable:["6L1","6L6"],doubleteam:["6M"],dreameater:["6M"],earthquake:["6M"],embargo:["6M"],endure:[],facade:["6M"],firepunch:["6L1"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],foresight:["6L9"],frustration:["6M"],futuresight:["6L61"],gigaimpact:["6M"],gravity:["6L1"],headbutt:[],hex:["6L42"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:["6L1"],icywind:[],leer:["6L1"],meanlook:["6L49"],mudslap:[],naturalgift:[],nightshade:["6L1"],ominouswind:[],painsplit:[],payback:["6L58","6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],pursuit:["6L25"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],secretpower:[],shadowball:["6M"],shadowpunch:["6L37"],shadowsneak:["6L22"],skillswap:[],sleeptalk:["6M"],snatch:[],snore:[],spite:[],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],thunderpunch:["6L1"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],willowisp:["6L33","6M"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + tropius:{learnset:{aerialace:["6M"],aircutter:[],airslash:["6L50"],attract:["6M"],bestow:["6L1","6L57"],bodyslam:["6L37"],bulldoze:["6M"],bulletseed:["6E"],captivate:[],curse:["6E"],cut:["6M"],defog:[],doubleedge:[],doubleteam:["6M"],dragondance:["6E"],earthquake:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],fly:["6M"],frustration:["6M"],furycutter:[],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],growth:["6L7"],gust:["6L1"],headbutt:["6E"],hiddenpower:["6M"],hyperbeam:["6M"],leafblade:["6E"],leafstorm:["6L1","6L71","6E"],leaftornado:["6L47"],leechseed:["6E"],leer:["6L1"],magicalleaf:["6L31"],mimic:[],mudslap:[],naturalgift:["6L1","6L67","6E"],naturepower:["6M","6E"],ominouswind:[],outrage:[],protect:["6M"],razorleaf:["6L11"],razorwind:["6E"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],roost:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],silverwind:[],slam:["6E"],sleeptalk:["6M"],snore:[],solarbeam:["6L61","6M"],steelwing:["6M"],stomp:["6L17"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L21"],swordsdance:["6M"],synthesis:["6L41","6E"],tailwind:[],toxic:["6M"],twister:[],whirlwind:["6L27"],worryseed:[],seedbomb:[],dragonpulse:[],confide:["6M"]}}, + chingling:{learnset:{astonish:["6L9"],attract:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],confusion:["6L14"],curse:["6E"],disable:["6E"],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],endure:[],entrainment:["6L25"],facade:["6M"],flash:["6M"],frustration:["6M"],futuresight:["6E"],grassknot:["6M"],gravity:[],growl:["6L6"],healbell:[],helpinghand:[],hiddenpower:["6M"],hypnosis:["6E"],icywind:[],knockoff:[],lastresort:["6L22"],lightscreen:["6M"],magiccoat:[],naturalgift:[],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recover:["6E"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:["6E"],sleeptalk:["6M"],snatch:[],snore:[],storedpower:["6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],taunt:["6M"],telekinesis:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],uproar:["6L17"],wish:["6E"],wrap:["6L1"],zenheadbutt:[],hypervoice:[],bind:[],dazzlinggleam:["6M"],confide:["6M"]}}, + chimecho:{learnset:{astonish:["6L9"],attract:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],confusion:["6L14"],curse:["6E"],defensecurl:[],disable:["6E"],doubleedge:["6L33"],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],endure:[],energyball:["6M"],extrasensory:["6L46"],facade:["6M"],flash:["6M"],frustration:["6M"],futuresight:["6E"],grassknot:["6M"],gravity:[],growl:["6L6"],healbell:["6L38"],healingwish:["6L1","6L57"],healpulse:["6L49"],helpinghand:[],hiddenpower:["6M"],hypervoice:[],hypnosis:["6E"],icywind:[],knockoff:[],lastresort:[],lightscreen:["6M"],magiccoat:[],mimic:[],naturalgift:[],nightmare:[],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],psywave:["6L30"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],safeguard:["6L41","6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:["6E"],sleeptalk:["6M"],snatch:[],snore:[],storedpower:["6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],synchronoise:["6L1","6L54"],takedown:["6L22"],taunt:["6M"],telekinesis:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],uproar:["6L17"],wish:["6E"],wrap:["6L1"],yawn:["6L25"],zenheadbutt:[],bind:[],dazzlinggleam:["6M"],confide:["6M"]}}, + absol:{learnset:{aerialace:["6M"],assurance:["6E"],attract:["6M"],batonpass:["6E"],bite:["6L20"],blizzard:["6M"],bodyslam:[],bounce:[],calmmind:["6M"],captivate:[],chargebeam:["6M"],counter:[],curse:["6E"],cut:["6M"],darkpulse:["6M"],detect:["6L1","6L44"],doubleedge:["6E"],doubleteam:["6L25","6M"],dreameater:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],feintattack:["6E"],falseswipe:["6M"],feint:["6L1"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],frustration:["6M"],furycutter:[],futuresight:["6L36"],gigaimpact:["6M"],hail:["6M"],headbutt:[],hex:["6E"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],incinerate:["6M"],irontail:[],knockoff:[],leer:["6L4"],magiccoat:["6E"],meanlook:["6E"],mefirst:["6L1","6L60","6E"],megahorn:["6E"],mimic:[],mudslap:[],naturalgift:[],nightmare:[],nightslash:["6L41"],payback:["6M"],perishsong:["6L1","6L65","6E"],protect:["6M"],psychocut:["6L47"],psychup:["6M"],punishment:["6E"],pursuit:["6L12"],quickattack:["6L9"],raindance:["6M"],razorwind:["6L1","6L57"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],sandstorm:["6M"],scratch:["6L1"],secretpower:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],slash:["6L28"],sleeptalk:["6M"],snarl:["6M"],snatch:[],snore:[],spite:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],suckerpunch:["6L50","6E"],sunnyday:["6M"],superpower:[],swagger:["6M"],swift:[],swordsdance:["6L33","6M"],taunt:["6L1","6L17","6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],waterpulse:[],willowisp:["6M"],wish:[],xscissor:["6M"],zenheadbutt:["6E"],foulplay:[],confide:["6M"],playrough:["6E"]}}, + snorunt:{learnset:{attract:["6M"],avalanche:["6E"],bide:["6E"],bite:["6L10"],blizzard:["6L46","6M"],block:["6E"],bodyslam:[],captivate:[],crunch:["6L31"],disable:["6E"],doubleedge:[],doubleteam:["6L4","6M"],endure:[],facade:["6M"],faketears:["6E"],flash:["6M"],frostbreath:["6M"],frustration:["6M"],hail:["6L40","6M"],headbutt:["6L19"],hex:["6E"],hiddenpower:["6M"],icebeam:["6M"],icefang:["6L28"],iceshard:["6L37"],icywind:["6L13"],leer:["6L1"],lightscreen:["6M"],mimic:[],naturalgift:[],powdersnow:["6L1"],protect:["6L22","6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rollout:["6E"],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],sing:[],sleeptalk:["6M"],snore:[],spikes:["6E"],spite:[],substitute:["6M"],swagger:["6M"],toxic:["6M"],waterpulse:[],weatherball:["6E"],confide:["6M"]}}, + glalie:{learnset:{attract:["6M"],avalanche:[],bite:["6L1","6L10"],blizzard:["6L51","6M"],block:[],bodyslam:[],bulldoze:["6M"],captivate:[],crunch:["6L31"],darkpulse:["6M"],defensecurl:[],doubleedge:[],doubleteam:["6L1","6L4","6M"],earthquake:["6M"],endure:[],explosion:["6M"],facade:["6M"],flash:["6M"],frostbreath:["6M"],frustration:["6M"],gigaimpact:["6M"],gyroball:["6M"],hail:["6L40","6M"],headbutt:["6L19"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6L37","6M"],icefang:["6L28"],icywind:["6L13"],ironhead:[],leer:["6L1"],lightscreen:["6M"],mimic:[],naturalgift:[],payback:["6M"],powdersnow:["6L1"],protect:["6L22","6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],safeguard:["6M"],secretpower:[],selfdestruct:[],shadowball:["6M"],sheercold:["6L1","6L59"],signalbeam:[],sleeptalk:["6M"],snore:[],spite:[],substitute:["6M"],superfang:[],swagger:["6M"],taunt:["6M"],torment:["6M"],toxic:["6M"],waterpulse:[],confide:["6M"]}}, + froslass:{learnset:{astonish:["6L1","6L10"],attract:["6M"],avalanche:[],blizzard:["6L51","6M"],block:[],captivate:["6L31"],confuseray:["6L19"],destinybond:["6L1","6L59"],doubleteam:["6L1","6L4","6M"],dreameater:["6M"],embargo:["6M"],endure:[],facade:["6M"],flash:["6M"],fling:["6M"],frostbreath:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6L40","6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],iceshard:["6L37"],icywind:["6L13"],leer:["6L1"],lightscreen:["6M"],mudslap:[],naturalgift:[],ominouswind:["6L22"],painsplit:[],payback:["6M"],powdersnow:["6L1"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],sleeptalk:["6M"],snatch:[],snore:[],spite:[],substitute:["6M"],suckerpunch:[],swagger:["6M"],taunt:["6M"],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],wakeupslap:["6L28"],waterpulse:[],confide:["6M"]}}, + spheal:{learnset:{aquaring:["6E"],aquatail:[],attract:["6M"],aurorabeam:["6L25"],blizzard:["6L43","6M"],bodyslam:["6L19"],brine:[],bulldoze:["6M"],captivate:[],charm:[],curse:["6E"],defensecurl:["6L1"],dive:[],doubleedge:[],doubleteam:["6M"],earthquake:["6M"],echoedvoice:["6M"],encore:["6L7"],endure:[],facade:["6M"],fissure:["6E"],frostbreath:["6M"],frustration:["6M"],growl:["6L1"],hail:["6L31","6M"],headbutt:[],hiddenpower:["6M"],iceball:["6L13"],icebeam:["6M"],icywind:[],irontail:[],mimic:[],mudslap:[],naturalgift:[],powdersnow:["6L1"],protect:["6M"],raindance:["6M"],rest:["6L37","6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6E"],round:["6M"],secretpower:[],sheercold:["6L49"],signalbeam:["6E"],sleeptalk:["6M","6E"],snore:["6L37"],spitup:["6E"],stockpile:["6E"],strength:["6M"],substitute:["6M"],superfang:[],surf:["6M"],swagger:["6M"],swallow:["6E"],toxic:["6M"],waterfall:["6M"],watergun:["6L1"],waterpulse:["6E"],watersport:["6E"],whirlpool:[],yawn:["6E"],confide:["6M"]}}, + sealeo:{learnset:{aquatail:[],attract:["6M"],aurorabeam:["6L25"],blizzard:["6L47","6M"],bodyslam:["6L19"],brine:[],bulldoze:["6M"],captivate:[],defensecurl:[],dive:[],doubleedge:[],doubleteam:["6M"],earthquake:["6M"],echoedvoice:["6M"],encore:["6L1","6L7"],endure:[],facade:["6M"],frostbreath:["6M"],frustration:["6M"],growl:["6L1"],hail:["6L31","6M"],headbutt:[],hiddenpower:["6M"],iceball:["6L13"],icebeam:["6M"],icywind:[],irontail:[],mimic:[],mudslap:[],naturalgift:[],powdersnow:["6L1"],protect:["6M"],raindance:["6M"],rest:["6L39","6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],secretpower:[],sheercold:["6L55"],signalbeam:[],sleeptalk:["6M"],snore:["6L39"],strength:["6M"],substitute:["6M"],superfang:[],surf:["6M"],swagger:["6L32","6M"],toxic:["6M"],waterfall:["6M"],watergun:["6L1"],waterpulse:[],whirlpool:[],confide:["6M"]}}, + walrein:{learnset:{aquatail:[],attract:["6M"],aurorabeam:["6L25"],avalanche:[],blizzard:["6L52","6M"],block:[],bodyslam:["6L19"],brine:[],bulldoze:["6M"],captivate:[],crunch:["6L1"],defensecurl:[],dive:[],doubleedge:[],doubleteam:["6M"],earthquake:["6M"],echoedvoice:["6M"],encore:["6L1","6L7"],endure:[],facade:["6M"],frostbreath:["6M"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],growl:["6L1"],hail:["6L31","6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],iceball:["6L13"],icebeam:["6M"],icefang:["6L44"],icywind:[],ironhead:[],irontail:[],mimic:[],mudslap:[],naturalgift:[],powdersnow:["6L1"],protect:["6M"],raindance:["6M"],rest:["6L39","6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],secretpower:[],sheercold:["6L65"],signalbeam:[],sleeptalk:["6M"],snore:["6L39"],strength:["6M"],substitute:["6M"],superfang:[],surf:["6M"],swagger:["6L32","6M"],toxic:["6M"],waterfall:["6M"],watergun:["6L1"],waterpulse:[],whirlpool:[],confide:["6M"]}}, + clamperl:{learnset:{aquaring:["6E"],attract:["6M"],barrier:["6E"],blizzard:["6M"],bodyslam:["6E"],brine:["6E"],captivate:[],clamp:["6L1"],confuseray:["6E"],dive:[],doubleedge:[],doubleteam:["6M"],endure:["6E"],facade:["6M"],frustration:["6M"],hail:["6M"],hiddenpower:["6M"],icebeam:["6M"],icywind:[],irondefense:["6L1"],mimic:[],muddywater:["6E"],mudsport:["6E"],naturalgift:[],protect:["6M"],raindance:["6M"],refresh:["6E"],rest:["6M"],"return":["6M"],round:["6M"],scald:["6M"],secretpower:[],shellsmash:["6L50"],sleeptalk:["6M"],snore:[],substitute:["6M"],supersonic:["6E"],surf:["6M"],swagger:["6M"],toxic:["6M"],waterfall:["6M"],watergun:["6L1"],waterpulse:["6E"],whirlpool:["6L1"],confide:["6M"]}}, + huntail:{learnset:{aquatail:["6L46"],attract:["6M"],batonpass:["6L33"],bite:["6L6"],blizzard:["6M"],bodyslam:[],bounce:[],brine:["6L28"],captivate:[],crunch:["6L42"],dive:["6L37"],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],hiddenpower:["6M"],hydropump:["6L50"],hyperbeam:["6M"],icebeam:["6M"],icefang:["6L24"],icywind:[],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],scaryface:["6L19"],screech:["6L10"],secretpower:[],sleeptalk:["6M"],snatch:[],snore:[],substitute:["6M"],suckerpunch:[],superfang:[],surf:["6M"],swagger:["6M"],swift:[],toxic:["6M"],waterfall:["6M"],waterpulse:["6L15"],whirlpool:["6L1"],bind:[],infestation:["6M"],confide:["6M"]}}, + gorebyss:{learnset:{agility:["6L10"],amnesia:["6L19"],aquaring:["6L24"],aquatail:["6L46"],attract:["6M"],batonpass:["6L33"],blizzard:["6M"],bodyslam:[],bounce:[],brine:[],captivate:["6L28"],confusion:["6L6"],dive:["6L37"],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],hiddenpower:["6M"],hydropump:["6L50"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],psychic:["6L42","6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],scald:["6M"],secretpower:[],shadowball:["6M"],signalbeam:[],sleeptalk:["6M"],snore:[],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:[],toxic:["6M"],waterfall:["6M"],waterpulse:["6L15"],whirlpool:["6L1"],bind:[],infestation:["6M"],confide:["6M"]}}, + relicanth:{learnset:{amnesia:["6E"],ancientpower:["6L1","6L43"],aquatail:["6E"],attract:["6M"],blizzard:["6M"],bodyslam:[],bounce:[],brine:["6E"],bulldoze:["6M"],calmmind:["6M"],captivate:[],dive:["6L57"],doubleedge:["6L50"],doubleteam:["6M"],earthpower:[],earthquake:["6M"],endure:[],facade:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],harden:["6L1"],headbutt:[],headsmash:["6L1","6L78"],hiddenpower:["6M"],hydropump:["6L1","6L71"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],magnitude:["6E"],mimic:[],muddywater:["6E"],mudshot:["6E"],mudslap:["6E"],mudsport:["6L1","6L36"],naturalgift:[],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6L64","6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6L15","6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],scald:["6M"],secretpower:[],skullbash:["6E"],sleeptalk:["6M","6E"],smackdown:["6M"],snore:["6E"],stealthrock:[],stoneedge:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],tackle:["6L1"],takedown:["6L29"],toxic:["6M"],waterfall:["6M"],watergun:["6L8"],waterpulse:[],watersport:["6E"],whirlpool:[],yawn:["6L22"],zenheadbutt:["6E"],confide:["6M"]}}, + luvdisc:{learnset:{agility:["6L9"],aquajet:["6E"],aquaring:["6L46","6E"],attract:["6L27","6M"],blizzard:["6M"],bounce:[],brine:["6E"],captivate:["6L50","6E"],charm:["6L4"],dive:[],doubleedge:[],doubleteam:["6M"],endure:[],facade:["6M"],flail:["6L31"],frustration:["6M"],hail:["6M"],healpulse:["6E"],hiddenpower:["6M"],hydropump:["6L40"],icebeam:["6M"],icywind:[],luckychant:["6L17"],mimic:[],mudsport:["6E"],naturalgift:[],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6L55","6M"],scald:["6M"],secretpower:[],sleeptalk:["6M"],snore:[],splash:["6E"],substitute:["6M"],supersonic:["6E"],surf:["6M"],swagger:["6M"],sweetkiss:["6L37"],swift:[],tackle:["6L1"],takedown:["6L14"],toxic:["6M"],waterfall:["6M"],watergun:["6L7"],waterpulse:["6L22"],watersport:["6E"],whirlpool:[],confide:["6M"]}}, + bagon:{learnset:{aerialace:["6M"],attract:["6M"],bite:["6L5"],bodyslam:[],brickbreak:["6M"],captivate:[],crunch:["6L46"],cut:["6M"],defensecurl:["6E"],doubleedge:["6L55"],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L31"],dragonclaw:["6L50","6M"],dragondance:["6E"],dragonpulse:["6E"],dragonrage:["6E"],dragonrush:["6E"],ember:["6L25"],endure:["6E"],facade:["6M"],fireblast:["6M"],firefang:["6E"],flamethrower:["6M"],focusenergy:["6L20"],frustration:["6M"],furycutter:[],headbutt:["6L16"],hiddenpower:["6M"],honeclaws:["6M"],hydropump:["6E"],incinerate:["6M"],irondefense:[],leer:["6L10"],mimic:[],mudslap:[],naturalgift:[],outrage:[],protect:["6M"],rage:["6L1"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6L40"],secretpower:[],shadowclaw:["6M"],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],thrash:["6E"],toxic:["6M"],twister:["6E"],wish:[],zenheadbutt:["6L35"],hypervoice:[],confide:["6M"]}}, + shelgon:{learnset:{aerialace:["6M"],attract:["6M"],bite:["6L1","6L5"],bodyslam:[],brickbreak:["6M"],captivate:[],crunch:["6L50"],cut:["6M"],defensecurl:[],doubleedge:["6L61"],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L32"],dragonclaw:["6L55","6M"],dragonpulse:[],ember:["6L25"],endure:[],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],focusenergy:["6L20"],frustration:["6M"],furycutter:[],headbutt:["6L1","6L16"],hiddenpower:["6M"],honeclaws:["6M"],incinerate:["6M"],irondefense:[],leer:["6L1","6L10"],mimic:[],mudslap:[],naturalgift:[],outrage:[],protect:["6L30","6M"],rage:["6L1"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],scaryface:["6L43"],secretpower:[],shadowclaw:["6M"],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],toxic:["6M"],twister:[],zenheadbutt:["6L37"],hypervoice:[],confide:["6M"]}}, + salamence:{learnset:{aerialace:["6M"],aircutter:[],aquatail:[],attract:["6M"],bite:["6L1","6L5"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],captivate:[],crunch:["6L53"],cut:["6M"],defensecurl:[],defog:[],doubleedge:["6L1","6L70"],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L32"],dragonclaw:["6L61","6M"],dragondance:[],dragonpulse:[],dragontail:["6L80","6M"],earthquake:["6M"],ember:["6L25"],endure:[],facade:["6M"],fireblast:["6M"],firefang:["6L1"],flamethrower:["6M"],fly:["6L50","6M"],focusenergy:["6L20"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],headbutt:["6L1","6L16"],heatwave:[],hiddenpower:["6M"],honeclaws:["6M"],hydropump:[],hyperbeam:["6M"],incinerate:["6M"],irontail:[],leer:["6L1","6L10"],mimic:[],mudslap:[],naturalgift:[],ominouswind:[],outrage:[],protect:["6L30","6M"],rage:["6L1"],raindance:["6M"],refresh:[],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],roost:["6M"],round:["6M"],scaryface:["6L43"],secretpower:[],shadowclaw:["6M"],sleeptalk:["6M"],snore:[],steelwing:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tailwind:[],thunderfang:["6L1"],toxic:["6M"],twister:[],zenheadbutt:["6L37"],hypervoice:[],confide:["6M"]}}, + beldum:{learnset:{headbutt:[],irondefense:[],ironhead:[],takedown:["6L1"],zenheadbutt:[]}}, + metang:{learnset:{aerialace:["6M"],agility:["6L38"],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],bulletpunch:["6L32"],confusion:["6L1","6L20"],cut:["6M"],defensecurl:[],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],endure:[],explosion:["6M"],facade:["6M"],flash:["6M"],flashcannon:["6M"],frustration:["6M"],furycutter:[],grassknot:["6M"],gravity:[],gyroball:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6L50","6M"],icepunch:[],icywind:[],irondefense:["6L47"],ironhead:[],lightscreen:["6M"],magnetrise:["6L1"],metalclaw:["6L1","6L20"],meteormash:["6L44"],mimic:[],miracleeye:["6L26"],mudslap:[],naturalgift:[],protect:["6M"],psychic:["6L41","6M"],psychup:["6M"],psyshock:["6M"],pursuit:["6L23"],raindance:["6M"],reflect:["6M"],refresh:[],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],sandstorm:["6M"],scaryface:["6L35"],secretpower:[],selfdestruct:[],shadowball:["6M"],signalbeam:[],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],takedown:["6L1"],telekinesis:[],thunderpunch:[],toxic:["6M"],trick:[],zenheadbutt:["6L29"],poweruppunch:["6M"],confide:["6M"]}}, + metagross:{learnset:{aerialace:["6M"],agility:["6L38"],block:[],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],bulletpunch:["6L32"],confusion:["6L1","6L20"],cut:["6M"],defensecurl:[],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],endure:[],explosion:["6M"],facade:["6M"],flash:["6M"],flashcannon:["6M"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],grassknot:["6M"],gravity:[],gyroball:["6M"],hammerarm:["6L45"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6L62","6M"],icepunch:[],icywind:[],irondefense:["6L53"],ironhead:[],lightscreen:["6M"],magnetrise:["6L1"],metalclaw:["6L1","6L20"],meteormash:["6L44"],mimic:[],miracleeye:["6L26"],mudslap:[],naturalgift:[],protect:["6M"],psychic:["6L41","6M"],psychup:["6M"],psyshock:["6M"],pursuit:["6L23"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],sandstorm:["6M"],scaryface:["6L35"],secretpower:[],selfdestruct:[],shadowball:["6M"],signalbeam:[],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],takedown:["6L1"],telekinesis:[],thunderpunch:[],toxic:["6M"],trick:[],zenheadbutt:["6L29"],poweruppunch:["6M"],confide:["6M"]}}, + regirock:{learnset:{ancientpower:["6L0"],block:[],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],chargebeam:["6M"],counter:[],curse:["6L0"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],drainpunch:[],dynamicpunch:[],earthpower:[],earthquake:["6M"],endure:[],explosion:["6M"],facade:["6M"],firepunch:[],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],gravity:[],hammerarm:["6L0"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],irondefense:["6L0"],ironhead:[],lockon:["6L0"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],psychup:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rockthrow:["6L0"],rocktomb:["6M"],rollout:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:[],selfdestruct:[],shockwave:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],stealthrock:[],stomp:["6L0"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:["6L0"],swagger:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],zapcannon:["6L0"]}}, + regice:{learnset:{amnesia:["6L0"],ancientpower:["6L0"],avalanche:[],blizzard:["6M"],block:[],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],chargebeam:["6M"],counter:[],curse:["6L0"],defensecurl:[],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],endure:[],explosion:["6M"],facade:["6M"],flashcannon:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frostbreath:["6M"],frustration:["6M"],gigaimpact:["6M"],gravity:[],hail:["6M"],hammerarm:["6L0"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:["6L0"],ironhead:[],lockon:["6L0"],megakick:[],megapunch:[],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],safeguard:["6M"],secretpower:[],seismictoss:[],selfdestruct:[],shockwave:[],signalbeam:[],sleeptalk:["6M"],snore:[],stomp:["6L0"],strength:["6M"],substitute:["6M"],superpower:["6L0"],swagger:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],zapcannon:["6L0"]}}, + registeel:{learnset:{aerialace:["6M"],amnesia:["6L0"],ancientpower:["6L0"],block:[],bodyslam:[],brickbreak:["6M"],bulldoze:["6M"],chargebeam:["6M"],counter:[],curse:["6L0"],defensecurl:[],doubleedge:[],doubleteam:["6M"],dynamicpunch:[],earthquake:["6M"],endure:[],explosion:["6M"],facade:["6M"],flashcannon:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],gravity:[],hammerarm:["6L0"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icepunch:[],irondefense:["6L0"],ironhead:["6L0"],lockon:["6L0"],megakick:[],megapunch:[],metalclaw:["6L0"],mimic:[],mudslap:[],naturalgift:[],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:[],selfdestruct:[],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],snore:[],stealthrock:[],stomp:["6L0"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:["6L0"],swagger:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],zapcannon:["6L0"],magnetrise:[]}}, + latias:{learnset:{aerialace:["6M"],attract:["6M"],bodyslam:[],bulldoze:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],charm:["6L0"],cut:["6M"],defog:[],dive:["6M"],doubleedge:[],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L0"],dragonclaw:["6M"],dragonpulse:["6L0"],dreameater:["6M"],earthquake:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],fly:["6M"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],grassknot:["6M"],guardsplit:["6L0"],healingwish:["6L0"],healpulse:["6L0"],helpinghand:["6L0"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],lastresort:[],lightscreen:["6M"],magiccoat:[],mimic:[],mistball:["6L0"],mudslap:[],naturalgift:[],outrage:[],protect:["6M"],psychic:["6M"],psychoshift:["6L0"],psychup:["6M"],psyshock:["6M"],psywave:["6L0"],raindance:["6M"],recover:["6L0"],reflect:["6M"],reflecttype:["6L0"],refresh:["6L0"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],roleplay:[],roost:["6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],steelwing:[],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],tailwind:[],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trick:[],twister:[],waterfall:["6M"],waterpulse:[],watersport:["6L0"],whirlpool:[],wish:["6L0"],zenheadbutt:["6L0"],covet:[],magicroom:[]}}, + latios:{learnset:{aerialace:["6M"],attract:["6M"],bodyslam:[],bulldoze:["6M"],calmmind:["6M"],captivate:[],chargebeam:["6M"],cut:["6M"],defog:[],dive:["6M"],doubleedge:[],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L0"],dragonclaw:["6M"],dragondance:["6L0"],dragonpulse:["6L0"],dreameater:["6M"],earthquake:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],fly:["6M"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],grassknot:["6M"],healblock:["6L0"],healpulse:["6L0"],helpinghand:["6L0"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],lastresort:[],lightscreen:["6M"],lusterpurge:["6L0"],magiccoat:[],memento:["6L0"],mimic:[],mudslap:[],naturalgift:[],outrage:[],powersplit:["6L0"],protect:["6M"],psychic:["6M"],psychoshift:["6L0"],psychup:["6M"],psyshock:["6M"],psywave:["6L0"],raindance:["6M"],recover:["6L0"],reflect:["6M"],refresh:["6L0"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],roost:["6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],steelwing:[],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],tailwind:[],telekinesis:["6L0"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trick:[],twister:[],waterfall:["6M"],waterpulse:[],whirlpool:[],zenheadbutt:["6L0"],wonderroom:[]}}, + kyogre:{learnset:{ancientpower:["6L0"],aquaring:["6L0"],aquatail:["6L0"],avalanche:[],blizzard:["6M"],block:[],bodyslam:["6L0"],brickbreak:["6M"],brine:[],bulldoze:["6M"],calmmind:["6M"],defensecurl:[],dive:["6M"],doubleedge:["6L0"],doubleteam:["6M"],earthquake:["6M"],endure:[],facade:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydropump:["6L0"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],ironhead:[],mimic:[],muddywater:["6L0"],mudslap:[],naturalgift:[],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],scald:["6M"],scaryface:["6L0"],secretpower:[],sheercold:["6L0"],shockwave:[],signalbeam:[],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],uproar:[],waterfall:["6M"],waterpulse:["6L0"],waterspout:["6L0"],whirlpool:[]}}, + groudon:{learnset:{aerialace:["6M"],ancientpower:["6L0"],block:[],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],counter:[],cut:["6M"],defensecurl:[],dig:["6M"],doubleedge:[],doubleteam:["6M"],dragonclaw:["6M"],dragonpulse:[],dragontail:["6M"],dynamicpunch:[],earthpower:["6L0"],earthquake:["6M"],endure:[],eruption:["6L0"],facade:["6M"],fireblast:["6M"],firepunch:[],fissure:["6L0"],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],hammerarm:["6L0"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],incinerate:["6M"],ironhead:[],irontail:[],lavaplume:["6L0"],megakick:[],megapunch:[],mimic:[],mudshot:["6L0"],mudslap:[],naturalgift:[],overheat:["6M"],protect:["6M"],psychup:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],scaryface:["6L0"],secretpower:[],seismictoss:[],shadowclaw:["6M"],shockwave:[],slash:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],solarbeam:["6M"],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],uproar:[]}}, + rayquaza:{learnset:{aerialace:["6M"],airslash:["6L0"],ancientpower:["6L0"],aquatail:[],avalanche:[],blizzard:["6M"],bodyslam:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],crunch:["6L0"],dive:["6M"],doubleedge:[],doubleteam:["6M"],dracometeor:["6T"],dragonclaw:["6M"],dragondance:["6L0"],dragonpulse:["6L0"],dragontail:["6M"],earthpower:[],earthquake:["6M"],echoedvoice:["6M"],endure:[],energyball:["6M"],extremespeed:["6L0"],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],fling:["6M"],fly:["6M"],focusblast:["6M"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],gyroball:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],hypervoice:["6L0"],icebeam:["6M"],icywind:[],incinerate:["6M"],ironhead:[],irontail:[],mimic:[],mudslap:[],naturalgift:[],outrage:["6L0"],overheat:["6M"],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scaryface:["6L0"],secretpower:[],shadowclaw:["6M"],shockwave:[],skydrop:["6M"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],tailwind:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],twister:["6L0"],uproar:[],vcreate:[],waterfall:["6M"],waterpulse:[],whirlpool:[],bind:[]}}, + jirachi:{learnset:{aerialace:["6M"],ancientpower:[],bodyslam:[],calmmind:["6M"],chargebeam:["6M"],confusion:["6L0"],cosmicpower:["6L0"],defensecurl:[],doomdesire:["6L0"],doubleedge:["6L0"],doubleteam:["6M"],dracometeor:[],drainpunch:[],dreameater:["6M"],dynamicpunch:[],endure:[],energyball:["6M"],facade:["6M"],firepunch:[],flash:["6M"],flashcannon:["6M"],fling:["6M"],followme:[],frustration:["6M"],futuresight:["6L0"],gigaimpact:["6M"],grassknot:["6M"],gravity:["6L0"],headbutt:[],healingwish:["6L0"],helpinghand:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],icywind:[],irondefense:[],ironhead:[],lastresort:["6L0"],lightscreen:["6M"],magiccoat:[],meteormash:[],metronome:[],mimic:[],mudslap:[],naturalgift:[],nightmare:[],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],refresh:["6L0"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],stealthrock:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L0"],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],uproar:[],uturn:["6M"],waterpulse:[],wish:["6L0"],zenheadbutt:["6L0"],magicroom:[]}}, + deoxys:{learnset:{aerialace:["6M"],agility:["6L0"],allyswitch:[],amnesia:["6L0"],avalanche:[],bodyslam:[],brickbreak:["6M"],calmmind:["6M"],chargebeam:["6M"],cosmicpower:["6L0"],counter:["6L0"],cut:["6M"],darkpulse:[],detect:[],doubleedge:[],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],dynamicpunch:[],endure:[],energyball:["6M"],extremespeed:["6L0"],facade:["6M"],firepunch:[],flash:["6M"],flashcannon:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gravity:[],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],icywind:[],irondefense:["6L0"],knockoff:["6L0"],leer:["6L0"],lightscreen:["6M"],lowkick:[],lowsweep:["6M"],magiccoat:[],megakick:[],megapunch:[],meteormash:[],mimic:[],mirrorcoat:["6L0"],mudslap:[],nastyplot:[],naturalgift:[],nightmare:[],nightshade:["6L0"],poisonjab:["6M"],protect:["6M"],psychic:["6M"],psychoboost:["6L0"],psychoshift:["6L0"],psychup:["6M"],psyshock:["6M"],pursuit:["6L0"],raindance:["6M"],recover:["6L0"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seismictoss:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snatch:["6L0"],snore:[],solarbeam:["6M"],spikes:["6L0"],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:["6L0"],swagger:["6M"],swift:["6L0"],taunt:["6M"],telekinesis:[],teleport:["6L0"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],waterpulse:[],wrap:["6L0"],zapcannon:["6L0"],zenheadbutt:["6L0"],bind:[],roleplay:[],wonderroom:[]}}, + turtwig:{learnset:{absorb:["6L0"],amnesia:["6E"],attract:["6M"],bite:["6L0"],bodyslam:["6E"],bulletseed:[],captivate:[],crunch:["6L0"],curse:["6L0"],cut:["6M"],doubleedge:["6E"],doubleteam:["6M"],earthpower:["6E"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:["6L0"],grassknot:["6M"],grasspledge:["6T"],growth:["6E"],headbutt:[],hiddenpower:["6M"],irontail:[],leafstorm:["6L0"],leechseed:["6L0"],lightscreen:["6M"],megadrain:["6L0"],mudslap:[],naturalgift:[],protect:["6M"],razorleaf:["6L0"],reflect:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rocksmash:["6M"],round:["6M"],safeguard:["6M"],sandtomb:["6E"],secretpower:[],seedbomb:["6E"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],spitup:["6E"],stealthrock:[],stockpile:["6E"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:["6E"],swagger:["6M"],swallow:["6E"],swordsdance:["6M"],synthesis:["6L0"],tackle:["6L0"],thrash:["6E"],tickle:["6E"],toxic:["6M"],wideguard:["6E"],withdraw:["6L0"],worryseed:["6E"]}}, + grotle:{learnset:{absorb:["6L0"],attract:["6M"],bite:["6L0"],bulletseed:[],captivate:[],crunch:["6L0"],curse:["6L0"],cut:["6M"],doubleteam:["6M"],earthpower:[],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:["6L0"],grassknot:["6M"],grasspledge:["6T"],headbutt:[],hiddenpower:["6M"],irontail:[],leafstorm:["6L0"],leechseed:["6L0"],lightscreen:["6M"],megadrain:["6L0"],mudslap:[],naturalgift:[],protect:["6M"],razorleaf:["6L0"],reflect:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],rocksmash:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],synthesis:["6L0"],tackle:["6L0"],toxic:["6M"],withdraw:["6L0"],worryseed:[],superpower:[]}}, + torterra:{learnset:{absorb:["6L0"],attract:["6M"],bite:["6L0"],block:[],bulldoze:["6M"],bulletseed:[],captivate:[],crunch:["6L0"],curse:["6L0"],cut:["6M"],doubleteam:["6M"],earthpower:[],earthquake:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frenzyplant:["6T"],frustration:["6M"],gigadrain:["6L0"],gigaimpact:["6M"],grassknot:["6M"],grasspledge:["6T"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],ironhead:[],irontail:[],leafstorm:["6L0"],leechseed:["6L0"],lightscreen:["6M"],megadrain:["6L0"],mudslap:[],naturalgift:[],outrage:[],protect:["6M"],razorleaf:["6L0"],reflect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],seedbomb:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],swordsdance:["6M"],synthesis:["6L0"],tackle:["6L0"],toxic:["6M"],withdraw:["6L0"],woodhammer:["6L0"],worryseed:[]}}, + chimchar:{learnset:{acrobatics:["6M"],aerialace:["6M"],assist:["6E"],attract:["6M"],blazekick:["6E"],brickbreak:["6M"],bulkup:["6M"],captivate:[],counter:["6E"],cut:["6M"],dig:["6M"],doublekick:["6E"],doubleteam:["6M"],ember:["6L0"],encore:["6E"],endeavor:[],endure:[],facade:["6M"],fakeout:["6E"],fireblast:["6M"],firepledge:["6T"],firepunch:["6E"],firespin:["6L0"],flamecharge:["6M"],flamethrower:["6M"],flamewheel:["6L0"],fling:["6M"],focusenergy:["6E"],focuspunch:["6E"],frustration:["6M"],furyswipes:["6L0"],grassknot:["6M"],headbutt:[],heatwave:["6E"],helpinghand:["6E"],hiddenpower:["6M"],honeclaws:["6M"],incinerate:["6M"],irontail:[],leer:["6L0"],lowkick:[],lowsweep:["6M"],mudslap:[],nastyplot:["6L0"],naturalgift:[],overheat:["6M"],protect:["6M"],quickguard:["6E"],rest:["6M"],"return":["6M"],rockclimb:[],rocksmash:["6M"],roleplay:[],rollout:[],round:["6M"],scratch:["6L0"],secretpower:[],shadowclaw:["6M"],slackoff:["6L0"],sleeptalk:["6M"],snore:[],stealthrock:[],strength:["6M"],submission:["6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],taunt:["6M"],thunderpunch:["6E"],torment:["6M"],toxic:["6M"],uproar:[],uturn:["6M"],vacuumwave:[],willowisp:["6M"],covet:[],gunkshot:[]}}, + monferno:{learnset:{acrobatics:["6M"],aerialace:["6M"],attract:["6M"],brickbreak:["6M"],bulkup:["6M"],captivate:[],closecombat:["6L0"],cut:["6M"],dig:["6M"],doubleteam:["6M"],ember:["6L0"],endeavor:[],endure:[],facade:["6M"],feint:["6L0"],fireblast:["6M"],firepledge:["6T"],firepunch:[],firespin:["6L0"],flamecharge:["6M"],flamethrower:["6M"],flamewheel:["6L0"],flareblitz:["6L0"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furyswipes:["6L0"],grassknot:["6M"],headbutt:[],heatwave:[],helpinghand:[],hiddenpower:["6M"],honeclaws:["6M"],incinerate:["6M"],irontail:[],leer:["6L0"],lowkick:[],lowsweep:["6M"],machpunch:["6L0"],mudslap:[],naturalgift:[],overheat:["6M"],poisonjab:["6M"],protect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],rollout:[],round:["6M"],scratch:["6L0"],secretpower:[],shadowclaw:["6M"],slackoff:["6L0"],sleeptalk:["6M"],snore:[],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],taunt:["6M"],thunderpunch:[],torment:["6M"],toxic:["6M"],uturn:["6M"],vacuumwave:[],willowisp:["6M"],workup:[],covet:[],dualchop:[],gunkshot:[]}}, + infernape:{learnset:{acrobatics:["6M"],aerialace:["6M"],attract:["6M"],blastburn:["6T"],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],calmmind:["6M"],captivate:[],closecombat:["6L0"],covet:[],cut:["6M"],dig:["6M"],doubleteam:["6M"],dualchop:[],earthquake:["6M"],ember:["6L0"],endeavor:[],endure:[],facade:["6M"],feint:["6L0"],fireblast:["6M"],firepledge:["6T"],firepunch:[],firespin:["6L0"],flamecharge:["6M"],flamethrower:["6M"],flamewheel:["6L0"],flareblitz:["6L0"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furyswipes:["6L0"],gigaimpact:["6M"],grassknot:["6M"],gunkshot:[],headbutt:[],heatwave:[],helpinghand:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],incinerate:["6M"],irontail:[],leer:["6L0"],lowkick:[],lowsweep:["6M"],machpunch:["6L0"],mudslap:[],naturalgift:[],overheat:["6M"],poisonjab:["6M"],protect:["6M"],punishment:["6L0"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],rollout:[],round:["6M"],scratch:["6L0"],secretpower:[],shadowclaw:["6M"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],taunt:["6M"],thunderpunch:[],torment:["6M"],toxic:["6M"],uturn:["6M"],vacuumwave:[],willowisp:["6M"],workup:[]}}, + piplup:{learnset:{aerialace:["6M"],agility:["6E"],aquaring:["6E"],attract:["6M"],bide:["6E"],blizzard:["6M"],brickbreak:["6M"],brine:["6L0"],bubble:["6L0"],bubblebeam:["6L0"],captivate:[],cut:["6M"],defog:[],dig:["6M"],dive:["6M"],doublehit:["6E"],doubleteam:["6M"],drillpeck:["6L0"],echoedvoice:["6M"],endure:[],facade:["6M"],featherdance:["6E"],flail:["6E"],fling:["6M"],frustration:["6M"],furyattack:["6L0"],grassknot:["6M"],growl:["6L0"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydropump:["6E"],icebeam:["6M"],icywind:["6E"],mist:["6L0"],mudslap:["6E"],mudsport:["6E"],naturalgift:[],peck:["6L0"],pluck:[],pound:["6L0"],protect:["6M"],quash:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],secretpower:[],signalbeam:[],sleeptalk:["6M"],snore:["6E"],stealthrock:[],substitute:["6M"],supersonic:["6E"],surf:["6M"],swagger:["6M"],toxic:["6M"],waterfall:["6M"],waterpledge:["6T"],waterpulse:[],watersport:["6L0"],whirlpool:["6L0"],yawn:["6E"],covet:[],sing:[]}}, + prinplup:{learnset:{aerialace:["6M"],attract:["6M"],bide:["6L0"],blizzard:["6M"],brickbreak:["6M"],brine:["6L0"],bubble:["6L0"],bubblebeam:["6L0"],captivate:[],cut:["6M"],defog:[],dig:["6M"],dive:["6M"],doubleteam:["6M"],drillpeck:["6L0"],echoedvoice:["6M"],endure:[],facade:["6M"],fling:["6M"],frustration:["6M"],furyattack:["6L0"],grassknot:["6M"],growl:["6L0"],hail:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hydropump:["6L0"],icebeam:["6M"],icywind:[],metalclaw:["6L0"],mist:["6L0"],mudslap:[],naturalgift:[],peck:["6L0"],pluck:[],protect:["6M"],quash:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],secretpower:[],shadowclaw:["6M"],signalbeam:[],sleeptalk:["6M"],snore:[],stealthrock:[],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],tackle:["6L0"],toxic:["6M"],waterfall:["6M"],waterpledge:["6T"],waterpulse:[],watersport:["6L0"],whirlpool:["6L0"],covet:[]}}, + empoleon:{learnset:{aerialace:["6M"],aquajet:["6L0"],attract:["6M"],avalanche:[],blizzard:["6M"],brickbreak:["6M"],brine:["6L0"],bubble:["6L0"],bubblebeam:["6L0"],bulldoze:["6M"],captivate:[],cut:["6M"],defog:[],dig:["6M"],dive:["6M"],doubleteam:["6M"],drillpeck:["6L0"],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],flashcannon:["6M"],fling:["6M"],frustration:["6M"],furyattack:["6L0"],furycutter:[],gigaimpact:["6M"],grassknot:["6M"],growl:["6L0"],hail:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hydrocannon:["6T"],hydropump:["6L0"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],irondefense:[],knockoff:[],metalclaw:["6L0"],mist:["6L0"],mudslap:[],naturalgift:[],peck:["6L0"],pluck:[],protect:["6M"],quash:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],secretpower:[],shadowclaw:["6M"],signalbeam:[],sleeptalk:["6M"],snore:[],stealthrock:[],steelwing:[],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],tackle:["6L0"],toxic:["6M"],waterfall:["6M"],waterpledge:["6T"],waterpulse:[],whirlpool:["6L0"],covet:[]}}, + starly:{learnset:{aerialace:["6L25","6M"],agility:["6L33"],aircutter:[],astonish:["6E"],attract:["6M"],bravebird:["6L37"],captivate:[],defog:[],detect:["6E"],doubleedge:["6E"],doubleteam:["6L13","6M"],echoedvoice:["6M"],endeavor:["6L17"],endure:[],facade:["6M"],featherdance:["6E"],finalgambit:["6L41"],fly:["6M"],foresight:["6E"],frustration:["6M"],furyattack:["6E"],growl:["6L1"],heatwave:[],hiddenpower:["6M"],mudslap:[],naturalgift:[],ominouswind:[],pluck:[],protect:["6M"],pursuit:["6E"],quickattack:["6L5"],raindance:["6M"],rest:["6M"],"return":["6M"],revenge:["6E"],roost:["6M","6E"],round:["6M"],sandattack:["6E"],secretpower:[],sleeptalk:["6M"],snore:[],steelwing:["6M","6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwind:[],takedown:["6L29"],thief:["6M"],toxic:["6M"],twister:[],uproar:["6E"],uturn:["6M"],whirlwind:["6L21"],wingattack:["6L9"],workup:[],confide:["6M"]}}, + staravia:{learnset:{aerialace:["6L28","6M"],agility:["6L38"],aircutter:[],attract:["6M"],bravebird:["6L43"],captivate:[],defog:[],doubleteam:["6L13","6M"],echoedvoice:["6M"],endeavor:["6L18"],endure:[],facade:["6M"],featherdance:[],finalgambit:["6L48"],fly:["6M"],frustration:["6M"],growl:["6L1"],heatwave:[],hiddenpower:["6M"],mudslap:[],naturalgift:[],ominouswind:[],pluck:[],protect:["6M"],quickattack:["6L1","6L5"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roost:["6M"],round:["6M"],secretpower:[],sleeptalk:["6M"],snore:[],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwind:[],takedown:["6L33"],thief:["6M"],toxic:["6M"],twister:[],uturn:["6M"],whirlwind:["6L23"],wingattack:["6L9"],workup:[],confide:["6M"]}}, + staraptor:{learnset:{aerialace:["6L28","6M"],agility:["6L41"],aircutter:[],attract:["6M"],bravebird:["6L49"],captivate:[],closecombat:["6L34"],defog:[],doubleteam:["6L13","6M"],echoedvoice:["6M"],endeavor:["6L18"],endure:[],facade:["6M"],finalgambit:["6L57"],fly:["6M"],frustration:["6M"],gigaimpact:["6M"],growl:["6L1"],heatwave:[],hiddenpower:["6M"],hyperbeam:["6M"],mudslap:[],naturalgift:[],ominouswind:[],pluck:[],protect:["6M"],quickattack:["6L1","6L5"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roost:["6M"],round:["6M"],secretpower:[],skyattack:[],sleeptalk:["6M"],snore:[],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwind:[],takedown:["6L33"],thief:["6M"],toxic:["6M"],twister:[],uturn:["6M"],whirlwind:["6L23"],wingattack:["6L1","6L9"],workup:[],confide:["6M"]}}, + bidoof:{learnset:{amnesia:["6L29"],aquatail:["6E"],attract:["6M"],blizzard:["6M"],captivate:[],chargebeam:["6M"],curse:["6L45"],cut:["6M"],defensecurl:["6L9","6E"],dig:["6M"],doubleedge:["6E"],doubleteam:["6M"],echoedvoice:["6M"],endure:["6E"],facade:["6M"],frustration:["6M"],furycutter:[],furyswipes:["6E"],grassknot:["6M"],growl:["6L5","6E"],headbutt:["6L17"],hiddenpower:["6M"],hyperfang:["6L21"],icebeam:["6M"],icywind:[],irontail:[],lastresort:[],mudslap:[],naturalgift:[],odorsleuth:["6E"],pluck:[],protect:["6M"],quickattack:["6E"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockclimb:["6E"],rocksmash:["6M"],rollout:["6L13","6E"],round:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],skullbash:["6E"],sleeptalk:["6M","6E"],snore:[],stealthrock:[],substitute:["6M"],sunnyday:["6M"],superfang:["6L37"],superpower:["6L41"],swagger:["6M"],swift:[],tackle:["6L1","6E"],takedown:["6L33"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],watersport:["6E"],workup:[],yawn:["6L25"],covet:[],confide:["6M"]}}, + bibarel:{learnset:{amnesia:["6L33"],aquatail:[],attract:["6M"],blizzard:["6M"],bulldoze:["6M"],captivate:[],chargebeam:["6M"],curse:["6L53"],cut:["6M"],defensecurl:["6L9"],dig:["6M"],dive:[],doubleteam:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fling:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],grassknot:["6M"],growl:["6L1","6L5"],headbutt:["6L18"],hiddenpower:["6M"],hyperbeam:["6M"],hyperfang:["6L23"],icebeam:["6M"],icywind:[],irontail:[],lastresort:[],mudslap:[],naturalgift:[],pluck:[],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockclimb:[],rocksmash:["6M"],rollout:["6L13"],round:["6M"],scald:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],sleeptalk:["6M"],snore:[],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superfang:["6L43"],superpower:["6L48"],surf:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],takedown:["6L38"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],waterfall:["6M"],watergun:["6L15"],waterpulse:[],whirlpool:[],workup:[],yawn:["6L28"],covet:[],rototiller:["6L1"],confide:["6M"]}}, + kricketot:{learnset:{bide:["6L0"],bugbite:["6L0"],endeavor:[],growl:["6L0"],mudslap:[],snore:[],stringshot:[],strugglebug:["6L0"],uproar:[]}}, + kricketune:{learnset:{aerialace:["6M"],attract:["6M"],bide:["6L0"],brickbreak:["6M"],bugbite:[],bugbuzz:["6L0"],captivate:[],cut:["6M"],doubleteam:["6M"],echoedvoice:["6M"],endeavor:[],endure:[],facade:["6M"],falseswipe:["6M"],flash:["6M"],focusenergy:["6L0"],frustration:["6M"],furycutter:["6L0"],gigaimpact:["6M"],growl:["6L0"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],knockoff:[],leechlife:["6L0"],mudslap:[],naturalgift:[],nightslash:["6L0"],perishsong:["6L0"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],screech:["6L0"],secretpower:[],silverwind:[],sing:["6L0"],slash:["6L0"],sleeptalk:["6M"],snore:[],strength:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],taunt:["6M"],toxic:["6M"],uproar:[],xscissor:["6M"],hypervoice:[],healbell:[],fellstinger:["6L0"]}}, + shinx:{learnset:{attract:["6M"],bite:["6L17"],captivate:[],charge:["6L9"],chargebeam:["6M"],crunch:["6L33"],discharge:["6L41"],doublekick:["6E"],doubleteam:["6M"],endure:[],facade:["6M"],firefang:["6E"],flash:["6M"],frustration:["6M"],furycutter:[],headbutt:[],helpinghand:["6E"],hiddenpower:["6M"],howl:["6E"],icefang:["6E"],irontail:[],leer:["6L5"],lightscreen:["6M"],magnetrise:[],mudslap:[],naturalgift:[],nightslash:["6E"],protect:["6M"],quickattack:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6L21","6M"],round:["6M"],scaryface:["6L37"],secretpower:[],shockwave:["6E"],signalbeam:["6E"],sleeptalk:["6M"],snarl:["6M"],snore:[],spark:["6L13"],strength:["6M"],substitute:["6M"],swagger:["6L25","6M"],swift:["6E"],tackle:["6L1"],takedown:["6E"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderfang:["6L29","6E"],thunderwave:["6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6L45","6M"],babydolleyes:["6L11"],confide:["6M"]}}, + luxio:{learnset:{attract:["6M"],bite:["6L18"],captivate:[],charge:["6L9"],chargebeam:["6M"],crunch:["6L38"],discharge:["6L48"],doubleteam:["6M"],endure:[],facade:["6M"],flash:["6M"],frustration:["6M"],furycutter:[],headbutt:[],hiddenpower:["6M"],irontail:[],leer:["6L1","6L5"],lightscreen:["6M"],magnetrise:[],mudslap:[],naturalgift:[],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6L23","6M"],round:["6M"],scaryface:["6L43"],secretpower:[],shockwave:[],signalbeam:[],sleeptalk:["6M"],snarl:["6M"],snore:[],spark:["6L13"],strength:["6M"],substitute:["6M"],swagger:["6L28","6M"],swift:[],tackle:["6L1"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderfang:["6L33"],thunderwave:["6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6L53","6M"],confide:["6M"]}}, + luxray:{learnset:{attract:["6M"],bite:["6L18"],captivate:[],charge:["6L1","6L9"],chargebeam:["6M"],crunch:["6L42"],discharge:["6L56"],doubleteam:["6M"],endure:[],facade:["6M"],flash:["6M"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],irontail:[],leer:["6L1","6L5"],lightscreen:["6M"],magnetrise:[],mudslap:[],naturalgift:[],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6L23","6M"],round:["6M"],scaryface:["6L49"],secretpower:[],shockwave:[],signalbeam:[],sleeptalk:["6M"],snarl:["6M"],snore:[],spark:["6L13"],strength:["6M"],substitute:["6M"],superpower:[],swagger:["6L28","6M"],swift:[],tackle:["6L1"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderfang:["6L35"],thunderwave:["6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6L63","6M"],electricterrain:["6L1","6L67"],confide:["6M"]}}, + cranidos:{learnset:{ancientpower:["6L33"],assurance:["6L24"],attract:["6M"],blizzard:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L28"],crunch:["6E"],curse:["6E"],dig:["6M"],doubleedge:["6E"],doubleteam:["6M"],dragonpulse:[],earthpower:[],earthquake:["6M"],endeavor:[],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusenergy:["6L6"],frustration:["6M"],hammerarm:["6E"],headbutt:["6L1"],headsmash:["6L46"],hiddenpower:["6M"],icebeam:["6M"],incinerate:["6M"],ironhead:["6E"],irontail:["6E"],leer:["6L1","6E"],mudslap:[],naturalgift:[],payback:["6M"],protect:["6M"],pursuit:["6L10"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scaryface:["6L19"],screech:["6L42"],secretpower:[],shockwave:[],slam:["6E"],sleeptalk:["6M"],smackdown:["6M"],snore:[],spite:[],stealthrock:[],stomp:["6E"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],swordsdance:["6M"],takedown:["6L15"],thief:["6M"],thrash:["6E"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],uproar:[],whirlwind:["6E"],zenheadbutt:["6L37"],poweruppunch:["6M"],confide:["6M"]}}, + rampardos:{learnset:{ancientpower:["6L36"],assurance:["6L24"],attract:["6M"],avalanche:[],blizzard:["6M"],brickbreak:["6M"],bulldoze:["6M"],captivate:[],chipaway:["6L28"],cut:["6M"],dig:["6M"],doubleteam:["6M"],dragonpulse:[],dragontail:["6M"],earthpower:[],earthquake:["6M"],endeavor:["6L30"],endure:[],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focusenergy:["6L6"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],headbutt:["6L1"],headsmash:["6L58"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],incinerate:["6M"],ironhead:[],irontail:[],leer:["6L1"],mudslap:[],naturalgift:[],outrage:[],painsplit:[],payback:["6M"],protect:["6M"],pursuit:["6L10"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scaryface:["6L19"],screech:["6L51"],secretpower:[],shockwave:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],spite:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],surf:["6M"],swagger:["6M"],swordsdance:["6M"],takedown:["6L15"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],toxic:["6M"],uproar:[],whirlpool:[],zenheadbutt:["6L43"],poweruppunch:["6M"],confide:["6M"]}}, + shieldon:{learnset:{ancientpower:["6L28"],attract:["6M"],blizzard:["6M"],bodyslam:["6E"],bulldoze:["6M"],captivate:[],counter:["6E"],curse:["6E"],dig:["6M"],doubleedge:["6E"],doubleteam:["6M"],earthpower:[],earthquake:["6M"],endure:["6L33"],facade:["6M"],fireblast:["6M"],fissure:["6E"],flamethrower:["6M"],flashcannon:["6M"],focusenergy:["6E"],frustration:["6M"],headbutt:["6E"],heavyslam:["6L46"],hiddenpower:["6M"],icebeam:["6M"],incinerate:["6M"],irondefense:["6L19"],ironhead:["6L42"],irontail:[],magnetrise:[],metalburst:["6L37"],metalsound:["6L10"],mudslap:[],naturalgift:[],protect:["6L1","6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockblast:["6E"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scaryface:["6E"],screech:["6E"],secretpower:[],shockwave:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],stealthrock:["6E"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6L24","6M"],tackle:["6L1"],takedown:["6L15"],taunt:["6L6","6M"],thunder:["6M"],thunderbolt:["6M"],torment:["6M"],toxic:["6M"],wideguard:["6E"],confide:["6M"]}}, + bastiodon:{learnset:{ancientpower:["6L28"],attract:["6M"],avalanche:[],blizzard:["6M"],block:["6L30"],bulldoze:["6M"],captivate:[],dig:["6M"],doubleteam:["6M"],earthpower:[],earthquake:["6M"],endure:["6L36"],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flashcannon:["6M"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],heavyslam:["6L58"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],incinerate:["6M"],irondefense:["6L19"],ironhead:["6L51"],irontail:[],magiccoat:[],magnetrise:[],metalburst:["6L43"],metalsound:["6L1","6L10"],mudslap:[],naturalgift:[],outrage:[],protect:["6L1","6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],secretpower:[],shockwave:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6L24","6M"],tackle:["6L1"],takedown:["6L15"],taunt:["6L1","6L6","6M"],thunder:["6M"],thunderbolt:["6M"],torment:["6M"],toxic:["6M"],confide:["6M"]}}, + burmy:{learnset:{bugbite:["6L15"],hiddenpower:["6L20","6M"],protect:["6L1","6M","6M"],snore:[],stringshot:[],tackle:["6L10"],electroweb:[],toxic:["6M"],venoshock:["6M"],sunnyday:["6M"],raindance:["6M"],"return":["6M"],flash:["6M","6M"],attract:["6M"],strugglebug:["6M"],infestation:["6M"]}}, + wormadam:{learnset:{attract:["6L41","6M"],bugbite:["6L15"],bulletseed:[],captivate:["6L35"],confusion:["6L23"],doubleteam:["6M"],dreameater:["6M"],endeavor:[],endure:[],energyball:["6M"],facade:["6M"],flail:["6L38"],flash:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],growth:["6L29"],hiddenpower:["6L20","6M"],hyperbeam:["6M"],leafstorm:["6L47"],naturalgift:[],protect:["6L10","6M"],psybeam:["6L32"],psychic:["6L44","6M"],psychup:["6M"],raindance:["6M"],razorleaf:["6L26"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:[],shadowball:["6M"],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],synthesis:[],tackle:["6L1"],thief:["6M"],toxic:["6M"],uproar:[],venoshock:["6M"],worryseed:[],electroweb:[],infestation:["6M"],confide:["6M"]}}, + wormadamsandy:{learnset:{attract:["6L41","6M"],bugbite:["6L15"],bulldoze:["6M"],captivate:["6L35"],confusion:["6L23"],dig:["6M"],doubleteam:["6M"],dreameater:["6M"],earthpower:[],earthquake:["6M"],endeavor:[],endure:[],facade:["6M"],fissure:["6L47"],flail:["6L38"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],harden:["6L29"],hiddenpower:["6L20","6M"],hyperbeam:["6M"],mudslap:[],naturalgift:[],protect:["6L10","6M"],psybeam:["6L32"],psychic:["6L44","6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockblast:["6L26"],rocktomb:["6M"],rollout:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],shadowball:["6M"],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],stringshot:[],strugglebug:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],thief:["6M"],toxic:["6M"],uproar:[],venoshock:["6M"],electroweb:[],stealthrock:[],infestation:["6M"],confide:["6M"]}}, + wormadamtrash:{learnset:{attract:["6L41","6M"],bugbite:["6L15"],captivate:["6L35"],confusion:["6L23"],doubleteam:["6M"],dreameater:["6M"],endeavor:[],endure:[],facade:["6M"],flail:["6L38"],flash:["6M"],flashcannon:["6M"],frustration:["6M"],gigaimpact:["6M"],gunkshot:[],gyroball:["6M"],hiddenpower:["6L20","6M"],hyperbeam:["6M"],irondefense:[],ironhead:["6L47"],magnetrise:[],metalsound:["6L29"],mirrorshot:["6L26"],naturalgift:[],protect:["6L10","6M"],psybeam:["6L32"],psychic:["6L44","6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],stealthrock:[],stringshot:[],strugglebug:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],thief:["6M"],toxic:["6M"],uproar:[],venoshock:["6M"],electroweb:[],infestation:["6M"],confide:["6M"]}}, + mothim:{learnset:{acrobatics:["6M"],aerialace:["6M"],aircutter:[],airslash:["6L41"],attract:["6M"],bugbite:["6L15"],bugbuzz:["6L47"],camouflage:["6L35"],captivate:[],confusion:["6L23"],defog:[],doubleteam:["6M"],dreameater:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],gust:["6L26"],hiddenpower:["6L20","6M"],hyperbeam:["6M"],mudslap:[],naturalgift:[],ominouswind:[],poisonpowder:["6L29"],protect:["6L10","6M"],psybeam:["6L32"],psychic:["6L44","6M"],psychup:["6M"],quiverdance:["6L50"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],signalbeam:[],silverwind:["6L38"],skillswap:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],tailwind:[],thief:["6M"],toxic:["6M"],twister:[],uturn:["6M"],venoshock:["6M"],electroweb:[],infestation:["6M"],confide:["6M"]}}, + combee:{learnset:{aircutter:[],bugbite:["6L13"],bugbuzz:["6L29"],endeavor:[],gust:["6L1"],mudslap:[],ominouswind:[],snore:[],stringshot:[],sweetscent:["6L1"],swift:[],tailwind:[]}}, + vespiquen:{learnset:{acrobatics:["6M"],aerialace:["6M"],aircutter:[],airslash:["6L37"],attackorder:["6L45"],attract:["6M"],bugbite:[],captivate:["6L41"],confuseray:["6L1"],cut:["6M"],defendorder:["6L17"],defog:[],destinybond:["6L1","6L53"],doubleteam:["6M"],endeavor:[],endure:[],facade:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],furycutter:["6L5"],furyswipes:["6L13"],gigaimpact:["6M"],gust:["6L1"],healorder:["6L29"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],mudslap:[],naturalgift:[],ominouswind:[],poisonsting:["6L1"],powergem:["6L25"],protect:["6M"],pursuit:["6L9"],quash:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],secretpower:[],signalbeam:[],silverwind:[],slash:["6L21"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],stringshot:[],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6L49","6M"],sweetscent:["6L1"],swift:[],tailwind:[],thief:["6M"],toxic:["6L33","6M"],uturn:["6M"],venoshock:["6M"],xscissor:["6M"],fellstinger:["6L1","6L57"],infestation:["6M"],confide:["6M"]}}, + pachirisu:{learnset:{attract:["6M"],bestow:["6E"],bide:["6L1"],bite:["6E"],captivate:[],charge:["6E"],chargebeam:["6M"],charm:["6L9"],covet:["6E"],cut:["6M"],defensecurl:["6E"],dig:["6M"],discharge:["6L41"],doubleteam:["6M"],echoedvoice:["6M"],electroball:["6L25"],endure:["6L17"],facade:["6M"],faketears:["6E"],flail:["6E"],flash:["6M"],flatter:["6E"],fling:["6M"],followme:["6E"],frustration:["6M"],grassknot:["6M"],growl:["6L1"],gunkshot:[],headbutt:[],helpinghand:[],hiddenpower:["6M"],hyperfang:["6L49"],irontail:["6E"],lastresort:["6L45"],lightscreen:["6M"],magnetrise:[],mudslap:[],naturalgift:[],protect:["6M"],quickattack:["6L5"],raindance:["6M"],rest:["6M"],"return":["6M"],rollout:["6E"],round:["6M"],secretpower:[],seedbomb:[],shockwave:[],sleeptalk:["6M"],snore:[],spark:["6L13"],substitute:["6M"],superfang:["6L37"],swagger:["6M"],sweetkiss:["6L29"],swift:["6L21"],tailwhip:["6E"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6L33","6M"],toxic:["6M"],uproar:[],uturn:["6M"],voltswitch:["6M"],nuzzle:["6L19"],confide:["6M"]}}, + buizel:{learnset:{agility:["6L41"],aquajet:["6L24"],aquaring:["6E"],aquatail:["6L38","6E"],attract:["6M"],batonpass:["6E"],blizzard:["6M"],brickbreak:["6M"],brine:[],bulkup:["6M"],captivate:[],dig:["6M"],dive:[],doublehit:["6L27"],doubleslap:["6E"],doubleteam:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],focuspunch:[],frustration:["6M"],furycutter:["6E"],furyswipes:["6E"],growl:["6L4"],hail:["6M"],headbutt:["6E"],hiddenpower:["6M"],hydropump:["6L45"],icebeam:["6M"],icepunch:[],icywind:[],irontail:[],mefirst:["6E"],mudslap:["6E"],naturalgift:[],odorsleuth:["6E"],protect:["6M"],pursuit:["6L18"],quickattack:["6L11"],raindance:["6M"],razorwind:["6L35"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],secretpower:[],slash:["6E"],sleeptalk:["6M"],snore:[],sonicboom:["6L1"],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:["6L21"],switcheroo:["6E"],tailslap:["6E"],toxic:["6M"],waterfall:["6M"],watergun:["6L15"],waterpulse:[],watersport:["6L7"],whirlpool:["6L31"],poweruppunch:["6M"],confide:["6M"]}}, + floatzel:{learnset:{agility:["6L51"],aquajet:["6L24"],aquatail:["6L46"],attract:["6M"],blizzard:["6M"],brickbreak:["6M"],brine:[],bulkup:["6M"],captivate:[],crunch:["6L1"],dig:["6M"],dive:[],doublehit:["6L29"],doubleteam:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],growl:["6L1","6L4"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hydropump:["6L57"],hyperbeam:["6M"],icebeam:["6M"],icefang:["6L1"],icepunch:[],icywind:[],irontail:[],mudslap:[],naturalgift:[],payback:["6M"],protect:["6M"],pursuit:["6L18"],quickattack:["6L1","6L11"],raindance:["6M"],razorwind:["6L41"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scald:["6M"],secretpower:[],sleeptalk:["6M"],snore:[],sonicboom:["6L1"],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:["6L21"],taunt:["6M"],torment:["6M"],toxic:["6M"],waterfall:["6M"],watergun:["6L15"],waterpulse:[],watersport:["6L1","6L7"],whirlpool:["6L35"],lowkick:[],poweruppunch:["6M"],confide:["6M"]}}, + cherubi:{learnset:{aromatherapy:["6E"],attract:["6M"],bulletseed:[],captivate:[],defensecurl:["6E"],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:[],grassknot:["6M"],grasswhistle:["6E"],growth:["6L0"],healingwish:["6E"],healpulse:["6E"],helpinghand:["6L0"],hiddenpower:["6M"],leechseed:["6L0"],luckychant:["6L0"],magicalleaf:["6L0"],morningsun:["6L0"],naturalgift:["6E"],naturepower:["6E"],protect:["6M"],razorleaf:["6E"],rest:["6M"],"return":["6M"],rollout:["6E"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:["6E"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6E"],swordsdance:["6M"],synthesis:[],tackle:["6L0"],takedown:["6L0"],tickle:["6E"],toxic:["6M"],weatherball:["6E"],worryseed:["6L0"]}}, + cherrim:{learnset:{attract:["6M"],bulletseed:[],captivate:[],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],growth:["6L0"],helpinghand:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],leechseed:["6L0"],luckychant:["6L0"],magicalleaf:["6L0"],morningsun:["6L0"],naturalgift:[],petaldance:["6L0"],protect:["6M"],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],synthesis:[],tackle:["6L0"],takedown:["6L0"],toxic:["6M"],worryseed:["6L0"]}}, + shellos:{learnset:{amnesia:["6E"],ancientpower:[],attract:["6M"],blizzard:["6M"],bodyslam:["6L29"],brine:["6E"],captivate:[],clearsmog:["6E"],counter:["6E"],curse:["6E"],dive:[],doubleteam:["6M"],earthpower:[],endure:[],facade:["6M"],fissure:["6E"],frustration:["6M"],hail:["6M"],harden:["6L4"],headbutt:[],hiddenpower:["6L16","6M"],icebeam:["6M"],icywind:[],memento:["6E"],mirrorcoat:["6E"],mist:["6E"],mudbomb:["6L11"],muddywater:["6L37"],mudslap:["6L1"],mudsport:["6L2"],naturalgift:[],painsplit:[],protect:["6M"],raindance:["6L22","6M"],recover:["6L46"],rest:["6M"],"return":["6M"],round:["6M"],scald:["6M"],secretpower:[],sleeptalk:["6M"],sludge:["6E"],snore:[],spitup:["6E"],stockpile:["6E"],stringshot:[],substitute:["6M"],surf:["6M"],swagger:["6M"],swallow:["6E"],toxic:["6M"],trumpcard:["6E"],waterpulse:["6L7"],whirlpool:[],yawn:["6E"],infestation:["6M"],confide:["6M"],acidarmor:["6E"]}}, + gastrodon:{learnset:{ancientpower:[],attract:["6M"],blizzard:["6M"],block:[],bodyslam:["6L29"],brine:[],bulldoze:["6M"],captivate:[],dig:["6M"],dive:[],doubleteam:["6M"],earthpower:[],earthquake:["6M"],endure:[],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],harden:["6L1","6L4"],headbutt:[],hiddenpower:["6L16","6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],mudbomb:["6L11"],muddywater:["6L41"],mudslap:["6L1"],mudsport:["6L1","6L2"],naturalgift:[],painsplit:[],protect:["6M"],raindance:["6L22","6M"],recover:["6L54"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scald:["6M"],secretpower:[],sleeptalk:["6M"],sludgebomb:["6M"],sludgewave:["6M"],snore:[],stoneedge:["6M"],strength:["6M"],stringshot:[],substitute:["6M"],surf:["6M"],swagger:["6M"],toxic:["6M"],waterfall:["6M"],waterpulse:["6L1","6L7"],whirlpool:[],infestation:["6M"],confide:["6M"]}}, + drifloon:{learnset:{acrobatics:["6M"],aircutter:[],amnesia:["6L40"],astonish:["6L4"],attract:["6M"],batonpass:["6L44"],bodyslam:["6E"],calmmind:["6M"],captivate:[],chargebeam:["6M"],clearsmog:["6E"],constrict:["6L1"],cut:["6M"],defog:["6E"],destinybond:["6E"],disable:["6E"],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],endure:[],explosion:["6L50","6M"],facade:["6M"],flash:["6M"],focusenergy:["6L13"],frustration:["6M"],gust:["6L8"],gyroball:["6M"],haze:["6E"],hex:["6L27"],hiddenpower:["6M"],hypnosis:["6E"],icywind:[],knockoff:[],magiccoat:[],memento:["6E"],minimize:["6L1"],mudslap:[],naturalgift:[],ominouswind:["6L20"],painsplit:[],payback:["6L16","6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],recycle:[],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],secretpower:[],shadowball:["6L36","6M"],shockwave:[],silverwind:[],skillswap:[],sleeptalk:["6M"],snore:[],spite:[],spitup:["6L32"],stockpile:["6L25"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swallow:["6L32"],swift:[],tailwind:[],telekinesis:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trick:[],weatherball:["6E"],willowisp:["6M"],bind:[],confide:["6M"]}}, + drifblim:{learnset:{acrobatics:["6M"],aircutter:[],amnesia:["6L46"],astonish:["6L1","6L4"],attract:["6M"],batonpass:["6L52"],calmmind:["6M"],captivate:[],chargebeam:["6M"],constrict:["6L1"],cut:["6M"],defog:[],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],endure:[],explosion:["6L60","6M"],facade:["6M"],flash:["6M"],fly:["6M"],focusenergy:["6L13"],frustration:["6M"],gigaimpact:["6M"],gust:["6L1","6L8"],gyroball:["6M"],hex:["6L27"],hiddenpower:["6M"],hyperbeam:["6M"],icywind:[],knockoff:[],magiccoat:[],minimize:["6L1"],mudslap:[],naturalgift:[],ominouswind:["6L20"],painsplit:[],payback:["6L16","6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],recycle:[],rest:["6M"],"return":["6M"],rollout:[],round:["6M"],secretpower:[],shadowball:["6L40","6M"],shockwave:[],silverwind:[],skillswap:[],sleeptalk:["6M"],snore:[],spite:[],spitup:["6L34"],stockpile:["6L25"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swallow:["6L34"],swift:[],tailwind:[],telekinesis:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trick:[],willowisp:["6M"],bind:[],phantomforce:["6L1","6L65"],confide:["6M"]}}, + buneary:{learnset:{afteryou:["6L0"],agility:["6L0"],attract:["6M"],batonpass:["6L0"],bounce:["6L0"],captivate:[],chargebeam:["6M"],charm:["6L0"],circlethrow:["6E"],copycat:["6E"],cut:["6M"],defensecurl:["6L0"],dig:["6M"],dizzypunch:["6L0"],doublehit:["6E"],doubleteam:["6M"],drainpunch:[],encore:["6E"],endeavor:[],endure:["6L0"],entrainment:["6L0"],facade:["6M"],fakeout:["6E"],faketears:["6E"],firepunch:["6E"],flail:["6E"],fling:["6M"],focuspunch:["6E"],foresight:["6L0"],frustration:["6M"],grassknot:["6M"],headbutt:[],healbell:[],healingwish:["6L0"],helpinghand:[],hiddenpower:["6M"],icebeam:["6M"],icepunch:["6E"],irontail:[],jumpkick:["6L0"],lastresort:[],lowkick:["6E"],magiccoat:[],mudslap:[],naturalgift:[],pound:["6L0"],protect:["6M"],quickattack:["6L0"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],skyuppercut:["6E"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],splash:["6L0"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetkiss:["6E"],swift:[],switcheroo:["6E"],thunderbolt:["6M"],thunderpunch:["6E"],thunderwave:["6M"],toxic:["6M"],uproar:[],waterpulse:[],workup:[],covet:[],hypervoice:[]}}, + lopunny:{learnset:{afteryou:["6L0"],agility:["6L0"],attract:["6M"],batonpass:["6L0"],blizzard:["6M"],bounce:["6L0"],captivate:[],chargebeam:["6M"],charm:["6L0"],cut:["6M"],defensecurl:["6L0"],dig:["6M"],dizzypunch:["6L0"],doubleteam:["6M"],drainpunch:[],endeavor:[],endure:["6L0"],entrainment:["6L0"],facade:["6M"],firepunch:[],fling:["6M"],focusblast:["6M"],focuspunch:[],foresight:["6L0"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],grassknot:["6M"],headbutt:[],healbell:[],healingwish:["6L0"],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],irontail:[],jumpkick:["6L0"],lastresort:[],lowkick:[],lowsweep:["6M"],magiccoat:["6L0"],mirrorcoat:["6L0"],mudslap:[],naturalgift:[],pound:["6L0"],protect:["6M"],quickattack:["6L0"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],splash:["6L0"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],uproar:[],waterpulse:[],workup:[],covet:[],hypervoice:[]}}, + glameow:{learnset:{aerialace:["6M"],assist:["6L0"],assurance:["6E"],attract:["6M"],bite:["6E"],captivate:["6L0"],charm:["6L0"],cut:["6M"],dig:["6M"],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],feintattack:["6L0"],fakeout:["6L0"],faketears:["6E"],flail:["6E"],flash:["6M"],frustration:["6M"],furycutter:[],furyswipes:["6L0"],growl:["6L0"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hypnosis:["6L0"],irontail:[],knockoff:[],lastresort:["6E"],mudslap:[],naturalgift:[],payback:["6M"],protect:["6M"],psychup:["6M"],quickattack:["6E"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],round:["6M"],sandattack:["6E"],scratch:["6L0"],secretpower:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],slash:["6L0"],sleeptalk:["6M"],snatch:["6E"],snore:[],substitute:["6M"],suckerpunch:["6L0"],sunnyday:["6M"],superfang:[],swagger:["6M"],swift:[],tailwhip:["6E"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],torment:["6M"],toxic:["6M"],uturn:["6M"],wakeupslap:["6E"],waterpulse:[],workup:[],covet:[],foulplay:[],hypervoice:[]}}, + purugly:{learnset:{aerialace:["6M"],assist:["6L0"],attract:["6M"],bodyslam:["6L0"],bulldoze:["6M"],captivate:["6L0"],charm:["6L0"],cut:["6M"],dig:["6M"],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],feintattack:["6L0"],fakeout:["6L0"],flash:["6M"],frustration:["6M"],furycutter:[],furyswipes:["6L0"],gigaimpact:["6M"],growl:["6L0"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],hypnosis:["6L0"],irontail:[],knockoff:[],lastresort:[],mudslap:[],naturalgift:[],payback:["6M"],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rollout:[],round:["6M"],scratch:["6L0"],secretpower:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],slash:["6L0"],sleeptalk:["6M"],snatch:[],snore:[],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],superfang:[],swagger:["6M"],swift:[],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],torment:["6M"],toxic:["6M"],uturn:["6M"],waterpulse:[],workup:[],covet:[],foulplay:[],hypervoice:[]}}, + stunky:{learnset:{acidspray:["6L32"],astonish:["6E"],attract:["6M"],captivate:[],crunch:["6E"],cut:["6M"],darkpulse:["6M"],defog:[],dig:["6M"],doubleedge:["6E"],doubleteam:["6M"],endure:[],explosion:["6L49","6M"],facade:["6M"],feint:["6L18"],fireblast:["6M"],flameburst:["6E"],flamethrower:["6M"],focusenergy:["6L1"],foulplay:["6E"],frustration:["6M"],furycutter:[],furyswipes:["6L10"],haze:["6E"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],incinerate:["6M"],irontail:["6E"],leer:["6E"],memento:["6L43"],mudslap:[],naturalgift:[],nightslash:["6L37"],payback:["6M"],poisongas:["6L4"],protect:["6M"],punishment:["6E"],pursuit:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],round:["6M"],scaryface:["6E"],scratch:["6L1"],screech:["6L7"],secretpower:[],shadowball:["6M"],shadowclaw:["6M"],slash:["6L22"],sleeptalk:["6M"],sludgebomb:["6M"],smog:["6E"],smokescreen:["6L14"],snarl:["6M"],snatch:[],snore:[],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swift:[],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6L27","6M"],venoshock:["6M"],belch:["6L46"],confide:["6M"],playrough:["6E"]}}, + skuntank:{learnset:{acidspray:["6L32"],attract:["6M"],captivate:[],cut:["6M"],darkpulse:["6M"],defog:[],dig:["6M"],doubleteam:["6M"],endure:[],explosion:["6L61","6M"],facade:["6M"],feint:["6L18"],fireblast:["6M"],flamethrower:["6L34","6M"],focusenergy:["6L1"],frustration:["6M"],furycutter:[],furyswipes:["6L10"],gigaimpact:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],incinerate:["6M"],irontail:[],memento:["6L51"],mudslap:[],naturalgift:[],nightslash:["6L41"],payback:["6M"],poisongas:["6L1","6L4"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],round:["6M"],scratch:["6L1"],screech:["6L7"],secretpower:[],shadowball:["6M"],shadowclaw:["6M"],slash:["6L22"],sleeptalk:["6M"],sludgebomb:["6M"],smokescreen:["6L14"],snarl:["6M"],snatch:[],snore:[],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swift:[],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6L27","6M"],venoshock:["6M"],foulplay:[],belch:["6L56"],confide:["6M"]}}, + bronzor:{learnset:{ancientpower:[],bulldoze:["6M"],calmmind:["6M"],chargebeam:["6M"],confuseray:["6L11"],confusion:["6L1"],doubleteam:["6M"],dreameater:["6M"],earthquake:["6M"],endure:[],extrasensory:["6L39"],facade:["6M"],feintattack:["6L21"],flash:["6M"],flashcannon:["6M"],frustration:["6M"],futuresight:["6L29"],grassknot:["6M"],gravity:[],gyroball:["6L35","6M"],healblock:["6L45"],heavyslam:["6L49"],hiddenpower:["6M"],hypnosis:["6L5"],imprison:["6L9"],irondefense:["6L19"],lightscreen:["6M"],metalsound:["6L31"],naturalgift:[],payback:["6L41","6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],psywave:["6L15"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],safeguard:["6L25","6M"],sandstorm:["6M"],secretpower:[],shadowball:["6M"],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stealthrock:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],telekinesis:[],toxic:["6M"],trick:[],trickroom:["6M"],wonderroom:[],confide:["6M"]}}, + bronzong:{learnset:{ancientpower:[],block:["6L33"],bulldoze:["6M"],calmmind:["6M"],chargebeam:["6M"],confuseray:["6L11"],confusion:["6L1"],doubleteam:["6M"],dreameater:["6M"],earthquake:["6M"],endure:[],explosion:["6M"],extrasensory:["6L42"],facade:["6M"],feintattack:["6L21"],flash:["6M"],flashcannon:["6M"],frustration:["6M"],futuresight:["6L29"],gigaimpact:["6M"],grassknot:["6M"],gravity:[],gyroball:["6L36","6M"],healblock:["6L52"],heavyslam:["6L58"],hiddenpower:["6M"],hyperbeam:["6M"],hypnosis:["6L1","6L5"],imprison:["6L1","6L9"],irondefense:["6L19"],ironhead:[],lightscreen:["6M"],metalsound:["6L31"],naturalgift:[],payback:["6L46","6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],psywave:["6L15"],raindance:["6L1","6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:[],round:["6M"],safeguard:["6L25","6M"],sandstorm:["6M"],secretpower:[],shadowball:["6M"],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stealthrock:[],strength:["6M"],substitute:["6M"],sunnyday:["6L1","6M"],swagger:["6M"],tackle:["6L1"],telekinesis:[],toxic:["6M"],trick:[],trickroom:["6M"],zenheadbutt:[],wonderroom:[],confide:["6M"]}}, + chatot:{learnset:{aerialace:["6M"],agility:["6E"],aircutter:["6E"],attract:["6M"],captivate:[],chatter:["6L1","6L21"],defog:["6E"],doubleteam:["6M"],echoedvoice:["6L37","6M"],encore:["6E"],endure:[],facade:["6M"],featherdance:["6L50"],fly:["6M"],frustration:["6M"],furyattack:["6L17"],growl:["6L5"],heatwave:[],hiddenpower:["6M"],hypervoice:["6L1","6L57"],mimic:["6L33"],mirrormove:["6L9"],mudslap:[],nastyplot:["6E"],naturalgift:[],nightshade:["6E"],ominouswind:[],peck:["6L1"],pluck:[],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roleplay:[],roost:["6L41","6M"],round:["6L29","6M"],secretpower:[],sing:["6L13"],skyattack:[],sleeptalk:["6M","6E"],snore:[],steelwing:["6M","6E"],substitute:["6M"],sunnyday:["6M"],supersonic:["6E"],swagger:["6M"],swift:[],synchronoise:["6L49"],tailwind:[],taunt:["6L1","6L25","6M"],thief:["6M"],torment:["6M"],toxic:["6M"],twister:[],uproar:["6L45"],uturn:["6M"],workup:[],confide:["6L1","6M"],boomburst:["6E"]}}, + spiritomb:{learnset:{attract:["6M"],calmmind:["6M"],captivate:["6E"],confuseray:["6L1"],curse:["6L1"],darkpulse:["6L49","6M"],destinybond:["6E"],doubleteam:["6M"],dreameater:["6L19","6M"],embargo:["6M"],endure:[],facade:["6M"],feintattack:["6L7"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],grudge:["6E"],hiddenpower:["6M"],hyperbeam:["6M"],hypnosis:["6L13"],icywind:[],imprison:["6E"],memento:["6L43"],nastyplot:["6L37"],naturalgift:[],nightmare:["6E"],ominouswind:["6L25"],painsplit:["6E"],protect:["6M"],psychic:["6M"],psychup:["6M"],pursuit:["6L1"],quash:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocktomb:["6M"],round:["6M"],secretpower:[],shadowball:["6M"],shadowsneak:["6L1","6E"],shockwave:[],silverwind:[],sleeptalk:["6M"],smokescreen:["6E"],snarl:["6M"],snatch:[],snore:[],spite:["6L1"],substitute:["6M"],suckerpunch:["6L31"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],torment:["6M"],toxic:["6M"],trick:[],uproar:[],waterpulse:[],willowisp:["6M"],foulplay:[],wonderroom:[],infestation:["6M"],confide:["6M"]}}, + gible:{learnset:{aerialace:["6M"],attract:["6M"],bodyslam:["6E"],bulldoze:["6M"],captivate:[],cut:["6M"],dig:["6L31","6M"],doubleedge:["6E"],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6E"],dragonclaw:["6L27","6M"],dragonpulse:[],dragonrage:["6L7"],dragonrush:["6L37"],earthpower:[],earthquake:["6M"],endure:[],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],frustration:["6M"],furycutter:[],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],incinerate:["6M"],ironhead:["6E"],irontail:["6E"],metalclaw:["6E"],mudshot:["6E"],mudslap:[],naturalgift:[],outrage:["6E"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:["6E"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L3"],sandstorm:["6L13","6M"],sandtomb:["6L19","6E"],scaryface:["6E"],secretpower:[],shadowclaw:["6M"],slash:["6L25"],sleeptalk:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],takedown:["6L15"],thrash:["6E"],toxic:["6M"],twister:["6E"],confide:["6M"]}}, + gabite:{learnset:{aerialace:["6M"],attract:["6M"],bulldoze:["6M"],captivate:[],cut:["6M"],dig:["6L40","6M"],doubleteam:["6M"],dracometeor:["6T"],dragonclaw:["6L33","6M"],dragonpulse:[],dragonrage:["6L7"],dragonrush:["6L49"],dualchop:["6L24"],earthpower:[],earthquake:["6M"],endure:[],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],frustration:["6M"],furycutter:[],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],incinerate:["6M"],ironhead:[],irontail:[],mudslap:[],naturalgift:[],outrage:[],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L1","6L3"],sandstorm:["6L13","6M"],sandtomb:["6L19"],secretpower:[],shadowclaw:["6M"],slash:["6L28"],sleeptalk:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tackle:["6L1"],takedown:["6L15"],toxic:["6M"],twister:[],confide:["6M"]}}, + garchomp:{learnset:{aerialace:["6M"],aquatail:[],attract:["6M"],brickbreak:["6M"],bulldoze:["6M"],captivate:[],crunch:["6L48"],cut:["6M"],dig:["6L40","6M"],doubleteam:["6M"],dracometeor:["6T"],dragonclaw:["6L33","6M"],dragonpulse:[],dragonrage:["6L1","6L7"],dragonrush:["6L55"],dragontail:["6M"],dualchop:["6L24"],earthpower:[],earthquake:["6M"],endure:[],facade:["6M"],falseswipe:["6M"],fireblast:["6M"],firefang:["6L1"],flamethrower:["6M"],fling:["6M"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],incinerate:["6M"],ironhead:[],irontail:[],mudslap:[],naturalgift:[],outrage:[],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L1","6L3"],sandstorm:["6L1","6L13","6M"],sandtomb:["6L19"],secretpower:[],shadowclaw:["6M"],slash:["6L28"],sleeptalk:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],tackle:["6L1"],takedown:["6L15"],toxic:["6M"],twister:[],whirlpool:[],confide:["6M"]}}, + riolu:{learnset:{agility:["6E"],attract:["6M"],aurasphere:[],bite:["6E"],blazekick:["6E"],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],bulletpunch:["6E"],captivate:[],circlethrow:["6E"],copycat:["6L19"],counter:["6L6"],crosschop:["6E"],crunch:["6E"],detect:["6E"],dig:["6M"],doubleteam:["6M"],drainpunch:[],earthquake:["6M"],endure:["6L1"],facade:["6M"],feint:["6L11"],finalgambit:["6L50"],fling:["6M"],focusblast:["6M"],focuspunch:[],followme:["6E"],forcepalm:["6L15"],foresight:["6L1"],frustration:["6M"],furycutter:[],headbutt:[],helpinghand:[],hiddenpower:["6M"],highjumpkick:["6E"],icepunch:[],irondefense:["6E"],irontail:[],lowkick:["6E"],lowsweep:["6M"],magnetrise:[],mindreader:["6E"],mudslap:[],nastyplot:["6L47"],naturalgift:[],payback:["6M"],poisonjab:["6M"],protect:["6M"],quickattack:["6L1"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],reversal:["6L29"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],screech:["6L24"],secretpower:[],shadowclaw:["6M"],skyuppercut:["6E"],sleeptalk:["6M"],snore:[],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],thunderpunch:[],toxic:["6M"],vacuumwave:["6E"],workup:[],zenheadbutt:[],dualchop:[],poweruppunch:["6M"],confide:["6M"]}}, + lucario:{learnset:{attract:["6M"],aurasphere:["6L1","6L42"],blazekick:[],bonerush:["6L29"],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],bulletpunch:[],calmmind:["6L47","6M"],captivate:[],closecombat:["6L1","6L55"],counter:["6L6"],darkpulse:["6M"],detect:["6L1"],dig:["6M"],doubleteam:["6M"],dragonpulse:["6L1","6L60"],drainpunch:[],earthquake:["6M"],endure:[],extremespeed:["6L1","6L65"],facade:["6M"],feint:["6L11"],flashcannon:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],forcepalm:[],foresight:["6L1"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],headbutt:[],healpulse:["6L51"],helpinghand:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icepunch:[],irondefense:[],irontail:[],lowkick:[],lowsweep:["6M"],magnetrise:[],mefirst:["6L37"],metalclaw:["6L1"],metalsound:["6L24"],mudslap:[],naturalgift:[],payback:["6M"],poisonjab:["6M"],protect:["6M"],psychic:["6M"],quickattack:["6L1"],quickguard:["6L33"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],secretpower:[],shadowball:["6M"],shadowclaw:["6M"],sleeptalk:["6M"],snore:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6L19","6M"],thunderpunch:[],toxic:["6M"],vacuumwave:[],waterpulse:[],workup:[],zenheadbutt:[],dualchop:[],poweruppunch:["6L15","6M"],confide:["6M"]}}, + hippopotas:{learnset:{attract:["6M"],bite:["6L7"],bodyslam:["6E"],bulldoze:["6M"],captivate:[],crunch:["6L31"],curse:["6E"],dig:["6L19","6M"],doubleedge:["6L44"],doubleteam:["6M"],earthpower:[],earthquake:["6L37","6M"],endure:[],facade:["6M"],fissure:["6L50"],frustration:["6M"],headbutt:[],hiddenpower:["6M"],irontail:[],mudslap:[],naturalgift:[],protect:["6M"],rest:["6M"],"return":["6M"],revenge:["6E"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L1"],sandstorm:["6M"],sandtomb:["6L25","6E"],secretpower:[],slackoff:["6E"],sleeptalk:["6M","6E"],snore:[],spitup:["6E"],stealthrock:[],stockpile:["6E"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],swallow:["6E"],tackle:["6L1"],takedown:["6L19"],toxic:["6M"],waterpulse:[],whirlwind:["6E"],yawn:["6L13"],confide:["6M"]}}, + hippowdon:{learnset:{attract:["6M"],bite:["6L1","6L7"],bulldoze:["6M"],captivate:[],crunch:["6L31"],dig:["6L19","6M"],doubleedge:["6L50"],doubleteam:["6M"],earthpower:[],earthquake:["6L40","6M"],endure:[],facade:["6M"],firefang:["6L1"],fissure:["6L60"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icefang:["6L1"],ironhead:[],irontail:[],mudslap:[],naturalgift:[],protect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L1"],sandstorm:["6M"],sandtomb:["6L25"],secretpower:[],sleeptalk:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],tackle:["6L1"],takedown:["6L19"],thunderfang:["6L1"],toxic:["6M"],waterpulse:[],yawn:["6L1","6L13"],confide:["6M"]}}, + skorupi:{learnset:{acupressure:["6L13"],aerialace:["6M"],agility:["6E"],aquatail:[],attract:["6M"],bite:["6L1"],brickbreak:["6M"],bugbite:["6L20"],captivate:[],confuseray:["6E"],crosspoison:["6L49"],crunch:["6L45"],cut:["6M"],darkpulse:["6M"],dig:["6M"],doubleteam:["6M"],endure:[],facade:["6M"],feintattack:["6E"],falseswipe:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],furycutter:[],headbutt:[],hiddenpower:["6M"],honeclaws:["6L30","6M"],irontail:["6E"],knockoff:["6L5"],leer:["6L1"],mudslap:[],naturalgift:[],nightslash:["6L38","6E"],payback:["6M"],pinmissile:["6L9"],poisonfang:["6L23"],poisonjab:["6M"],poisonsting:["6L1"],poisontail:["6E"],protect:["6M"],pursuit:["6L16","6E"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6E"],scaryface:["6L41"],screech:["6E"],secretpower:[],shadowball:["6M"],slash:["6E"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],strength:["6M"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6M"],toxicspikes:["6L34"],twineedle:["6E"],venoshock:["6L27","6M"],whirlwind:["6E"],xscissor:["6M"],fellstinger:["6L47"],infestation:["6M"],confide:["6M"]}}, + drapion:{learnset:{acupressure:["6L13"],aerialace:["6M"],aquatail:[],attract:["6M"],bite:["6L1"],brickbreak:["6M"],bugbite:["6L20"],bulldoze:["6M"],captivate:[],crosspoison:["6L57"],crunch:["6L49"],cut:["6M"],darkpulse:["6M"],dig:["6M"],doubleteam:["6M"],earthquake:["6M"],endure:[],facade:["6M"],falseswipe:["6M"],firefang:["6L1"],flash:["6M"],fling:["6M"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],headbutt:[],hiddenpower:["6M"],honeclaws:["6L30","6M"],hyperbeam:["6M"],icefang:["6L1"],irontail:[],knockoff:["6L1","6L5"],leer:["6L1"],mudslap:[],naturalgift:[],nightslash:["6L38"],payback:["6M"],pinmissile:["6L9"],poisonfang:["6L23"],poisonjab:["6M"],poisonsting:["6L1"],protect:["6M"],pursuit:["6L16"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6L43"],secretpower:[],shadowball:["6M"],sleeptalk:["6M"],sludgebomb:["6M"],snarl:["6M"],snore:[],strength:["6M"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],taunt:["6M"],thief:["6M"],thunderfang:["6L1"],torment:["6M"],toxic:["6M"],toxicspikes:["6L34"],venoshock:["6L27","6M"],xscissor:["6M"],fellstinger:["6L53"],infestation:["6M"],confide:["6M"]}}, + croagunk:{learnset:{acupressure:["6E"],astonish:["6L1"],attract:["6M"],bounce:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],bulletpunch:["6E"],captivate:[],counter:["6E"],crosschop:["6E"],darkpulse:["6M"],dig:["6M"],doubleteam:["6M"],drainpunch:["6E"],dynamicpunch:["6E"],earthquake:["6M"],embargo:["6M"],endure:[],facade:["6M"],feintattack:["6L17"],fakeout:["6E"],feint:["6E"],flatter:["6L50"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gunkshot:[],headbutt:["6E"],hiddenpower:["6M"],icepunch:[],icywind:[],knockoff:[],lowkick:[],lowsweep:["6M"],meditate:["6E"],mefirst:["6E"],mudbomb:["6L29"],mudslap:["6L3"],nastyplot:["6L38"],naturalgift:[],payback:["6M"],poisonjab:["6L43","6M"],poisonsting:["6L8"],protect:["6M"],pursuit:["6L15"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L22"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],secretpower:[],shadowball:["6M"],sleeptalk:["6M"],sludgebomb:["6L45","6M"],sludgewave:["6M"],smellingsalts:["6E"],snatch:[],snore:[],spite:[],strength:["6M"],substitute:["6M"],suckerpunch:["6L31"],sunnyday:["6M"],superfang:[],swagger:["6L24","6M"],taunt:["6L10","6M"],thief:["6M"],thunderpunch:[],torment:["6M"],toxic:["6M"],vacuumwave:["6E"],venoshock:["6L36","6M"],wakeupslap:["6E"],workup:[],xscissor:["6M"],dualchop:[],foulplay:[],helpinghand:[],belch:["6L47"],poweruppunch:["6M"],confide:["6M"]}}, + toxicroak:{learnset:{astonish:["6L1"],attract:["6M"],bounce:[],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],captivate:[],cut:["6M"],darkpulse:["6M"],dig:["6M"],doubleteam:["6M"],earthquake:["6M"],embargo:["6M"],endure:[],facade:["6M"],feintattack:["6L17"],flatter:["6L62"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],gunkshot:[],headbutt:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],icywind:[],knockoff:[],lowkick:[],lowsweep:["6M"],mudbomb:["6L29"],mudslap:["6L1","6L3"],nastyplot:["6L41"],naturalgift:[],payback:["6M"],poisonjab:["6L49","6M"],poisonsting:["6L1","6L8"],protect:["6M"],pursuit:["6L15"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L22"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],secretpower:[],shadowball:["6M"],sleeptalk:["6M"],sludgebomb:["6L54","6M"],sludgewave:["6M"],snatch:[],snore:[],spite:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],suckerpunch:["6L31"],sunnyday:["6M"],superfang:[],swagger:["6L24","6M"],swordsdance:["6M"],taunt:["6L10","6M"],thief:["6M"],thunderpunch:[],torment:["6M"],toxic:["6M"],vacuumwave:[],venoshock:["6L36","6M"],workup:[],xscissor:["6M"],dualchop:[],foulplay:[],drainpunch:[],belch:["6L58"],poweruppunch:["6M"],confide:["6M"]}}, + carnivine:{learnset:{attract:["6M"],bind:["6L1"],bite:["6L7"],bugbite:[],bulletseed:[],captivate:[],crunch:["6L41"],cut:["6M"],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],feintattack:["6L27"],flash:["6M"],fling:["6M"],frustration:["6M"],furycutter:[],gastroacid:[],gigadrain:["6E"],gigaimpact:["6M"],grassknot:["6M"],grasswhistle:["6E"],growth:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],ingrain:["6L21"],knockoff:[],leaftornado:["6L31"],leechseed:["6E"],magicalleaf:["6E"],mudslap:[],naturalgift:[],payback:["6M"],powerwhip:["6L50"],protect:["6M"],ragepowder:["6E"],razorleaf:["6E"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],seedbomb:[],slam:["6E"],sleeppowder:["6E"],sleeptalk:["6M"],sludgebomb:["6M"],snore:[],solarbeam:["6M"],spitup:["6L37"],stockpile:["6L37"],stunspore:["6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swallow:["6L37"],sweetscent:["6L17"],swordsdance:["6M"],synthesis:["6E"],thief:["6M"],toxic:["6M"],vinewhip:["6L11"],worryseed:["6E"],wringout:["6L47"],infestation:["6M"],naturepower:["6M"],confide:["6M"]}}, + finneon:{learnset:{agility:["6E"],aircutter:[],aquaring:["6L0"],aquatail:["6E"],attract:["6M"],aurorabeam:["6E"],blizzard:["6M"],bounce:["6L0"],brine:["6E"],captivate:["6L0"],charm:["6E"],defog:[],dive:["6M"],doubleteam:["6M"],endure:[],facade:["6M"],flail:["6E"],flash:["6M"],frustration:["6M"],gust:["6L0"],hail:["6M"],hiddenpower:["6M"],icebeam:["6M"],icywind:[],naturalgift:[],ominouswind:[],payback:["6M"],pound:["6L0"],protect:["6M"],psybeam:["6E"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],scald:["6M"],secretpower:[],signalbeam:["6E"],silverwind:["6L0"],sleeptalk:["6M"],snore:[],soak:["6L0"],splash:["6E"],substitute:["6M"],surf:["6M"],swagger:["6M"],sweetkiss:["6E"],swift:[],tailwind:[],tickle:["6E"],toxic:["6M"],twister:[],uturn:["6M"],waterfall:["6M"],watergun:["6L0"],waterpulse:["6L0"],whirlpool:["6L0"]}}, + lumineon:{learnset:{aircutter:[],aquaring:["6L0"],aquatail:[],attract:["6M"],blizzard:["6M"],bounce:["6L0"],brine:[],captivate:["6L0"],defog:[],dive:["6M"],doubleteam:["6M"],endure:[],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],gust:["6L0"],hail:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],naturalgift:[],ominouswind:[],payback:["6M"],pound:["6L0"],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],scald:["6M"],secretpower:[],silverwind:["6L0"],sleeptalk:["6M"],snore:[],soak:["6L0"],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:[],tailwind:[],toxic:["6M"],twister:[],uturn:["6M"],waterfall:["6M"],watergun:["6L0"],waterpulse:["6L0"],whirlpool:["6L0"],signalbeam:[]}}, + snover:{learnset:{attract:["6M"],avalanche:["6E"],blizzard:["6L41","6M"],bulletseed:["6E"],captivate:[],doubleedge:["6E"],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frostbreath:["6M"],frustration:["6M"],gigadrain:[],grassknot:["6M"],grasswhistle:["6L13"],growth:["6E"],hail:["6M"],headbutt:[],hiddenpower:["6M"],icebeam:["6M"],icepunch:[],iceshard:["6L26"],icywind:["6L9"],ingrain:["6L31"],irontail:[],leechseed:["6E"],leer:["6L1"],lightscreen:["6M"],magicalleaf:["6E"],mist:["6L21","6E"],mudslap:[],naturalgift:["6E"],powdersnow:["6L1"],protect:["6M"],raindance:["6M"],razorleaf:["6L5"],rest:["6M"],"return":["6M"],roleplay:[],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:["6E"],shadowball:["6M"],sheercold:["6L46"],skullbash:["6E"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stomp:["6E"],substitute:["6M"],swagger:["6L17","6M"],swordsdance:["6M"],synthesis:[],toxic:["6M"],waterpulse:[],woodhammer:["6L36"],worryseed:[],confide:["6M"]}}, + abomasnow:{learnset:{attract:["6M"],avalanche:[],blizzard:["6L47","6M"],block:[],brickbreak:["6M"],bulldoze:["6M"],bulletseed:[],captivate:[],doubleteam:["6M"],earthquake:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frostbreath:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],grasswhistle:["6L13"],hail:["6M"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:["6L1"],iceshard:["6L26"],icywind:["6L1","6L9"],ingrain:["6L31"],irontail:[],leer:["6L1"],lightscreen:["6M"],mist:["6L21"],mudslap:[],naturalgift:[],outrage:[],powdersnow:["6L1"],protect:["6M"],raindance:["6M"],razorleaf:["6L1","6L5"],rest:["6M"],"return":["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:[],shadowball:["6M"],sheercold:["6L58"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strength:["6M"],substitute:["6M"],swagger:["6L17","6M"],swordsdance:["6M"],synthesis:[],toxic:["6M"],waterpulse:[],woodhammer:["6L36"],worryseed:[],confide:["6M"]}}, + rotom:{learnset:{astonish:["6L1"],charge:["6L1","6L57"],chargebeam:["6M"],confuseray:["6L1"],darkpulse:["6M"],discharge:["6L1","6L64"],doubleteam:["6L15","6M"],dreameater:["6M"],electroball:["6L43"],endure:[],facade:["6M"],flash:["6M"],frustration:["6M"],hex:["6L50"],hiddenpower:["6M"],lightscreen:["6M"],mudslap:[],naturalgift:[],ominouswind:["6L29"],painsplit:[],protect:["6M"],psychup:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],secretpower:[],shadowball:["6M"],shockwave:["6L22"],signalbeam:[],sleeptalk:["6M"],snatch:[],snore:[],spite:[],substitute:["6L36","6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swift:[],telekinesis:[],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thundershock:["6L1"],thunderwave:["6L1","6M"],toxic:["6M"],trick:["6L1"],uproar:["6L8"],voltswitch:["6M"],willowisp:["6M"],electroweb:[],confide:["6M"]}}, + rotomheat:{learnset:{astonish:[],charge:[],chargebeam:[],confuseray:[],darkpulse:[],discharge:[],doubleteam:[],dreameater:[],electroball:[],endure:[],facade:[],flash:[],frustration:[],hex:[],hiddenpower:[],lightscreen:[],mudslap:[],naturalgift:[],ominouswind:[],overheat:["6L1"],painsplit:[],protect:[],psychup:[],raindance:[],reflect:[],rest:[],"return":[],round:[],secretpower:[],shadowball:[],shockwave:[],signalbeam:[],sleeptalk:[],snatch:[],snore:[],spite:[],substitute:[],suckerpunch:[],sunnyday:[],swagger:[],swift:[],telekinesis:[],thief:[],thunder:[],thunderbolt:[],thundershock:[],thunderwave:[],toxic:[],trick:[],uproar:[],voltswitch:[],willowisp:[]}}, + rotomwash:{learnset:{astonish:[],charge:[],chargebeam:[],confuseray:[],darkpulse:[],discharge:[],doubleteam:[],dreameater:[],electroball:[],endure:[],facade:[],flash:[],frustration:[],hex:[],hiddenpower:[],hydropump:["6L1"],lightscreen:[],mudslap:[],naturalgift:[],ominouswind:[],painsplit:[],protect:[],psychup:[],raindance:[],reflect:[],rest:[],"return":[],round:[],secretpower:[],shadowball:[],shockwave:[],signalbeam:[],sleeptalk:[],snatch:[],snore:[],spite:[],substitute:[],suckerpunch:[],sunnyday:[],swagger:[],swift:[],telekinesis:[],thief:[],thunder:[],thunderbolt:[],thundershock:[],thunderwave:[],toxic:[],trick:[],uproar:[],voltswitch:[],willowisp:[]}}, + rotomfrost:{learnset:{astonish:[],blizzard:["6L1"],charge:[],chargebeam:[],confuseray:[],darkpulse:[],discharge:[],doubleteam:[],dreameater:[],electroball:[],endure:[],facade:[],flash:[],frustration:[],hex:[],hiddenpower:[],lightscreen:[],mudslap:[],naturalgift:[],ominouswind:[],painsplit:[],protect:[],psychup:[],raindance:[],reflect:[],rest:[],"return":[],round:[],secretpower:[],shadowball:[],shockwave:[],signalbeam:[],sleeptalk:[],snatch:[],snore:[],spite:[],substitute:[],suckerpunch:[],sunnyday:[],swagger:[],swift:[],telekinesis:[],thief:[],thunder:[],thunderbolt:[],thundershock:[],thunderwave:[],toxic:[],trick:[],uproar:[],voltswitch:[],willowisp:[]}}, + rotomfan:{learnset:{airslash:["6L1"],astonish:[],charge:[],chargebeam:[],confuseray:[],darkpulse:[],discharge:[],doubleteam:[],dreameater:[],electroball:[],endure:[],facade:[],flash:[],frustration:[],hex:[],hiddenpower:[],lightscreen:[],mudslap:[],naturalgift:[],ominouswind:[],painsplit:[],protect:[],psychup:[],raindance:[],reflect:[],rest:[],"return":[],round:[],secretpower:[],shadowball:[],shockwave:[],signalbeam:[],sleeptalk:[],snatch:[],snore:[],spite:[],substitute:[],suckerpunch:[],sunnyday:[],swagger:[],swift:[],telekinesis:[],thief:[],thunder:[],thunderbolt:[],thundershock:[],thunderwave:[],toxic:[],trick:[],uproar:[],voltswitch:[],willowisp:[]}}, + rotommow:{learnset:{astonish:[],charge:[],chargebeam:[],confuseray:[],darkpulse:[],discharge:[],doubleteam:[],dreameater:[],electroball:[],endure:[],facade:[],flash:[],frustration:[],hex:[],hiddenpower:[],leafstorm:["6L1"],lightscreen:[],mudslap:[],naturalgift:[],ominouswind:[],painsplit:[],protect:[],psychup:[],raindance:[],reflect:[],rest:[],"return":[],round:[],secretpower:[],shadowball:[],shockwave:[],signalbeam:[],sleeptalk:[],snatch:[],snore:[],spite:[],substitute:[],suckerpunch:[],sunnyday:[],swagger:[],swift:[],telekinesis:[],thief:[],thunder:[],thunderbolt:[],thundershock:[],thunderwave:[],toxic:[],trick:[],uproar:[],voltswitch:[],willowisp:[]}}, + uxie:{learnset:{acrobatics:["6M"],amnesia:["6L0"],calmmind:["6M"],chargebeam:["6M"],confusion:["6L0"],doubleteam:["6M"],dreameater:["6M"],endure:["6L0"],energyball:["6M"],extrasensory:["6L0"],facade:["6M"],firepunch:[],flail:["6L0"],flash:["6M"],fling:["6M"],frustration:["6M"],futuresight:["6L0"],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],headbutt:[],healbell:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],imprison:["6L0"],irontail:[],knockoff:[],lightscreen:["6M"],magiccoat:[],memento:["6L0"],mudslap:[],naturalgift:["6L0"],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],roleplay:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stealthrock:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L0"],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],uturn:["6M"],waterpulse:[],yawn:["6L0"],zenheadbutt:[],foulplay:[],magicroom:[],wonderroom:[]}}, + mesprit:{learnset:{acrobatics:["6M"],blizzard:["6M"],calmmind:["6M"],chargebeam:["6M"],charm:["6L0"],confusion:["6L0"],copycat:["6L0"],doubleteam:["6M"],dreameater:["6M"],endure:[],energyball:["6M"],extrasensory:["6L0"],facade:["6M"],firepunch:[],flash:["6M"],fling:["6M"],frustration:["6M"],futuresight:["6L0"],gigaimpact:["6M"],grassknot:["6M"],headbutt:[],healingwish:["6L0"],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icepunch:[],imprison:["6L0"],irontail:[],knockoff:[],lightscreen:["6M"],luckychant:["6L0"],magiccoat:[],mudslap:[],naturalgift:["6L0"],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],roleplay:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],stealthrock:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L0"],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],uturn:["6M"],waterpulse:[],zenheadbutt:[],magicroom:[],wonderroom:[]}}, + azelf:{learnset:{acrobatics:["6M"],calmmind:["6M"],chargebeam:["6M"],confusion:["6L0"],detect:["6L0"],doubleteam:["6M"],dreameater:["6M"],endure:[],energyball:["6M"],explosion:["6M"],extrasensory:["6L0"],facade:["6M"],fireblast:["6M"],firepunch:[],flamethrower:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],futuresight:["6L0"],gigaimpact:["6M"],grassknot:["6M"],headbutt:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:[],imprison:["6L0"],incinerate:["6M"],irontail:[],knockoff:[],lastresort:["6L0"],lightscreen:["6M"],magiccoat:[],mudslap:[],nastyplot:["6L0"],naturalgift:["6L0"],payback:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],roleplay:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],shadowball:["6M"],shockwave:[],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],stealthrock:[],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L0"],taunt:["6M"],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderpunch:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],uproar:["6L0"],uturn:["6M"],waterpulse:[],zenheadbutt:[],magicroom:[],wonderroom:[]}}, + dialga:{learnset:{aerialace:["6M"],ancientpower:["6L0"],aurasphere:["6L0"],blizzard:["6M"],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],cut:["6M"],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L0"],dragonclaw:["6M"],dragonpulse:[],dragontail:["6M"],earthpower:["6L0"],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],flashcannon:["6M"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],gravity:[],headbutt:[],healblock:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],incinerate:["6M"],irondefense:[],ironhead:[],irontail:["6L0"],magnetrise:[],metalburst:["6L0"],metalclaw:["6L0"],mudslap:[],naturalgift:[],outrage:[],overheat:["6M"],powergem:["6L0"],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],roaroftime:["6L0"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],scaryface:["6L0"],secretpower:[],shadowclaw:["6M"],shockwave:[],slash:["6L0"],sleeptalk:["6M"],snore:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trickroom:["6M"],twister:[],hypervoice:[]}}, + palkia:{learnset:{aerialace:["6M"],ancientpower:["6L0"],aquatail:["6L0"],aurasphere:["6L0"],avalanche:[],blizzard:["6M"],brickbreak:["6M"],brine:[],bulkup:["6M"],bulldoze:["6M"],cut:["6M"],dive:["6M"],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L0"],dragonclaw:["6M"],dragonpulse:[],dragontail:["6M"],earthpower:["6L0"],earthquake:["6M"],echoedvoice:["6M"],endure:[],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],furycutter:[],gigaimpact:["6M"],gravity:[],hail:["6M"],headbutt:[],healblock:[],hiddenpower:["6M"],honeclaws:["6M"],hydropump:["6L0"],hyperbeam:["6M"],icebeam:["6M"],incinerate:["6M"],mudslap:[],naturalgift:[],outrage:[],powergem:["6L0"],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],scaryface:["6L0"],secretpower:[],shadowclaw:["6M"],shockwave:[],slash:["6L0"],sleeptalk:["6M"],snore:[],spacialrend:["6L0"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trickroom:["6M"],twister:[],waterpulse:["6L0"],whirlpool:[],hypervoice:[]}}, + heatran:{learnset:{ancientpower:["6L0"],attract:["6M"],bugbite:[],bulldoze:["6M"],captivate:[],crunch:["6L0"],darkpulse:[],dig:["6M"],doubleteam:["6M"],dragonpulse:[],earthpower:["6L0"],earthquake:["6M"],endure:[],eruption:[],explosion:["6M"],facade:["6M"],fireblast:["6M"],firefang:["6L0"],firespin:["6L0"],flamecharge:["6M"],flamethrower:["6M"],flashcannon:["6M"],frustration:["6M"],gigaimpact:["6M"],headbutt:[],heatwave:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],irondefense:[],ironhead:["6L0"],lavaplume:["6L0"],leer:["6L0"],magmastorm:["6L0"],metalsound:["6L0"],mudslap:[],naturalgift:[],overheat:["6M"],payback:["6M"],protect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6L0"],secretpower:[],sleeptalk:["6M"],snore:[],solarbeam:["6M"],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],torment:["6M"],toxic:["6M"],uproar:[],willowisp:["6M"]}}, + regigigas:{learnset:{aerialace:["6M"],ancientpower:[],avalanche:[],block:[],brickbreak:["6M"],bulldoze:["6M"],confuseray:["6L0"],crushgrip:["6L0"],dizzypunch:["6L0"],doubleteam:["6M"],drainpunch:[],earthpower:[],earthquake:["6M"],endure:[],facade:["6M"],firepunch:["6L0"],fling:["6M"],focusblast:["6M"],focuspunch:[],foresight:["6L0"],frustration:["6M"],gigaimpact:["6M"],gravity:[],headbutt:[],heavyslam:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],icepunch:["6L0"],icywind:[],ironhead:[],knockoff:["6L0"],megapunch:[],mudslap:[],naturalgift:[],payback:["6M"],psychup:["6M"],raindance:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L0"],rockclimb:[],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],secretpower:[],shockwave:[],sleeptalk:["6M"],smackdown:["6M"],snore:[],stomp:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:[],swagger:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderpunch:["6L0"],thunderwave:["6M"],toxic:["6M"],wideguard:["6L0"],zenheadbutt:["6L0"]}}, + giratina:{learnset:{aerialace:["6M"],aircutter:[],ancientpower:["6L0"],aquatail:[],aurasphere:["6L0"],bulldoze:["6M"],calmmind:["6M"],chargebeam:["6M"],cut:["6M"],darkpulse:[],defog:[],destinybond:["6L0"],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L0"],dragonclaw:["6M"],dragonpulse:[],dragontail:["6M"],dreameater:["6M"],earthpower:["6L0"],earthquake:["6M"],echoedvoice:["6M"],endure:[],energyball:["6M"],facade:["6M"],fly:["6M"],frustration:["6M"],furycutter:[],gigaimpact:["6M"],gravity:[],headbutt:[],healblock:[],hex:["6L0"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icywind:[],ironhead:[],irontail:[],magiccoat:[],mudslap:[],naturalgift:[],ominouswind:["6L0"],outrage:[],painsplit:[],payback:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockclimb:[],rocksmash:["6M"],round:["6M"],safeguard:["6M"],scaryface:["6L0"],secretpower:[],shadowball:["6M"],shadowclaw:["6M"],shadowforce:["6L0"],shadowsneak:["6L0"],shockwave:[],silverwind:[],slash:["6L0"],sleeptalk:["6M"],snore:[],spite:[],steelwing:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],tailwind:[],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],twister:[],willowisp:["6M"],hypervoice:[]}}, + cresselia:{learnset:{attract:["6M"],aurorabeam:["6L0"],calmmind:["6M"],captivate:[],chargebeam:["6M"],confusion:["6L0"],doubleteam:["6M"],dreameater:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],furycutter:[],futuresight:["6L0"],gigaimpact:["6M"],grassknot:["6M"],gravity:[],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],lightscreen:["6M"],lunardance:["6L0"],magiccoat:[],mist:["6L0"],moonlight:["6L0"],mudslap:[],naturalgift:[],protect:["6M"],psychic:["6M"],psychocut:["6L0"],psychoshift:["6L0"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],secretpower:[],shadowball:["6M"],signalbeam:[],skillswap:[],slash:["6L0"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:[],telekinesis:[],thunderwave:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],zenheadbutt:[],magicroom:[]}}, + phione:{learnset:{acidarmor:["6L0"],ancientpower:[],aquaring:["6L0"],blizzard:["6M"],bounce:[],brine:[],bubble:["6L0"],bubblebeam:["6L0"],charm:["6L0"],dive:["6M"],doubleteam:["6M"],endure:[],facade:["6M"],fling:["6M"],frustration:["6M"],grassknot:["6M"],hail:["6M"],healbell:[],helpinghand:[],hiddenpower:["6M"],icebeam:["6M"],icywind:[],knockoff:[],lastresort:[],mudslap:[],naturalgift:[],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],scald:["6M"],secretpower:[],signalbeam:[],sleeptalk:["6M"],snore:[],substitute:["6M"],supersonic:["6L0"],surf:["6M"],swagger:["6M"],swift:[],toxic:["6M"],uproar:[],uturn:["6M"],waterfall:["6M"],waterpulse:["6L0"],watersport:["6L0"],whirlpool:["6L0"],covet:[]}}, + manaphy:{learnset:{acidarmor:["6L0"],ancientpower:[],aquaring:["6L0"],blizzard:["6M"],bounce:[],brine:[],bubble:["6L0"],bubblebeam:["6L0"],calmmind:["6M"],charm:["6L0"],dive:["6M"],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],hail:["6M"],healbell:[],heartswap:["6L0"],helpinghand:[],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],icywind:[],knockoff:[],lastresort:[],lightscreen:["6M"],mudslap:[],naturalgift:[],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],scald:["6M"],secretpower:[],shadowball:["6M"],signalbeam:[],skillswap:[],sleeptalk:["6M"],snore:[],substitute:["6M"],supersonic:["6L0"],surf:["6M"],swagger:["6M"],swift:[],tailglow:["6L0"],toxic:["6M"],uproar:[],uturn:["6M"],waterfall:["6M"],waterpulse:["6L0"],watersport:["6L0"],whirlpool:["6L0"],covet:[]}}, + darkrai:{learnset:{aerialace:["6M"],blizzard:["6M"],brickbreak:["6M"],calmmind:["6M"],chargebeam:["6M"],cut:["6M"],darkpulse:["6L0"],darkvoid:["6L0"],disable:["6L0"],doubleteam:["6M"],drainpunch:[],dreameater:["6M"],embargo:["6M"],endure:[],facade:["6M"],feintattack:["6L0"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:[],frustration:["6M"],gigaimpact:["6M"],haze:["6L0"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],hypnosis:["6L0"],icebeam:["6M"],icywind:[],incinerate:["6M"],knockoff:[],lastresort:[],mudslap:[],nastyplot:["6L0"],naturalgift:[],nightmare:["6L0"],nightshade:[],ominouswind:["6L0"],payback:["6M"],poisonjab:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],pursuit:[],quickattack:["6L0"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roaroftime:[],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],secretpower:[],shadowball:["6M"],shadowclaw:["6M"],shockwave:[],sleeptalk:["6M"],sludgebomb:["6M"],snarl:["6M"],snatch:[],snore:[],spacialrend:[],spite:[],strength:["6M"],substitute:["6M"],suckerpunch:[],sunnyday:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],taunt:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trick:[],willowisp:["6M"],xscissor:["6M"],foulplay:[],wonderroom:[]}}, + shaymin:{learnset:{aromatherapy:["6L0"],bulletseed:[],defensecurl:[],doubleteam:["6M"],earthpower:[],endeavor:[],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],grasswhistle:[],growth:["6L0"],headbutt:[],healingwish:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],lastresort:[],leechseed:["6L0"],luckychant:[],magicalleaf:["6L0"],mudslap:[],naturalgift:["6L0"],protect:["6M"],psychic:["6M"],psychup:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:[],seedflare:["6L0"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetkiss:["6L0"],sweetscent:["6L0"],swift:[],swordsdance:["6M"],synthesis:["6L0"],toxic:["6M"],worryseed:["6L0"],zenheadbutt:[],covet:[]}}, + shayminsky:{learnset:{aircutter:[],airslash:["6L0"],aromatherapy:[],bulletseed:[],doubleteam:["6M"],endure:[],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],growth:["6L0"],headbutt:[],hiddenpower:["6M"],hyperbeam:["6M"],lastresort:[],leafstorm:["6L0"],leechseed:["6L0"],magicalleaf:["6L0"],mudslap:[],naturalgift:["6L0"],ominouswind:[],protect:["6M"],psychic:["6M"],psychup:["6M"],quickattack:["6L0"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],secretpower:[],seedbomb:[],seedflare:["6L0"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetkiss:["6L0"],sweetscent:["6L0"],swift:[],swordsdance:["6M"],synthesis:[],tailwind:[],toxic:["6M"],worryseed:["6L0"],zenheadbutt:[],covet:[]}}, + arceus:{learnset:{aerialace:["6M"],ancientpower:[],aquatail:[],avalanche:[],blizzard:["6M"],brickbreak:["6M"],brine:[],bulldoze:["6M"],bulletseed:[],calmmind:["6M"],chargebeam:["6M"],cosmicpower:["6L0"],cut:["6M"],darkpulse:[],defog:[],dive:[],doubleteam:["6M"],dracometeor:["6T"],dragonclaw:["6M"],dragonpulse:[],dreameater:["6M"],earthpower:["6L0"],earthquake:["6M"],echoedvoice:["6M"],endure:[],energyball:["6M"],extremespeed:["6L0"],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],flashcannon:["6M"],fly:["6M"],focusblast:["6M"],frustration:["6M"],furycutter:[],futuresight:["6L0"],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],gravity:["6L0"],hail:["6M"],headbutt:[],heatwave:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],hypervoice:["6L0"],icebeam:["6M"],icywind:[],incinerate:["6M"],irondefense:[],ironhead:[],irontail:[],judgment:["6L0"],lastresort:[],lightscreen:["6M"],magiccoat:[],mudslap:[],naturalgift:["6L0"],ominouswind:[],outrage:[],overheat:["6M"],payback:["6M"],perishsong:["6L0"],poisonjab:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],punishment:["6L0"],quash:["6M"],raindance:["6M"],recover:["6L0"],recycle:[],reflect:["6M"],refresh:["6L0"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],roaroftime:[],rockclimb:[],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:[],round:["6M"],safeguard:["6M"],sandstorm:["6M"],secretpower:[],seismictoss:["6L0"],shadowball:["6M"],shadowclaw:["6M"],shadowforce:[],shockwave:[],signalbeam:[],silverwind:[],sleeptalk:["6M"],sludgebomb:["6M"],snarl:["6M"],snore:[],solarbeam:["6M"],spacialrend:[],stealthrock:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swift:[],swordsdance:["6M"],tailwind:[],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trick:[],trickroom:["6M"],twister:[],waterfall:["6M"],waterpulse:[],whirlpool:[],willowisp:["6M"],workup:[],xscissor:["6M"],zenheadbutt:[]}}, + victini:{learnset:{blueflare:[],boltstrike:[],brickbreak:["6M"],chargebeam:["6M"],confusion:["6L0"],doubleedge:["6L0"],doubleteam:["6M"],embargo:["6M"],endure:["6L0"],energyball:["6M"],facade:["6M"],finalgambit:["6L0"],fireblast:["6M"],flameburst:["6L0"],flamecharge:["6M"],flamethrower:["6M"],flareblitz:["6L0"],flash:["6M"],fling:["6M"],focusblast:["6M"],focusenergy:["6L0"],frustration:["6M"],fusionbolt:[],fusionflare:[],gigaimpact:["6M"],glaciate:[],grassknot:["6M"],headbutt:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],inferno:["6L0"],lightscreen:["6M"],overheat:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],quickattack:["6L0"],rest:["6M"],"return":["6M"],reversal:["6L0"],rocksmash:["6M"],round:["6M"],safeguard:["6M"],searingshot:["6L0"],shadowball:["6M"],solarbeam:["6M"],storedpower:["6L0"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trickroom:["6M"],uturn:["6M"],vcreate:[],wildcharge:["6M"],willowisp:["6M"],workup:[],zenheadbutt:["6L0"],signalbeam:[],bounce:[],uproar:[],thunderpunch:[],firepunch:[],magiccoat:[],lastresort:[],snore:[],heatwave:[],roleplay:[],helpinghand:[],trick:[],sleeptalk:["6M"],skillswap:[]}}, + snivy:{learnset:{aerialace:["6M"],aromatherapy:[],attract:["6M"],calmmind:["6M"],captivate:["6E"],coil:["6L0"],cut:["6M"],doubleteam:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gastroacid:["6L0"],gigadrain:["6L0"],glare:["6E"],grassknot:["6M"],grasspledge:["6T"],growth:["6L0"],hiddenpower:["6M"],irontail:["6E"],leafblade:["6L0"],leafstorm:["6L0"],leaftornado:["6L0"],leechseed:["6L0"],leer:["6L0"],lightscreen:["6M"],magicalleaf:["6E"],meanlook:["6E"],megadrain:["6L0"],mirrorcoat:["6E"],naturalgift:["6E"],protect:["6M"],pursuit:["6E"],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],slam:["6L0"],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6E"],swordsdance:["6M"],synthesis:[],tackle:["6L0"],taunt:["6M"],torment:["6M"],toxic:["6M"],twister:["6E"],vinewhip:["6L0"],wrap:["6L0"],wringout:["6L0"],seedbomb:[],aquatail:[],bind:[],snore:[],knockoff:[],worryseed:[],snatch:[],sleeptalk:["6M"]}}, + servine:{learnset:{aerialace:["6M"],attract:["6M"],calmmind:["6M"],coil:["6L0"],cut:["6M"],doubleteam:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gastroacid:["6L0"],gigadrain:["6L0"],grassknot:["6M"],grasspledge:["6T"],growth:["6L0"],hiddenpower:["6M"],leafblade:["6L0"],leafstorm:["6L0"],leaftornado:["6L0"],leechseed:["6L0"],leer:["6L0"],lightscreen:["6M"],megadrain:["6L0"],protect:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],slam:["6L0"],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],tackle:["6L0"],taunt:["6M"],torment:["6M"],toxic:["6M"],vinewhip:["6L0"],wrap:["6L0"],wringout:["6L0"],seedbomb:[],aquatail:[],irontail:[],bind:[],snore:[],knockoff:[],synthesis:[],worryseed:[],snatch:[],sleeptalk:["6M"]}}, + serperior:{learnset:{aerialace:["6M"],attract:["6M"],calmmind:["6M"],coil:["6L0"],cut:["6M"],doubleteam:["6M"],dragontail:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],frenzyplant:["6T"],frustration:["6M"],gastroacid:["6L0"],gigadrain:["6L0"],gigaimpact:["6M"],grassknot:["6M"],grasspledge:["6T"],growth:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],leafblade:["6L0"],leafstorm:["6L0"],leaftornado:["6L0"],leechseed:["6L0"],leer:["6L0"],lightscreen:["6M"],megadrain:["6L0"],protect:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],safeguard:["6M"],slam:["6L0"],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],tackle:["6L0"],taunt:["6M"],torment:["6M"],toxic:["6M"],vinewhip:["6L0"],wrap:["6L0"],wringout:["6L0"],seedbomb:[],aquatail:[],dragonpulse:[],irontail:[],bind:[],snore:[],knockoff:[],synthesis:[],worryseed:[],outrage:[],snatch:[],sleeptalk:["6M"]}}, + tepig:{learnset:{assurance:["6L0"],attract:["6M"],bodyslam:["6E"],covet:["6E"],curse:["6E"],defensecurl:["6L0"],doubleteam:["6M"],echoedvoice:["6M"],ember:["6L0"],endeavor:["6E"],facade:["6M"],fireblast:["6M"],firepledge:["6T"],flamecharge:["6M"],flamethrower:["6M"],flareblitz:["6L0"],frustration:["6M"],grassknot:["6M"],gyroball:["6M"],headsmash:["6L0"],heatcrash:["6L0"],heavyslam:["6E"],hiddenpower:["6M"],incinerate:["6M"],magnitude:["6E"],odorsleuth:["6L0"],overheat:["6M"],protect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L0"],round:["6M"],sleeptalk:["6E"],smog:["6L0"],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:["6E"],swagger:["6M"],tackle:["6L0"],tailwhip:["6L0"],takedown:["6L0"],taunt:["6M"],thrash:["6E"],toxic:["6M"],wildcharge:["6M"],willowisp:["6M"],yawn:["6E"],irontail:[],snore:[],heatwave:[],helpinghand:[]}}, + pignite:{learnset:{armthrust:["6L0"],assurance:["6L0"],attract:["6M"],brickbreak:["6M"],bulldoze:["6M"],defensecurl:["6L0"],doubleteam:["6M"],echoedvoice:["6M"],ember:["6L0"],facade:["6M"],fireblast:["6M"],firepledge:["6T"],flamecharge:["6M"],flamethrower:["6M"],flareblitz:["6L0"],fling:["6M"],focusblast:["6M"],frustration:["6M"],grassknot:["6M"],gyroball:["6M"],headsmash:["6L0"],heatcrash:["6L0"],hiddenpower:["6M"],incinerate:["6M"],lowsweep:["6M"],odorsleuth:["6L0"],overheat:["6M"],poisonjab:["6M"],protect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L0"],round:["6M"],smog:["6L0"],solarbeam:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L0"],tailwhip:["6L0"],takedown:["6L0"],taunt:["6M"],toxic:["6M"],wildcharge:["6M"],willowisp:["6M"],workup:[],covet:[],lowkick:[],thunderpunch:[],firepunch:[],superpower:[],irontail:[],snore:[],heatwave:[],helpinghand:[],endeavor:[],sleeptalk:["6M"]}}, + emboar:{learnset:{armthrust:["6L0"],assurance:["6L0"],attract:["6M"],blastburn:["6T"],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],defensecurl:["6L0"],doubleteam:["6M"],earthquake:["6M"],echoedvoice:["6M"],ember:["6L0"],facade:["6M"],fireblast:["6M"],firepledge:["6T"],flamecharge:["6M"],flamethrower:["6M"],flareblitz:["6L0"],fling:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gyroball:["6M"],hammerarm:["6L0"],headsmash:["6L0"],heatcrash:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],lowsweep:["6M"],odorsleuth:["6L0"],overheat:["6M"],poisonjab:["6M"],protect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L0"],round:["6M"],scald:["6M"],smackdown:["6M"],smog:["6L0"],solarbeam:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L0"],tailwhip:["6L0"],takedown:["6L0"],taunt:["6M"],toxic:["6M"],wildcharge:["6M"],willowisp:["6M"],workup:[],covet:[],ironhead:[],lowkick:[],thunderpunch:[],firepunch:[],block:[],superpower:[],irontail:[],snore:[],heatwave:[],helpinghand:[],endeavor:[],sleeptalk:["6M"]}}, + oshawott:{learnset:{aerialace:["6M"],airslash:["6E"],aquajet:["6L0"],aquatail:["6L0"],assurance:["6E"],attract:["6M"],blizzard:["6M"],brine:["6E"],copycat:["6E"],cut:["6M"],detect:["6E"],dig:["6M"],dive:["6M"],doubleteam:["6M"],encore:["6L0"],facade:["6M"],falseswipe:["6M"],fling:["6M"],focusenergy:["6L0"],frustration:["6M"],furycutter:["6L0"],grassknot:["6M"],hail:["6M"],hiddenpower:["6M"],hydropump:["6L0"],icebeam:["6M"],nightslash:["6E"],protect:["6M"],raindance:["6M"],razorshell:["6L0"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L0"],rocksmash:["6M"],round:["6M"],scald:["6M"],screech:["6E"],substitute:["6M"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],tackle:["6L0"],tailwhip:["6L0"],taunt:["6M"],toxic:["6M"],trumpcard:["6E"],waterfall:["6M"],watergun:["6L0"],waterpledge:["6T"],waterpulse:["6L0"],watersport:["6L0"],xscissor:["6M"],covet:[],icywind:[],irontail:[],snore:[],helpinghand:[],sleeptalk:["6M"]}}, + dewott:{learnset:{aerialace:["6M"],aquajet:["6L0"],aquatail:["6L0"],attract:["6M"],blizzard:["6M"],cut:["6M"],dig:["6M"],dive:["6M"],doubleteam:["6M"],encore:["6L0"],facade:["6M"],falseswipe:["6M"],fling:["6M"],focusenergy:["6L0"],frustration:["6M"],furycutter:["6L0"],grassknot:["6M"],hail:["6M"],hiddenpower:["6M"],hydropump:["6L0"],icebeam:["6M"],protect:["6M"],raindance:["6M"],razorshell:["6L0"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L0"],rocksmash:["6M"],round:["6M"],scald:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],tackle:["6L0"],tailwhip:["6L0"],taunt:["6M"],toxic:["6M"],waterfall:["6M"],watergun:["6L0"],waterpledge:["6T"],waterpulse:["6L0"],watersport:["6L0"],xscissor:["6M"],covet:[],icywind:[],irontail:[],snore:[],helpinghand:[],sleeptalk:["6M"]}}, + samurott:{learnset:{aerialace:["6M"],aquajet:["6L0"],aquatail:["6L0"],attract:["6M"],blizzard:["6M"],cut:["6M"],dig:["6M"],dive:["6M"],doubleteam:["6M"],dragontail:["6M"],encore:["6L0"],facade:["6M"],falseswipe:["6M"],fling:["6M"],focusenergy:["6L0"],frustration:["6M"],furycutter:["6L0"],gigaimpact:["6M"],grassknot:["6M"],hail:["6M"],hiddenpower:["6M"],hydrocannon:["6T"],hydropump:["6L0"],hyperbeam:["6M"],icebeam:["6M"],megahorn:["6L0"],protect:["6M"],raindance:["6M"],razorshell:["6L0"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L0"],rocksmash:["6M"],round:["6M"],scald:["6M"],slash:["6L0"],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],tackle:["6L0"],tailwhip:["6L0"],taunt:["6M"],toxic:["6M"],waterfall:["6M"],watergun:["6L0"],waterpledge:["6T"],waterpulse:["6L0"],watersport:["6L0"],xscissor:["6M"],block:[],covet:[],superpower:[],icywind:[],irontail:[],snore:[],knockoff:[],helpinghand:[],sleeptalk:["6M"]}}, + patrat:{learnset:{afteryou:["6L23"],assurance:["6E"],attract:["6M"],batonpass:["6L33"],bide:["6L8"],bite:["6L6"],crunch:["6L16"],cut:["6M"],detect:["6L11"],dig:["6M"],doubleteam:["6M"],facade:["6M"],flail:["6E"],fling:["6M"],foresight:["6E"],frustration:["6M"],grassknot:["6M"],hiddenpower:["6M"],hyperfang:["6L28"],hypnosis:["6L18"],irontail:["6E"],leer:["6L3"],meanlook:["6L31"],protect:["6M"],pursuit:["6E"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6E"],round:["6M"],sandattack:["6L13"],screech:["6E"],shadowball:["6M"],slam:["6L36"],substitute:["6M"],sunnyday:["6M"],superfang:["6L21"],swagger:["6M"],swordsdance:["6M"],tackle:["6L1"],thunderbolt:["6M"],toxic:["6M"],workup:["6L26"],covet:[],seedbomb:[],lowkick:[],gunkshot:[],lastresort:[],aquatail:[],zenheadbutt:[],snore:[],helpinghand:[],endeavor:[],sleeptalk:["6M"],confide:["6M"]}}, + watchog:{learnset:{afteryou:["6L25"],attract:["6M"],batonpass:["6L39"],bide:["6L8"],bite:["6L1","6L6"],confuseray:["6L20"],crunch:["6L16"],cut:["6M"],detect:["6L11"],dig:["6M"],doubleteam:["6M"],dreameater:["6M"],facade:["6M"],flamethrower:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],hyperfang:["6L32"],hypnosis:["6L18"],leer:["6L1","6L3"],lightscreen:["6M"],lowkick:["6L1"],meanlook:["6L36"],protect:["6M"],psychup:["6L29","6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],sandattack:["6L13"],shadowball:["6M"],slam:["6L43"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superfang:["6L22"],swagger:["6M"],swordsdance:["6M"],tackle:["6L1"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],workup:[],covet:[],signalbeam:[],seedbomb:[],gunkshot:[],thunderpunch:[],firepunch:[],icepunch:[],lastresort:[],aquatail:[],zenheadbutt:[],irontail:[],snore:[],knockoff:[],helpinghand:[],endeavor:[],sleeptalk:["6M"],rototiller:["6L1"],poweruppunch:["6M"],confide:["6M"]}}, + lillipup:{learnset:{aerialace:["6M"],attract:["6M"],bite:["6L8"],charm:["6E"],crunch:["6L22"],dig:["6M"],doubleteam:["6M"],endure:["6E"],facade:["6M"],firefang:["6E"],frustration:["6M"],gigaimpact:["6L40","6M"],helpinghand:["6L12"],hiddenpower:["6M"],howl:["6E"],icefang:["6E"],lastresort:["6L36"],leer:["6L1"],lick:["6E"],mudslap:["6E"],odorsleuth:["6L5"],protect:["6M"],pursuit:["6E"],raindance:["6M"],rest:["6M"],retaliate:["6L29","6M"],"return":["6M"],reversal:["6L33"],roar:["6L26","6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6E"],shadowball:["6M"],snarl:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],takedown:["6L15"],thunderbolt:["6M"],thunderfang:["6E"],thunderwave:["6M"],toxic:["6M"],wildcharge:["6M"],workup:["6L19"],yawn:["6E"],covet:[],uproar:[],hypervoice:[],snore:[],sleeptalk:["6M"],babydolleyes:["6L10"],playrough:["6L45"],confide:["6M"]}}, + herdier:{learnset:{aerialace:["6M"],attract:["6M"],bite:["6L8"],crunch:["6L24"],dig:["6M"],doubleteam:["6M"],facade:["6M"],frustration:["6M"],gigaimpact:["6L47","6M"],helpinghand:["6L12"],hiddenpower:["6M"],lastresort:["6L42"],leer:["6L1"],odorsleuth:["6L5"],payback:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6L33","6M"],"return":["6M"],reversal:["6L38"],roar:["6L29","6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],shadowball:["6M"],snarl:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],tackle:["6L1"],takedown:["6L15"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],wildcharge:["6M"],workup:["6L20"],covet:[],uproar:[],hypervoice:[],snore:[],sleeptalk:["6M"],playrough:["6L52"],confide:["6M"]}}, + stoutland:{learnset:{aerialace:["6M"],attract:["6M"],bite:["6L8"],crunch:["6L24"],dig:["6M"],doubleteam:["6M"],facade:["6M"],firefang:["6L1"],frustration:["6M"],gigaimpact:["6L59","6M"],helpinghand:["6L12"],hiddenpower:["6M"],hyperbeam:["6M"],icefang:["6L1"],lastresort:["6L51"],leer:["6L1"],odorsleuth:["6L5"],payback:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6L36","6M"],"return":["6M"],reversal:["6L42"],roar:["6L29","6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],shadowball:["6M"],snarl:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],tackle:["6L1"],takedown:["6L15"],thunder:["6M"],thunderbolt:["6M"],thunderfang:["6L1"],thunderwave:["6M"],toxic:["6M"],wildcharge:["6M"],workup:["6L20"],covet:[],ironhead:[],uproar:[],superpower:[],hypervoice:[],snore:[],sleeptalk:["6M"],playrough:["6L63"],confide:["6M"]}}, + purrloin:{learnset:{aerialace:["6M"],assist:["6L6"],assurance:["6L28"],attract:["6M"],captivate:["6L33"],charm:["6E"],covet:["6E"],cut:["6M"],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],embargo:["6M"],encore:["6E"],facade:["6M"],feintattack:["6E"],fakeout:["6L21"],faketears:["6E"],foulplay:["6E"],frustration:["6M"],furyswipes:["6L12"],grassknot:["6M"],growl:["6L3"],hiddenpower:["6M"],honeclaws:["6L24","6M"],nastyplot:["6L42"],nightslash:["6L37"],payback:["6M"],payday:["6E"],protect:["6M"],psychup:["6M"],pursuit:["6L15"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],sandattack:["6L10"],scratch:["6L1"],shadowball:["6M"],shadowclaw:["6M"],slash:["6L30"],snarl:["6M"],snatch:["6L39"],substitute:["6M"],suckerpunch:["6L46"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],thief:["6M"],thunderwave:["6M"],torment:["6L19","6M"],toxic:["6M"],uturn:["6M"],yawn:["6E"],seedbomb:[],gunkshot:[],darkpulse:["6M"],hypervoice:[],irontail:[],snore:[],knockoff:[],roleplay:[],spite:[],trick:[],sleeptalk:["6M"],playrough:["6L49"],confide:["6M"]}}, + liepard:{learnset:{aerialace:["6M"],assist:["6L1","6L6"],assurance:["6L31"],attract:["6M"],cut:["6M"],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],embargo:["6M"],encore:[],facade:["6M"],fakeout:["6L22"],frustration:["6M"],furyswipes:["6L12"],gigaimpact:["6M"],grassknot:["6M"],growl:["6L1","6L3"],hiddenpower:["6M"],honeclaws:["6L26","6M"],hyperbeam:["6M"],nastyplot:["6L50"],nightslash:["6L43"],payback:["6M"],protect:["6M"],psychup:["6M"],pursuit:["6L15"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],sandattack:["6L1","6L10"],scratch:["6L1"],shadowball:["6M"],shadowclaw:["6M"],slash:["6L34"],snarl:["6M"],snatch:["6L47"],substitute:["6M"],suckerpunch:["6L55"],sunnyday:["6M"],swagger:["6M"],taunt:["6L38","6M"],thief:["6M"],thunderwave:["6M"],torment:["6L19","6M"],toxic:["6M"],uturn:["6M"],covet:[],seedbomb:[],gunkshot:[],foulplay:[],darkpulse:["6M"],hypervoice:[],irontail:[],snore:[],knockoff:[],roleplay:[],spite:[],trick:[],sleeptalk:["6M"],playrough:["6L58"],confide:["6M"]}}, + pansage:{learnset:{acrobatics:["6L31","6M"],astonish:["6E"],attract:["6M"],bite:["6L19"],bulletseed:["6E"],covet:["6E"],crunch:["6L43"],cut:["6M"],dig:["6M"],doubleteam:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],fling:["6L28","6M"],frustration:["6M"],furyswipes:["6L13"],grassknot:["6L34","6M"],grasswhistle:["6E"],hiddenpower:["6M"],honeclaws:["6M"],leafstorm:["6E"],leechseed:["6L16"],leer:["6L4"],lick:["6L7"],lowkick:["6E"],lowsweep:["6M"],magicalleaf:["6E"],nastyplot:["6E"],naturalgift:["6L40"],payback:["6M"],protect:["6M"],recycle:["6L37"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:["6E"],round:["6M"],scratch:["6L1"],seedbomb:["6L22"],shadowclaw:["6M"],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],thief:["6M"],tickle:["6E"],torment:["6L25","6M"],toxic:["6M"],vinewhip:["6L10"],workup:[],gunkshot:[],uproar:[],irontail:[],snore:[],knockoff:[],synthesis:[],gigadrain:[],worryseed:[],helpinghand:[],endeavor:[],sleeptalk:["6M"],playnice:["6L1"],naturepower:["6M"],confide:["6M"],disarmingvoice:["6E"]}}, + simisage:{learnset:{acrobatics:["6M"],attract:["6M"],brickbreak:["6M"],cut:["6M"],dig:["6M"],doubleteam:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],furyswipes:["6L1"],gigaimpact:["6M"],grassknot:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],leer:["6L1"],lick:["6L1"],lowsweep:["6M"],payback:["6M"],protect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],seedbomb:["6L1"],shadowclaw:["6M"],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6M"],workup:[],covet:[],lowkick:[],gunkshot:[],uproar:[],superpower:[],irontail:[],snore:[],knockoff:[],synthesis:[],roleplay:[],gigadrain:[],worryseed:[],helpinghand:[],endeavor:[],recycle:[],sleeptalk:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + pansear:{learnset:{acrobatics:["6L31","6M"],amnesia:["6L25"],astonish:["6E"],attract:["6M"],bite:["6L19"],covet:["6E"],crunch:["6L43"],cut:["6M"],dig:["6M"],doubleteam:["6M"],facade:["6M"],fireblast:["6L34","6M"],firepunch:["6E"],firespin:["6E"],flameburst:["6L22"],flamecharge:["6M"],flamethrower:["6M"],fling:["6L28","6M"],frustration:["6M"],furyswipes:["6L13"],grassknot:["6M"],heatwave:["6E"],hiddenpower:["6M"],honeclaws:["6M"],incinerate:["6L10","6M"],leer:["6L4"],lick:["6L7"],lowkick:["6E"],lowsweep:["6M"],nastyplot:["6E"],naturalgift:["6L40"],overheat:["6M"],payback:["6M"],protect:["6M"],recycle:["6L37"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:["6E"],round:["6M"],scratch:["6L1"],shadowclaw:["6M"],sleeptalk:["6M","6E"],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],thief:["6M"],tickle:["6E"],torment:["6M"],toxic:["6M"],willowisp:["6M"],workup:[],yawn:["6L16"],gunkshot:[],uproar:[],irontail:[],snore:[],knockoff:[],helpinghand:[],endeavor:[],playnice:["6L1"],confide:["6M"],disarmingvoice:["6E"]}}, + simisear:{learnset:{acrobatics:["6M"],attract:["6M"],brickbreak:["6M"],cut:["6M"],dig:["6M"],doubleteam:["6M"],facade:["6M"],fireblast:["6M"],flameburst:["6L1"],flamecharge:["6M"],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],furyswipes:["6L1"],gigaimpact:["6M"],grassknot:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],incinerate:["6M"],leer:["6L1"],lick:["6L1"],lowsweep:["6M"],overheat:["6M"],payback:["6M"],protect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],shadowclaw:["6M"],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6M"],willowisp:["6M"],workup:[],covet:[],lowkick:[],gunkshot:[],uproar:[],firepunch:[],superpower:[],irontail:[],snore:[],knockoff:[],heatwave:[],roleplay:[],helpinghand:[],endeavor:[],recycle:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + panpour:{learnset:{acrobatics:["6L31","6M"],aquaring:["6E"],aquatail:["6E"],astonish:["6E"],attract:["6M"],bite:["6L19"],blizzard:["6M"],brine:["6L34"],covet:["6E"],crunch:["6L43"],cut:["6M"],dig:["6M"],dive:[],doubleteam:["6M"],facade:["6M"],fling:["6L28","6M"],frustration:["6M"],furyswipes:["6L13"],grassknot:["6M"],hail:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hydropump:["6E"],icebeam:["6M"],leer:["6L4"],lick:["6L7"],lowkick:["6E"],lowsweep:["6M"],mudsport:["6E"],nastyplot:["6E"],naturalgift:["6L40"],payback:["6M"],protect:["6M"],raindance:["6M"],recycle:["6L37"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:["6E"],round:["6M"],scald:["6L22","6M"],scratch:["6L1"],shadowclaw:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],taunt:["6L25","6M"],thief:["6M"],tickle:["6E"],torment:["6M"],toxic:["6M"],waterfall:["6M"],watergun:["6L10"],watersport:["6L16"],workup:[],gunkshot:[],uproar:[],icepunch:[],icywind:[],irontail:[],snore:[],knockoff:[],helpinghand:[],endeavor:[],sleeptalk:["6M"],playnice:["6L1"],confide:["6M"],disarmingvoice:["6E"]}}, + simipour:{learnset:{acrobatics:["6M"],attract:["6M"],blizzard:["6M"],brickbreak:["6M"],cut:["6M"],dig:["6M"],dive:[],doubleteam:["6M"],facade:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],furyswipes:["6L1"],gigaimpact:["6M"],grassknot:["6M"],hail:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],leer:["6L1"],lick:["6L1"],lowsweep:["6M"],payback:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scald:["6L1","6M"],shadowclaw:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6M"],waterfall:["6M"],workup:[],covet:[],lowkick:[],gunkshot:[],uproar:[],icepunch:[],superpower:[],icywind:[],aquatail:[],irontail:[],snore:[],knockoff:[],roleplay:[],helpinghand:[],endeavor:[],recycle:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + munna:{learnset:{attract:["6M"],barrier:["6E"],batonpass:["6E"],calmmind:["6L35","6M"],chargebeam:["6M"],curse:["6E"],defensecurl:["6L1"],doubleteam:["6M"],dreameater:["6L41","6M"],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],futuresight:["6L31"],gyroball:["6M"],helpinghand:["6E"],hiddenpower:["6M"],hypnosis:["6L19"],imprison:["6L13"],lightscreen:["6M"],luckychant:["6L5"],magiccoat:["6E"],moonlight:["6L17"],nightmare:["6L29"],protect:["6M"],psybeam:["6L11"],psychic:["6L37","6M"],psychup:["6M"],psyshock:["6M"],psywave:["6L1"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],secretpower:["6E"],shadowball:["6M"],sleeptalk:["6M","6E"],sonicboom:["6E"],storedpower:["6L47"],substitute:["6M"],swagger:["6M"],swift:["6E"],synchronoise:["6L25"],telekinesis:["6L43"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trickroom:["6M"],yawn:["6L7"],zenheadbutt:["6L23"],signalbeam:[],gravity:[],snore:[],healbell:[],painsplit:[],worryseed:[],afteryou:[],trick:[],wonderroom:[],skillswap:[],dazzlinggleam:["6M"],confide:["6M"],healingwish:["6E"]}}, + musharna:{learnset:{attract:["6M"],calmmind:["6M"],chargebeam:["6M"],defensecurl:["6L1"],doubleteam:["6M"],dreameater:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],gyroball:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],hypnosis:["6L1"],lightscreen:["6M"],luckychant:["6L1"],protect:["6M"],psybeam:["6L1"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],substitute:["6M"],swagger:["6M"],telekinesis:[],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trickroom:["6M"],signalbeam:[],magiccoat:[],gravity:[],zenheadbutt:[],snore:[],healbell:[],painsplit:[],worryseed:[],afteryou:[],helpinghand:[],trick:[],wonderroom:[],sleeptalk:["6M"],skillswap:[],dazzlinggleam:["6M"],confide:["6M"]}}, + pidove:{learnset:{aerialace:["6M"],aircutter:["6L15"],airslash:["6L29"],attract:["6M"],bestow:["6E"],detect:["6L22"],doubleteam:["6M"],echoedvoice:["6M"],facade:["6L43","6M"],featherdance:["6L36"],fly:["6M"],frustration:["6M"],growl:["6L4"],gust:["6L1"],hiddenpower:["6M"],hypnosis:["6E"],leer:["6L8"],luckychant:["6E"],morningsun:["6E"],pluck:[],protect:["6M"],quickattack:["6L11"],raindance:["6M"],razorwind:["6L32"],rest:["6M"],"return":["6M"],roost:["6L18","6M"],round:["6M"],skyattack:["6L50"],steelwing:["6M","6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6L39","6M"],tailwind:["6L46"],taunt:["6L25","6M"],toxic:["6M"],uproar:["6E"],uturn:["6M"],wish:["6E"],workup:[],snore:[],heatwave:[],sleeptalk:["6M"],confide:["6M"],nightslash:["6E"]}}, + tranquill:{learnset:{aerialace:["6M"],aircutter:["6L15"],airslash:["6L32"],attract:["6M"],detect:["6L23"],doubleteam:["6M"],echoedvoice:["6M"],facade:["6L50","6M"],featherdance:["6L41"],fly:["6M"],frustration:["6M"],growl:["6L1","6L4"],gust:["6L1"],hiddenpower:["6M"],leer:["6L1","6L8"],pluck:[],protect:["6M"],quickattack:["6L1","6L11"],raindance:["6M"],razorwind:["6L36"],rest:["6M"],"return":["6M"],roost:["6L18","6M"],round:["6M"],skyattack:["6L59"],substitute:["6M"],sunnyday:["6M"],swagger:["6L45","6M"],tailwind:["6L54"],taunt:["6L27","6M"],toxic:["6M"],uturn:["6M"],workup:[],uproar:[],snore:[],heatwave:[],sleeptalk:["6M"],steelwing:["6M"],confide:["6M"]}}, + unfezant:{learnset:{aerialace:["6M"],aircutter:["6L15"],airslash:["6L33"],attract:["6M"],detect:["6L23"],doubleteam:["6M"],echoedvoice:["6M"],facade:["6L55","6M"],featherdance:["6L44"],fly:["6M"],frustration:["6M"],gigaimpact:["6M"],growl:["6L1","6L4"],gust:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],leer:["6L1","6L8"],pluck:[],protect:["6M"],psychup:["6M"],quickattack:["6L1","6L11"],raindance:["6M"],razorwind:["6L38"],rest:["6M"],"return":["6M"],roost:["6L18","6M"],round:["6M"],skyattack:["6L66"],substitute:["6M"],sunnyday:["6M"],swagger:["6L49","6M"],tailwind:["6L60"],taunt:["6L27","6M"],toxic:["6M"],uturn:["6M"],workup:[],uproar:[],snore:[],heatwave:[],sleeptalk:["6M"],steelwing:["6M"],confide:["6M"]}}, + blitzle:{learnset:{agility:["6L36"],attract:["6M"],charge:["6L8"],chargebeam:["6M"],discharge:["6L32"],doubleedge:["6E"],doublekick:["6E"],doubleteam:["6M"],endure:["6E"],facade:["6M"],flamecharge:["6L18","6M"],flash:["6M"],frustration:["6M"],hiddenpower:["6M"],lightscreen:["6M"],mefirst:["6E"],protect:["6M"],pursuit:["6L22"],quickattack:["6L1"],rage:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],sandattack:["6E"],screech:["6E"],shockwave:["6L11","6E"],spark:["6L25"],stomp:["6L29"],substitute:["6M"],swagger:["6M"],tailwhip:["6L4"],takedown:["6E"],thrash:["6L43"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6L15","6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6L39","6M"],signalbeam:[],bounce:[],magnetrise:[],snore:[],sleeptalk:["6M"],confide:["6M"]}}, + zebstrika:{learnset:{agility:["6L42"],attract:["6M"],charge:["6L1","6L8"],chargebeam:["6M"],discharge:["6L36"],doubleteam:["6M"],facade:["6M"],flamecharge:["6L18","6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],lightscreen:["6M"],overheat:["6M"],protect:["6M"],pursuit:["6L22"],quickattack:["6L1"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],shockwave:["6L11"],spark:["6L25"],stomp:["6L31"],substitute:["6M"],swagger:["6M"],tailwhip:["6L1","6L4"],thrash:["6L53"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6L1","6L15","6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6L47","6M"],signalbeam:[],bounce:[],magnetrise:[],snore:[],sleeptalk:["6M"],iondeluge:["6L1","6L58"],confide:["6M"]}}, + roggenrola:{learnset:{attract:["6M"],autotomize:["6E"],bulldoze:["6M"],curse:["6E"],doubleteam:["6M"],earthquake:["6M"],explosion:["6L40","6M"],facade:["6M"],flashcannon:["6M"],frustration:["6M"],gravity:["6E"],harden:["6L4"],headbutt:["6L10"],heavyslam:["6E"],hiddenpower:["6M"],irondefense:["6L20"],lockon:["6E"],magnitude:["6E"],mudslap:["6L17"],protect:["6M"],rest:["6M"],"return":["6M"],rockblast:["6L14"],rockpolish:["6M"],rockslide:["6L27","6M"],rocksmash:["6M"],rocktomb:["6M","6E"],round:["6M"],sandattack:["6L7"],sandstorm:["6L33","6M"],smackdown:["6L23","6M"],stealthrock:["6L30"],stoneedge:["6L36","6M"],strength:["6M"],substitute:["6M"],swagger:["6M"],tackle:["6L1"],takedown:["6E"],toxic:["6M"],block:[],earthpower:[],snore:[],sleeptalk:["6M"],naturepower:["6M"],confide:["6M"]}}, + boldore:{learnset:{attract:["6M"],bulldoze:["6M"],doubleteam:["6M"],earthquake:["6M"],explosion:["6L55","6M"],facade:["6M"],flashcannon:["6M"],frustration:["6M"],harden:["6L1","6L4"],headbutt:["6L1","6L10"],hiddenpower:["6M"],irondefense:["6L20"],mudslap:["6L17"],powergem:["6L25"],protect:["6M"],rest:["6M"],"return":["6M"],rockblast:["6L14"],rockpolish:["6M"],rockslide:["6L30","6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L1","6L7"],sandstorm:["6L42","6M"],smackdown:["6L23","6M"],stealthrock:["6L36"],stoneedge:["6L48","6M"],strength:["6M"],substitute:["6M"],swagger:["6M"],tackle:["6L1"],toxic:["6M"],block:[],earthpower:[],gravity:[],snore:[],sleeptalk:["6M"],curse:[],heavyslam:[],naturepower:["6M"],confide:["6M"]}}, + gigalith:{learnset:{attract:["6M"],bulldoze:["6M"],doubleteam:["6M"],earthquake:["6M"],explosion:["6L55","6M"],facade:["6M"],flashcannon:["6M"],frustration:["6M"],gigaimpact:["6M"],harden:["6L1","6L4"],headbutt:["6L1","6L10"],hiddenpower:["6M"],hyperbeam:["6M"],irondefense:["6L20"],mudslap:["6L17"],powergem:["6L25"],protect:["6M"],rest:["6M"],"return":["6M"],rockblast:["6L14"],rockpolish:["6M"],rockslide:["6L30","6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L1","6L7"],sandstorm:["6L42","6M"],smackdown:["6L23","6M"],solarbeam:["6M"],stealthrock:["6L36"],stoneedge:["6L48","6M"],strength:["6M"],substitute:["6M"],swagger:["6M"],tackle:["6L1"],toxic:["6M"],ironhead:[],block:[],earthpower:[],gravity:[],superpower:[],snore:[],sleeptalk:["6M"],naturepower:["6M"],confide:["6M"]}}, + woobat:{learnset:{acrobatics:["6M"],aerialace:["6M"],aircutter:["6L21"],airslash:["6L32"],amnesia:["6L29"],assurance:["6L12"],attract:["6L25","6M"],calmmind:["6L29","6M"],chargebeam:["6M"],charm:["6E"],confusion:["6L1"],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],endeavor:["6L47"],energyball:["6M"],facade:["6M"],faketears:["6E"],flash:["6M"],flatter:["6E"],fly:["6M"],frustration:["6M"],futuresight:["6L36"],gust:["6L8"],gyroball:["6M"],heartstamp:["6L15"],helpinghand:["6E"],hiddenpower:["6M"],imprison:["6L19"],knockoff:["6E"],lightscreen:["6M"],odorsleuth:["6L4"],pluck:[],protect:["6M"],psychic:["6L41","6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],roost:["6M","6E"],round:["6M"],safeguard:["6M"],shadowball:["6M"],storedpower:["6E"],substitute:["6M"],supersonic:["6E"],swagger:["6M"],synchronoise:["6E"],taunt:["6M"],telekinesis:[],thief:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trickroom:["6M"],uturn:["6M"],superfang:[],signalbeam:[],uproar:[],magiccoat:[],zenheadbutt:[],snore:[],heatwave:[],tailwind:[],gigadrain:[],afteryou:[],trick:[],sleeptalk:["6M"],skillswap:[],steelwing:["6M"],confide:["6M"],psychoshift:["6E"],venomdrench:["6E"]}}, + swoobat:{learnset:{acrobatics:["6M"],aerialace:["6M"],aircutter:["6L21"],airslash:["6L32"],amnesia:["6L29"],assurance:["6L1","6L12"],attract:["6L25","6M"],calmmind:["6L29","6M"],chargebeam:["6M"],confusion:["6L1"],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],endeavor:["6L47"],energyball:["6M"],facade:["6M"],flash:["6M"],fly:["6M"],frustration:["6M"],futuresight:["6L36"],gigaimpact:["6M"],gust:["6L1","6L8"],gyroball:["6M"],heartstamp:["6L15"],hiddenpower:["6M"],hyperbeam:["6M"],imprison:["6L19"],lightscreen:["6M"],odorsleuth:["6L1","6L4"],pluck:[],protect:["6M"],psychic:["6L41","6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],substitute:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],trickroom:["6M"],uturn:["6M"],superfang:[],signalbeam:[],uproar:[],magiccoat:[],zenheadbutt:[],snore:[],knockoff:[],heatwave:[],tailwind:[],skyattack:[],gigadrain:[],roost:["6M"],afteryou:[],helpinghand:[],trick:[],sleeptalk:["6M"],skillswap:[],steelwing:["6M"],confide:["6M"]}}, + drilbur:{learnset:{aerialace:["6M"],attract:["6M"],brickbreak:["6M"],bulldoze:["6M"],crushclaw:["6E"],cut:["6M"],dig:["6L19","6M"],doubleteam:["6M"],drillrun:["6L43"],earthpower:["6E"],earthquake:["6L33","6M"],facade:["6M"],fissure:["6L47"],fling:["6M"],frustration:["6M"],furyswipes:["6L12"],hiddenpower:["6M"],honeclaws:["6L22","6M"],irondefense:["6E"],metalclaw:["6L15"],metalsound:["6E"],mudslap:["6L8"],mudsport:["6L1"],poisonjab:["6M"],protect:["6M"],rapidspin:["6L5","6E"],rest:["6M"],"return":["6M"],rockclimb:["6E"],rockslide:["6L29","6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6L40","6M"],scratch:["6L1"],shadowclaw:["6M"],skullbash:["6E"],slash:["6L26"],sludgebomb:["6M"],strength:["6M"],submission:["6E"],substitute:["6M"],swagger:["6M"],swordsdance:["6L36","6M"],toxic:["6M"],xscissor:["6M"],snore:[],stealthrock:[],sleeptalk:["6M"],confide:["6M"]}}, + excadrill:{learnset:{aerialace:["6M"],attract:["6M"],brickbreak:["6M"],bulldoze:["6M"],cut:["6M"],dig:["6L19","6M"],doubleteam:["6M"],drillrun:["6L55"],earthquake:["6L36","6M"],facade:["6M"],fissure:["6L62"],fling:["6M"],focusblast:["6M"],frustration:["6M"],furyswipes:["6L12"],gigaimpact:["6M"],hiddenpower:["6M"],honeclaws:["6L22","6M"],horndrill:["6L31"],hyperbeam:["6M"],metalclaw:["6L15"],mudslap:["6L1","6L8"],mudsport:["6L1"],poisonjab:["6M"],protect:["6M"],rapidspin:["6L1","6L5"],rest:["6M"],"return":["6M"],rockslide:["6L29","6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6L49","6M"],scratch:["6L1"],shadowclaw:["6M"],slash:["6L26"],sludgebomb:["6M"],strength:["6M"],substitute:["6M"],swagger:["6M"],swordsdance:["6L42","6M"],toxic:["6M"],xscissor:["6M"],ironhead:[],earthpower:[],magnetrise:[],irondefense:[],snore:[],stealthrock:[],sleeptalk:["6M"],rototiller:["6L1"],confide:["6M"]}}, + audino:{learnset:{afteryou:["6L40"],amnesia:["6E"],attract:["6L15","6M"],bestow:["6E"],blizzard:["6M"],calmmind:["6M"],chargebeam:["6M"],dig:["6M"],doubleedge:["6L50"],doubleslap:["6L10"],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],encore:["6E"],entrainment:["6L25"],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],grassknot:["6M"],growl:["6L1"],healbell:["6E"],healingwish:["6E"],healpulse:["6L35"],helpinghand:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],incinerate:["6M"],lastresort:["6L1","6L55"],lightscreen:["6M"],luckychant:["6E"],pound:["6L1"],present:[],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],reflect:["6M"],refresh:["6L5"],rest:["6M"],retaliate:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],secretpower:["6L20"],shadowball:["6M"],simplebeam:["6L45"],sleeptalk:["6M","6E"],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],sweetkiss:["6E"],takedown:["6L30"],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trickroom:["6M"],wildcharge:["6M"],wish:["6E"],workup:[],yawn:["6E"],covet:[],signalbeam:[],lowkick:[],uproar:[],thunderpunch:[],firepunch:[],icepunch:[],magiccoat:[],gravity:[],icywind:[],zenheadbutt:[],hypervoice:[],irontail:[],snore:[],knockoff:[],roleplay:[],painsplit:[],drainpunch:[],snatch:[],skillswap:[],playnice:["6L1"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"],drainingkiss:["6E"]}}, + timburr:{learnset:{attract:["6M"],bide:["6L8"],brickbreak:["6M"],bulkup:["6L28","6M"],chipaway:["6L24"],cometpunch:["6E"],counter:["6E"],detect:["6E"],dig:["6M"],doubleteam:["6M"],drainpunch:["6E"],dynamicpunch:["6L34"],endure:["6E"],facade:["6M"],fling:["6M"],focusblast:["6M"],focusenergy:["6L4"],focuspunch:["6L46"],forcepalm:["6E"],foresight:["6E"],frustration:["6M"],grassknot:["6M"],hammerarm:["6L40"],hiddenpower:["6M"],leer:["6L1"],lowkick:["6L12"],lowsweep:["6M"],machpunch:["6E"],payback:["6M"],poisonjab:["6M"],pound:["6L1"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],reversal:["6E"],rockslide:["6L31","6M"],rocksmash:["6M"],rockthrow:["6L16"],rocktomb:["6M"],round:["6M"],scaryface:["6L37"],smackdown:["6M"],smellingsalts:["6E"],stoneedge:["6L43","6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:["6L49"],swagger:["6M"],taunt:["6M"],toxic:["6M"],wakeupslap:["6L20"],wideguard:["6E"],workup:[],thunderpunch:[],firepunch:[],icepunch:[],block:[],snore:[],knockoff:[],helpinghand:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"],crosschop:["6E"]}}, + gurdurr:{learnset:{attract:["6M"],bide:["6L1","6L8"],brickbreak:["6M"],bulkup:["6L29","6M"],chipaway:["6L24"],dig:["6M"],doubleteam:["6M"],dynamicpunch:["6L37"],facade:["6M"],fling:["6M"],focusblast:["6M"],focusenergy:["6L1","6L4"],focuspunch:["6L53"],frustration:["6M"],grassknot:["6M"],hammerarm:["6L45"],hiddenpower:["6M"],leer:["6L1"],lowkick:["6L12"],lowsweep:["6M"],machpunch:[],payback:["6M"],poisonjab:["6M"],pound:["6L1"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6L33","6M"],rocksmash:["6M"],rockthrow:["6L16"],rocktomb:["6M"],round:["6M"],scaryface:["6L41"],smackdown:["6M"],stoneedge:["6L49","6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:["6L57"],swagger:["6M"],taunt:["6M"],toxic:["6M"],wakeupslap:["6L20"],workup:[],thunderpunch:[],firepunch:[],icepunch:[],block:[],snore:[],knockoff:[],drainpunch:[],helpinghand:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + conkeldurr:{learnset:{attract:["6M"],bide:["6L1","6L8"],brickbreak:["6M"],bulkup:["6L29","6M"],bulldoze:["6M"],chipaway:["6L24"],dig:["6M"],doubleteam:["6M"],dynamicpunch:["6L37"],earthquake:["6M"],facade:["6M"],fling:["6M"],focusblast:["6M"],focusenergy:["6L1","6L4"],focuspunch:["6L53"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],hammerarm:["6L45"],hiddenpower:["6M"],hyperbeam:["6M"],leer:["6L1"],lowkick:["6L12"],lowsweep:["6M"],payback:["6M"],poisonjab:["6M"],pound:["6L1"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6L33","6M"],rocksmash:["6M"],rockthrow:["6L16"],rocktomb:["6M"],round:["6M"],scaryface:["6L41"],smackdown:["6M"],stoneedge:["6L49","6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:["6L57"],swagger:["6M"],taunt:["6M"],toxic:["6M"],wakeupslap:["6L20"],workup:[],thunderpunch:[],firepunch:[],icepunch:[],block:[],snore:[],knockoff:[],drainpunch:[],helpinghand:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + tympole:{learnset:{aquaring:["6L20"],attract:["6M"],bubble:["6L1"],bubblebeam:["6L12"],doubleteam:["6M"],earthpower:["6E"],echoedvoice:["6L38","6M"],facade:["6M"],flail:["6L34"],frustration:["6M"],growl:["6L1"],hail:["6M"],hiddenpower:["6M"],hydropump:["6L42"],hypervoice:["6L45"],mist:["6E"],mudbomb:["6E"],muddywater:["6L27"],mudshot:["6L16"],mudsport:["6E"],protect:["6M"],raindance:["6L31","6M"],refresh:["6E"],rest:["6M"],"return":["6M"],round:["6L9","6M"],scald:["6M"],sleeptalk:["6M","6E"],sludgebomb:["6M"],sludgewave:["6M"],snore:["6E"],substitute:["6M"],supersonic:["6L5"],surf:["6M"],swagger:["6M"],toxic:["6M"],uproar:["6L23"],waterpulse:["6E"],bounce:[],icywind:[],endeavor:[],infestation:["6M"],confide:["6M"]}}, + palpitoad:{learnset:{aquaring:["6L20"],attract:["6M"],bubble:["6L1"],bubblebeam:["6L12"],bulldoze:["6M"],doubleteam:["6M"],echoedvoice:["6L42","6M"],facade:["6M"],flail:["6L37"],frustration:["6M"],growl:["6L1"],hail:["6M"],hiddenpower:["6M"],hydropump:["6L47"],hypervoice:["6L51"],muddywater:["6L28"],mudshot:["6L16"],protect:["6M"],raindance:["6L33","6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],round:["6L1","6L9","6M"],scald:["6M"],sludgebomb:["6M"],sludgewave:["6M"],substitute:["6M"],supersonic:["6L1","6L5"],surf:["6M"],swagger:["6M"],toxic:["6M"],uproar:["6L23"],bounce:[],earthpower:[],icywind:[],snore:[],gastroacid:[],endeavor:[],stealthrock:[],sleeptalk:["6M"],infestation:["6M"],confide:["6M"]}}, + seismitoad:{learnset:{acid:["6L36"],aquaring:["6L20"],attract:["6M"],brickbreak:["6M"],bubble:["6L1"],bubblebeam:["6L12"],bulldoze:["6M"],dig:["6M"],doubleteam:["6M"],drainpunch:["6L44"],earthquake:["6M"],echoedvoice:["6L49","6M"],facade:["6M"],flail:["6L39"],fling:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],growl:["6L1"],hail:["6M"],hiddenpower:["6M"],hydropump:["6L53"],hyperbeam:["6M"],hypervoice:["6L59"],muddywater:["6L28"],mudshot:["6L16"],payback:["6M"],poisonjab:["6M"],protect:["6M"],raindance:["6L33","6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6L1","6L9","6M"],scald:["6M"],sludgebomb:["6M"],sludgewave:["6M"],strength:["6M"],substitute:["6M"],supersonic:["6L1","6L5"],surf:["6M"],swagger:["6M"],toxic:["6M"],uproar:["6L23"],venoshock:["6M"],bounce:[],lowkick:[],icepunch:[],earthpower:[],icywind:[],snore:[],knockoff:[],gastroacid:[],endeavor:[],stealthrock:[],sleeptalk:["6M"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + throh:{learnset:{attract:["6M"],bide:["6L5"],bind:["6L1"],bodyslam:["6L29"],brickbreak:["6M"],bulkup:["6L33","6M"],bulldoze:["6M"],circlethrow:["6L37"],dig:["6M"],doubleteam:["6M"],earthquake:["6M"],endure:["6L41"],facade:["6M"],fling:["6M"],focusblast:["6M"],focusenergy:["6L9"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],hiddenpower:["6M"],leer:["6L1"],lowsweep:["6M"],payback:["6M"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L21"],reversal:["6L50"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],seismictoss:["6L13"],stoneedge:["6M"],stormthrow:["6L25"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:["6L48"],swagger:["6M"],taunt:["6M"],toxic:["6M"],vitalthrow:["6L17"],wideguard:["6L45"],workup:[],lowkick:[],thunderpunch:[],firepunch:[],icepunch:[],block:[],snore:[],knockoff:[],painsplit:[],helpinghand:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + sawk:{learnset:{attract:["6M"],bide:["6L5"],brickbreak:["6L29","6M"],bulkup:["6L33","6M"],bulldoze:["6M"],closecombat:["6L48"],counter:["6L21"],dig:["6M"],doublekick:["6L13"],doubleteam:["6M"],earthquake:["6M"],endure:["6L41"],facade:["6M"],fling:["6M"],focusblast:["6M"],focusenergy:["6L9"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],hiddenpower:["6M"],karatechop:["6L25"],leer:["6L1"],lowsweep:["6L17","6M"],payback:["6M"],poisonjab:["6M"],protect:["6M"],quickguard:["6L45"],raindance:["6M"],rest:["6M"],retaliate:["6L37","6M"],"return":["6M"],reversal:["6L50"],rockslide:["6M"],rocksmash:["6L1","6M"],rocktomb:["6M"],round:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],toxic:["6M"],workup:[],dualchop:[],lowkick:[],thunderpunch:[],firepunch:[],icepunch:[],block:[],superpower:[],snore:[],knockoff:[],painsplit:[],helpinghand:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + sewaddle:{learnset:{agility:["6E"],airslash:["6E"],attract:["6M"],batonpass:["6E"],bugbite:["6L8"],bugbuzz:["6L36"],calmmind:["6M"],camouflage:["6E"],cut:["6M"],doubleteam:["6M"],dreameater:["6M"],endure:["6L29"],energyball:["6M"],facade:["6M"],flail:["6L43"],flash:["6M"],frustration:["6M"],grassknot:["6M"],hiddenpower:["6M"],lightscreen:["6M"],mefirst:["6E"],mindreader:["6E"],payback:["6M"],protect:["6M"],razorleaf:["6L15"],razorwind:["6E"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],screech:["6E"],silverwind:["6E"],solarbeam:["6M"],stringshot:["6L1"],strugglebug:["6L22","6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],toxic:["6M"],signalbeam:[],seedbomb:[],magiccoat:[],irondefense:[],electroweb:[],snore:[],synthesis:[],gigadrain:[],worryseed:[],sleeptalk:["6M"],stickyweb:["6L31"],naturepower:["6M"],confide:["6M"]}}, + swadloon:{learnset:{attract:["6M"],bugbite:["6L1"],calmmind:["6M"],cut:["6M"],doubleteam:["6M"],dreameater:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],grassknot:["6M"],grasswhistle:["6L1"],hiddenpower:["6M"],lightscreen:["6M"],payback:["6M"],protect:["6L20","6M"],razorleaf:["6L1"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],solarbeam:["6M"],stringshot:["6L1"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],toxic:["6M"],signalbeam:[],seedbomb:[],magiccoat:[],irondefense:[],electroweb:[],snore:[],synthesis:[],gigadrain:[],worryseed:[],sleeptalk:["6M"],naturepower:["6M"],confide:["6M"]}}, + leavanny:{learnset:{aerialace:["6M"],attract:["6M"],bugbite:["6L1","6L8"],calmmind:["6M"],cut:["6M"],doubleteam:["6M"],dreameater:["6M"],energyball:["6M"],entrainment:["6L43"],facade:["6M"],falseswipe:["6L1","6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],helpinghand:["6L32"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],leafblade:["6L36"],leafstorm:["6L50"],lightscreen:["6M"],payback:["6M"],poisonjab:["6M"],protect:["6M"],razorleaf:["6L1","6L15"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],shadowclaw:["6M"],slash:["6L29"],solarbeam:["6M"],stringshot:["6L1"],strugglebug:["6L22","6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6L46","6M"],tackle:["6L1"],toxic:["6M"],xscissor:["6L39","6M"],signalbeam:[],seedbomb:[],magiccoat:[],irondefense:[],electroweb:[],snore:[],knockoff:[],synthesis:[],healbell:[],gigadrain:[],worryseed:[],sleeptalk:["6M"],fellstinger:["6L34"],steelwing:["6M"],naturepower:["6M"],confide:["6M"]}}, + venipede:{learnset:{agility:["6L29"],attract:["6M"],bugbite:["6L22"],defensecurl:["6L1"],doubleedge:["6L43"],doubleteam:["6M"],facade:["6M"],frustration:["6M"],gyroball:["6M"],hiddenpower:["6M"],payback:["6M"],pinmissile:["6E"],poisonjab:["6M"],poisonsting:["6L5"],poisontail:["6L19"],protect:["6L15","6M"],pursuit:["6L12"],rest:["6M"],"return":["6M"],rockclimb:["6L40","6E"],rocksmash:["6M"],rollout:["6L1"],round:["6M"],screech:["6L8"],sludgebomb:["6M"],solarbeam:["6M"],spikes:["6E"],steamroller:["6L33"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],takedown:["6E"],toxic:["6L36","6M"],toxicspikes:["6E"],twineedle:["6E"],venoshock:["6L26","6L38","6M"],irondefense:[],snore:[],endeavor:[],sleeptalk:["6M"],infestation:["6M"],confide:["6M"]}}, + whirlipede:{learnset:{agility:["6L32"],attract:["6M"],bugbite:["6L23"],defensecurl:["6L1"],doubleedge:["6L50"],doubleteam:["6M"],facade:["6M"],frustration:["6M"],gyroball:["6M"],hiddenpower:["6M"],irondefense:["6L22"],payback:["6M"],poisonjab:["6M"],poisonsting:["6L1","6L5"],poisontail:["6L19"],protect:["6L15","6M"],pursuit:["6L12"],rest:["6M"],"return":["6M"],rockclimb:["6L46"],rocksmash:["6M"],rollout:["6L1"],round:["6M"],screech:["6L1","6L8"],sludgebomb:["6M"],solarbeam:["6M"],steamroller:["6L37"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],toxic:["6L41","6M"],venoshock:["6L28","6M"],snore:[],endeavor:[],sleeptalk:["6M"],venomdrench:["6L43"],infestation:["6M"],confide:["6M"]}}, + scolipede:{learnset:{agility:["6L33"],attract:["6M"],batonpass:["6L30"],bugbite:["6L23"],bulldoze:["6M"],cut:["6M"],defensecurl:["6L1"],dig:["6M"],doubleedge:["6L55"],doubleteam:["6M"],earthquake:["6M"],facade:["6M"],frustration:["6M"],gigaimpact:["6M"],gyroball:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],megahorn:["6L1","6L65"],payback:["6M"],poisonjab:["6M"],poisonsting:["6L1","6L5"],poisontail:["6L19"],protect:["6L15","6M"],pursuit:["6L12"],rest:["6M"],"return":["6M"],rockclimb:["6L50"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L1"],round:["6M"],screech:["6L1","6L8"],sludgebomb:["6M"],solarbeam:["6M"],steamroller:["6L39"],strength:["6M"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],toxic:["6L44","6M"],venoshock:["6L28","6M"],xscissor:["6M"],irondefense:[],superpower:[],aquatail:[],irontail:[],snore:[],endeavor:[],snatch:[],sleeptalk:["6M"],toxicspikes:[],venomdrench:["6L47"],infestation:["6M"],confide:["6M"]}}, + cottonee:{learnset:{absorb:["6L0"],attract:["6M"],beatup:["6E"],charm:["6L0"],cottonguard:["6L0"],cottonspore:["6L0"],doubleteam:["6M"],dreameater:["6M"],encore:["6E"],endeavor:["6L0"],energyball:["6M"],facade:["6M"],faketears:["6E"],flash:["6M"],frustration:["6M"],gigadrain:["6L0"],grassknot:["6M"],grasswhistle:["6E"],growth:["6L0"],helpinghand:["6L0"],hiddenpower:["6M"],leechseed:["6L0"],megadrain:["6L0"],memento:["6E"],naturalgift:["6E"],poisonpowder:["6L0"],protect:["6M"],razorleaf:["6L0"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],solarbeam:["6M"],stunspore:["6L0"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],switcheroo:["6E"],taunt:["6M"],tickle:["6E"],toxic:["6M"],worryseed:["6E"],covet:[],seedbomb:[],snore:[],knockoff:[],tailwind:[],sleeptalk:["6M"]}}, + whimsicott:{learnset:{attract:["6M"],beatup:[],cottonspore:["6L0"],doubleteam:["6M"],dreameater:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],gigadrain:[],gigaimpact:["6M"],grassknot:["6M"],growth:["6L0"],gust:["6L0"],helpinghand:[],hiddenpower:["6M"],hurricane:["6L0"],hyperbeam:["6M"],leechseed:["6L0"],lightscreen:["6M"],megadrain:["6L0"],protect:["6M"],psychic:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tailwind:["6L0"],taunt:["6M"],thief:["6M"],toxic:["6M"],trickroom:["6M"],uturn:["6M"],covet:[],seedbomb:[],snore:[],knockoff:[],worryseed:[],endeavor:[],sleeptalk:["6M"]}}, + petilil:{learnset:{absorb:["6L1"],afteryou:["6L44"],aromatherapy:["6L28"],attract:["6M"],bide:["6E"],charm:["6E"],cut:["6M"],doubleteam:["6M"],dreameater:["6M"],endure:["6E"],energyball:["6L35","6M"],entrainment:["6L37"],facade:["6M"],flash:["6M"],frustration:["6M"],gigadrain:["6L26"],grassknot:["6M"],grasswhistle:["6E"],growth:["6L4"],healingwish:["6E"],helpinghand:["6L31"],hiddenpower:["6M"],ingrain:["6E"],leafstorm:["6L46"],leechseed:["6L8"],magicalleaf:["6L19"],megadrain:["6L13"],naturalgift:["6E"],protect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],sleeppowder:["6L10"],solarbeam:["6M"],stunspore:["6L22"],substitute:["6M"],sunnyday:["6L40","6M"],swagger:["6M"],sweetscent:["6E"],synthesis:["6L17"],toxic:["6M"],worryseed:["6E"],covet:[],seedbomb:[],snore:[],healbell:[],sleeptalk:["6M"],naturepower:["6M"],confide:["6M"]}}, + lilligant:{learnset:{attract:["6M"],cut:["6M"],doubleteam:["6M"],dreameater:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],growth:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],leechseed:["6L1"],lightscreen:["6M"],megadrain:["6L1"],petaldance:["6L46"],protect:["6M"],quiverdance:["6L28"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],synthesis:["6L1"],teeterdance:["6L10"],toxic:["6M"],covet:[],seedbomb:[],snore:[],roleplay:[],healbell:[],gigadrain:[],worryseed:[],afteryou:[],helpinghand:[],sleeptalk:["6M"],petalblizzard:["6L50"],naturepower:["6M"],confide:["6M"]}}, + basculin:{learnset:{agility:["6E"],aquajet:["6L13"],aquatail:["6L28"],attract:["6M"],bite:["6L10"],brine:["6E"],bubblebeam:["6E"],chipaway:["6L16"],crunch:["6L24"],cut:["6M"],dive:[],doubleedge:["6L36"],doubleteam:["6M"],facade:["6M"],finalgambit:["6L50"],flail:["6L1","6L46"],frustration:["6M"],hail:["6M"],headbutt:["6L7"],hiddenpower:["6M"],icebeam:["6M"],muddywater:["6E"],mudshot:["6E"],protect:["6M"],rage:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],revenge:["6E"],round:["6M"],scald:["6M"],scaryface:["6L41"],soak:["6L32"],substitute:["6M"],surf:["6M"],swagger:["6M"],swift:["6E"],tackle:["6L1"],takedown:["6L20"],taunt:["6M"],thrash:["6L1","6L56"],toxic:["6M"],uproar:["6L4"],waterfall:["6M"],watergun:["6L1"],whirlpool:["6E"],bounce:[],superpower:[],icywind:[],zenheadbutt:[],snore:[],endeavor:[],sleeptalk:["6M"],tailwhip:["6L1"],confide:["6M"]}}, + sandile:{learnset:{assurance:["6L16"],attract:["6M"],beatup:["6E"],bite:["6L4"],bulldoze:["6M"],counter:["6E"],crunch:["6L28"],cut:["6M"],dig:["6L31","6M"],doubleedge:["6E"],doubleteam:["6M"],earthquake:["6L43","6M"],embargo:["6L22","6M"],facade:["6M"],firefang:["6E"],focusenergy:["6E"],foulplay:["6L37"],frustration:["6M"],hiddenpower:["6M"],honeclaws:["6M"],incinerate:["6M"],leer:["6L1"],meanlook:["6E"],mudslap:["6L19"],payback:["6M"],protect:["6M"],pursuit:["6E"],rage:["6L1"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockclimb:["6E"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L7"],sandstorm:["6L40","6M"],sandtomb:["6L13"],scaryface:["6L34"],sludgebomb:["6M"],snarl:["6M"],stoneedge:["6M"],substitute:["6M"],swagger:["6L25","6M"],taunt:["6M"],thief:["6M"],thrash:["6L46"],thunderfang:["6E"],torment:["6L10","6M"],toxic:["6M"],uproar:["6E"],aquatail:[],darkpulse:["6M"],earthpower:[],irontail:[],sleeptalk:["6M"],snatch:[],snore:[],spite:[],stealthrock:[],confide:["6M"]}}, + krokorok:{learnset:{assurance:["6L16"],attract:["6M"],bite:["6L1","6L4"],brickbreak:["6M"],bulldoze:["6M"],crunch:["6L28"],cut:["6M"],dig:["6L32","6M"],doubleteam:["6M"],earthquake:["6L48","6M"],embargo:["6L22","6M"],facade:["6M"],fling:["6M"],foulplay:["6L40"],frustration:["6M"],grassknot:["6M"],hiddenpower:["6M"],honeclaws:["6M"],incinerate:["6M"],leer:["6L1"],lowsweep:["6M"],mudslap:["6L19"],payback:["6M"],protect:["6M"],rage:["6L1"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L1","6L7"],sandstorm:["6L44","6M"],sandtomb:["6L13"],scaryface:["6L36"],shadowclaw:["6M"],sludgebomb:["6M"],snarl:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],swagger:["6L25","6M"],taunt:["6M"],thief:["6M"],thrash:["6L52"],torment:["6L10","6M"],toxic:["6M"],lowkick:[],uproar:[],earthpower:[],aquatail:[],darkpulse:["6M"],irontail:[],snore:[],knockoff:[],spite:[],snatch:[],stealthrock:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + krookodile:{learnset:{aerialace:["6M"],assurance:["6L16"],attract:["6M"],bite:["6L1","6L4"],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],crunch:["6L28"],cut:["6M"],dig:["6L32","6M"],doubleteam:["6M"],dragonclaw:["6M"],dragontail:["6M"],earthquake:["6L54","6M"],embargo:["6L22","6M"],facade:["6M"],fling:["6M"],focusblast:["6M"],foulplay:["6L42"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],incinerate:["6M"],leer:["6L1"],lowsweep:["6M"],mudslap:["6L19"],outrage:["6L1","6L60"],payback:["6M"],protect:["6M"],rage:["6L1"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L1","6L7"],sandstorm:["6L48","6M"],sandtomb:["6L13"],scaryface:["6L36"],shadowclaw:["6M"],sludgebomb:["6M"],smackdown:["6M"],snarl:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],swagger:["6L25","6M"],taunt:["6M"],thief:["6M"],torment:["6L10","6M"],toxic:["6M"],lowkick:[],uproar:[],block:[],earthpower:[],superpower:[],aquatail:[],darkpulse:["6M"],dragonpulse:[],irontail:[],snore:[],knockoff:[],spite:[],snatch:[],stealthrock:[],sleeptalk:["6M"],counter:[],meanlook:[],poweruppunch:["6M"],confide:["6M"]}}, + darumaka:{learnset:{attract:["6M"],bellydrum:["6L0"],brickbreak:["6M"],dig:["6M"],doubleteam:["6M"],encore:["6E"],endure:["6E"],facade:["6M"],fireblast:["6M"],firefang:["6L0"],firepunch:["6L0"],flamecharge:["6M"],flamethrower:["6M"],flamewheel:["6E"],flareblitz:["6L0"],fling:["6M"],focusenergy:["6E"],focuspunch:["6E"],frustration:["6M"],grassknot:["6M"],gyroball:["6M"],hammerarm:["6E"],headbutt:["6L0"],hiddenpower:["6M"],incinerate:["6M"],overheat:["6M"],protect:["6M"],rage:["6L0"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L0"],round:["6M"],sleeptalk:["6E"],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:["6L0"],swagger:["6M"],tackle:["6L0"],takedown:["6E"],taunt:["6M"],thief:["6M"],thrash:["6L0"],toxic:["6M"],uproar:["6L0"],uturn:["6M"],willowisp:["6M"],workup:["6L0"],yawn:["6E"],zenheadbutt:[],snore:[],heatwave:[],endeavor:[]}}, + darmanitan:{learnset:{attract:["6M"],bellydrum:["6L0"],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],dig:["6M"],doubleteam:["6M"],earthquake:["6M"],facade:["6M"],fireblast:["6M"],firefang:["6L0"],firepunch:["6L0"],flamecharge:["6M"],flamethrower:["6M"],flareblitz:["6L0"],fling:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gyroball:["6M"],hammerarm:["6L0"],headbutt:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],overheat:["6M"],payback:["6M"],protect:["6M"],psychic:["6M"],rage:["6L0"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L0"],round:["6M"],smackdown:["6M"],solarbeam:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:["6L0"],swagger:["6M"],tackle:["6L0"],taunt:["6M"],thief:["6M"],thrash:["6L0"],torment:["6M"],toxic:["6M"],uturn:["6M"],willowisp:["6M"],workup:["6L0"],uproar:[],zenheadbutt:[],snore:[],heatwave:[],endeavor:[],sleeptalk:["6M"]}}, + maractus:{learnset:{absorb:["6L1"],acupressure:["6L29"],aerialace:["6M"],afteryou:["6L1","6L57"],attract:["6M"],bounce:["6E"],bulletseed:["6E"],cottonguard:["6L1","6L55"],cottonspore:["6L18"],doubleteam:["6M"],energyball:["6M"],facade:["6M"],frustration:["6M"],gigadrain:["6L26"],grassknot:["6M"],grasswhistle:["6E"],growth:["6L6"],hiddenpower:["6M"],ingrain:["6L33"],leechseed:["6E"],megadrain:["6L13"],needlearm:["6L22"],peck:["6L1"],petaldance:["6L38"],pinmissile:["6L10"],poisonjab:["6M"],protect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],seedbomb:["6E"],solarbeam:["6L50","6M"],spikes:["6E"],substitute:["6M"],suckerpunch:["6L42"],sunnyday:["6L45","6M"],swagger:["6M"],sweetscent:["6L3"],synthesis:["6L15"],toxic:["6M"],woodhammer:["6E"],worryseed:["6E"],uproar:[],hypervoice:[],snore:[],knockoff:[],drainpunch:[],helpinghand:[],endeavor:[],sleeptalk:["6M"],petalblizzard:["6L48"],naturepower:["6M"],confide:["6M"]}}, + dwebble:{learnset:{aerialace:["6M"],attract:["6M"],block:["6E"],bugbite:["6L23"],bulldoze:["6M"],counter:["6E"],curse:["6E"],cut:["6M"],dig:["6M"],doubleteam:["6M"],earthquake:["6M"],endure:["6E"],facade:["6M"],feintattack:["6L13"],flail:["6L41"],frustration:["6M"],furycutter:["6L1"],hiddenpower:["6M"],honeclaws:["6M"],irondefense:["6E"],nightslash:["6E"],poisonjab:["6M"],protect:["6M"],rest:["6M"],"return":["6M"],rockblast:["6L5"],rockpolish:["6L19","6M"],rockslide:["6L29","6M"],rocksmash:["6M"],rocktomb:["6M"],rockwrecker:["6L43"],round:["6M"],sandattack:["6L11"],sandstorm:["6M"],sandtomb:["6E"],shadowclaw:["6M"],shellsmash:["6L37"],slash:["6L31"],smackdown:["6L17","6M"],solarbeam:["6M"],spikes:["6E"],stealthrock:["6L24"],stoneedge:["6M"],strength:["6M"],strugglebug:["6M"],substitute:["6M"],swagger:["6M"],swordsdance:["6M"],toxic:["6M"],withdraw:["6L7"],xscissor:["6L35","6M"],snore:[],knockoff:[],sleeptalk:["6M"],naturepower:["6M"],confide:["6M"]}}, + crustle:{learnset:{aerialace:["6M"],attract:["6M"],bugbite:["6L23"],bulldoze:["6M"],cut:["6M"],dig:["6M"],doubleteam:["6M"],earthquake:["6M"],facade:["6M"],feintattack:["6L13"],flail:["6L50"],frustration:["6M"],gigaimpact:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],poisonjab:["6M"],protect:["6M"],rest:["6M"],"return":["6M"],rockblast:["6L1","6L5"],rockpolish:["6L19","6M"],rockslide:["6L29","6M"],rocksmash:["6M"],rocktomb:["6M"],rockwrecker:["6L55"],round:["6M"],sandattack:["6L1","6L11"],sandstorm:["6M"],shadowclaw:["6M"],shellsmash:["6L1","6L43"],slash:["6L31"],smackdown:["6L17","6M"],solarbeam:["6M"],stealthrock:["6L24"],stoneedge:["6M"],strength:["6M"],strugglebug:["6M"],substitute:["6M"],swagger:["6M"],swordsdance:["6M"],toxic:["6M"],withdraw:["6L1","6L7"],xscissor:["6L38","6M"],block:[],irondefense:[],snore:[],knockoff:[],sleeptalk:["6M"],counter:[],nightslash:[],naturepower:["6M"],confide:["6M"]}}, + scraggy:{learnset:{amnesia:["6E"],attract:["6M"],brickbreak:["6L20","6M"],bulkup:["6M"],chipaway:["6L27"],counter:["6E"],crunch:["6L38"],detect:["6E"],dig:["6M"],doubleteam:["6M"],dragonclaw:["6M"],dragondance:["6E"],dragontail:["6M"],drainpunch:["6E"],facade:["6L42","6M"],feintattack:["6L9","6E"],fakeout:["6E"],firepunch:["6E"],fling:["6M"],focusblast:["6M"],focuspunch:["6L48"],frustration:["6M"],grassknot:["6M"],headbutt:["6L12"],headsmash:["6L50"],hiddenpower:["6M"],highjumpkick:["6L31"],icepunch:["6E"],incinerate:["6M"],leer:["6L1"],lowkick:["6L1"],lowsweep:["6M"],payback:["6L23","6M"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockclimb:["6L45"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L5"],scaryface:["6L34"],sludgebomb:["6M"],smackdown:["6M"],snarl:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6L16","6M"],taunt:["6M"],thunderpunch:["6E"],torment:["6M"],toxic:["6M"],workup:[],zenheadbutt:["6E"],superfang:[],dualchop:[],ironhead:[],foulplay:[],irondefense:[],darkpulse:["6M"],dragonpulse:[],irontail:[],snore:[],knockoff:[],spite:[],snatch:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"],quickguard:["6E"]}}, + scrafty:{learnset:{attract:["6M"],brickbreak:["6L20","6M"],bulkup:["6M"],chipaway:["6L27"],crunch:["6L38"],dig:["6M"],doubleteam:["6M"],dragonclaw:["6M"],dragontail:["6M"],drainpunch:[],facade:["6L45","6M"],feintattack:["6L1","6L9"],firepunch:[],fling:["6M"],focusblast:["6M"],focuspunch:["6L58"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],headbutt:["6L12"],headsmash:["6L65"],hiddenpower:["6M"],highjumpkick:["6L31"],hyperbeam:["6M"],incinerate:["6M"],leer:["6L1"],lowkick:["6L1"],lowsweep:["6M"],payback:["6L23","6M"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockclimb:["6L51"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L1","6L5"],scaryface:["6L34"],sludgebomb:["6M"],smackdown:["6M"],snarl:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6L16","6M"],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6M"],workup:[],superfang:[],dualchop:[],ironhead:[],thunderpunch:[],icepunch:[],foulplay:[],irondefense:[],darkpulse:["6M"],zenheadbutt:[],dragonpulse:[],irontail:[],snore:[],knockoff:[],spite:[],outrage:[],snatch:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + sigilyph:{learnset:{aerialace:["6M"],aircutter:["6L21"],airslash:["6L41"],ancientpower:["6E"],attract:["6M"],calmmind:["6M"],chargebeam:["6M"],cosmicpower:["6L48"],doubleteam:["6M"],dreameater:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],flashcannon:["6M"],fly:["6M"],frustration:["6M"],gravity:["6L38"],gust:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],hypnosis:["6L4"],icebeam:["6M"],lightscreen:["6L24","6M"],miracleeye:["6L1"],mirrormove:["6L34"],pluck:[],protect:["6M"],psybeam:["6L18"],psychic:["6L44","6M"],psychoshift:["6E"],psychup:["6M"],psyshock:["6M"],psywave:["6L8"],raindance:["6M"],reflect:["6L28","6M"],rest:["6M"],"return":["6M"],roost:["6M","6E"],round:["6M"],safeguard:["6M"],shadowball:["6M"],skillswap:["6E"],skyattack:["6L50"],smackdown:["6M"],solarbeam:["6M"],steelwing:["6M","6E"],storedpower:["6E"],substitute:["6M"],swagger:["6M"],synchronoise:["6L31"],tailwind:["6L11"],telekinesis:[],thief:["6M"],thunderwave:["6M"],toxic:["6M"],trickroom:["6M"],whirlwind:["6L14"],signalbeam:[],magiccoat:[],icywind:[],darkpulse:["6M"],zenheadbutt:[],snore:[],heatwave:[],trick:[],magicroom:[],sleeptalk:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + yamask:{learnset:{astonish:["6L0"],attract:["6M"],calmmind:["6M"],curse:["6L0"],destinybond:["6L0"],disable:["6E"],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],endure:["6E"],energyball:["6M"],facade:["6M"],faketears:["6E"],flash:["6M"],frustration:["6M"],grudge:["6L0"],guardsplit:["6L0"],haze:["6L0"],healblock:["6E"],hex:["6L0"],hiddenpower:["6M"],imprison:["6E"],meanlook:["6L0"],memento:["6E"],nastyplot:["6E"],nightmare:["6E"],nightshade:["6L0"],ominouswind:["6L0"],payback:["6M"],powersplit:["6L0"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],substitute:["6M"],swagger:["6M"],telekinesis:[],thief:["6M"],toxic:["6M"],trickroom:["6M"],willowisp:["6M"],magiccoat:[],block:[],irondefense:[],darkpulse:[],snore:[],knockoff:[],roleplay:[],painsplit:[],spite:[],afteryou:[],trick:[],wonderroom:[],snatch:[],sleeptalk:["6M"],skillswap:[]}}, + cofagrigus:{learnset:{astonish:["6L0"],attract:["6M"],calmmind:["6M"],curse:["6L0"],destinybond:["6L0"],disable:["6L0"],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],grudge:["6L0"],guardsplit:["6L0"],haze:["6L0"],hex:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],meanlook:["6L0"],nightshade:["6L0"],ominouswind:["6L0"],payback:["6M"],powersplit:["6L0"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],scaryface:["6L0"],shadowball:["6M"],substitute:["6M"],swagger:["6M"],telekinesis:[],thief:["6M"],toxic:["6M"],trickroom:["6M"],willowisp:["6M"],magiccoat:[],block:[],irondefense:[],darkpulse:[],snore:[],knockoff:[],roleplay:[],painsplit:[],spite:[],afteryou:[],trick:[],wonderroom:[],snatch:[],sleeptalk:["6M"],skillswap:[]}}, + tirtouga:{learnset:{ancientpower:["6L18"],aquajet:["6L15"],aquatail:["6L41"],attract:["6M"],bide:["6L1","6E"],bite:["6L8"],blizzard:["6M"],bodyslam:["6E"],brine:["6L28"],bulldoze:["6M"],crunch:["6L21"],curse:["6L35"],dig:["6M"],dive:[],doubleteam:["6M"],earthquake:["6M"],facade:["6M"],flail:["6E"],frustration:["6M"],hiddenpower:["6M"],hydropump:["6L50"],icebeam:["6M"],irondefense:["6E"],knockoff:["6E"],protect:["6L11","6M"],raindance:["6L48","6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6L45","6M"],rocksmash:["6M"],rockthrow:["6E"],rocktomb:["6M"],rollout:["6L5"],round:["6M"],sandstorm:["6M"],scald:["6M"],shellsmash:["6L38"],slam:["6E"],smackdown:["6L31","6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],toxic:["6M"],waterfall:["6M"],watergun:["6L1"],waterpulse:["6E"],whirlpool:["6E"],wideguard:["6L25"],withdraw:["6L1"],block:[],earthpower:[],icywind:[],irontail:[],snore:[],stealthrock:[],sleeptalk:["6M"],confide:["6M"]}}, + carracosta:{learnset:{ancientpower:["6L18"],aquajet:["6L15"],aquatail:["6L45"],attract:["6M"],bide:["6L1"],bite:["6L8"],blizzard:["6M"],brine:["6L28"],bulldoze:["6M"],crunch:["6L21"],curse:["6L35"],dig:["6M"],dive:[],doubleteam:["6M"],earthquake:["6M"],facade:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],hiddenpower:["6M"],hydropump:["6L61"],hyperbeam:["6M"],icebeam:["6M"],protect:["6L11","6M"],raindance:["6L56","6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6L51","6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L1","6L5"],round:["6M"],sandstorm:["6M"],scald:["6M"],shellsmash:["6L40"],smackdown:["6L31","6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],toxic:["6M"],waterfall:["6M"],watergun:["6L1"],wideguard:["6L25"],withdraw:["6L1"],ironhead:[],lowkick:[],block:[],earthpower:[],irondefense:[],superpower:[],icywind:[],irontail:[],snore:[],stealthrock:[],sleeptalk:["6M"],confide:["6M"]}}, + archen:{learnset:{acrobatics:["6L28","6M"],aerialace:["6M"],agility:["6L21"],ancientpower:["6L18"],attract:["6M"],bite:["6E"],bulldoze:["6M"],crunch:["6L35"],cut:["6M"],defog:["6E"],dig:["6M"],doubleteam:["6L8","6M"],dragonbreath:["6L31"],dragonclaw:["6L48","6M"],dragonpulse:["6E"],earthpower:["6E"],earthquake:["6M"],endeavor:["6L38"],facade:["6M"],frustration:["6M"],headsmash:["6E"],hiddenpower:["6M"],honeclaws:["6M"],knockoff:["6E"],leer:["6L1"],pluck:["6L15"],protect:["6M"],quickattack:["6L1"],quickguard:["6L25"],rest:["6M"],"return":["6M"],roar:["6M"],rockpolish:["6M"],rockslide:["6L45","6M"],rocksmash:["6M"],rockthrow:["6L5"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scaryface:["6L11"],shadowclaw:["6M"],smackdown:["6M"],steelwing:["6M","6E"],stoneedge:["6M"],substitute:["6M"],swagger:["6M"],taunt:["6M"],thrash:["6L50"],torment:["6M"],toxic:["6M"],uturn:["6L41","6M"],wingattack:["6L1"],bounce:[],uproar:[],irondefense:[],aquatail:[],irontail:[],snore:[],heatwave:[],tailwind:[],roost:["6M"],stealthrock:[],sleeptalk:["6M"],confide:["6M"],switcheroo:["6E"]}}, + archeops:{learnset:{acrobatics:["6L28","6M"],aerialace:["6M"],agility:["6L21"],ancientpower:["6L18"],attract:["6M"],bulldoze:["6M"],crunch:["6L35"],cut:["6M"],dig:["6M"],doubleteam:["6L8","6M"],dragonbreath:["6L31"],dragonclaw:["6L56","6M"],dragontail:["6M"],earthquake:["6M"],endeavor:["6L40"],facade:["6M"],fly:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],leer:["6L1"],pluck:["6L15"],protect:["6M"],quickattack:["6L1"],quickguard:["6L25"],rest:["6M"],"return":["6M"],roar:["6M"],rockpolish:["6M"],rockslide:["6L51","6M"],rocksmash:["6M"],rockthrow:["6L1","6L5"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scaryface:["6L11"],shadowclaw:["6M"],smackdown:["6M"],stoneedge:["6M"],substitute:["6M"],swagger:["6M"],taunt:["6M"],thrash:["6L61"],torment:["6M"],toxic:["6M"],uturn:["6L45","6M"],wingattack:["6L1"],bounce:[],uproar:[],earthpower:[],irondefense:[],aquatail:[],dragonpulse:[],irontail:[],snore:[],heatwave:[],tailwind:[],skyattack:[],roost:["6M"],outrage:[],stealthrock:[],sleeptalk:["6M"],steelwing:["6M"],confide:["6M"]}}, + trubbish:{learnset:{acidspray:["6L12"],amnesia:["6L40"],attract:["6M"],clearsmog:["6L34"],curse:["6E"],doubleslap:["6L14"],doubleteam:["6M"],explosion:["6L47","6M"],facade:["6M"],frustration:["6M"],gunkshot:["6L45"],haze:["6E"],hiddenpower:["6M"],mudsport:["6E"],payback:["6M"],poisongas:["6L1"],pound:["6L1"],protect:["6M"],raindance:["6M"],recycle:["6L3"],rest:["6M"],"return":["6M"],rockblast:["6E"],rollout:["6E"],round:["6M"],sandattack:["6E"],selfdestruct:["6E"],sludge:["6L18"],sludgebomb:["6L29","6M"],sludgewave:["6M"],spikes:["6E"],stockpile:["6L23"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swallow:["6L23"],takedown:["6L25"],thief:["6M"],toxic:["6L36","6M"],toxicspikes:["6L7"],venoshock:["6M"],seedbomb:[],darkpulse:["6M"],snore:[],painsplit:[],gigadrain:[],drainpunch:[],spite:[],sleeptalk:["6M"],belch:["6L42"],infestation:["6M"],confide:["6M"]}}, + garbodor:{learnset:{acidspray:["6L12"],amnesia:["6L46"],attract:["6M"],bodyslam:["6L25"],clearsmog:["6L34"],doubleslap:["6L14"],doubleteam:["6M"],explosion:["6L59","6M"],facade:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],gunkshot:["6L54"],hiddenpower:["6M"],hyperbeam:["6M"],payback:["6M"],poisongas:["6L1"],pound:["6L1"],protect:["6M"],psychic:["6M"],raindance:["6M"],recycle:["6L1","6L3"],rest:["6M"],"return":["6M"],rockpolish:["6M"],round:["6M"],sludge:["6L18"],sludgebomb:["6L29","6M"],sludgewave:["6M"],smackdown:["6M"],solarbeam:["6M"],stockpile:["6L23"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swallow:["6L23"],thief:["6M"],thunderbolt:["6M"],toxic:["6L39","6M"],toxicspikes:["6L1","6L7"],venoshock:["6M"],seedbomb:[],darkpulse:["6M"],snore:[],painsplit:[],gigadrain:[],drainpunch:[],spite:[],sleeptalk:["6M"],belch:["6L49"],infestation:["6M"],confide:["6M"]}}, + zorua:{learnset:{aerialace:["6M"],agility:["6L37"],attract:["6M"],calmmind:["6M"],captivate:["6E"],counter:["6E"],cut:["6M"],darkpulse:["6M","6E"],detect:["6E"],dig:["6M"],doubleteam:["6M"],embargo:["6L41","6M"],extrasensory:["6E"],facade:["6M"],feintattack:["6L17"],faketears:["6L9"],fling:["6M"],foulplay:["6L29"],frustration:["6M"],furyswipes:["6L13"],grassknot:["6M"],hiddenpower:["6M"],honeclaws:["6M"],imprison:["6L53"],incinerate:["6M"],leer:["6L1"],memento:["6E"],nastyplot:["6L49"],nightdaze:["6L57"],payback:["6M"],protect:["6M"],psychup:["6M"],punishment:["6L45"],pursuit:["6L5"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],round:["6M"],scaryface:["6L21"],scratch:["6L1"],shadowball:["6M"],snarl:["6M"],snatch:["6E"],substitute:["6M"],suckerpunch:["6E"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],taunt:["6L25","6M"],thief:["6M"],torment:["6L33","6M"],toxic:["6M"],uturn:["6M"],covet:[],bounce:[],uproar:[],hypervoice:[],snore:[],knockoff:[],spite:[],trick:[],sleeptalk:["6M"],confide:["6M"],copycat:["6E"]}}, + zoroark:{learnset:{aerialace:["6M"],agility:["6L39"],attract:["6M"],calmmind:["6M"],cut:["6M"],dig:["6M"],doubleteam:["6M"],embargo:["6L44","6M"],facade:["6M"],feintattack:["6L17"],flamethrower:["6M"],fling:["6M"],focusblast:["6M"],foulplay:["6L29"],frustration:["6M"],furyswipes:["6L13"],gigaimpact:["6M"],grassknot:["6M"],hiddenpower:["6M"],honeclaws:["6L1","6L9","6M"],hyperbeam:["6M"],imprison:["6L1","6L59"],incinerate:["6M"],leer:["6L1"],lowsweep:["6M"],nastyplot:["6L54"],nightdaze:["6L1","6L64"],nightslash:["6L30"],payback:["6M"],protect:["6M"],psychup:["6M"],punishment:["6L49"],pursuit:["6L1","6L5"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],round:["6M"],scaryface:["6L21"],scratch:["6L1"],shadowball:["6M"],shadowclaw:["6M"],snarl:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],taunt:["6L25","6M"],thief:["6M"],torment:["6L34","6M"],toxic:["6M"],uturn:["6L1","6M"],covet:[],bounce:[],lowkick:[],uproar:[],darkpulse:["6M"],hypervoice:[],snore:[],knockoff:[],spite:[],trick:[],snatch:[],sleeptalk:["6M"],confide:["6M"]}}, + minccino:{learnset:{afteryou:["6L49"],aquatail:["6E"],attract:["6M"],calmmind:["6M"],captivate:["6L39"],charm:["6L27"],dig:["6M"],doubleslap:["6L13"],doubleteam:["6M"],echoedvoice:["6L33","6M"],encore:["6L15"],endure:["6E"],facade:["6M"],faketears:["6E"],flail:["6E"],fling:["6M"],frustration:["6M"],grassknot:["6M"],growl:[],helpinghand:["6L7"],hiddenpower:["6M"],hypervoice:["6L43"],irontail:["6E"],knockoff:["6E"],lastresort:["6L45"],mudslap:["6E"],pound:["6L1"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],sing:["6L21"],slam:["6L37"],sleeptalk:["6M","6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L19"],tailslap:["6L25"],tailwhip:["6E"],thief:["6M"],thunderbolt:["6M"],thunderwave:["6M"],tickle:["6L9"],toxic:["6M"],uturn:["6M"],wakeupslap:["6L31"],workup:[],covet:[],seedbomb:[],gunkshot:[],uproar:[],snore:[],babydolleyes:["6L3"],dazzlinggleam:["6M"],confide:["6M"]}}, + cinccino:{learnset:{attract:["6M"],bulletseed:["6L1"],calmmind:["6M"],dig:["6M"],doubleteam:["6M"],echoedvoice:["6M"],facade:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],helpinghand:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockblast:["6L1"],round:["6M"],safeguard:["6M"],sing:["6L1"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tailslap:["6L1"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],tickle:["6L1"],toxic:["6M"],uturn:["6M"],workup:[],covet:[],seedbomb:[],gunkshot:[],uproar:[],lastresort:[],aquatail:[],hypervoice:[],irontail:[],snore:[],knockoff:[],afteryou:[],sleeptalk:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + gothita:{learnset:{attract:["6M"],calmmind:["6M"],captivate:["6E"],chargebeam:["6M"],charm:["6L46"],confusion:["6L3"],darkpulse:["6E"],doubleslap:["6L14"],doubleteam:["6M"],dreameater:["6M"],embargo:["6L19","6M"],energyball:["6M"],facade:["6M"],feintattack:["6L24"],faketears:["6L10"],flash:["6M"],flatter:["6L28"],fling:["6M"],frustration:["6M"],futuresight:["6L31"],grassknot:["6M"],healblock:["6L33"],hiddenpower:["6M"],lightscreen:["6M"],magicroom:["6L48"],meanlook:["6E"],miracleeye:["6E"],mirrorcoat:["6E"],payback:["6M"],pound:["6L1"],protect:["6M"],psybeam:["6L16"],psychic:["6L37","6M"],psychup:["6M"],psyshock:["6L25","6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],substitute:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:["6L40"],thief:["6M"],thunderbolt:["6M"],thunderwave:["6M"],tickle:["6L7"],torment:["6M"],toxic:["6M"],trickroom:["6M"],uproar:["6E"],covet:[],signalbeam:[],magiccoat:[],foulplay:[],gravity:[],zenheadbutt:[],snore:[],roleplay:[],healbell:[],helpinghand:[],trick:[],recycle:[],snatch:[],sleeptalk:["6M"],skillswap:[],playnice:["6L8"],confide:["6M"]}}, + gothorita:{learnset:{attract:["6M"],calmmind:["6M"],chargebeam:["6M"],charm:["6L50"],confusion:["6L1","6L3"],doubleslap:["6L14"],doubleteam:["6M"],dreameater:["6M"],embargo:["6L19","6M"],energyball:["6M"],facade:["6M"],feintattack:["6L24"],faketears:["6L10"],flash:["6M"],flatter:["6L28"],fling:["6M"],frustration:["6M"],futuresight:["6L31"],grassknot:["6M"],healblock:["6L34"],hiddenpower:["6M"],imprison:[],lightscreen:["6M"],magicroom:["6L53"],payback:["6M"],pound:["6L1"],protect:["6M"],psybeam:["6L16"],psychic:["6L39","6M"],psychup:["6M"],psyshock:["6L25","6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],substitute:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:["6L43"],thief:["6M"],thunderbolt:["6M"],thunderwave:["6M"],tickle:["6L1","6L7"],torment:["6M"],toxic:["6M"],trickroom:["6M"],covet:[],signalbeam:[],uproar:[],magiccoat:[],foulplay:[],gravity:[],zenheadbutt:[],snore:[],roleplay:[],healbell:[],helpinghand:[],trick:[],recycle:[],snatch:[],sleeptalk:["6M"],skillswap:[],mirrorcoat:[],playnice:["6L1"],confide:["6M"]}}, + gothitelle:{learnset:{attract:["6M"],brickbreak:["6M"],calmmind:["6M"],chargebeam:["6M"],charm:["6L54"],confusion:["6L1","6L3"],doubleslap:["6L14"],doubleteam:["6M"],dreameater:["6M"],embargo:["6L19","6M"],energyball:["6M"],facade:["6M"],feintattack:["6L24"],faketears:["6L10"],flash:["6M"],flatter:["6L28"],fling:["6M"],frustration:["6M"],futuresight:["6L31"],gigaimpact:["6M"],grassknot:["6M"],healblock:["6L34"],hiddenpower:["6M"],hyperbeam:["6M"],lightscreen:["6M"],lowsweep:["6M"],magicroom:["6L59"],payback:["6M"],pound:["6L1"],protect:["6M"],psybeam:["6L16"],psychic:["6L39","6M"],psychup:["6M"],psyshock:["6L25","6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],substitute:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:["6L45"],thief:["6M"],thunderbolt:["6M"],thunderwave:["6M"],tickle:["6L1","6L7"],torment:["6M"],toxic:["6M"],trickroom:["6M"],covet:[],signalbeam:[],uproar:[],magiccoat:[],foulplay:[],gravity:[],zenheadbutt:[],snore:[],roleplay:[],healbell:[],helpinghand:[],trick:[],recycle:[],snatch:[],sleeptalk:["6M"],skillswap:[],playnice:["6L1"],poweruppunch:["6M"],confide:["6M"]}}, + solosis:{learnset:{acidarmor:["6E"],astonish:["6E"],attract:["6M"],calmmind:["6M"],charm:["6L19"],confuseray:["6E"],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],endeavor:["6L28"],energyball:["6M"],explosion:["6M"],facade:["6M"],flash:["6M"],flashcannon:["6M"],frustration:["6M"],futuresight:["6L31"],gyroball:["6M"],healblock:["6L46"],hiddenpower:["6L14","6M"],imprison:["6E"],lightscreen:["6L16","6M"],nightshade:["6E"],painsplit:["6L33"],protect:["6M"],psychic:["6L37","6M"],psychup:["6M"],psyshock:["6L25","6M"],psywave:["6L1"],raindance:["6M"],recover:["6L24"],reflect:["6L3","6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocktomb:["6M"],rollout:["6L7"],round:["6M"],safeguard:["6M"],secretpower:["6E"],shadowball:["6M"],skillswap:["6L40"],snatch:["6L10"],substitute:["6M"],swagger:["6M"],telekinesis:[],thunder:["6M"],thunderwave:["6M"],toxic:["6M"],trick:["6E"],trickroom:["6M"],wonderroom:["6L48"],signalbeam:[],magiccoat:[],gravity:[],zenheadbutt:[],snore:[],roleplay:[],afteryou:[],sleeptalk:["6M"],infestation:["6M"],confide:["6M"]}}, + duosion:{learnset:{attract:["6M"],calmmind:["6M"],charm:["6L19"],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],endeavor:["6L28"],energyball:["6M"],explosion:["6M"],facade:["6M"],flash:["6M"],flashcannon:["6M"],frustration:["6M"],futuresight:["6L31"],gyroball:["6M"],healblock:["6L50"],hiddenpower:["6L14","6M"],lightscreen:["6L16","6M"],painsplit:["6L34"],protect:["6M"],psychic:["6L39","6M"],psychup:["6M"],psyshock:["6L25","6M"],psywave:["6L1"],raindance:["6M"],recover:["6L24"],reflect:["6L1","6L3","6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocktomb:["6M"],rollout:["6L1","6L7"],round:["6M"],safeguard:["6M"],shadowball:["6M"],skillswap:["6L43"],snatch:["6L1","6L10"],substitute:["6M"],swagger:["6M"],telekinesis:[],thunder:["6M"],thunderwave:["6M"],toxic:["6M"],trickroom:["6M"],wonderroom:["6L53"],signalbeam:[],magiccoat:[],gravity:[],zenheadbutt:[],snore:[],roleplay:[],afteryou:[],trick:[],sleeptalk:["6M"],imprison:[],infestation:["6M"],confide:["6M"]}}, + reuniclus:{learnset:{attract:["6M"],calmmind:["6M"],charm:["6L19"],dizzypunch:["6L41"],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],endeavor:["6L28"],energyball:["6M"],explosion:["6M"],facade:["6M"],flash:["6M"],flashcannon:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],futuresight:["6L31"],gigaimpact:["6M"],grassknot:["6M"],gyroball:["6M"],healblock:["6L54"],hiddenpower:["6L14","6M"],hyperbeam:["6M"],lightscreen:["6L16","6M"],painsplit:["6L34"],protect:["6M"],psychic:["6L39","6M"],psychup:["6M"],psyshock:["6L25","6M"],psywave:["6L1"],raindance:["6M"],recover:["6L24"],reflect:["6L1","6L3","6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L1","6L7"],round:["6M"],safeguard:["6M"],shadowball:["6M"],skillswap:["6L45"],snatch:["6L1","6L10"],strength:["6M"],substitute:["6M"],swagger:["6M"],telekinesis:[],thunder:["6M"],thunderwave:["6M"],toxic:["6M"],trickroom:["6M"],wonderroom:["6L59"],signalbeam:[],thunderpunch:[],firepunch:[],icepunch:[],magiccoat:[],gravity:[],superpower:[],zenheadbutt:[],snore:[],knockoff:[],roleplay:[],drainpunch:[],afteryou:[],helpinghand:[],trick:[],sleeptalk:["6M"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + ducklett:{learnset:{aerialace:["6L15","6M"],aircutter:["6E"],airslash:["6L27"],aquaring:["6L24"],attract:["6M"],bravebird:["6L41"],brine:["6E"],bubblebeam:["6L19"],defog:["6L6"],dive:[],doubleteam:["6M"],facade:["6M"],featherdance:["6L21"],fly:["6M"],frustration:["6M"],gust:["6E"],hail:["6M"],hiddenpower:["6M"],hurricane:["6L46"],icebeam:["6M"],luckychant:["6E"],mefirst:["6E"],mirrormove:["6E"],pluck:[],protect:["6M"],raindance:["6L34","6M"],rest:["6M"],"return":["6M"],roost:["6L30","6M"],round:["6M"],scald:["6M"],steelwing:["6M","6E"],substitute:["6M"],surf:["6M"],swagger:["6M"],tailwind:["6L37"],toxic:["6M"],watergun:["6L1"],waterpulse:["6L13"],watersport:["6L3"],wingattack:["6L9"],uproar:[],icywind:[],snore:[],endeavor:[],sleeptalk:["6M"],confide:["6M"],mudsport:["6E"]}}, + swanna:{learnset:{aerialace:["6L15","6M"],airslash:["6L27"],aquaring:["6L24"],attract:["6M"],bravebird:["6L47"],bubblebeam:["6L19"],defog:["6L1","6L6"],dive:[],doubleteam:["6M"],facade:["6M"],featherdance:["6L21"],fly:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],hiddenpower:["6M"],hurricane:["6L55"],hyperbeam:["6M"],icebeam:["6M"],pluck:[],protect:["6M"],raindance:["6L34","6M"],rest:["6M"],"return":["6M"],roost:["6L30","6M"],round:["6M"],scald:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],tailwind:["6L40"],toxic:["6M"],watergun:["6L1"],waterpulse:["6L13"],watersport:["6L1","6L3"],wingattack:["6L1","6L9"],uproar:[],icywind:[],snore:[],skyattack:[],endeavor:[],sleeptalk:["6M"],steelwing:["6M"],confide:["6M"]}}, + vanillite:{learnset:{acidarmor:["6L31"],astonish:["6L7"],attract:["6M"],autotomize:["6E"],avalanche:["6L19"],blizzard:["6L49","6M"],doubleteam:["6M"],explosion:["6M"],facade:["6M"],flashcannon:["6M"],frostbreath:["6M"],frustration:["6M"],hail:["6L40","6M"],harden:["6L4"],hiddenpower:["6M"],icebeam:["6L35","6M"],iceshard:["6E"],iciclespear:["6L1"],icywind:["6L13"],imprison:["6E"],irondefense:["6E"],lightscreen:["6M"],magnetrise:["6E"],mirrorcoat:["6L44"],mirrorshot:["6L26"],mist:["6L16"],naturalgift:["6E"],powdersnow:["6E"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],sheercold:["6L53"],substitute:["6M"],swagger:["6M"],taunt:["6L22","6M"],toxic:["6M"],uproar:["6L10"],waterpulse:["6E"],signalbeam:[],magiccoat:[],snore:[],sleeptalk:["6M"],confide:["6M"]}}, + vanillish:{learnset:{acidarmor:["6L31"],astonish:["6L1","6L7"],attract:["6M"],avalanche:["6L19"],blizzard:["6L53","6M"],doubleteam:["6M"],explosion:["6M"],facade:["6M"],flashcannon:["6M"],frostbreath:["6M"],frustration:["6M"],hail:["6L42","6M"],harden:["6L1","6L4"],hiddenpower:["6M"],icebeam:["6L36","6M"],iciclespear:["6L1"],icywind:["6L13"],lightscreen:["6M"],mirrorcoat:["6L47"],mirrorshot:["6L26"],mist:["6L16"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],sheercold:["6L58"],substitute:["6M"],swagger:["6M"],taunt:["6L22","6M"],toxic:["6M"],uproar:["6L1","6L10"],signalbeam:[],magiccoat:[],magnetrise:[],irondefense:[],snore:[],sleeptalk:["6M"],iceshard:[],imprison:[],confide:["6M"]}}, + vanilluxe:{learnset:{acidarmor:["6L31"],astonish:["6L1","6L7"],attract:["6M"],avalanche:["6L19"],blizzard:["6L59","6M"],doubleteam:["6M"],explosion:["6M"],facade:["6M"],flashcannon:["6M"],frostbreath:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6L42","6M"],harden:["6L1","6L4"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6L36","6M"],iciclespear:["6L1"],icywind:["6L13"],lightscreen:["6M"],mirrorcoat:["6L50"],mirrorshot:["6L26"],mist:["6L16"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],sheercold:["6L1","6L67"],substitute:["6M"],swagger:["6M"],taunt:["6L22","6M"],toxic:["6M"],uproar:["6L1","6L10"],weatherball:["6L1"],signalbeam:[],magiccoat:[],magnetrise:[],irondefense:[],snore:[],sleeptalk:["6M"],freezedry:["6L1"],confide:["6M"]}}, + deerling:{learnset:{agility:["6E"],aromatherapy:["6L28"],attract:["6M"],batonpass:["6E"],camouflage:["6L1"],charm:["6L36"],doubleedge:["6L46"],doublekick:["6L10"],doubleteam:["6M"],echoedvoice:["6M"],energyball:["6L32","6M"],facade:["6M"],feintattack:["6L16"],faketears:["6E"],flash:["6M"],frustration:["6M"],grassknot:["6M"],grasswhistle:["6E"],growl:["6L4"],hiddenpower:["6M"],jumpkick:["6L24"],leechseed:["6L13"],lightscreen:["6M"],naturalgift:["6E"],naturepower:["6L41","6M"],odorsleuth:["6E"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],sandattack:["6L7"],shadowball:["6M"],sleeptalk:["6M","6E"],solarbeam:["6L51","6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],synthesis:["6E"],tackle:["6L1"],takedown:["6L20"],thunderwave:["6M"],toxic:["6M"],wildcharge:["6M"],workup:[],worryseed:["6E"],seedbomb:[],bounce:[],lastresort:[],snore:[],gigadrain:[],confide:["6M"]}}, + sawsbuck:{learnset:{aromatherapy:["6L28"],attract:["6M"],camouflage:["6L1"],charm:["6L36"],cut:["6M"],doubleedge:["6L52"],doublekick:["6L10"],doubleteam:["6M"],echoedvoice:["6M"],energyball:["6L32","6M"],facade:["6M"],feintattack:["6L16"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],growl:["6L1","6L4"],hiddenpower:["6M"],hornleech:["6L37"],hyperbeam:["6M"],jumpkick:["6L24"],leechseed:["6L13"],lightscreen:["6M"],megahorn:["6L1"],naturepower:["6L44","6M"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],round:["6M"],safeguard:["6M"],sandattack:["6L1","6L7"],shadowball:["6M"],solarbeam:["6L60","6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],tackle:["6L1"],takedown:["6L20"],thunderwave:["6M"],toxic:["6M"],wildcharge:["6M"],workup:[],seedbomb:[],bounce:[],lastresort:[],snore:[],synthesis:[],gigadrain:[],worryseed:[],sleeptalk:["6M"],confide:["6M"]}}, + emolga:{learnset:{acrobatics:["6L30","6M"],aerialace:["6M"],agility:["6L46"],airslash:["6E"],astonish:["6E"],attract:["6M"],batonpass:["6E"],charge:["6L10"],chargebeam:["6M"],charm:["6E"],covet:["6E"],cut:["6M"],discharge:["6L50"],doubleteam:["6L19","6M"],electroball:["6L26"],encore:["6L38"],facade:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],hiddenpower:["6M"],irontail:["6E"],lightscreen:["6L34","6M"],protect:["6M"],pursuit:["6L16"],quickattack:["6L4"],raindance:["6M"],rest:["6M"],"return":["6M"],roost:["6M","6E"],round:["6M"],shockwave:["6L22","6E"],spark:["6L13"],substitute:["6M"],swagger:["6M"],tailwhip:["6L7"],taunt:["6M"],thunder:["6M"],thunderbolt:["6M"],thundershock:["6L1"],thunderwave:["6M"],tickle:["6E"],toxic:["6M"],uturn:["6M"],voltswitch:["6L42","6M"],wildcharge:["6M"],signalbeam:[],lastresort:[],snore:[],knockoff:[],tailwind:[],helpinghand:[],sleeptalk:["6M"],nuzzle:["6L15"],confide:["6M"]}}, + karrablast:{learnset:{aerialace:["6M"],attract:["6M"],bugbite:["6E"],bugbuzz:["6L28"],counter:["6E"],cut:["6M"],doubleedge:["6L56"],doubleteam:["6M"],endure:["6L8"],energyball:["6M"],facade:["6M"],feintattack:["6E"],falseswipe:["6L25","6M"],flail:["6L49"],frustration:["6M"],furyattack:["6L16"],furycutter:["6L13"],headbutt:["6L20"],hiddenpower:["6M"],hornattack:["6E"],knockoff:["6E"],leer:["6L4"],megahorn:["6E"],peck:["6L1"],poisonjab:["6M"],protect:["6M"],pursuit:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],scaryface:["6L40"],screech:["6E"],slash:["6L32"],strugglebug:["6M"],substitute:["6M"],swagger:["6M"],swordsdance:["6L52","6M"],takedown:["6L37"],toxic:["6M"],xscissor:["6L44","6M"],irondefense:[],snore:[],gigadrain:[],sleeptalk:["6M"],infestation:["6M"],confide:["6M"]}}, + escavalier:{learnset:{aerialace:["6M"],attract:["6M"],bugbuzz:["6L28"],cut:["6M"],doubleteam:["6M"],energyball:["6M"],facade:["6M"],falseswipe:["6L25","6M"],focusblast:["6M"],frustration:["6M"],furyattack:["6L16"],gigaimpact:["6L56","6M"],headbutt:["6L20"],hiddenpower:["6M"],hyperbeam:["6M"],irondefense:["6L40"],ironhead:["6L37"],leer:["6L1","6L4"],peck:["6L1"],poisonjab:["6M"],protect:["6M"],quickguard:["6L1","6L8"],raindance:["6M"],rest:["6M"],"return":["6M"],reversal:["6L49"],rocksmash:["6M"],round:["6M"],slash:["6L32"],strugglebug:["6M"],substitute:["6M"],swagger:["6M"],swordsdance:["6L52","6M"],toxic:["6M"],twineedle:["6L1","6L13"],xscissor:["6L44","6M"],bugbite:[],snore:[],knockoff:[],gigadrain:[],sleeptalk:["6M"],doubleedge:["6L1"],fellstinger:["6L1","6L60"],infestation:["6M"],confide:["6M"]}}, + foongus:{learnset:{absorb:["6L1"],astonish:["6L8"],attract:["6M"],bide:["6L12"],bodyslam:["6E"],clearsmog:["6L39"],defensecurl:["6E"],doubleteam:["6M"],endure:["6E"],energyball:["6M"],facade:["6M"],feintattack:["6L20"],flash:["6M"],frustration:["6M"],gastroacid:["6E"],gigadrain:["6L28"],grassknot:["6M"],growth:["6L6","6E"],hiddenpower:["6M"],ingrain:["6L18"],megadrain:["6L15"],payback:["6M"],poisonpowder:["6E"],protect:["6M"],ragepowder:["6L45"],raindance:["6M"],rest:["6M"],"return":["6M"],rollout:["6E"],round:["6M"],sludgebomb:["6M"],solarbeam:["6L43","6M"],spore:["6L50"],stunspore:["6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L24"],synthesis:["6L35"],toxic:["6L32","6M"],venoshock:["6M"],seedbomb:[],foulplay:[],snore:[],worryseed:[],afteryou:[],sleeptalk:["6M"],naturepower:["6M"],confide:["6M"]}}, + amoonguss:{learnset:{absorb:["6L1"],astonish:["6L1","6L8"],attract:["6M"],bide:["6L1","6L12"],clearsmog:["6L43"],doubleteam:["6M"],energyball:["6M"],facade:["6M"],feintattack:["6L20"],flash:["6M"],frustration:["6M"],gigadrain:["6L28"],gigaimpact:["6M"],grassknot:["6M"],growth:["6L1","6L6"],hiddenpower:["6M"],hyperbeam:["6M"],ingrain:["6L18"],megadrain:["6L15"],payback:["6M"],protect:["6M"],ragepowder:["6L54"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],sludgebomb:["6M"],solarbeam:["6L49","6M"],spore:["6L62"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],sweetscent:["6L24"],synthesis:["6L35"],toxic:["6L32","6M"],venoshock:["6M"],seedbomb:[],foulplay:[],snore:[],gastroacid:[],worryseed:[],afteryou:[],sleeptalk:["6M"],naturepower:["6M"],confide:["6M"]}}, + frillish:{learnset:{absorb:["6L0"],acidarmor:["6E"],attract:["6M"],blizzard:["6M"],brine:["6L0"],bubble:["6L0"],bubblebeam:["6L0"],confuseray:["6E"],constrict:["6E"],dive:["6M"],doubleteam:["6M"],dreameater:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],hail:["6M"],hex:["6L0"],hiddenpower:["6M"],hydropump:["6L0"],icebeam:["6M"],mist:["6E"],nightshade:["6L0"],ominouswind:["6L0"],painsplit:["6E"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],recover:["6E"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],scald:["6M"],shadowball:["6M"],sludgebomb:["6M"],sludgewave:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],taunt:["6M"],toxic:["6M"],trickroom:["6M"],waterfall:["6M"],waterpulse:["6L0"],watersport:["6L0"],waterspout:["6L0"],willowisp:["6M"],wringout:["6L0"],magiccoat:[],icywind:[],darkpulse:[],bind:[],snore:[],gigadrain:[],spite:[],trick:[],sleeptalk:["6M"]}}, + jellicent:{learnset:{absorb:["6L0"],attract:["6M"],blizzard:["6M"],brine:["6L0"],bubble:["6L0"],bubblebeam:["6L0"],dive:["6M"],doubleteam:["6M"],dreameater:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],hex:["6L0"],hiddenpower:["6M"],hydropump:["6L0"],hyperbeam:["6M"],icebeam:["6M"],nightshade:["6L0"],ominouswind:["6L0"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],recover:["6L0"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],scald:["6M"],shadowball:["6M"],sludgebomb:["6M"],sludgewave:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],taunt:["6M"],toxic:["6M"],trickroom:["6M"],waterfall:["6M"],waterpulse:["6L0"],watersport:["6L0"],waterspout:["6L0"],willowisp:["6M"],wringout:["6L0"],magiccoat:[],icywind:[],darkpulse:[],bind:[],snore:[],painsplit:[],gigadrain:[],spite:[],trick:[],sleeptalk:["6M"]}}, + alomomola:{learnset:{aquajet:["6L9"],aquaring:["6L5"],attract:["6M"],blizzard:["6M"],brine:["6L41"],calmmind:["6M"],dive:[],doubleslap:["6L13"],doubleteam:["6M"],endure:["6E"],facade:["6M"],frustration:["6M"],hail:["6M"],healingwish:["6L1","6L57"],healpulse:["6L17"],helpinghand:["6L49"],hiddenpower:["6M"],hydropump:["6L1","6L61"],icebeam:["6M"],lightscreen:["6M"],mirrorcoat:["6E"],mist:["6E"],painsplit:["6E"],pound:["6L1"],protect:["6L21","6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],refresh:["6E"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6L45","6M"],scald:["6M"],shadowball:["6M"],soak:["6L33"],substitute:["6M"],surf:["6M"],swagger:["6M"],tickle:["6E"],toxic:["6M"],wakeupslap:["6L29"],waterfall:["6M"],waterpulse:["6L25"],watersport:["6L1"],wideguard:["6L1","6L53"],wish:["6L37"],bounce:[],magiccoat:[],icywind:[],snore:[],knockoff:[],sleeptalk:["6M"],confide:["6M"]}}, + joltik:{learnset:{agility:["6L37"],attract:["6M"],bugbite:["6L18"],bugbuzz:["6L48"],chargebeam:["6M"],crosspoison:[],cut:["6M"],disable:[],discharge:["6L45"],doubleteam:["6M"],electroball:["6L29"],electroweb:["6L15"],energyball:["6M"],facade:["6M"],feintattack:[],flash:["6M"],frustration:["6M"],furycutter:["6L12"],gastroacid:["6L23"],hiddenpower:["6M"],leechlife:["6L1"],lightscreen:["6M"],pinmissile:[],poisonjab:["6M"],poisonsting:[],protect:["6M"],pursuit:[],raindance:["6M"],rest:["6M"],"return":["6M"],rockclimb:[],round:["6M"],screech:["6L7"],signalbeam:["6L34"],slash:["6L26"],spiderweb:["6L1"],stringshot:["6L1"],strugglebug:["6M"],substitute:["6M"],suckerpunch:["6L40"],swagger:["6M"],thief:["6M"],thunderbolt:["6M"],thunderwave:["6L4","6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6M"],xscissor:["6M"],bounce:[],magnetrise:[],snore:[],gigadrain:[],sleeptalk:["6M"],infestation:["6M"],confide:["6M"]}}, + galvantula:{learnset:{agility:["6L40"],attract:["6M"],bugbite:["6L18"],bugbuzz:["6L60"],chargebeam:["6M"],cut:["6M"],discharge:["6L54"],doubleteam:["6M"],electroball:["6L29"],electroweb:["6L15"],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],furycutter:["6L12"],gastroacid:["6L23"],gigaimpact:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],leechlife:["6L1"],lightscreen:["6M"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],screech:["6L7"],signalbeam:["6L34"],slash:["6L26"],spiderweb:["6L1"],stringshot:["6L1"],strugglebug:["6M"],substitute:["6M"],suckerpunch:["6L46"],swagger:["6M"],thief:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6L1","6L4","6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6M"],xscissor:["6M"],bounce:[],magnetrise:[],snore:[],gigadrain:[],sleeptalk:["6M"],pursuit:[],disable:[],stickyweb:["6L1","6L65"],infestation:["6M"],confide:["6M"]}}, + ferroseed:{learnset:{bulletseed:["6E"],curse:["6L9"],doubleteam:["6M"],energyball:["6M"],explosion:["6L55","6M"],facade:["6M"],flash:["6M"],flashcannon:["6L52","6M"],frustration:["6M"],gravity:["6E"],gyroball:["6L21","6M"],harden:["6L1"],hiddenpower:["6M"],honeclaws:["6M"],ingrain:["6L35"],irondefense:["6L26"],ironhead:["6L43"],leechseed:["6E"],metalclaw:["6L14"],mirrorshot:["6L30"],payback:["6L47","6M"],pinmissile:["6L18"],poisonjab:["6M"],protect:["6M"],rest:["6M"],"return":["6M"],rockclimb:["6E"],rockpolish:["6M"],rocksmash:["6M"],rollout:["6L6"],round:["6M"],seedbomb:["6E"],selfdestruct:["6L38"],solarbeam:["6M"],spikes:["6E"],stealthrock:["6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],worryseed:["6E"],magnetrise:[],snore:[],gigadrain:[],endeavor:[],sleeptalk:["6M"],naturepower:["6M"],confide:["6M"],acidspray:["6E"]}}, + ferrothorn:{learnset:{aerialace:["6M"],bulldoze:["6M"],curse:["6L1","6L9"],cut:["6M"],doubleteam:["6M"],energyball:["6M"],explosion:["6L67","6M"],facade:["6M"],flash:["6M"],flashcannon:["6L61","6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gyroball:["6L21","6M"],harden:["6L1"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],ingrain:["6L35"],irondefense:["6L26"],ironhead:["6L46"],metalclaw:["6L14"],mirrorshot:["6L30"],payback:["6L53","6M"],pinmissile:["6L18"],poisonjab:["6M"],powerwhip:["6L40"],protect:["6M"],rest:["6M"],"return":["6M"],rockclimb:["6L1"],rockpolish:["6M"],rocksmash:["6M"],rollout:["6L1","6L6"],round:["6M"],sandstorm:["6M"],selfdestruct:["6L38"],shadowclaw:["6M"],solarbeam:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],tackle:["6L1"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],seedbomb:[],gravity:[],magnetrise:[],snore:[],knockoff:[],gigadrain:[],worryseed:[],endeavor:[],stealthrock:[],sleeptalk:["6M"],naturepower:["6M"],confide:["6M"]}}, + klink:{learnset:{autotomize:["6L31"],bind:["6L21"],charge:["6L6"],chargebeam:["6L26","6M"],discharge:["6L42"],doubleteam:["6M"],facade:["6M"],flashcannon:["6M"],frustration:["6M"],geargrind:["6L16"],hiddenpower:["6M"],hyperbeam:["6L57","6M"],lockon:["6L50"],metalsound:["6L45"],mirrorshot:["6L36"],protect:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rocksmash:["6M"],round:["6M"],sandstorm:["6M"],screech:["6L39"],shiftgear:["6L48"],substitute:["6M"],swagger:["6M"],thunderbolt:["6M"],thundershock:["6L11"],thunderwave:["6M"],toxic:["6M"],vicegrip:["6L1"],voltswitch:["6M"],wildcharge:["6M"],zapcannon:["6L54"],signalbeam:[],uproar:[],magiccoat:[],gravity:[],magnetrise:[],irondefense:[],snore:[],recycle:[],sleeptalk:["6M"],confide:["6M"]}}, + klang:{learnset:{autotomize:["6L31"],bind:["6L21"],charge:["6L6"],chargebeam:["6L26","6M"],discharge:["6L44"],doubleteam:["6M"],facade:["6M"],flashcannon:["6M"],frustration:["6M"],geargrind:["6L16"],hiddenpower:["6M"],hyperbeam:["6L64","6M"],lockon:["6L56"],metalsound:["6L48"],mirrorshot:["6L36"],protect:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rocksmash:["6M"],round:["6M"],sandstorm:["6M"],screech:["6L40"],shiftgear:["6L52"],substitute:["6M"],swagger:["6M"],thunderbolt:["6M"],thundershock:["6L11"],thunderwave:["6M"],toxic:["6M"],vicegrip:["6L1"],voltswitch:["6M"],wildcharge:["6M"],zapcannon:["6L60"],signalbeam:[],uproar:[],magiccoat:[],gravity:[],magnetrise:[],irondefense:[],snore:[],recycle:[],sleeptalk:["6M"],confide:["6M"]}}, + klinklang:{learnset:{autotomize:["6L31"],bind:["6L21"],charge:["6L6"],chargebeam:["6L25","6M"],discharge:["6L44"],doubleteam:["6M"],facade:["6M"],flashcannon:["6M"],frustration:["6M"],geargrind:["6L16"],gigaimpact:["6M"],hiddenpower:["6M"],hyperbeam:["6L72","6M"],lockon:["6L60"],metalsound:["6L48"],mirrorshot:["6L36"],protect:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rocksmash:["6M"],round:["6M"],sandstorm:["6M"],screech:["6L40"],shiftgear:["6L54"],substitute:["6M"],swagger:["6M"],thunder:["6M"],thunderbolt:["6M"],thundershock:["6L11"],thunderwave:["6M"],toxic:["6M"],trickroom:["6M"],vicegrip:["6L1"],voltswitch:["6M"],wildcharge:["6M"],zapcannon:["6L1","6L66"],signalbeam:[],uproar:[],magiccoat:[],gravity:[],magnetrise:[],irondefense:[],snore:[],recycle:[],sleeptalk:["6M"],magneticflux:["6L1","6L76"],confide:["6M"]}}, + tynamo:{learnset:{chargebeam:["6L0"],spark:["6L0"],tackle:["6L0"],thunderwave:["6L0"],magnetrise:[]}}, + eelektrik:{learnset:{acid:["6L0"],acidspray:["6L0"],acrobatics:["6M"],attract:["6M"],bind:["6L0"],chargebeam:["6M"],coil:["6L0"],crunch:["6L0"],discharge:["6L0"],doubleteam:["6M"],facade:["6M"],flash:["6M"],flashcannon:["6M"],frustration:["6M"],gastroacid:["6L0"],headbutt:["6L0"],hiddenpower:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],round:["6M"],spark:["6L0"],substitute:["6M"],swagger:["6M"],thrash:["6L0"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],uturn:["6M"],voltswitch:["6M"],wildcharge:["6M"],zapcannon:["6L0"],superfang:[],signalbeam:[],bounce:[],magnetrise:[],aquatail:[],irontail:[],snore:[],knockoff:[],gigadrain:[],sleeptalk:["6M"]}}, + eelektross:{learnset:{acid:["6L0"],acrobatics:["6M"],attract:["6M"],brickbreak:["6M"],chargebeam:["6M"],crunch:["6L0"],crushclaw:["6L0"],cut:["6M"],discharge:["6L0"],doubleteam:["6M"],dragonclaw:["6M"],dragontail:["6M"],facade:["6M"],flamethrower:["6M"],flash:["6M"],flashcannon:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],headbutt:["6L0"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],strength:["6M"],substitute:["6M"],swagger:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],uturn:["6M"],voltswitch:["6M"],wildcharge:["6M"],superfang:[],signalbeam:[],bounce:[],thunderpunch:[],firepunch:[],magnetrise:[],superpower:[],aquatail:[],irontail:[],bind:[],snore:[],knockoff:[],gigadrain:[],drainpunch:[],gastroacid:[],sleeptalk:["6M"]}}, + elgyem:{learnset:{allyswitch:[],astonish:["6E"],attract:["6M"],barrier:["6E"],calmmind:["6M"],chargebeam:["6M"],confusion:["6L0"],disable:["6E"],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],embargo:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],growl:["6L0"],guardsplit:["6L0"],guardswap:["6E"],headbutt:["6L0"],healblock:["6L0"],hiddenpower:["6M"],imprison:["6L0"],lightscreen:["6M"],miracleeye:["6L0"],nastyplot:["6E"],powersplit:["6L0"],powerswap:["6E"],protect:["6M"],psybeam:["6L0"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recover:["6L0"],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],simplebeam:["6L0"],skillswap:["6E"],substitute:["6M"],swagger:["6M"],synchronoise:["6L0"],telekinesis:[],teleport:["6E"],thief:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trickroom:["6M"],wonderroom:["6L0"],zenheadbutt:["6L0"],signalbeam:[],uproar:[],magiccoat:[],gravity:[],darkpulse:[],snore:[],roleplay:[],painsplit:[],afteryou:[],trick:[],recycle:[],snatch:[],sleeptalk:["6M"]}}, + beheeyem:{learnset:{allyswitch:[],attract:["6M"],calmmind:["6M"],chargebeam:["6M"],confusion:["6L0"],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],embargo:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],growl:["6L0"],guardsplit:["6L0"],headbutt:["6L0"],healblock:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],imprison:["6L0"],lightscreen:["6M"],miracleeye:["6L0"],powersplit:["6L0"],protect:["6M"],psybeam:["6L0"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recover:["6L0"],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],simplebeam:["6L0"],substitute:["6M"],swagger:["6M"],synchronoise:["6L0"],telekinesis:[],thief:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trickroom:["6M"],wonderroom:["6L0"],zenheadbutt:["6L0"],signalbeam:[],uproar:[],magiccoat:[],gravity:[],darkpulse:[],snore:[],roleplay:[],painsplit:[],afteryou:[],trick:[],recycle:[],snatch:[],sleeptalk:["6M"],skillswap:[]}}, + litwick:{learnset:{acid:["6E"],acidarmor:["6E"],astonish:["6L1"],attract:["6M"],calmmind:["6M"],captivate:["6E"],clearsmog:["6E"],confuseray:["6L10"],curse:["6L43"],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],ember:["6L1"],endure:["6E"],energyball:["6M"],facade:["6M"],fireblast:["6M"],firespin:["6L7"],flameburst:["6L20"],flamecharge:["6M"],flamethrower:["6M"],flash:["6M"],frustration:["6M"],haze:["6E"],heatwave:["6E"],hex:["6L28"],hiddenpower:["6M"],imprison:["6L24"],incinerate:["6M"],inferno:["6L38"],memento:["6L33"],minimize:["6L3"],nightshade:["6L13"],overheat:["6L61","6M"],painsplit:["6L55"],payback:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],shadowball:["6L49","6M"],smog:["6L5"],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],toxic:["6M"],trickroom:["6M"],willowisp:["6L16","6M"],darkpulse:["6M"],snore:[],spite:[],trick:[],sleeptalk:["6M"],confide:["6M"]}}, + lampent:{learnset:{astonish:["6L1"],attract:["6M"],calmmind:["6M"],confuseray:["6L10"],curse:["6L45"],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],ember:["6L1"],energyball:["6M"],facade:["6M"],fireblast:["6M"],firespin:["6L7"],flameburst:["6L20"],flamecharge:["6M"],flamethrower:["6M"],flash:["6M"],frustration:["6M"],hex:["6L28"],hiddenpower:["6M"],imprison:["6L24"],incinerate:["6M"],inferno:["6L38"],memento:["6L33"],minimize:["6L1","6L3"],nightshade:["6L13"],overheat:["6L69","6M"],painsplit:["6L61"],payback:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],shadowball:["6L53","6M"],smog:["6L1","6L5"],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],toxic:["6M"],trickroom:["6M"],willowisp:["6L16","6M"],darkpulse:["6M"],snore:[],heatwave:[],spite:[],trick:[],sleeptalk:["6M"],confide:["6M"]}}, + chandelure:{learnset:{attract:["6M"],calmmind:["6M"],confuseray:["6L1"],doubleteam:["6M"],dreameater:["6M"],embargo:["6M"],energyball:["6M"],facade:["6M"],fireblast:["6M"],flameburst:["6L1"],flamecharge:["6M"],flamethrower:["6M"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],heatwave:[],hex:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],overheat:["6M"],payback:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],smog:["6L1"],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],telekinesis:[],thief:["6M"],toxic:["6M"],trickroom:["6M"],willowisp:["6M"],darkpulse:["6M"],snore:[],painsplit:["6L1"],spite:[],trick:[],sleeptalk:["6M"],confide:["6M"]}}, + axew:{learnset:{aerialace:["6M"],assurance:["6L7"],attract:["6M"],counter:["6E"],cut:["6M"],dig:["6M"],doubleteam:["6M"],dracometeor:["6T"],dragonclaw:["6L28","6M"],dragondance:["6L32"],dragonpulse:["6L41","6E"],dragonrage:["6L10"],dualchop:["6L13"],endeavor:["6E"],endure:["6E"],facade:["6M"],falseswipe:["6L24","6M"],fling:["6M"],focusenergy:["6E"],frustration:["6M"],gigaimpact:["6L61","6M"],guillotine:["6L50"],harden:["6E"],hiddenpower:["6M"],honeclaws:["6M"],incinerate:["6M"],irontail:["6E"],leer:["6L4"],nightslash:["6E"],outrage:["6L56"],payback:["6M"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],razorwind:["6E"],rest:["6M"],"return":["6M"],reversal:["6E"],roar:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6L16"],scratch:["6L1"],slash:["6L20"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6L46","6M"],taunt:["6L36","6M"],toxic:["6M"],xscissor:["6M"],superpower:[],aquatail:[],snore:[],sleeptalk:["6M"],confide:["6M"]}}, + fraxure:{learnset:{aerialace:["6M"],assurance:["6L1","6L7"],attract:["6M"],cut:["6M"],dig:["6M"],doubleteam:["6M"],dracometeor:["6T"],dragonclaw:["6L28","6M"],dragondance:["6L32"],dragonpulse:["6L42"],dragonrage:["6L1","6L10"],dragontail:["6M"],dualchop:["6L13"],facade:["6M"],falseswipe:["6L24","6M"],fling:["6M"],frustration:["6M"],gigaimpact:["6L66","6M"],guillotine:["6L54"],hiddenpower:["6M"],honeclaws:["6M"],incinerate:["6M"],leer:["6L1","6L4"],outrage:["6L60"],payback:["6M"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6L16"],scratch:["6L1"],shadowclaw:["6M"],slash:["6L20"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6L48","6M"],taunt:["6L36","6M"],toxic:["6M"],xscissor:["6M"],lowkick:[],superpower:[],aquatail:[],irontail:[],snore:[],endeavor:[],sleeptalk:["6M"],confide:["6M"]}}, + haxorus:{learnset:{aerialace:["6M"],assurance:["6L1","6L7"],attract:["6M"],brickbreak:["6M"],bulldoze:["6M"],cut:["6M"],dig:["6M"],doubleteam:["6M"],dracometeor:["6T"],dragonclaw:["6L28","6M"],dragondance:["6L32"],dragonpulse:["6L42"],dragonrage:["6L1","6L10"],dragontail:["6M"],dualchop:["6L13"],earthquake:["6M"],facade:["6M"],falseswipe:["6L24","6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6L74","6M"],grassknot:["6M"],guillotine:["6L58"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],incinerate:["6M"],leer:["6L1","6L4"],outrage:["6L1","6L66"],payback:["6M"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6L16"],scratch:["6L1"],shadowclaw:["6M"],slash:["6L20"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swordsdance:["6L50","6M"],taunt:["6L36","6M"],toxic:["6M"],xscissor:["6M"],lowkick:[],superpower:[],aquatail:[],irontail:[],snore:[],endeavor:[],sleeptalk:["6M"],confide:["6M"]}}, + cubchoo:{learnset:{aerialace:["6M"],assurance:["6E"],attract:["6M"],avalanche:["6E"],bide:["6L9"],blizzard:["6L45","6M"],brine:["6L21"],charm:["6L29"],cut:["6M"],dig:["6M"],doubleteam:["6M"],echoedvoice:["6M"],encore:["6E"],endure:["6L25"],facade:["6M"],flail:["6L36"],fling:["6M"],focuspunch:["6E"],frostbreath:["6M"],frustration:["6M"],furyswipes:["6L17"],grassknot:["6M"],growl:["6L1"],hail:["6L49","6M"],hiddenpower:["6M"],honeclaws:["6M"],icebeam:["6M"],icepunch:["6E"],icywind:["6L13"],nightslash:["6E"],powdersnow:["6L5"],protect:["6M"],raindance:["6M"],rest:["6L41","6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],shadowclaw:["6M"],sheercold:["6L57"],slash:["6L33"],sleeptalk:["6M","6E"],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],thrash:["6L53"],toxic:["6M"],yawn:["6E"],covet:[],lowkick:[],superpower:[],snore:[],playnice:["6L15"],poweruppunch:["6M"],confide:["6M"]}}, + beartic:{learnset:{aerialace:["6M"],aquajet:["6L1"],attract:["6M"],bide:["6L1"],blizzard:["6L45","6M"],brickbreak:["6M"],brine:["6L21"],bulkup:["6M"],bulldoze:["6M"],cut:["6M"],dig:["6M"],dive:[],doubleteam:["6M"],echoedvoice:["6M"],endure:["6L25"],facade:["6M"],flail:["6L36"],fling:["6M"],focusblast:["6M"],frostbreath:["6M"],frustration:["6M"],furyswipes:["6L17"],gigaimpact:["6M"],grassknot:["6M"],growl:["6L1"],hail:["6L53","6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],iciclecrash:["6L37"],icywind:["6L1","6L13"],powdersnow:["6L1"],protect:["6M"],raindance:["6M"],rest:["6L41","6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],shadowclaw:["6M"],sheercold:["6L1","6L66"],slash:["6L33"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],superpower:["6L1"],surf:["6M"],swagger:["6L29","6M"],swordsdance:["6M"],taunt:["6M"],thrash:["6L1","6L59"],toxic:["6M"],covet:[],lowkick:[],icepunch:[],snore:[],sleeptalk:["6M"],playnice:["6L9"],poweruppunch:["6M"],confide:["6M"]}}, + cryogonal:{learnset:{acidarmor:["6L29"],acrobatics:["6M"],attract:["6M"],aurorabeam:["6L25"],bind:["6L1"],blizzard:["6M"],confuseray:["6L45"],doubleteam:["6M"],explosion:["6M"],facade:["6M"],flashcannon:["6M"],frostbreath:["6M"],frustration:["6M"],hail:["6M"],haze:["6L1","6L21"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6L33","6M"],iceshard:["6L1","6L5"],icywind:["6L17"],lightscreen:["6L37","6M"],mist:["6L1","6L21"],nightslash:["6L1","6L57"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rapidspin:["6L13"],recover:["6L49"],reflect:["6L37","6M"],rest:["6M"],"return":["6M"],round:["6M"],sharpen:["6L9"],sheercold:["6L1","6L61"],slash:["6L41"],solarbeam:["6L53","6M"],substitute:["6M"],swagger:["6M"],toxic:["6M"],signalbeam:[],magiccoat:[],irondefense:[],snore:[],knockoff:[],sleeptalk:["6M"],freezedry:["6L50"],confide:["6M"]}}, + shelmet:{learnset:{acid:["6L4"],acidarmor:["6L32"],attract:["6M"],batonpass:["6E"],bide:["6L8"],bodyslam:["6L40"],bugbuzz:["6L44"],curse:["6L13"],doubleedge:["6E"],doubleteam:["6M"],encore:["6E"],endure:["6E"],energyball:["6M"],facade:["6M"],feint:["6E"],finalgambit:["6L56"],frustration:["6M"],gigadrain:["6L37"],guardsplit:["6E"],guardswap:["6L50"],hiddenpower:["6M"],leechlife:["6L1"],megadrain:["6L20"],mindreader:["6E"],mudslap:["6E"],protect:["6L28","6M"],pursuit:["6E"],raindance:["6M"],recover:["6L49"],rest:["6M"],"return":["6M"],round:["6M"],sludgebomb:["6M"],spikes:["6E"],strugglebug:["6L16","6M"],substitute:["6M"],swagger:["6M"],toxic:["6M"],venoshock:["6M"],yawn:["6L25"],bugbite:[],signalbeam:[],snore:[],gastroacid:[],sleeptalk:["6M"],infestation:["6M"],confide:["6M"]}}, + accelgor:{learnset:{acidspray:["6L1","6L4"],agility:["6L32"],attract:["6M"],bugbuzz:["6L44"],doubleteam:["6L1","6L8","6M"],energyball:["6M"],facade:["6M"],finalgambit:["6L1","6L56"],focusblast:["6M"],frustration:["6M"],gigadrain:["6L37"],gigaimpact:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],leechlife:["6L1"],mefirst:["6L28"],megadrain:["6L20"],powerswap:["6L1","6L52"],protect:["6M"],quickattack:["6L1","6L13"],raindance:["6M"],recover:["6L49"],rest:["6M"],"return":["6M"],round:["6M"],sandstorm:["6M"],sludgebomb:["6M"],strugglebug:["6L16","6M"],substitute:["6M"],swagger:["6M"],swift:["6L25"],toxic:["6M"],uturn:["6L40","6M"],venoshock:["6M"],bugbite:[],signalbeam:[],snore:[],knockoff:[],gastroacid:[],sleeptalk:["6M"],infestation:["6M"],confide:["6M"]}}, + stunfisk:{learnset:{astonish:["6E"],attract:["6M"],bide:["6L5"],bounce:["6L35"],bulldoze:["6M"],camouflage:["6L17"],curse:["6E"],dig:["6M"],discharge:["6L25"],doubleteam:["6M"],earthpower:["6E"],earthquake:["6M"],endure:["6L30"],facade:["6M"],fissure:["6L1","6L61"],flail:["6L1","6L55"],flash:["6M"],frustration:["6M"],hiddenpower:["6M"],mudbomb:["6L21"],muddywater:["6L40"],mudshot:["6L13"],mudslap:["6L1"],mudsport:["6L1"],painsplit:["6E"],payback:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],revenge:["6L50"],rockslide:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scald:["6M"],shockwave:["6E"],sleeptalk:["6M","6E"],sludgebomb:["6M"],sludgewave:["6M"],spark:["6E"],spite:["6E"],stoneedge:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],thunder:["6M"],thunderbolt:["6L45","6M"],thundershock:["6L9"],thunderwave:["6M"],toxic:["6M"],yawn:["6E"],uproar:[],foulplay:[],magnetrise:[],electroweb:[],aquatail:[],snore:[],endeavor:[],stealthrock:[],tackle:["6L1"],watergun:["6L1"],infestation:["6M"],confide:["6M"],eerieimpulse:["6E"],reflecttype:["6E"],mefirst:["6E"]}}, + mienfoo:{learnset:{acrobatics:["6M"],aerialace:["6M"],attract:["6M"],aurasphere:["6L61"],batonpass:["6E"],bounce:["6L49"],brickbreak:["6M"],bulkup:["6M"],calmmind:["6L25","6M"],detect:["6L9"],dig:["6M"],doubleslap:["6L17"],doubleteam:["6M"],drainpunch:["6L33"],endure:["6E"],facade:["6M"],fakeout:["6L13"],feint:["6E"],fling:["6M"],focusblast:["6M"],forcepalm:["6L29"],frustration:["6M"],grassknot:["6M"],hiddenpower:["6M"],highjumpkick:["6L50"],jumpkick:["6L37"],knockoff:["6E"],lowkick:["6E"],lowsweep:["6M"],meditate:["6L5"],mefirst:["6E"],payback:["6M"],poisonjab:["6M"],pound:["6L1"],protect:["6M"],psychup:["6M"],quickguard:["6L45"],raindance:["6M"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],reversal:["6L57"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],smellingsalts:["6E"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L21"],swordsdance:["6M"],taunt:["6M"],toxic:["6M"],uturn:["6L41","6M"],vitalthrow:["6E"],workup:[],dualchop:[],snore:[],roleplay:[],helpinghand:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"],allyswitch:["6E"]}}, + mienshao:{learnset:{acrobatics:["6M"],aerialace:["6M"],attract:["6M"],aurasphere:["6L1","6L70"],bounce:["6L49"],brickbreak:["6M"],bulkup:["6M"],calmmind:["6L25","6M"],detect:["6L1","6L9"],dig:["6M"],doubleslap:["6L17"],doubleteam:["6M"],drainpunch:["6L33"],facade:["6M"],fakeout:["6L1","6L13"],fling:["6M"],focusblast:["6M"],forcepalm:["6L29"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],hiddenpower:["6M"],highjumpkick:["6L56"],hyperbeam:["6M"],jumpkick:["6L37"],lowsweep:["6M"],meditate:["6L1","6L5"],payback:["6M"],poisonjab:["6M"],pound:["6L1"],protect:["6M"],psychup:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],reversal:["6L1","6L63"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swift:["6L21"],swordsdance:["6M"],taunt:["6M"],toxic:["6M"],uturn:["6L41","6M"],wideguard:["6L45"],workup:[],dualchop:[],lowkick:[],snore:[],knockoff:[],roleplay:[],helpinghand:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + druddigon:{learnset:{aerialace:["6M"],attract:["6M"],bite:["6L9"],bulldoze:["6M"],chargebeam:["6M"],chipaway:["6L31"],crunch:["6L25"],crushclaw:["6E"],cut:["6M"],dig:["6M"],doubleteam:["6M"],dracometeor:["6T"],dragonclaw:["6L27","6M"],dragonrage:["6L18"],dragontail:["6L45","6M"],earthquake:["6M"],facade:["6M"],feintattack:["6E"],firefang:["6E"],flamethrower:["6M"],flashcannon:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],glare:["6E"],hiddenpower:["6M"],honeclaws:["6L5","6M"],hyperbeam:["6M"],incinerate:["6M"],irontail:["6E"],leer:["6L1"],metalclaw:["6E"],nightslash:["6L40"],outrage:["6L62"],payback:["6M"],poisontail:["6E"],protect:["6M"],pursuit:["6E"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L35"],roar:["6M"],rockclimb:["6L49"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6L13"],scratch:["6L1"],shadowclaw:["6M"],slash:["6L21"],sludgebomb:["6M"],smackdown:["6M"],snarl:["6M"],snatch:["6E"],strength:["6M"],substitute:["6M"],suckerpunch:["6E"],sunnyday:["6M"],superpower:["6L55"],surf:["6M"],swagger:["6M"],taunt:["6M"],thunderfang:["6E"],torment:["6M"],toxic:["6M"],ironhead:[],gunkshot:[],thunderpunch:[],firepunch:[],aquatail:[],darkpulse:["6M"],dragonpulse:[],snore:[],heatwave:[],stealthrock:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + golett:{learnset:{astonish:["6L1"],brickbreak:["6M"],bulldoze:["6M"],curse:["6L40"],defensecurl:["6L1"],doubleteam:["6M"],dynamicpunch:["6L30"],earthquake:["6L45","6M"],facade:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],focuspunch:["6L55"],frustration:["6M"],grassknot:["6M"],gyroball:["6M"],hammerarm:["6L50"],hiddenpower:["6M"],icebeam:["6M"],irondefense:["6L17"],lowsweep:["6M"],magnitude:["6L25"],megapunch:["6L21"],mudslap:["6L5"],nightshade:["6L35"],pound:["6L1"],protect:["6M"],psychic:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L9"],round:["6M"],safeguard:["6M"],shadowball:["6M"],shadowpunch:["6L13"],strength:["6M"],substitute:["6M"],swagger:["6M"],telekinesis:[],thief:["6M"],toxic:["6M"],signalbeam:[],lowkick:[],thunderpunch:[],firepunch:[],icepunch:[],magiccoat:[],block:[],earthpower:[],gravity:[],superpower:[],icywind:[],snore:[],drainpunch:[],stealthrock:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + golurk:{learnset:{astonish:["6L1"],brickbreak:["6M"],bulldoze:["6M"],chargebeam:["6M"],curse:["6L40"],defensecurl:["6L1"],doubleteam:["6M"],dynamicpunch:["6L30"],earthquake:["6L50","6M"],facade:["6M"],flash:["6M"],flashcannon:["6M"],fling:["6M"],fly:["6M"],focusblast:["6M"],focuspunch:["6L1","6L70"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gyroball:["6M"],hammerarm:["6L60"],heavyslam:["6L43"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],irondefense:["6L17"],lowsweep:["6M"],magnitude:["6L25"],megapunch:["6L21"],mudslap:["6L1","6L5"],nightshade:["6L35"],pound:["6L1"],protect:["6M"],psychic:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],rollout:["6L9"],round:["6M"],safeguard:["6M"],shadowball:["6M"],shadowpunch:["6L13"],solarbeam:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],swagger:["6M"],telekinesis:[],thief:["6M"],thunderbolt:["6M"],toxic:["6M"],signalbeam:[],lowkick:[],thunderpunch:[],firepunch:[],icepunch:[],magiccoat:[],block:[],earthpower:[],gravity:[],superpower:[],icywind:[],zenheadbutt:[],snore:[],drainpunch:[],stealthrock:[],sleeptalk:["6M"],phantomforce:["6L1","6L75"],poweruppunch:["6M"],confide:["6M"]}}, + pawniard:{learnset:{aerialace:["6M"],assurance:["6L33"],attract:["6M"],brickbreak:["6M"],cut:["6M"],dig:["6M"],doubleteam:["6M"],embargo:["6L41","6M"],facade:["6M"],feintattack:["6L17"],falseswipe:["6M"],fling:["6M"],frustration:["6M"],furycutter:["6L9"],grassknot:["6M"],guillotine:["6L62"],headbutt:["6E"],hiddenpower:["6M"],honeclaws:["6M"],irondefense:["6L46"],ironhead:["6L54"],leer:["6L6"],lowsweep:["6M"],meanlook:["6E"],metalclaw:["6L25"],metalsound:["6L38"],nightslash:["6L49"],payback:["6M"],poisonjab:["6M"],protect:["6M"],psychocut:["6E"],pursuit:["6E"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6E"],rockpolish:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scaryface:["6L22"],scratch:["6L1"],shadowclaw:["6M"],slash:["6L30"],snarl:["6M"],stealthrock:["6E"],substitute:["6M"],suckerpunch:["6E"],swagger:["6M"],swordsdance:["6L57","6M"],taunt:["6M"],thief:["6M"],thunderwave:["6M"],torment:["6L14","6M"],toxic:["6M"],xscissor:["6M"],dualchop:[],lowkick:[],foulplay:[],magnetrise:[],darkpulse:["6M"],snore:[],knockoff:[],roleplay:[],spite:[],snatch:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + bisharp:{learnset:{aerialace:["6M"],assurance:["6L33"],attract:["6M"],brickbreak:["6M"],cut:["6M"],dig:["6M"],doubleteam:["6M"],embargo:["6L41","6M"],facade:["6M"],feintattack:["6L17"],falseswipe:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],furycutter:["6L1","6L9"],gigaimpact:["6M"],grassknot:["6M"],guillotine:["6L1","6L71"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],irondefense:["6L46"],ironhead:["6L1","6L57"],leer:["6L1","6L6"],lowsweep:["6M"],metalburst:["6L1"],metalclaw:["6L25"],metalsound:["6L38"],nightslash:["6L49"],payback:["6M"],poisonjab:["6M"],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockpolish:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],scaryface:["6L22"],scratch:["6L1"],shadowclaw:["6M"],slash:["6L30"],snarl:["6M"],stoneedge:["6M"],substitute:["6M"],swagger:["6M"],swordsdance:["6L63","6M"],taunt:["6M"],thief:["6M"],thunderwave:["6M"],torment:["6L1","6L14","6M"],toxic:["6M"],xscissor:["6M"],dualchop:[],lowkick:[],foulplay:[],magnetrise:[],darkpulse:["6M"],snore:[],knockoff:[],roleplay:[],spite:[],snatch:[],stealthrock:[],sleeptalk:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + bouffalant:{learnset:{aerialace:["6M"],amnesia:["6E"],attract:["6M"],bulldoze:["6M"],cut:["6M"],doubleteam:["6M"],earthquake:["6M"],facade:["6M"],focusenergy:["6L0"],frustration:["6M"],furyattack:["6L0"],gigaimpact:["6M"],headbutt:["6E"],headcharge:["6L0"],hiddenpower:["6M"],hornattack:["6L0"],ironhead:["6E"],leer:["6L0"],megahorn:["6L0"],mudshot:["6E"],mudslap:["6E"],payback:["6M"],poisonjab:["6M"],protect:["6M"],pursuit:["6L0"],rage:["6L0"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],revenge:["6L0"],reversal:["6L0"],rockclimb:["6E"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6L0"],skullbash:["6E"],stomp:["6E"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],taunt:["6M"],thrash:["6L0"],toxic:["6M"],wildcharge:["6M"],workup:[],uproar:[],superpower:[],zenheadbutt:[],snore:[],endeavor:[],outrage:[],sleeptalk:["6M"]}}, + rufflet:{learnset:{aerialace:["6L23","6M"],airslash:["6L41"],attract:["6M"],bravebird:["6L59"],bulkup:["6M"],crushclaw:["6L46"],cut:["6M"],defog:["6L32"],doubleteam:["6M"],facade:["6M"],fly:["6M"],frustration:["6M"],furyattack:["6L5"],hiddenpower:["6M"],honeclaws:["6L14","6M"],leer:["6L1"],peck:["6L1"],pluck:[],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6L19"],shadowclaw:["6M"],skydrop:["6L50","6M"],slash:["6L28"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tailwind:["6L37"],thrash:["6L64"],toxic:["6M"],uturn:["6M"],whirlwind:["6L55"],wingattack:["6L10"],workup:[],superpower:[],snore:[],heatwave:[],roost:["6M"],sleeptalk:["6M"],steelwing:["6M"],confide:["6M"]}}, + braviary:{learnset:{aerialace:["6L23","6M"],airslash:["6L41"],attract:["6M"],bravebird:["6L1","6L63"],bulkup:["6M"],crushclaw:["6L46"],cut:["6M"],defog:["6L32"],doubleteam:["6M"],facade:["6M"],fly:["6M"],frustration:["6M"],furyattack:["6L1","6L5"],gigaimpact:["6M"],hiddenpower:["6M"],honeclaws:["6L14","6M"],hyperbeam:["6M"],leer:["6L1"],peck:["6L1"],pluck:[],protect:["6M"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6L19"],shadowclaw:["6M"],skydrop:["6L50","6M"],slash:["6L28"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],superpower:["6L1","6L51"],swagger:["6M"],tailwind:["6L37"],thrash:["6L1","6L70"],toxic:["6M"],uturn:["6M"],whirlwind:["6L1","6L57"],wingattack:["6L1","6L10"],workup:[],snore:[],heatwave:[],skyattack:[],roost:["6M"],sleeptalk:["6M"],steelwing:["6M"],confide:["6M"]}}, + vullaby:{learnset:{aerialace:["6M"],airslash:["6L41"],attract:["6M"],bravebird:["6L59"],cut:["6M"],darkpulse:["6L46","6M"],defog:["6L32"],doubleteam:["6M"],embargo:["6L50","6M"],facade:["6M"],feintattack:["6L23"],faketears:["6E"],flatter:["6L19"],fly:["6M"],frustration:["6M"],furyattack:["6L5"],gust:["6L1"],hiddenpower:["6M"],incinerate:["6M"],knockoff:["6E"],leer:["6L1"],meanlook:["6E"],mirrormove:["6L64"],nastyplot:["6L14"],payback:["6M"],pluck:["6L10"],protect:["6M"],psychup:["6M"],punishment:["6L28"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],roost:["6M","6E"],round:["6M"],scaryface:["6E"],shadowball:["6M"],snarl:["6M"],steelwing:["6M","6E"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tailwind:["6L37"],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6M"],uturn:["6M"],whirlwind:["6L55"],block:[],foulplay:[],irondefense:[],snore:[],heatwave:[],snatch:[],sleeptalk:["6M"],confide:["6M"]}}, + mandibuzz:{learnset:{aerialace:["6M"],airslash:["6L41"],attract:["6M"],bonerush:["6L1","6L51"],bravebird:["6L1","6L63"],cut:["6M"],darkpulse:["6L46","6M"],defog:["6L32"],doubleteam:["6M"],embargo:["6L50","6M"],facade:["6M"],feintattack:["6L23"],flatter:["6L19"],fly:["6M"],frustration:["6M"],furyattack:["6L1","6L5"],gigaimpact:["6M"],gust:["6L1"],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],leer:["6L1"],mirrormove:["6L1","6L70"],nastyplot:["6L14"],payback:["6M"],pluck:["6L1","6L10"],protect:["6M"],psychup:["6M"],punishment:["6L28"],raindance:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],shadowball:["6M"],snarl:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tailwind:["6L37"],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6M"],uturn:["6M"],whirlwind:["6L1","6L57"],block:[],foulplay:[],irondefense:[],snore:[],knockoff:[],heatwave:[],skyattack:[],roost:["6M"],snatch:[],sleeptalk:["6M"],steelwing:["6M"],confide:["6M"]}}, + heatmor:{learnset:{aerialace:["6M"],amnesia:["6L44"],attract:["6M"],bind:["6L11"],bodyslam:["6E"],bugbite:["6L36"],curse:["6E"],cut:["6M"],dig:["6M"],doubleteam:["6M"],facade:["6M"],feintattack:["6E"],fireblast:["6M"],firespin:["6L16"],flameburst:["6L31"],flamethrower:["6L47","6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],furyswipes:["6L21"],gigaimpact:["6M"],heatwave:["6E"],hiddenpower:["6M"],honeclaws:["6L1","6M"],incinerate:["6L1","6M"],inferno:["6L1","6L61"],lick:["6L1"],nightslash:["6E"],odorsleuth:["6L6"],protect:["6M"],pursuit:["6E"],raindance:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],shadowclaw:["6M"],slash:["6L41"],sleeptalk:["6M","6E"],snatch:["6L26"],solarbeam:["6M"],spitup:["6L50"],stockpile:["6L50"],substitute:["6M"],suckerpunch:["6E"],sunnyday:["6M"],swagger:["6M"],swallow:["6L50"],taunt:["6M"],thief:["6M"],tickle:["6E"],toxic:["6M"],willowisp:["6M"],wrap:["6E"],lowkick:[],thunderpunch:[],firepunch:[],superpower:[],snore:[],knockoff:[],gigadrain:[],gastroacid:[],recycle:[],tackle:["6L1"],poweruppunch:["6M"],confide:["6M"],belch:["6E"]}}, + durant:{learnset:{aerialace:["6M"],agility:["6L16"],attract:["6M"],batonpass:["6E"],bite:["6L11"],bugbite:["6L26"],crunch:["6L31"],cut:["6M"],dig:["6L41","6M"],doubleteam:["6M"],endure:["6E"],energyball:["6M"],entrainment:["6L46"],facade:["6M"],feintattack:["6E"],flashcannon:["6M"],frustration:["6M"],furycutter:["6L6"],gigaimpact:["6M"],guillotine:["6L1","6L61"],hiddenpower:["6M"],honeclaws:["6M"],irondefense:["6L1","6L56"],ironhead:["6L36"],metalclaw:["6L21"],metalsound:["6L1","6L66"],protect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockclimb:["6E"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sandattack:["6L1"],sandstorm:["6M"],screech:["6E"],shadowclaw:["6M"],stoneedge:["6M"],strength:["6M"],strugglebug:["6M"],substitute:["6M"],swagger:["6M"],thunderfang:["6E"],thunderwave:["6M"],toxic:["6M"],vicegrip:["6L1"],xscissor:["6L51","6M"],superpower:[],snore:[],endeavor:[],sleeptalk:["6M"],falseswipe:["6M"],confide:["6M"]}}, + deino:{learnset:{assurance:["6E"],astonish:["6E"],attract:["6M"],bite:["6L9"],bodyslam:["6L48"],crunch:["6L25"],darkpulse:["6M","6E"],doublehit:["6E"],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L17"],dragonpulse:["6L32"],dragonrage:["6L1"],dragonrush:["6L42"],dragontail:["6M"],earthpower:["6E"],facade:["6M"],firefang:["6E"],focusenergy:["6L4"],frustration:["6M"],headbutt:["6L12"],headsmash:["6E"],hiddenpower:["6M"],hypervoice:["6L58"],icefang:["6E"],incinerate:["6M"],outrage:["6L62"],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6L20","6M"],rocksmash:["6M"],round:["6M"],scaryface:["6L50"],screech:["6E"],slam:["6L28"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],taunt:["6M"],thief:["6M"],thunderfang:["6E"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],workup:["6L38"],uproar:[],superpower:[],aquatail:[],zenheadbutt:[],snore:[],spite:[],sleeptalk:["6M"],confide:["6M"]}}, + zweilous:{learnset:{attract:["6M"],bite:["6L1","6L9"],bodyslam:["6L48"],crunch:["6L25"],doublehit:["6L1"],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L17"],dragonpulse:["6L32"],dragonrage:["6L1"],dragonrush:["6L42"],dragontail:["6M"],facade:["6M"],focusenergy:["6L1","6L4"],frustration:["6M"],headbutt:["6L12"],hiddenpower:["6M"],hypervoice:["6L64"],incinerate:["6M"],outrage:["6L71"],protect:["6M"],psychup:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],roar:["6L20","6M"],rocksmash:["6M"],round:["6M"],scaryface:["6L55"],slam:["6L28"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],thief:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],workup:["6L38"],uproar:[],earthpower:[],superpower:[],aquatail:[],darkpulse:["6M"],zenheadbutt:[],snore:[],spite:[],sleeptalk:["6M"],confide:["6M"]}}, + hydreigon:{learnset:{acrobatics:["6M"],attract:["6M"],bite:["6L1","6L9"],bodyslam:["6L48"],bulldoze:["6M"],chargebeam:["6M"],crunch:["6L25"],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L17"],dragonpulse:["6L32"],dragonrage:["6L1"],dragonrush:["6L42"],dragontail:["6M"],earthquake:["6M"],echoedvoice:["6M"],facade:["6M"],fireblast:["6M"],flamethrower:["6M"],flashcannon:["6M"],fly:["6M"],focusblast:["6M"],focusenergy:["6L1","6L4"],frustration:["6M"],gigaimpact:["6M"],headbutt:["6L12"],hiddenpower:["6M"],hyperbeam:["6M"],hypervoice:["6L1","6L68"],incinerate:["6M"],outrage:["6L1","6L79"],payback:["6M"],protect:["6M"],psychup:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],roar:["6L20","6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],scaryface:["6L55"],slam:["6L28"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],surf:["6M"],swagger:["6M"],taunt:["6M"],thief:["6M"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],triattack:["6L1"],uturn:["6M"],workup:["6L38"],signalbeam:[],uproar:[],earthpower:[],superpower:[],aquatail:[],darkpulse:["6M"],zenheadbutt:[],irontail:[],snore:[],heatwave:[],tailwind:[],roost:["6M"],spite:[],sleeptalk:["6M"],steelwing:["6M"],confide:["6M"]}}, + larvesta:{learnset:{acrobatics:["6M"],amnesia:["6L80"],bugbite:["6L40"],bugbuzz:["6L70"],calmmind:["6M"],doubleedge:["6L50"],doubleteam:["6M"],ember:["6L1"],endure:["6E"],facade:["6M"],fireblast:["6M"],flamecharge:["6L30","6M"],flamethrower:["6M"],flamewheel:["6L60"],flareblitz:["6L100"],foresight:["6E"],frustration:["6M"],harden:["6E"],hiddenpower:["6M"],incinerate:["6M"],leechlife:["6L10"],lightscreen:["6M"],magnetrise:["6E"],morningsun:["6E"],overheat:["6M"],protect:["6M"],psychic:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],solarbeam:["6M"],stringshot:["6L1","6E"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],takedown:["6L20"],thrash:["6L90"],toxic:["6M"],uturn:["6M"],wildcharge:["6M"],willowisp:["6M"],zenheadbutt:["6E"],signalbeam:[],snore:[],heatwave:[],gigadrain:[],sleeptalk:["6M"],confide:["6M"]}}, + volcarona:{learnset:{acrobatics:["6M"],aerialace:["6M"],bugbuzz:["6L1","6L70"],calmmind:["6M"],doubleteam:["6M"],ember:["6L1"],facade:["6M"],fierydance:["6L1","6L100"],fireblast:["6M"],firespin:["6L30"],flamecharge:["6M"],flamethrower:["6M"],fly:["6M"],frustration:["6M"],gigaimpact:["6M"],gust:["6L1","6L20"],heatwave:["6L1","6L60"],hiddenpower:["6M"],hurricane:["6L1","6L90"],hyperbeam:["6M"],incinerate:["6M"],leechlife:["6L1","6L10"],lightscreen:["6M"],overheat:["6M"],poisonjab:["6M"],protect:["6M"],psychic:["6M"],quiverdance:["6L1","6L59"],ragepowder:["6L1","6L80"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],silverwind:["6L50"],solarbeam:["6M"],stringshot:["6L1"],strugglebug:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],toxic:["6M"],uturn:["6M"],whirlwind:["6L40"],wildcharge:["6M"],willowisp:["6M"],bugbite:[],signalbeam:[],magnetrise:[],zenheadbutt:[],snore:[],tailwind:[],gigadrain:[],roost:["6M"],sleeptalk:["6M"],flareblitz:["6L1"],thrash:["6L1"],amnesia:["6L1"],flamewheel:["6L1"],confide:["6M"]}}, + cobalion:{learnset:{aerialace:["6M"],calmmind:["6M"],closecombat:["6L0"],cut:["6M"],doublekick:["6L0"],doubleteam:["6M"],facade:["6M"],falseswipe:["6M"],flashcannon:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],helpinghand:["6L0"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],ironhead:["6L0"],leer:["6L0"],metalburst:["6L0"],metalclaw:["6L0"],poisonjab:["6M"],protect:["6M"],psychup:["6M"],quickattack:["6L0"],quickguard:["6L0"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockpolish:["6M"],rocksmash:["6M"],round:["6M"],sacredsword:["6L0"],safeguard:["6M"],sandstorm:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],swagger:["6M"],swordsdance:["6M"],takedown:["6L0"],taunt:["6M"],thunderwave:["6M"],toxic:["6M"],voltswitch:["6M"],workup:["6L0"],xscissor:["6M"],bounce:[],block:[],magnetrise:[],irondefense:[],superpower:[],zenheadbutt:[],snore:[],stealthrock:[],sleeptalk:["6M"]}}, + terrakion:{learnset:{aerialace:["6M"],bulldoze:["6M"],calmmind:["6M"],closecombat:["6L0"],cut:["6M"],doublekick:["6L0"],doubleteam:["6M"],earthquake:["6M"],facade:["6M"],falseswipe:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],helpinghand:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],leer:["6L0"],poisonjab:["6M"],protect:["6M"],psychup:["6M"],quickattack:["6L0"],quickguard:["6L0"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],sacredsword:["6L0"],safeguard:["6M"],sandstorm:["6M"],smackdown:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],swagger:["6M"],swordsdance:["6M"],takedown:["6L0"],taunt:["6M"],toxic:["6M"],workup:["6L0"],xscissor:["6M"],ironhead:[],block:[],earthpower:[],superpower:[],zenheadbutt:[],snore:[],stealthrock:[],sleeptalk:["6M"]}}, + virizion:{learnset:{aerialace:["6M"],calmmind:["6M"],closecombat:["6L0"],cut:["6M"],doublekick:["6L0"],doubleteam:["6M"],energyball:["6M"],facade:["6M"],falseswipe:["6M"],flash:["6M"],focusblast:["6M"],frustration:["6M"],gigadrain:["6L0"],gigaimpact:["6M"],grassknot:["6M"],helpinghand:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],leafblade:["6L0"],leer:["6L0"],lightscreen:["6M"],magicalleaf:["6L0"],protect:["6M"],psychup:["6M"],quickattack:["6L0"],quickguard:["6L0"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],round:["6M"],sacredsword:["6L0"],safeguard:["6M"],solarbeam:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],takedown:["6L0"],taunt:["6M"],toxic:["6M"],workup:["6L0"],xscissor:["6M"],seedbomb:[],bounce:[],block:[],superpower:[],zenheadbutt:[],snore:[],synthesis:[],worryseed:[],sleeptalk:["6M"]}}, + tornadus:{learnset:{acrobatics:["6M"],aerialace:["6M"],agility:["6L0"],aircutter:["6L0"],airslash:["6L0"],astonish:["6L0"],attract:["6M"],bite:["6L0"],brickbreak:["6M"],bulkup:["6M"],crunch:["6L0"],darkpulse:["6L0"],doubleteam:["6M"],embargo:["6M"],extrasensory:["6L0"],facade:["6M"],fling:["6M"],fly:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gust:["6L0"],hammerarm:["6L0"],hiddenpower:["6M"],hurricane:["6L0"],hyperbeam:["6M"],incinerate:["6M"],payback:["6M"],protect:["6M"],psychic:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],revenge:["6L0"],rocksmash:["6M"],round:["6M"],skydrop:["6M"],sludgebomb:["6M"],sludgewave:["6M"],smackdown:["6M"],strength:["6M"],substitute:["6M"],swagger:["6M"],tailwind:["6L0"],taunt:["6M"],thief:["6M"],thrash:["6L0"],torment:["6M"],toxic:["6M"],uproar:["6L0"],uturn:["6M"],foulplay:[],superpower:[],icywind:[],irontail:[],snore:[],knockoff:[],heatwave:[],roleplay:[],sleeptalk:["6M"]}}, + thundurus:{learnset:{agility:["6L0"],astonish:["6L0"],attract:["6M"],bite:["6L0"],brickbreak:["6M"],bulkup:["6M"],charge:["6L0"],chargebeam:["6M"],crunch:["6L0"],darkpulse:["6L0"],discharge:["6L0"],doubleteam:["6M"],embargo:["6M"],facade:["6M"],flashcannon:["6M"],fling:["6M"],fly:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],hammerarm:["6L0"],healblock:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],nastyplot:["6L0"],payback:["6M"],protect:["6M"],psychic:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],revenge:["6L0"],rocksmash:["6M"],round:["6M"],shockwave:["6L0"],skydrop:["6M"],sludgebomb:["6M"],sludgewave:["6M"],smackdown:["6M"],strength:["6M"],substitute:["6M"],swagger:["6M"],taunt:["6M"],thief:["6M"],thrash:["6L0"],thunder:["6M"],thunderbolt:["6M"],thundershock:["6L0"],thunderwave:["6M"],torment:["6M"],toxic:["6M"],uproar:["6L0"],uturn:["6M"],voltswitch:["6M"],wildcharge:["6M"],thunderpunch:[],foulplay:[],superpower:[],irontail:[],snore:[],knockoff:[],roleplay:[],sleeptalk:["6M"]}}, + reshiram:{learnset:{ancientpower:["6L0"],blueflare:["6L0"],crunch:["6L0"],cut:["6M"],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L0"],dragonclaw:["6M"],dragonpulse:["6L0"],dragonrage:["6L0"],dragontail:["6M"],echoedvoice:["6M"],extrasensory:["6L0"],facade:["6M"],fireblast:["6M"],firefang:["6L0"],flamecharge:["6M"],flamethrower:["6M"],fling:["6M"],fly:["6M"],focusblast:["6M"],frustration:["6M"],fusionflare:["6L0"],gigaimpact:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],hypervoice:["6L0"],imprison:["6L0"],incinerate:["6M"],lightscreen:["6M"],mist:[],outrage:["6L0"],overheat:["6M"],payback:["6M"],protect:["6M"],psychic:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],shadowclaw:["6M"],slash:["6L0"],solarbeam:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],toxic:["6M"],willowisp:["6M"],earthpower:[],zenheadbutt:[],snore:[],heatwave:[],tailwind:[],roost:["6M"],sleeptalk:["6M"]}}, + zekrom:{learnset:{ancientpower:["6L0"],boltstrike:["6L0"],chargebeam:["6M"],crunch:["6L0"],cut:["6M"],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L0"],dragonclaw:["6M"],dragonrage:["6L0"],dragontail:["6M"],echoedvoice:["6M"],facade:["6M"],flash:["6M"],flashcannon:["6M"],fling:["6M"],fly:["6M"],focusblast:["6M"],frustration:["6M"],fusionbolt:["6L0"],gigaimpact:["6M"],haze:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],hypervoice:["6L0"],imprison:["6L0"],lightscreen:["6M"],outrage:["6L0"],payback:["6M"],protect:["6M"],psychic:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],shadowclaw:["6M"],slash:["6L0"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],swagger:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderfang:["6L0"],thunderwave:["6M"],toxic:["6M"],voltswitch:["6M"],wildcharge:["6M"],zenheadbutt:["6L0"],signalbeam:[],thunderpunch:[],earthpower:[],magnetrise:[],dragonpulse:[],snore:[],tailwind:[],roost:["6M"],sleeptalk:["6M"]}}, + landorus:{learnset:{attract:["6M"],block:["6L0"],brickbreak:["6M"],bulkup:["6M"],bulldoze:["6M"],calmmind:["6M"],dig:["6M"],doubleteam:["6M"],earthpower:["6L0"],earthquake:["6M"],explosion:["6M"],extrasensory:["6L0"],facade:["6M"],fissure:["6L0"],fling:["6M"],fly:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],hammerarm:["6L0"],hiddenpower:["6M"],hyperbeam:["6M"],imprison:["6L0"],mudshot:["6L0"],outrage:["6L0"],payback:["6M"],protect:["6M"],psychic:["6M"],punishment:["6L0"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rockthrow:["6L0"],rocktomb:["6M"],round:["6M"],sandstorm:["6M"],sludgebomb:["6M"],sludgewave:["6M"],smackdown:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],swagger:["6M"],swordsdance:["6M"],toxic:["6M"],uturn:["6M"],gravity:[],superpower:[],irontail:[],snore:[],knockoff:[],roleplay:[],stealthrock:[],sleeptalk:["6M"]}}, + kyurem:{learnset:{ancientpower:["6L0"],blizzard:["6M"],cut:["6M"],doubleteam:["6M"],dracometeor:["6T"],dragonbreath:["6L0"],dragonclaw:["6M"],dragonpulse:["6L0"],dragonrage:["6L0"],dragontail:["6M"],echoedvoice:["6M"],endeavor:["6L0"],facade:["6M"],flashcannon:["6M"],fling:["6M"],fly:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],glaciate:["6L0"],hail:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],hypervoice:["6L0"],icebeam:["6M"],icywind:["6L0"],imprison:["6L0"],lightscreen:["6M"],outrage:["6L0"],payback:["6M"],protect:["6M"],psychic:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],scaryface:["6L0"],shadowball:["6M"],shadowclaw:["6M"],slash:["6L0"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],toxic:["6M"],signalbeam:[],ironhead:[],earthpower:[],zenheadbutt:[],snore:[],roost:["6M"],sleeptalk:["6M"]}}, + kyuremblack:{learnset:{ancientpower:["6L0"],blizzard:["6M"],cut:["6M"],doubleteam:["6M"],dracometeor:[],dragonbreath:["6L0"],dragonclaw:["6M"],dragonpulse:["6L0"],dragonrage:["6L0"],dragontail:["6M"],echoedvoice:["6M"],endeavor:["6L0"],facade:["6M"],flashcannon:["6M"],fling:["6M"],fly:["6M"],focusblast:["6M"],freezeshock:["6L0"],frustration:["6M"],fusionbolt:["6L0"],gigaimpact:["6M"],hail:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],hypervoice:["6L0"],icebeam:["6M"],icywind:["6L0"],imprison:["6L0"],lightscreen:["6M"],outrage:["6L0"],payback:["6M"],protect:["6M"],psychic:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],shadowclaw:["6M"],slash:["6L0"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],toxic:["6M"],signalbeam:[],ironhead:[],earthpower:[],zenheadbutt:[],snore:[],roost:["6M"],sleeptalk:["6M"]}}, + kyuremwhite:{learnset:{ancientpower:["6L0"],blizzard:["6M"],cut:["6M"],doubleteam:["6M"],dracometeor:[],dragonbreath:["6L0"],dragonclaw:["6M"],dragonpulse:["6L0"],dragonrage:["6L0"],dragontail:["6M"],echoedvoice:["6M"],endeavor:["6L0"],facade:["6M"],flashcannon:["6M"],fling:["6M"],fly:["6M"],focusblast:["6M"],frustration:["6M"],fusionflare:["6L0"],gigaimpact:["6M"],hail:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],hypervoice:["6L0"],icebeam:["6M"],iceburn:["6L0"],icywind:["6L0"],imprison:["6L0"],lightscreen:["6M"],outrage:["6L0"],payback:["6M"],protect:["6M"],psychic:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],shadowclaw:["6M"],slash:["6L0"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],toxic:["6M"],signalbeam:[],ironhead:[],earthpower:[],zenheadbutt:[],snore:[],roost:["6M"],sleeptalk:["6M"]}}, + keldeo:{learnset:{aerialace:["6M"],aquajet:["6L0"],aquatail:["6L0"],bubblebeam:["6L0"],calmmind:["6M"],closecombat:["6L0"],cut:["6M"],doublekick:["6L0"],doubleteam:["6M"],facade:["6M"],falseswipe:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],helpinghand:["6L0"],hiddenpower:["6M"],hydropump:["6L0"],hyperbeam:["6M"],leer:["6L0"],poisonjab:["6M"],protect:["6M"],psychup:["6M"],quickguard:["6L0"],raindance:["6M"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],roar:["6M"],rocksmash:["6M"],round:["6M"],sacredsword:["6L0"],safeguard:["6M"],scald:["6M"],secretsword:[],stoneedge:["6M"],strength:["6M"],substitute:["6M"],surf:["6M"],swagger:["6M"],swordsdance:["6M"],takedown:["6L0"],taunt:["6M"],toxic:["6M"],workup:["6L0"],xscissor:["6M"],covet:[],bounce:[],lastresort:[],superpower:[],icywind:[],snore:[],endeavor:[],sleeptalk:["6M"]}}, + meloetta:{learnset:{acrobatics:["6M"],brickbreak:["6M"],calmmind:["6M"],chargebeam:["6M"],closecombat:["6L0"],confusion:["6L0"],doubleteam:["6M"],dreameater:["6M"],echoedvoice:["6M"],embargo:["6M"],energyball:["6M"],facade:["6M"],flash:["6M"],fling:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],hypervoice:["6L0"],lightscreen:["6M"],lowsweep:["6M"],payback:["6M"],perishsong:["6L0"],protect:["6M"],psybeam:["6L0"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],quickattack:["6L0"],raindance:["6M"],relicsong:[],rest:["6M"],retaliate:["6M"],"return":["6M"],rocksmash:["6M"],roleplay:["6L0"],round:["6M"],safeguard:["6M"],shadowball:["6M"],shadowclaw:["6M"],sing:["6L0"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],teeterdance:["6L0"],telekinesis:[],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],trickroom:["6M"],uturn:["6M"],wakeupslap:["6L0"],workup:[],covet:[],dualchop:[],signalbeam:[],lowkick:[],uproar:[],thunderpunch:[],firepunch:[],icepunch:[],magiccoat:[],gravity:[],lastresort:[],zenheadbutt:[],snore:[],knockoff:[],healbell:[],drainpunch:[],helpinghand:[],trick:[],magicroom:[],wonderroom:[],recycle:[],snatch:[],sleeptalk:["6M"],skillswap:[]}}, + genesect:{learnset:{aerialace:["6M"],blazekick:[],blizzard:["6M"],bugbite:[],bugbuzz:["6L0"],chargebeam:["6M"],darkpulse:[],doubleteam:["6M"],electroweb:[],energyball:["6M"],explosion:["6M"],extremespeed:[],facade:["6M"],flamecharge:["6M"],flamethrower:["6M"],flash:["6M"],flashcannon:["6M"],fly:["6M"],frustration:["6M"],furycutter:["6L0"],gigadrain:[],gigaimpact:["6M"],gravity:[],gunkshot:[],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],icebeam:["6M"],irondefense:[],ironhead:[],lastresort:[],lightscreen:["6M"],lockon:["6L0"],magiccoat:[],magnetbomb:["6L0"],magnetrise:["6L0"],metalclaw:["6L0"],metalsound:["6L0"],protect:["6M"],psychic:["6M"],quickattack:["6L0"],recycle:[],reflect:["6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],round:["6M"],screech:["6L0"],selfdestruct:["6L0"],shadowclaw:["6M"],shiftgear:[],signalbeam:["6L0"],simplebeam:["6L0"],slash:["6L0"],sleeptalk:["6M"],snore:[],solarbeam:["6M"],strugglebug:["6M"],substitute:["6M"],swagger:["6M"],technoblast:["6L0"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"],triattack:["6L0"],uturn:["6M"],xscissor:["6M"],zapcannon:["6L0"],zenheadbutt:[]}}, + chespin:{learnset:{tackle:["6L1"],growl:["6L1"],vinewhip:["6L5"],rollout:["6L8"],bite:["6L11"],leechseed:["6L15"],pinmissile:["6L18"],takedown:["6L27"],seedbomb:["6L32"],mudshot:["6L35"],bulkup:["6L39","6M"],bodyslam:["6L42"],painsplit:["6L45"],woodhammer:["6L48"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],frustration:["6M"],solarbeam:["6M"],smackdown:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],reflect:["6M"],sludgebomb:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],lowsweep:["6M"],round:["6M"],energyball:["6M"],fling:["6M"],shadowclaw:["6M"],payback:["6M"],retaliate:["6M"],flash:["6M"],stoneedge:["6M"],gyroball:["6M"],swordsdance:["6M"],bulldoze:["6M"],rockslide:["6M"],poisonjab:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],strength:["6M"],grasspledge:["6T"],quickguard:["6E"],curse:["6E"],spikes:["6E"],synthesis:["6E"]}}, + quilladin:{learnset:{tackle:["6L1"],growl:["6L1"],vinewhip:["6L5"],rollout:["6L8"],bite:["6L11"],leechseed:["6L15"],pinmissile:["6L20"],needlearm:["6L26"],takedown:["6L30"],seedbomb:["6L35"],mudshot:["6L39"],bulkup:["6L44","6M"],bodyslam:["6L48"],painsplit:["6L52"],woodhammer:["6L55"],honeclaws:["6M"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],frustration:["6M"],solarbeam:["6M"],smackdown:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],reflect:["6M"],sludgebomb:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],lowsweep:["6M"],round:["6M"],energyball:["6M"],fling:["6M"],shadowclaw:["6M"],payback:["6M"],retaliate:["6M"],flash:["6M"],stoneedge:["6M"],gyroball:["6M"],swordsdance:["6M"],bulldoze:["6M"],rockslide:["6M"],poisonjab:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],strength:["6M"],grasspledge:["6T"]}}, + chesnaught:{learnset:{feint:["6L1"],hammerarm:["6L1","6L60"],bellydrum:["6L1"],tackle:["6L1"],growl:["6L1"],vinewhip:["6L5"],rollout:["6L8"],bite:["6L11"],leechseed:["6L15"],pinmissile:["6L20"],needlearm:["6L26"],takedown:["6L30"],seedbomb:["6L35"],spikyshield:["6L36","6L75"],mudshot:["6L41"],bulkup:["6L44","6M"],bodyslam:["6L48"],painsplit:["6L52"],woodhammer:["6L55"],gigaimpact:["6L70","6M"],honeclaws:["6M"],dragonclaw:["6M"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],hyperbeam:["6M"],protect:["6M"],frustration:["6M"],solarbeam:["6M"],smackdown:["6M"],earthquake:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],reflect:["6M"],sludgebomb:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],lowsweep:["6M"],round:["6M"],focusblast:["6M"],energyball:["6M"],fling:["6M"],shadowclaw:["6M"],payback:["6M"],retaliate:["6M"],flash:["6M"],stoneedge:["6M"],gyroball:["6M"],swordsdance:["6M"],bulldoze:["6M"],rockslide:["6M"],poisonjab:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],strength:["6M"],frenzyplant:["6T"],grasspledge:["6T"]}}, + fennekin:{learnset:{scratch:["6L1"],tailwhip:["6L1"],ember:["6L5"],howl:["6L11"],flamecharge:["6L14","6M"],psybeam:["6L17"],firespin:["6L20"],luckychant:["6L25"],lightscreen:["6L27","6M"],psyshock:["6L31","6M"],flamethrower:["6L35","6M"],willowisp:["6L38","6M"],psychic:["6L41","6M"],sunnyday:["6L43","6M"],magicroom:["6L46"],fireblast:["6L48","6M"],toxic:["6M"],hiddenpower:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],echoedvoice:["6M"],overheat:["6M"],incinerate:["6M"],embargo:["6M"],psychup:["6M"],dreameater:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],firepledge:["6T"],wish:["6E"],hypnosis:["6E"],heatwave:["6E"],magiccoat:["6E"]}}, + braixen:{learnset:{scratch:["6L1"],tailwhip:["6L1"],ember:["6L5"],howl:["6L11"],flamecharge:["6L14","6M"],psybeam:["6L18"],firespin:["6L22"],luckychant:["6L27"],lightscreen:["6L30","6M"],psyshock:["6L34","6M"],flamethrower:["6L41","6M"],willowisp:["6L45","6M"],psychic:["6L48","6M"],sunnyday:["6L51","6M"],magicroom:["6L53"],fireblast:["6L55","6M"],toxic:["6M"],hiddenpower:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],echoedvoice:["6M"],overheat:["6M"],incinerate:["6M"],embargo:["6M"],psychup:["6M"],dreameater:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],firepledge:["6T"]}}, + delphox:{learnset:{futuresight:["6L1","6L69"],roleplay:["6L1"],switcheroo:["6L1"],shadowball:["6L1","6M"],scratch:["6L1"],tailwhip:["6L1"],ember:["6L5"],howl:["6L11"],flamecharge:["6L14","6M"],psybeam:["6L18"],firespin:["6L22"],luckychant:["6L27"],lightscreen:["6L30","6M"],psyshock:["6L34","6M"],mysticalfire:["6L36","6L75"],flamethrower:["6L42","6M"],willowisp:["6L47","6M"],psychic:["6L51","6M"],sunnyday:["6L55","6M"],magicroom:["6L56"],fireblast:["6L61","6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],echoedvoice:["6M"],overheat:["6M"],incinerate:["6M"],embargo:["6M"],gigaimpact:["6M"],psychup:["6M"],dreameater:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],blastburn:["6T"],firepledge:["6T"]}}, + froakie:{learnset:{pound:["6L1"],growl:["6L1"],bubble:["6L5"],quickattack:["6L8"],lick:["6L10"],waterpulse:["6L14"],smokescreen:["6L18"],round:["6L21","6M"],fling:["6L25","6M"],smackdown:["6L29","6M"],substitute:["6L35","6M"],bounce:["6L39"],doubleteam:["6L43","6M"],hydropump:["6L48"],toxic:["6M"],hiddenpower:["6M"],taunt:["6M"],icebeam:["6M"],blizzard:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],echoedvoice:["6M"],scald:["6M"],acrobatics:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],rocksmash:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"],waterfall:["6M"],waterpledge:["6T"],toxicspikes:["6E"],watersport:["6E"],camouflage:["6E"],mudsport:["6E"],mindreader:["6E"]}}, + frogadier:{learnset:{pound:["6L1"],growl:["6L1"],bubble:["6L5"],quickattack:["6L8"],lick:["6L10"],waterpulse:["6L14"],smokescreen:["6L20"],round:["6L23","6M"],fling:["6L28","6M"],smackdown:["6L33","6M"],substitute:["6L38","6M"],bounce:["6L44"],doubleteam:["6L48","6M"],hydropump:["6L55"],toxic:["6M"],hiddenpower:["6M"],taunt:["6M"],icebeam:["6M"],blizzard:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],echoedvoice:["6M"],scald:["6M"],acrobatics:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],rocksmash:["6M"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"],waterfall:["6M"],waterpledge:["6T"]}}, + greninja:{learnset:{nightslash:["6L1","6L70"],roleplay:["6L1"],matblock:["6L1"],pound:["6L1"],growl:["6L1"],bubble:["6L5"],quickattack:["6L8"],lick:["6L10"],waterpulse:["6L14"],smokescreen:["6L20"],shadowsneak:["6L23"],spikes:["6L28"],feintattack:["6L33"],watershuriken:["6L36","6L75"],substitute:["6L43","6M"],extrasensory:["6L49"],doubleteam:["6L52","6M"],haze:["6L56"],hydropump:["6L60"],toxic:["6M"],hiddenpower:["6M"],taunt:["6M"],icebeam:["6M"],blizzard:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],smackdown:["6M"],"return":["6M"],dig:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],echoedvoice:["6M"],scald:["6M"],fling:["6M"],acrobatics:["6M"],gigaimpact:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],rocksmash:["6M"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"],waterfall:["6M"],hydrocannon:["6T"],waterpledge:["6T"]}}, + bunnelby:{learnset:{tackle:["6L1"],agility:["6L1"],leer:["6L1"],quickattack:["6L7"],doubleslap:["6L10"],mudslap:["6L13"],takedown:["6L15"],mudshot:["6L18"],doublekick:["6L20"],odorsleuth:["6L25"],flail:["6L29"],dig:["6L33","6M"],bounce:["6L38"],superfang:["6L42"],facade:["6L47","6M"],earthquake:["6L49","6M"],toxic:["6M"],bulkup:["6M"],hiddenpower:["6M"],protect:["6M"],frustration:["6M"],smackdown:["6M"],"return":["6M"],brickbreak:["6M"],doubleteam:["6M"],sludgebomb:["6M"],sandstorm:["6M"],rocktomb:["6M"],torment:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],fling:["6M"],payback:["6M"],stoneedge:["6M"],bulldoze:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],rocksmash:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"],defensecurl:["6E"],rollout:["6E"],spikes:["6E"]}}, + diggersby:{learnset:{hammerarm:["6L1","6L60"],rototiller:["6L1"],bulldoze:["6L1","6M"],swordsdance:["6L1","6M"],tackle:["6L1"],agility:["6L1"],leer:["6L1"],quickattack:["6L7"],mudslap:["6L13"],takedown:["6L15"],mudshot:["6L18"],doublekick:["6L20"],odorsleuth:["6L26"],flail:["6L31"],dig:["6L37","6M"],bounce:["6L42"],superfang:["6L48"],facade:["6L53","6M"],earthquake:["6L57","6M"],toxic:["6M"],bulkup:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],protect:["6M"],frustration:["6M"],smackdown:["6M"],"return":["6M"],brickbreak:["6M"],doubleteam:["6M"],sludgebomb:["6M"],sandstorm:["6M"],rocktomb:["6M"],torment:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],fling:["6M"],payback:["6M"],gigaimpact:["6M"],stoneedge:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],rocksmash:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"]}}, + fletchling:{learnset:{tackle:["6L1"],growl:["6L1"],quickattack:["6L6"],peck:["6L10"],agility:["6L13"],flail:["6L16"],roost:["6L21","6M"],razorwind:["6L25"],naturalgift:["6L29"],flamecharge:["6L34","6M"],acrobatics:["6L39","6M"],mefirst:["6L41"],tailwind:["6L45"],steelwing:["6L48","6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],frustration:["6M"],"return":["6M"],doubleteam:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],overheat:["6M"],swordsdance:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],confide:["6M"],fly:["6M"],quickguard:["6E"]}}, + fletchinder:{learnset:{tackle:["6L1"],growl:["6L1"],quickattack:["6L6"],peck:["6L10"],agility:["6L13"],flail:["6L16"],ember:["6L17"],roost:["6L25","6M"],razorwind:["6L27"],naturalgift:["6L31"],flamecharge:["6L38","6M"],acrobatics:["6L42","6M"],mefirst:["6L46"],tailwind:["6L51"],steelwing:["6L55","6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],frustration:["6M"],"return":["6M"],doubleteam:["6M"],flamethrower:["6M"],fireblast:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],overheat:["6M"],incinerate:["6M"],willowisp:["6M"],swordsdance:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],confide:["6M"],fly:["6M"]}}, + talonflame:{learnset:{bravebird:["6L1","6L64"],flareblitz:["6L1"],tackle:["6L1"],growl:["6L1"],quickattack:["6L6"],peck:["6L10"],agility:["6L13"],flail:["6L16"],ember:["6L17"],roost:["6L25","6M"],razorwind:["6L27"],naturalgift:["6L31"],flamecharge:["6L39","6M"],acrobatics:["6L44","6M"],mefirst:["6L49"],tailwind:["6L55"],steelwing:["6L60","6M"],honeclaws:["6M"],toxic:["6M"],bulkup:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],hyperbeam:["6M"],protect:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],doubleteam:["6M"],flamethrower:["6M"],fireblast:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],overheat:["6M"],incinerate:["6M"],willowisp:["6M"],gigaimpact:["6M"],swordsdance:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],confide:["6M"],fly:["6M"]}}, + scatterbug:{learnset:{tackle:["6L1"],stringshot:["6L1"],stunspore:["6L6"],bugbite:["6L15"],ragepowder:["6E"]}}, + spewpa:{learnset:{harden:["6L1"],protect:["6L9","6M"]}}, + vivillon:{learnset:{poisonpowder:["6L1"],stunspore:["6L1"],gust:["6L1"],lightscreen:["6L1","6M"],powder:["6L1","6L55"],sleeppowder:["6L1"],strugglebug:["6L12","6M"],psybeam:["6L17"],supersonic:["6L21"],drainingkiss:["6L25"],aromatherapy:["6L31"],bugbuzz:["6L35"],safeguard:["6L41","6M"],quiverdance:["6L45"],hurricane:["6L50"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],roost:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],energyball:["6M"],acrobatics:["6M"],gigaimpact:["6M"],flash:["6M"],psychup:["6M"],infestation:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],confide:["6M"]}}, + litleo:{learnset:{tackle:["6L1"],leer:["6L1"],ember:["6L5"],workup:["6L8"],headbutt:["6L11"],nobleroar:["6L15"],takedown:["6L20"],firefang:["6L23"],endeavor:["6L28"],echoedvoice:["6L33","6M"],flamethrower:["6L36","6M"],crunch:["6L39"],hypervoice:["6L43"],incinerate:["6L46","6M"],overheat:["6L50","6M"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],dig:["6M"],doubleteam:["6M"],fireblast:["6M"],facade:["6M"],flamecharge:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],willowisp:["6M"],payback:["6M"],retaliate:["6M"],bulldoze:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],wildcharge:["6M"],rocksmash:["6M"],snarl:["6M"],darkpulse:["6M"],confide:["6M"],strength:["6M"],yawn:["6E"],entrainment:["6E"],snatch:["6E"],firespin:["6E"]}}, + pyroar:{learnset:{hyperbeam:["6L1","6M"],tackle:["6L1"],leer:["6L1"],ember:["6L5"],workup:["6L8"],headbutt:["6L11"],nobleroar:["6L15"],takedown:["6L20"],firefang:["6L23"],endeavor:["6L28"],echoedvoice:["6L33","6M"],flamethrower:["6L38","6M"],crunch:["6L42"],hypervoice:["6L48"],incinerate:["6L51","6M"],overheat:["6L57","6M"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],dig:["6M"],doubleteam:["6M"],fireblast:["6M"],facade:["6M"],flamecharge:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],willowisp:["6M"],payback:["6M"],retaliate:["6M"],gigaimpact:["6M"],bulldoze:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],wildcharge:["6M"],rocksmash:["6M"],snarl:["6M"],darkpulse:["6M"],confide:["6M"],strength:["6M"]}}, + flabebe:{learnset:{tackle:["6L1"],vinewhip:["6L1"],fairywind:["6L6"],luckychant:["6L10"],razorleaf:["6L15"],wish:["6L20"],magicalleaf:["6L22"],grassyterrain:["6L24"],petalblizzard:["6L28"],aromatherapy:["6L33"],mistyterrain:["6L37"],moonblast:["6L41"],petaldance:["6L45"],solarbeam:["6L48","6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],energyball:["6M"],flash:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"],copycat:["6E"],captivate:["6E"]}}, + floette:{learnset:{wish:["6L20"],magicalleaf:["6L25"],grassyterrain:["6L27"],petalblizzard:["6L33"],aromatherapy:["6L38"],mistyterrain:["6L43"],rest:["6L44","6M"],moonblast:["6L46"],sleeptalk:["6L88","6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],facade:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],energyball:["6M"],flash:["6M"],grassknot:["6M"],swagger:["6M"],substitute:["6M"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + florges:{learnset:{disarmingvoice:["6L1"],luckychant:["6L1"],wish:["6L1"],magicalleaf:["6L1"],flowershield:["6L1"],grassknot:["6L1","6M"],grassyterrain:["6L1"],mistyterrain:["6L1"],petalblizzard:["6L1"],moonblast:["6L1"],petaldance:["6L1"],aromatherapy:["6L1"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],energyball:["6M"],gigaimpact:["6M"],flash:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + skiddo:{learnset:{tackle:["6L1"],growth:["6L1"],vinewhip:["6L7"],tailwhip:["6L9"],leechseed:["6L12"],razorleaf:["6L13"],worryseed:["6L16"],synthesis:["6L20"],takedown:["6L22"],bulldoze:["6L26","6M"],seedbomb:["6L30"],bulkup:["6L34","6M"],doubleedge:["6L38"],hornleech:["6L42"],leafblade:["6L45"],milkdrink:["6L50"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],energyball:["6M"],payback:["6M"],retaliate:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],wildcharge:["6M"],rocksmash:["6M"],naturepower:["6M"],confide:["6M"],surf:["6M"],strength:["6M"],rollout:["6E"],defensecurl:["6E"]}}, + gogoat:{learnset:{aerialace:["6L1","6L65","6M"],tackle:["6L1"],growth:["6L1"],vinewhip:["6L7"],tailwhip:["6L9"],leechseed:["6L12"],razorleaf:["6L13"],worryseed:["6L16"],synthesis:["6L20"],takedown:["6L22"],bulldoze:["6L26","6M"],seedbomb:["6L30"],bulkup:["6L34","6M"],doubleedge:["6L40"],hornleech:["6L47"],leafblade:["6L55"],milkdrink:["6L58"],earthquake:["6L60","6M"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],energyball:["6M"],payback:["6M"],retaliate:["6M"],gigaimpact:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],wildcharge:["6M"],rocksmash:["6M"],naturepower:["6M"],confide:["6M"],surf:["6M"],strength:["6M"]}}, + pancham:{learnset:{tackle:["6L1"],leer:["6L1"],armthrust:["6L7"],workup:["6L10"],karatechop:["6L12"],cometpunch:["6L15"],slash:["6L20"],circlethrow:["6L25"],vitalthrow:["6L27"],bodyslam:["6L33"],crunch:["6L39"],entrainment:["6L42"],partingshot:["6L45"],skyuppercut:["6L48"],roar:["6M"],toxic:["6M"],bulkup:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],sludgebomb:["6M"],rocktomb:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],lowsweep:["6M"],round:["6M"],echoedvoice:["6M"],falseswipe:["6M"],fling:["6M"],shadowclaw:["6M"],payback:["6M"],retaliate:["6M"],stoneedge:["6M"],swordsdance:["6M"],bulldoze:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"],foulplay:["6E"],quickguard:["6E"],mefirst:["6E"],stormthrow:["6E"]}}, + pangoro:{learnset:{entrainment:["6L1","6L45"],hammerarm:["6L1","6L57"],tackle:["6L1"],leer:["6L1"],armthrust:["6L7"],workup:["6L10"],karatechop:["6L12"],cometpunch:["6L15"],slash:["6L20"],circlethrow:["6L25"],vitalthrow:["6L27"],bodyslam:["6L35"],crunch:["6L42"],partingshot:["6L48"],skyuppercut:["6L52"],taunt:["6L65","6M"],lowsweep:["6L70","6M"],honeclaws:["6M"],dragonclaw:["6M"],roar:["6M"],toxic:["6M"],bulkup:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],earthquake:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],sludgebomb:["6M"],rocktomb:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],echoedvoice:["6M"],focusblast:["6M"],falseswipe:["6M"],fling:["6M"],quash:["6M"],embargo:["6M"],shadowclaw:["6M"],payback:["6M"],retaliate:["6M"],gigaimpact:["6M"],stoneedge:["6M"],swordsdance:["6M"],bulldoze:["6M"],rockslide:["6M"],xscissor:["6M"],infestation:["6M"],poisonjab:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],snarl:["6M"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"]}}, + furfrou:{learnset:{tackle:["6L1"],growl:["6L1"],sandattack:["6L5"],babydolleyes:["6L9"],headbutt:["6L12"],tailwhip:["6L15"],bite:["6L22"],odorsleuth:["6L27"],retaliate:["6L33","6M"],takedown:["6L35"],charm:["6L38"],suckerpunch:["6L42"],cottonguard:["6L48"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],chargebeam:["6M"],gigaimpact:["6M"],flash:["6M"],thunderwave:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],rocksmash:["6M"],snarl:["6M"],darkpulse:["6M"],confide:["6M"],surf:["6M"],mimic:["6E"],captivate:["6E"],refresh:["6E"],workup:["6E"]}}, + espurr:{learnset:{scratch:["6L1"],leer:["6L1"],covet:["6L5"],confusion:["6L9"],lightscreen:["6L13","6M"],psybeam:["6L17"],fakeout:["6L19"],disarmingvoice:["6L22"],psyshock:["6L25","6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],reflect:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],energyball:["6M"],chargebeam:["6M"],payback:["6M"],flash:["6M"],thunderwave:["6M"],psychup:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],darkpulse:["6M"],confide:["6M"],cut:["6M"],trick:["6E"],yawn:["6E"],assist:["6E"],barrier:["6E"]}}, + meowstic:{learnset:{quickguard:["6L1","6L53"],meanlook:["6L1"],helpinghand:["6L1"],scratch:["6L1"],leer:["6L1"],covet:["6L5"],confusion:["6L9"],lightscreen:["6L13","6M"],psybeam:["6L17"],fakeout:["6L19"],psyshock:["6L25","6M"],charm:["6L28"],miracleeye:["6L31"],reflect:["6L35","6M"],psychic:["6L40","6M"],roleplay:["6L43"],imprison:["6L45"],suckerpunch:["6L48"],mistyterrain:["6L50"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],dig:["6M"],shadowball:["6M"],doubleteam:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],energyball:["6M"],chargebeam:["6M"],payback:["6M"],gigaimpact:["6M"],flash:["6M"],thunderwave:["6M"],psychup:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"]}}, + meowsticf:{learnset:{storedpower:["6L1","6L53"],mefirst:["6L1"],magicalleaf:["6L1"],scratch:["6L1"],leer:["6L1"],covet:["6L5"],confusion:["6L9"],lightscreen:["6L13","6M"],psybeam:["6L17"],fakeout:["6L19"],psyshock:["6L25","6M"],chargebeam:["6L28","6M"],shadowball:["6L31","6M"],extrasensory:["6L35"],psychic:["6L40","6M"],roleplay:["6L43"],signalbeam:["6L45"],suckerpunch:["6L48"],futuresight:["6L50"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],dig:["6M"],doubleteam:["6M"],reflect:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],energyball:["6M"],payback:["6M"],gigaimpact:["6M"],flash:["6M"],thunderwave:["6M"],psychup:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"]}}, + honedge:{learnset:{tackle:["6L1"],swordsdance:["6L1","6M"],furycutter:["6L5"],metalsound:["6L8"],pursuit:["6L13"],autotomize:["6L18"],shadowsneak:["6L20"],aerialace:["6L22","6M"],retaliate:["6L26","6M"],slash:["6L29"],irondefense:["6L32"],nightslash:["6L35"],powertrick:["6L39"],ironhead:["6L42"],sacredsword:["6L47"],toxic:["6M"],hiddenpower:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],brickbreak:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],falseswipe:["6M"],shadowclaw:["6M"],gyroball:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],rocksmash:["6M"],confide:["6M"],cut:["6M"]}}, + doublade:{learnset:{tackle:["6L1"],swordsdance:["6L1","6M"],furycutter:["6L5"],metalsound:["6L8"],pursuit:["6L13"],autotomize:["6L18"],shadowsneak:["6L20"],aerialace:["6L22","6M"],retaliate:["6L26","6M"],slash:["6L29"],irondefense:["6L32"],nightslash:["6L36"],powertrick:["6L41"],ironhead:["6L45"],sacredsword:["6L51"],toxic:["6M"],hiddenpower:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],brickbreak:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],falseswipe:["6M"],shadowclaw:["6M"],gyroball:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],rocksmash:["6M"],confide:["6M"],cut:["6M"]}}, + aegislash:{learnset:{furycutter:["6L1"],pursuit:["6L1"],autotomize:["6L1"],shadowsneak:["6L1"],slash:["6L1"],irondefense:["6L1"],nightslash:["6L1"],powertrick:["6L1"],ironhead:["6L1"],headsmash:["6L1"],swordsdance:["6L1","6M"],aerialace:["6L1","6M"],kingsshield:["6L1"],sacredsword:["6L1"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],shadowball:["6M"],brickbreak:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],falseswipe:["6M"],shadowclaw:["6M"],retaliate:["6M"],gigaimpact:["6M"],gyroball:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],rocksmash:["6M"],confide:["6M"],cut:["6M"]}}, + spritzee:{learnset:{sweetscent:["6L1"],fairywind:["6L1"],sweetkiss:["6L6"],odorsleuth:["6L8"],echoedvoice:["6L13","6M"],calmmind:["6L17","6M"],drainingkiss:["6L21"],aromatherapy:["6L25"],attract:["6L29","6M"],moonblast:["6L31"],charm:["6L35"],flail:["6L38"],mistyterrain:["6L42"],skillswap:["6L44"],psychic:["6L48","6M"],disarmingvoice:["6L50"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],doubleteam:["6M"],reflect:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],round:["6M"],energyball:["6M"],chargebeam:["6M"],flash:["6M"],gyroball:["6M"],psychup:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],trickroom:["6M"],dazzlinggleam:["6M"],confide:["6M"],refresh:["6E"],wish:["6E"],captivate:["6E"],disable:["6E"]}}, + aromatisse:{learnset:{aromaticmist:["6L1"],healpulse:["6L1"],sweetscent:["6L1"],fairywind:["6L1"],sweetkiss:["6L6"],odorsleuth:["6L8"],echoedvoice:["6L13","6M"],calmmind:["6L17","6M"],drainingkiss:["6L21"],aromatherapy:["6L25"],attract:["6L29","6M"],moonblast:["6L31"],charm:["6L35"],flail:["6L38"],mistyterrain:["6L42"],skillswap:["6L44"],psychic:["6L48","6M"],disarmingvoice:["6L53"],reflect:["6L57","6M"],psychup:["6L64","6M"],psyshock:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],thunder:["6M"],"return":["6M"],doubleteam:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],round:["6M"],energyball:["6M"],chargebeam:["6M"],gigaimpact:["6M"],flash:["6M"],gyroball:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],trickroom:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + swirlix:{learnset:{sweetscent:["6L1"],tackle:["6L1"],fairywind:["6L5"],playnice:["6L8"],faketears:["6L10"],round:["6L13","6M"],cottonspore:["6L17"],endeavor:["6L21"],aromatherapy:["6L26"],drainingkiss:["6L31"],energyball:["6L36","6M"],cottonguard:["6L41"],wish:["6L45"],playrough:["6L49"],lightscreen:["6L58","6M"],safeguard:["6L67","6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],flamethrower:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],flash:["6M"],psychup:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],dazzlinggleam:["6M"],confide:["6M"],surf:["6M"],yawn:["6E"],afteryou:["6E"],copycat:["6E"],bellydrum:["6E"]}}, + slurpuff:{learnset:{sweetscent:["6L1"],tackle:["6L1"],fairywind:["6L5"],playnice:["6L8"],faketears:["6L10"],round:["6L13","6M"],cottonspore:["6L17"],endeavor:["6L21"],aromatherapy:["6L26"],drainingkiss:["6L31"],energyball:["6L36","6M"],cottonguard:["6L41"],wish:["6L45"],playrough:["6L49"],lightscreen:["6L58","6M"],safeguard:["6L67","6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],flamethrower:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],gigaimpact:["6M"],flash:["6M"],psychup:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],dazzlinggleam:["6M"],confide:["6M"],surf:["6M"]}}, + inkay:{learnset:{tackle:["6L1"],peck:["6L1"],constrict:["6L1"],reflect:["6L4","6M"],foulplay:["6L8"],swagger:["6L12","6M"],psywave:["6L13"],topsyturvy:["6L15"],hypnosis:["6L18"],psybeam:["6L21"],switcheroo:["6L23"],payback:["6L27","6M"],lightscreen:["6L31","6M"],pluck:["6L35"],psychocut:["6L39"],slash:["6L43"],nightslash:["6L46"],superpower:["6L48"],calmmind:["6M","6E"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M","6E"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],flamethrower:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],fling:["6M"],embargo:["6M","6E"],retaliate:["6M"],flash:["6M"],psychup:["6M"],rockslide:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],darkpulse:["6M","6E"],confide:["6M","6E"],cut:["6M"],destinybond:["6E"],camouflage:["6E"],powersplit:["6E"],simplebeam:["6E"]}}, + malamar:{learnset:{superpower:["6L1","6L48"],reversal:["6L1"],tackle:["6L1"],peck:["6L1"],constrict:["6L1"],reflect:["6L4","6M"],foulplay:["6L8"],swagger:["6L12","6M"],psywave:["6L13"],topsyturvy:["6L15"],hypnosis:["6L18"],psybeam:["6L21"],switcheroo:["6L23"],payback:["6L27","6M"],lightscreen:["6L31","6M"],pluck:["6L35"],psychocut:["6L39"],slash:["6L43"],nightslash:["6L46"],psyshock:["6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],flamethrower:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],fling:["6M"],embargo:["6M"],retaliate:["6M"],gigaimpact:["6M"],flash:["6M"],psychup:["6M"],rockslide:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],darkpulse:["6M"],confide:["6M"],cut:["6M"]}}, + binacle:{learnset:{shellsmash:["6L1"],scratch:["6L1"],sandattack:["6L1"],watergun:["6L4"],withdraw:["6L7"],furyswipes:["6L10"],slash:["6L13"],mudslap:["6L18"],clamp:["6L20"],rockpolish:["6L24","6M"],ancientpower:["6L28"],honeclaws:["6L32","6M"],furycutter:["6L37"],nightslash:["6L41"],razorshell:["6L45"],crosschop:["6L49"],toxic:["6M"],hiddenpower:["6M"],taunt:["6M"],icebeam:["6M"],blizzard:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],smackdown:["6M"],earthquake:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],sludgewave:["6M"],sludgebomb:["6M"],sandstorm:["6M"],rocktomb:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],falseswipe:["6M"],scald:["6M"],fling:["6M"],embargo:["6M"],shadowclaw:["6M"],payback:["6M"],stoneedge:["6M"],swordsdance:["6M"],bulldoze:["6M"],rockslide:["6M"],xscissor:["6M"],infestation:["6M"],poisonjab:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"],tickle:["6E"],switcheroo:["6E"],watersport:["6E"],helpinghand:["6E"]}}, + barbaracle:{learnset:{stoneedge:["6L1","6L60","6M"],skullbash:["6L1","6L65"],shellsmash:["6L1"],scratch:["6L1"],sandattack:["6L1"],watergun:["6L4"],withdraw:["6L7"],furyswipes:["6L10"],slash:["6L13"],mudslap:["6L18"],clamp:["6L20"],rockpolish:["6L24","6M"],ancientpower:["6L28"],honeclaws:["6L32","6M"],furycutter:["6L37"],nightslash:["6L44"],razorshell:["6L48"],crosschop:["6L55"],dragonclaw:["6M"],toxic:["6M"],bulkup:["6M"],hiddenpower:["6M"],taunt:["6M"],icebeam:["6M"],blizzard:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],smackdown:["6M"],earthquake:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],sludgewave:["6M"],sludgebomb:["6M"],sandstorm:["6M"],rocktomb:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],focusblast:["6M"],falseswipe:["6M"],scald:["6M"],fling:["6M"],embargo:["6M"],shadowclaw:["6M"],payback:["6M"],gigaimpact:["6M"],swordsdance:["6M"],bulldoze:["6M"],rockslide:["6M"],xscissor:["6M"],infestation:["6M"],poisonjab:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"]}}, + skrelp:{learnset:{tackle:["6L1"],smokescreen:["6L1"],watergun:["6L1"],feintattack:["6L5"],tailwhip:["6L9"],bubble:["6L12"],acid:["6L15"],camouflage:["6L19"],poisontail:["6L23"],waterpulse:["6L25"],doubleteam:["6L28","6M"],toxic:["6L32","6M"],aquatail:["6L35"],sludgebomb:["6L38","6M"],hydropump:["6L42"],dragonpulse:["6L49"],hail:["6M"],venoshock:["6M"],hiddenpower:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],shadowball:["6M"],sludgewave:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],scald:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],confide:["6M"],surf:["6M"],waterfall:["6M"],toxicspikes:["6E"],haze:["6E"],venomdrench:["6E"],playrough:["6E"],acidarmor:["6E"]}}, + dragalge:{learnset:{dragontail:["6L1","6L59","6M"],twister:["6L1","6L67"],tackle:["6L1"],smokescreen:["6L1"],watergun:["6L1"],feintattack:["6L5"],tailwhip:["6L9"],bubble:["6L12"],acid:["6L15"],camouflage:["6L19"],poisontail:["6L23"],waterpulse:["6L25"],doubleteam:["6L28","6M"],toxic:["6L32","6M"],aquatail:["6L35"],sludgebomb:["6L38","6M"],hydropump:["6L42"],dragonpulse:["6L53"],hail:["6M"],venoshock:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],thunder:["6M"],"return":["6M"],shadowball:["6M"],sludgewave:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],focusblast:["6M"],scald:["6M"],gigaimpact:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],confide:["6M"],surf:["6M"],waterfall:["6M"],dracometeor:["6T"]}}, + clauncher:{learnset:{splash:["6L1"],watergun:["6L1"],watersport:["6L7"],vicegrip:["6L9"],bubble:["6L12"],flail:["6L16"],bubblebeam:["6L20"],swordsdance:["6L25","6M"],crabhammer:["6L30","6E"],waterpulse:["6L34"],smackdown:["6L39","6M"],aquajet:["6L43"],muddywater:["6L48"],toxic:["6M"],venoshock:["6M"],hiddenpower:["6M"],icebeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],doubleteam:["6M"],sludgewave:["6M"],sludgebomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],scald:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],flashcannon:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],waterfall:["6M"],helpinghand:["6E"],entrainment:["6E"]}}, + clawitzer:{learnset:{healpulse:["6L1"],darkpulse:["6L1","6L57","6M"],dragonpulse:["6L1","6L63"],aurasphere:["6L1","6L67"],splash:["6L1"],watergun:["6L1"],watersport:["6L7"],vicegrip:["6L9"],bubble:["6L12"],flail:["6L16"],bubblebeam:["6L20"],swordsdance:["6L25","6M"],crabhammer:["6L30"],waterpulse:["6L34"],smackdown:["6L42","6M"],aquajet:["6L47"],muddywater:["6L53"],toxic:["6M"],venoshock:["6M"],hiddenpower:["6M"],icebeam:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],shadowball:["6M"],doubleteam:["6M"],sludgewave:["6M"],sludgebomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],focusblast:["6M"],scald:["6M"],gigaimpact:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],flashcannon:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],waterfall:["6M"]}}, + helioptile:{learnset:{pound:["6L1"],tailwhip:["6L1"],thundershock:["6L6"],charge:["6L11"],mudslap:["6L13"],quickattack:["6L17"],razorwind:["6L22"],paraboliccharge:["6L25"],thunderwave:["6L31","6M"],bulldoze:["6L35","6M"],voltswitch:["6L40","6M"],electrify:["6L45"],thunderbolt:["6L49","6M"],toxic:["6M"],hiddenpower:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunder:["6M"],"return":["6M"],dig:["6M"],doubleteam:["6M"],sandstorm:["6M"],rocktomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],lowsweep:["6M"],round:["6M"],chargebeam:["6M"],flash:["6M"],psychup:["6M"],rockslide:["6M"],dragontail:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],darkpulse:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],camouflage:["6E"],agility:["6E"],glare:["6E"]}}, + heliolisk:{learnset:{eerieimpulse:["6L1"],electrify:["6L1"],razorwind:["6L1"],quickattack:["6L1"],thunder:["6L1","6M"],charge:["6L1"],paraboliccharge:["6L1"],toxic:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],dig:["6M"],doubleteam:["6M"],sandstorm:["6M"],rocktomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],lowsweep:["6M"],round:["6M"],focusblast:["6M"],chargebeam:["6M"],gigaimpact:["6M"],flash:["6M"],voltswitch:["6M"],thunderwave:["6M"],psychup:["6M"],bulldoze:["6M"],rockslide:["6M"],dragontail:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],darkpulse:["6M"],confide:["6M"],cut:["6M"],surf:["6M"]}}, + tyrunt:{learnset:{tailwhip:["6L1"],tackle:["6L1"],roar:["6L6","6M"],stomp:["6L10"],bide:["6L12"],stealthrock:["6L15"],bite:["6L17"],charm:["6L20"],ancientpower:["6L26"],dragontail:["6L30","6M"],crunch:["6L34"],dragonclaw:["6L37","6M"],thrash:["6L40"],earthquake:["6L44","6M"],horndrill:["6L49"],honeclaws:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],sandstorm:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],rockpolish:["6M"],stoneedge:["6M"],bulldoze:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],darkpulse:["6M"],confide:["6M"],strength:["6M"],dracometeor:["6T"],firefang:["6E"],dragondance:["6E"],icefang:["6E"],thunderfang:["6E"],poisonfang:["6E"],curse:["6E"]}}, + tyrantrum:{learnset:{headsmash:["6L1","6L58"],tailwhip:["6L1"],tackle:["6L1"],roar:["6L6","6M"],stomp:["6L10"],bide:["6L12"],stealthrock:["6L15"],bite:["6L17"],charm:["6L20"],ancientpower:["6L26"],dragontail:["6L30","6M"],crunch:["6L34"],dragonclaw:["6L37","6M"],thrash:["6L42"],earthquake:["6L47","6M"],horndrill:["6L53"],rockslide:["6L68","6M"],gigaimpact:["6L75","6M"],honeclaws:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],sandstorm:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],rockpolish:["6M"],stoneedge:["6M"],bulldoze:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],darkpulse:["6M"],confide:["6M"],strength:["6M"],dracometeor:["6T"]}}, + amaura:{learnset:{growl:["6L1"],powdersnow:["6L1"],thunderwave:["6L5","6M"],rockthrow:["6L10"],icywind:["6L13"],takedown:["6L15"],mist:["6L18"],aurorabeam:["6L20"],ancientpower:["6L26"],round:["6L30","6M"],avalanche:["6L34"],hail:["6L38","6M"],naturepower:["6L41","6M"],encore:["6L44"],lightscreen:["6L47","6M"],icebeam:["6L50","6M"],hyperbeam:["6L57","6M"],blizzard:["6L65","6M"],calmmind:["6M"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],doubleteam:["6M"],reflect:["6M"],sandstorm:["6M"],rocktomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],echoedvoice:["6M"],chargebeam:["6M"],rockpolish:["6M"],flash:["6M"],stoneedge:["6M"],psychup:["6M"],bulldoze:["6M"],frostbreath:["6M"],rockslide:["6M"],dragontail:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],rocksmash:["6M"],darkpulse:["6M"],confide:["6M"],discharge:["6E"],mirrorcoat:["6E"],haze:["6E"]}}, + aurorus:{learnset:{freezedry:["6L1","6L77"],growl:["6L1"],powdersnow:["6L1"],thunderwave:["6L5","6M"],rockthrow:["6L10"],icywind:["6L13"],takedown:["6L15"],mist:["6L18"],aurorabeam:["6L20"],ancientpower:["6L26"],round:["6L30","6M"],avalanche:["6L34"],hail:["6L38","6M"],naturepower:["6L43","6M"],encore:["6L46"],lightscreen:["6L50","6M"],icebeam:["6L56","6M"],hyperbeam:["6L63","6M"],blizzard:["6L74","6M"],calmmind:["6M"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],thunderbolt:["6M"],thunder:["6M"],earthquake:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],reflect:["6M"],sandstorm:["6M"],rocktomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],echoedvoice:["6M"],chargebeam:["6M"],gigaimpact:["6M"],rockpolish:["6M"],flash:["6M"],stoneedge:["6M"],psychup:["6M"],bulldoze:["6M"],frostbreath:["6M"],rockslide:["6M"],dragontail:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],rocksmash:["6M"],darkpulse:["6M"],confide:["6M"]}}, + sylveon:{learnset:{disarmingvoice:["6L1"],tailwhip:["6L1"],tackle:["6L1"],helpinghand:["6L1"],sandattack:["6L5"],fairywind:["6L9"],quickattack:["6L13"],swift:["6L17"],drainingkiss:["6L20"],skillswap:["6L25"],mistyterrain:["6L29"],lightscreen:["6L33","6M"],moonblast:["6L37"],lastresort:["6L41"],psychup:["6L45","6M"],psyshock:["6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],shadowball:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],retaliate:["6M"],gigaimpact:["6M"],flash:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],dazzlinggleam:["6M"],confide:["6M"],cut:["6M"]}}, + hawlucha:{learnset:{detect:["6L1"],tackle:["6L1"],honeclaws:["6L1","6M"],karatechop:["6L4"],wingattack:["6L8"],roost:["6L12","6M"],aerialace:["6L16","6M"],encore:["6L20"],fling:["6L24","6M"],flyingpress:["6L28"],bounce:["6L32"],endeavor:["6L36"],featherdance:["6L40"],highjumpkick:["6L44"],skyattack:["6L48"],skydrop:["6L55","6M"],swordsdance:["6L60","6M"],toxic:["6M"],bulkup:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],rocktomb:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],lowsweep:["6M"],round:["6M"],steelwing:["6M"],focusblast:["6M"],falseswipe:["6M"],acrobatics:["6M"],payback:["6M"],retaliate:["6M"],gigaimpact:["6M"],stoneedge:["6M"],rockslide:["6M"],xscissor:["6M"],poisonjab:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],rocksmash:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],fly:["6M"],strength:["6M"],quickguard:["6E"],batonpass:["6E"],entrainment:["6E"],mefirst:["6E"],allyswitch:["6E"]}}, + dedenne:{learnset:{tackle:["6L1"],tailwhip:["6L1"],thundershock:["6L7"],charge:["6L11"],charm:["6L14"],paraboliccharge:["6L17"],nuzzle:["6L20"],thunderwave:["6L23","6M"],voltswitch:["6L26","6M"],rest:["6L30","6M"],snore:["6L31"],chargebeam:["6L34","6M"],entrainment:["6L39"],playrough:["6L42"],thunder:["6L45","6M"],discharge:["6L50"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],dig:["6M"],doubleteam:["6M"],aerialace:["6M"],facade:["6M"],attract:["6M"],thief:["6M"],round:["6M"],fling:["6M"],retaliate:["6M"],gigaimpact:["6M"],flash:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],confide:["6M"],cut:["6M"],helpinghand:["6E"],covet:["6E"],eerieimpulse:["6E"]}}, + carbink:{learnset:{tackle:["6L1"],harden:["6L1"],guardsplit:["6L0"],rockthrow:["6L5"],sharpen:["6L8"],smackdown:["6L12","6M"],reflect:["6L18","6M"],stealthrock:["6L21"],guardswap:["6L27"],ancientpower:["6L31"],flail:["6L35"],skillswap:["6L40"],powergem:["6L46"],stoneedge:["6L49","6M"],moonblast:["6L50"],lightscreen:["6L60","6M"],safeguard:["6L70","6M"],calmmind:["6M"],toxic:["6M"],hail:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],frustration:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],sandstorm:["6M"],rocktomb:["6M"],facade:["6M"],rest:["6M"],round:["6M"],explosion:["6M"],rockpolish:["6M"],flash:["6M"],gyroball:["6M"],psychup:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + goomy:{learnset:{tackle:["6L1"],bubble:["6L1"],absorb:["6L5"],protect:["6L9","6M"],bide:["6L13"],dragonbreath:["6L18"],raindance:["6L25","6M"],flail:["6L28"],bodyslam:["6L32"],muddywater:["6L38"],dragonpulse:["6L42"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],doubleteam:["6M"],sludgewave:["6M"],sludgebomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],rockslide:["6M"],infestation:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],confide:["6M"],dracometeor:["6T"],poisontail:["6E"],irontail:["6E"],curse:["6E"],acidarmor:["6E"],counter:["6E"]}}, + sliggoo:{learnset:{tackle:["6L1"],bubble:["6L1"],absorb:["6L5"],protect:["6L9","6M"],bide:["6L13"],dragonbreath:["6L18"],raindance:["6L25","6M"],flail:["6L28"],bodyslam:["6L32"],muddywater:["6L38"],dragonpulse:["6L47"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],icebeam:["6M"],blizzard:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],doubleteam:["6M"],sludgewave:["6M"],sludgebomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],rockslide:["6M"],infestation:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],confide:["6M"],dracometeor:["6T"]}}, + goodra:{learnset:{outrage:["6L1","6L63"],feint:["6L1"],tackle:["6L1"],bubble:["6L1"],absorb:["6L5"],protect:["6L9","6M"],bide:["6L13"],dragonbreath:["6L18"],raindance:["6L25","6M"],flail:["6L28"],bodyslam:["6L32"],muddywater:["6L38"],dragonpulse:["6L47"],aquatail:["6L50"],powerwhip:["6L55"],toxic:["6M"],hail:["6M"],hiddenpower:["6M"],sunnyday:["6M"],icebeam:["6M"],blizzard:["6M"],hyperbeam:["6M"],frustration:["6M"],thunderbolt:["6M"],thunder:["6M"],earthquake:["6M"],"return":["6M"],doubleteam:["6M"],sludgewave:["6M"],flamethrower:["6M"],sludgebomb:["6M"],fireblast:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],focusblast:["6M"],incinerate:["6M"],gigaimpact:["6M"],bulldoze:["6M"],rockslide:["6M"],dragontail:["6M"],infestation:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],confide:["6M"],strength:["6M"],dracometeor:["6T"]}}, + klefki:{learnset:{fairylock:["6L1"],tackle:["6L1"],fairywind:["6L5"],astonish:["6L8"],metalsound:["6L12"],spikes:["6L15"],drainingkiss:["6L18"],craftyshield:["6L23"],foulplay:["6L27"],torment:["6L32","6M"],mirrorshot:["6L34"],imprison:["6L36"],recycle:["6L40"],playrough:["6L43"],magicroom:["6L44"],healblock:["6L50"],psyshock:["6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],gigaimpact:["6M"],thunderwave:["6M"],psychup:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],dazzlinggleam:["6M"],confide:["6M"],cut:["6M"],irondefense:["6E"],lockon:["6E"]}}, + phantump:{learnset:{tackle:["6L1"],confuseray:["6L1"],astonish:["6L5"],growth:["6L8"],ingrain:["6L13"],feintattack:["6L19"],leechseed:["6L23"],curse:["6L28"],willowisp:["6L31","6M"],forestscurse:["6L35"],destinybond:["6L39"],phantomforce:["6L45"],woodhammer:["6L49"],hornleech:["6L54"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],dig:["6M"],psychic:["6M"],shadowball:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],energyball:["6M"],shadowclaw:["6M"],bulldoze:["6M"],rockslide:["6M"],poisonjab:["6M"],dreameater:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],rocksmash:["6M"],naturepower:["6M"],darkpulse:["6M"],confide:["6M"],cut:["6M"],strength:["6M"],bestow:["6E"],grudge:["6E"],imprison:["6E"],venomdrench:["6E"]}}, + trevenant:{learnset:{hornleech:["6L1","6L62"],tackle:["6L1"],confuseray:["6L1"],astonish:["6L5"],growth:["6L8"],ingrain:["6L13"],feintattack:["6L19"],leechseed:["6L23"],curse:["6L28"],willowisp:["6L31","6M"],forestscurse:["6L35"],destinybond:["6L39"],phantomforce:["6L45"],woodhammer:["6L49"],shadowclaw:["6L55","6M"],honeclaws:["6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],earthquake:["6M"],"return":["6M"],dig:["6M"],psychic:["6M"],shadowball:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],focusblast:["6M"],energyball:["6M"],gigaimpact:["6M"],bulldoze:["6M"],rockslide:["6M"],xscissor:["6M"],poisonjab:["6M"],dreameater:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],rocksmash:["6M"],naturepower:["6M"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],strength:["6M"]}}, + pumpkaboo:{learnset:{trick:["6L1"],astonish:["6L1"],confuseray:["6L1"],scaryface:["6L4"],trickortreat:["6L6","6L23","6L40"],worryseed:["6L11"],razorleaf:["6L16"],leechseed:["6L20"],bulletseed:["6L26"],shadowsneak:["6L30"],shadowball:["6L36","6M"],painsplit:["6L42"],seedbomb:["6L48"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],lightscreen:["6M"],protect:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],flamethrower:["6M"],sludgebomb:["6M"],fireblast:["6M"],facade:["6M"],flamecharge:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],energyball:["6M"],chargebeam:["6M"],incinerate:["6M"],willowisp:["6M"],explosion:["6M"],flash:["6M"],gyroball:["6M"],rockslide:["6M"],dreameater:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],rocksmash:["6M"],naturepower:["6M"],darkpulse:["6M"],confide:["6M"],destinybond:["6E"],disable:["6E"],bestow:["6E"]}}, + gourgeist:{learnset:{explosion:["6L1","6L75","6M"],phantomforce:["6L1","6L57"],trick:["6L1"],astonish:["6L1"],confuseray:["6L1"],scaryface:["6L4"],trickortreat:["6L6","6L23","6L40","6L63"],worryseed:["6L11"],razorleaf:["6L16"],leechseed:["6L20"],bulletseed:["6L26"],shadowsneak:["6L30"],shadowball:["6L36","6L70","6M"],painsplit:["6L42"],seedbomb:["6L48"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],lightscreen:["6M"],protect:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],flamethrower:["6M"],sludgebomb:["6M"],fireblast:["6M"],facade:["6M"],flamecharge:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],focusblast:["6M"],energyball:["6M"],chargebeam:["6M"],incinerate:["6M"],willowisp:["6M"],gigaimpact:["6M"],flash:["6M"],gyroball:["6M"],rockslide:["6M"],dreameater:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],rocksmash:["6M"],naturepower:["6M"],darkpulse:["6M"],confide:["6M"]}}, + bergmite:{learnset:{tackle:["6L1"],bite:["6L1"],harden:["6L1"],powdersnow:["6L5"],icywind:["6L10"],takedown:["6L15"],sharpen:["6L20"],curse:["6L22"],icefang:["6L26"],iceball:["6L30"],rapidspin:["6L35"],avalanche:["6L39"],blizzard:["6L43","6M"],recover:["6L47"],doubleedge:["6L49"],toxic:["6M"],hail:["6M"],hiddenpower:["6M"],icebeam:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],"return":["6M"],doubleteam:["6M"],rocktomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],rockpolish:["6M"],flash:["6M"],stoneedge:["6M"],gyroball:["6M"],frostbreath:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],rocksmash:["6M"],confide:["6M"],surf:["6M"],strength:["6M"],mist:["6E"],mirrorcoat:["6E"]}}, + avalugg:{learnset:{irondefense:["6L1"],crunch:["6L1","6L65"],skullbash:["6L1","6L60"],tackle:["6L1"],bite:["6L1"],harden:["6L1"],powdersnow:["6L5"],icywind:["6L10"],takedown:["6L15"],sharpen:["6L20"],curse:["6L22"],icefang:["6L26"],iceball:["6L30"],rapidspin:["6L35"],avalanche:["6L42"],blizzard:["6L46","6M"],recover:["6L51"],doubleedge:["6L56"],roar:["6M"],toxic:["6M"],hail:["6M"],hiddenpower:["6M"],icebeam:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],earthquake:["6M"],"return":["6M"],doubleteam:["6M"],rocktomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],gigaimpact:["6M"],rockpolish:["6M"],flash:["6M"],stoneedge:["6M"],gyroball:["6M"],bulldoze:["6M"],frostbreath:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],rocksmash:["6M"],confide:["6M"],surf:["6M"],strength:["6M"]}}, + noibat:{learnset:{screech:["6L1"],supersonic:["6L1"],tackle:["6L1"],leechlife:["6L5"],gust:["6L11"],bite:["6L13"],wingattack:["6L16"],agility:["6L18"],aircutter:["6L23"],roost:["6L27","6M"],razorwind:["6L31"],tailwind:["6L35"],whirlwind:["6L40"],superfang:["6L43"],airslash:["6L48"],hurricane:["6L58"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],psychic:["6M"],shadowball:["6M"],brickbreak:["6M"],doubleteam:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],echoedvoice:["6M"],steelwing:["6M"],acrobatics:["6M"],shadowclaw:["6M"],xscissor:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],darkpulse:["6M"],confide:["6M"],cut:["6M"],fly:["6M"],dracometeor:["6T"],switcheroo:["6E"]}}, + noivern:{learnset:{moonlight:["6L1"],boomburst:["6L1","6L75"],dragonpulse:["6L1","6L70"],hurricane:["6L1","6L62"],screech:["6L1"],supersonic:["6L1"],tackle:["6L1"],leechlife:["6L5"],gust:["6L11"],bite:["6L13"],wingattack:["6L16"],agility:["6L18"],aircutter:["6L23"],roost:["6L27","6M"],razorwind:["6L31"],tailwind:["6L35"],whirlwind:["6L40"],superfang:["6L43"],airslash:["6L53"],honeclaws:["6M"],dragonclaw:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],hyperbeam:["6M"],protect:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],psychic:["6M"],shadowball:["6M"],brickbreak:["6M"],doubleteam:["6M"],flamethrower:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],echoedvoice:["6M"],steelwing:["6M"],focusblast:["6M"],acrobatics:["6M"],shadowclaw:["6M"],gigaimpact:["6M"],xscissor:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],darkpulse:["6M"],confide:["6M"],cut:["6M"],fly:["6M"],dracometeor:["6T"]}}, + xerneas:{learnset:{healpulse:["6L1"],aromatherapy:["6L1"],ingrain:["6L1"],takedown:["6L1"],lightscreen:["6L1","6M"],aurorabeam:["6L1"],gravity:["6L1"],geomancy:["6L1"],moonblast:["6L1"],megahorn:["6L1"],nightslash:["6L51"],hornleech:["6L55"],psychup:["6L59","6M"],mistyterrain:["6L63"],naturepower:["6L72","6M"],closecombat:["6L80"],gigaimpact:["6L88","6M"],outrage:["6L93"],psyshock:["6M"],calmmind:["6M"],roar:["6M"],toxic:["6M"],hail:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],thunder:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],round:["6M"],echoedvoice:["6M"],focusblast:["6M"],flash:["6M"],thunderwave:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],dazzlinggleam:["6M"],confide:["6M"],cut:["6M"]}}, + yveltal:{learnset:{hurricane:["6L1"],razorwind:["6L1"],taunt:["6L1","6M"],roost:["6L1","6M"],doubleteam:["6L1","6M"],airslash:["6L1"],snarl:["6L1","6M"],oblivionwing:["6L1"],disable:["6L1"],darkpulse:["6L1","6M"],foulplay:["6L51"],phantomforce:["6L55"],psychic:["6L59","6M"],dragonrush:["6L63"],focusblast:["6L72","6M"],suckerpunch:["6L80"],hyperbeam:["6L88","6M"],skyattack:["6L93"],honeclaws:["6M"],dragonclaw:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],shadowball:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],thief:["6M"],round:["6M"],steelwing:["6M"],skydrop:["6M"],acrobatics:["6M"],embargo:["6M"],shadowclaw:["6M"],gigaimpact:["6M"],rockslide:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],confide:["6M"],cut:["6M"],fly:["6M"]}}, + zygarde:{learnset:{glare:["6L1"],bulldoze:["6L1","6M"],dragonbreath:["6L1"],bite:["6L1"],safeguard:["6L1","6M"],dig:["6L1","6M"],bind:["6L1"],landswrath:["6L1"],sandstorm:["6L1","6M"],haze:["6L1"],crunch:["6L1"],earthquake:["6L1","6M"],camouflage:["6L1"],dragonpulse:["6L1"],dragondance:["6L72"],coil:["6L80"],extremespeed:["6L88"],outrage:["6L93"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],frustration:["6M"],"return":["6M"],brickbreak:["6M"],doubleteam:["6M"],sludgewave:["6M"],facade:["6M"],rest:["6M"],round:["6M"],focusblast:["6M"],gigaimpact:["6M"],stoneedge:["6M"],rockslide:["6M"],dragontail:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],confide:["6M"],strength:["6M"],dracometeor:["6T"]}} +}; \ No newline at end of file diff --git a/data/learnsets.js b/data/learnsets.js index 1ae7d7f9e..f004f974e 100644 --- a/data/learnsets.js +++ b/data/learnsets.js @@ -11,739 +11,739 @@ exports.BattleLearnsets = { fidgit:{learnset:{aerialace:["4M"],attract:["4M"],block:["4T"],bodyslam:["4L30","4T"],captivate:["4M"],cometpunch:["4L1"],copycat:["4L19"],disable:["4E"],doubleedge:["4T"],doubleteam:["4M"],earthpower:["4L59","4T"],earthquake:["4M"],encore:["4L5"],endure:["4M"],facade:["4M"],fling:["4M"],followme:["4E"],frustration:["4M"],gastroacid:["4T"],gigaimpact:["4M"],gravity:["4L49","4T"],gust:["4L1"],healblock:["4L53"],helpinghand:["4L1","4T"],hiddenpower:["4M"],hyperbeam:["4M"],icywind:["4T"],knockoff:["4L14","4T"],lightscreen:["4M"],luckychant:["4L67"],mefirst:["4E"],metronome:["4T","4E"],mimic:["4T","4E"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],poisonjab:["4M"],protect:["4M"],psychup:["4M"],raindance:["4M"],rapidspin:["4L9"],reflect:["4M"],rest:["4M"],"return":["4M"],rockclimb:["4M"],rockslide:["4M"],rocksmash:["4M"],rocktomb:["4M"],safeguard:["4M"],sandstorm:["4M"],sandtomb:["4E"],secretpower:["4M"],shadowball:["4M"],skillswap:["4M"],sleeptalk:["4M"],sludgebomb:["4L35","4M"],snatch:["4M"],snore:["4T"],spikes:["4E"],stealthrock:["4M"],stoneedge:["4M"],substitute:["4M"],sunnyday:["4M"],swagger:["4M"],swift:["4T"],tailwind:["4L1","4T"],taunt:["4M"],thief:["4M"],torment:["4M"],toxic:["4M"],toxicspikes:["4L41"],trickroom:["4M"],twister:["4T"],uturn:["4M"],whirlwind:["4L25"],wish:["4E"]}}, stratagem:{learnset:{acupressure:["4L20"],aerialace:["4M"],ancientpower:["4T"],calmmind:["4M"],cut:["4M"],defensecurl:["4L1","4L5"],disable:["4L17"],doubleedge:["4L32"],doubleteam:["4M"],earthpower:["4T"],earthquake:["4M"],embargo:["4M"],endure:["4M"],energyball:["4M"],explosion:["4M"],facade:["4M"],falseswipe:["4M"],fireblast:["4M"],flamethrower:["4M"],flash:["4M"],frustration:["4M"],gigadrain:["4M"],gigaimpact:["4M"],headbutt:["4T"],headsmash:["4L50"],heatwave:["4T"],hiddenpower:["4M"],hyperbeam:["4M"],metalsound:["4L37"],mudshot:["4L25"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],paleowave:["4L42"],powergem:["4L29"],protect:["4M"],raindance:["4M"],rest:["4M"],"return":["4M"],rockblast:["4L15"],rockclimb:["4M"],rockpolish:["4M"],rockslide:["4M"],rocksmash:["4M"],rocktomb:["4M"],rollout:["4L1","4L8","4T"],sandstorm:["4M"],secretpower:["4M"],shadowball:["4M"],sleeptalk:["4M"],snore:["4T"],stealthrock:["4M"],stoneedge:["4M"],substitute:["4M"],sunnyday:["4M"],swift:["4T"],tackle:["4L1"],toxic:["4M"],trick:["4T"],vacuumwave:["4T"],weatherball:["4L1"]}}, arghonaut:{learnset:{aquajet:["4L27"],armthrust:["4L21"],attract:["4M"],blizzard:["4M"],brickbreak:["4M"],brine:["4M"],bubble:["4L1"],bulkup:["4E"],captivate:["4M"],crosschop:["4E"],cut:["4M"],dive:["4T"],doubleteam:["4M"],drainpunch:["4M"],earthquake:["4M"],embargo:["4M"],endure:["4M"],facade:["4M"],fling:["4M"],focusblast:["4M"],focuspunch:["4L67","4M"],frustration:["4M"],gigaimpact:["4M"],gunkshot:["4T"],hail:["4M"],headbutt:["4T","4E"],hiddenpower:["4M"],hyperbeam:["4M"],icebeam:["4M"],icepunch:["4T"],icywind:["4T"],knockoff:["4T"],lowkick:["4T"],machpunch:["4L32"],mudslap:["4T"],naturalgift:["4M"],octazooka:["4E"],protect:["4M"],punishment:["4L60"],raindance:["4M"],recover:["4E"],rest:["4M"],"return":["4M"],revenge:["4L41"],roar:["4M"],rockslide:["4M"],rocksmash:["4M"],rocktomb:["4M"],scaryface:["4E"],secretpower:["4M"],sleeptalk:["4M"],sludgebomb:["4M"],smokescreen:["4L7"],snatch:["4M"],snore:["4T"],stoneedge:["4M"],strength:["4M"],submission:["4L55"],substitute:["4M"],superpower:["4T"],surf:["4M"],swagger:["4M"],taunt:["4L36","4M"],thief:["4L47","4M"],thunderpunch:["4T"],torment:["4M"],toxic:["4M"],vacuumwave:["4T"],waterfall:["4M"],waterpulse:["4M"],whirlpool:["4M"],wrap:["4L1","4L16"],yawn:["4L1","4L10"]}}, - kitsunoh:{learnset:{attract:["4M"],captivate:["4M"],copycat:["4L22"],curse:["4E"],cut:["4M"],darkpulse:["4M"],defog:["4M"],dig:["4M"],doubleteam:["4M"],dreameater:["4M"],earthquake:["4M"],embargo:["4M"],endeavor:["4T"],facade:["4M"],faintattack:["4L14"],fakeout:["4L35"],falseswipe:["4M"],featherdance:["4E"],flail:["4E"],flash:["4M"],flashcannon:["4M"],fling:["4M"],frustration:["4M"],furycutter:["4T"],gigaimpact:["4M"],headbutt:["4T"],hiddenpower:["4M"],hyperbeam:["4M"],icepunch:["4T"],icywind:["4T"],irondefense:["4T"],ironhead:["4T"],irontail:["4M"],knockoff:["4T"],lastresort:["4T"],lick:["4L6"],lowkick:["4T"],magiccoat:["4T"],memento:["4L31"],metalclaw:["4L27"],metalsound:["4E"],meteormash:["4E"],naturalgift:["4M"],odorsleuth:["4L10"],ominouswind:["4T"],painsplit:["4T"],payback:["4M"],perishsong:["4L55"],protect:["4M"],psychoshift:["4E"],psychup:["4M"],raindance:["4M"],rest:["4M"],"return":["4M"],revenge:["4L44"],roar:["4M"],safeguard:["4M"],scratch:["4L1"],secretpower:["4M"],shadowball:["4M"],shadowclaw:["4L40","4M"],shadowsneak:["4L18"],shadowstrike:["4L49"],sleeptalk:["4M"],snatch:["4M"],snore:["4T"],spite:["4T"],substitute:["4M"],suckerpunch:["4T"],sunnyday:["4M"],superfang:["4T"],superpower:["4T"],swagger:["4M"],tailwhip:["4L1"],taunt:["4M"],thief:["4M"],thunderpunch:["4T"],torment:["4M"],toxic:["4M"],trick:["4T"],trickroom:["4M"],uturn:["4M"],willowisp:["4M"],yawn:["4E"]}}, + kitsunoh:{learnset:{attract:["4M"],captivate:["4M"],copycat:["4L22"],curse:["4E"],cut:["4M"],darkpulse:["4M"],defog:["4M"],dig:["4M"],doubleteam:["4M"],dreameater:["4M"],earthquake:["4M"],embargo:["4M"],endeavor:["4T"],facade:["4M"],feintattack:["4L14"],fakeout:["4L35"],falseswipe:["4M"],featherdance:["4E"],flail:["4E"],flash:["4M"],flashcannon:["4M"],fling:["4M"],frustration:["4M"],furycutter:["4T"],gigaimpact:["4M"],headbutt:["4T"],hiddenpower:["4M"],hyperbeam:["4M"],icepunch:["4T"],icywind:["4T"],irondefense:["4T"],ironhead:["4T"],irontail:["4M"],knockoff:["4T"],lastresort:["4T"],lick:["4L6"],lowkick:["4T"],magiccoat:["4T"],memento:["4L31"],metalclaw:["4L27"],metalsound:["4E"],meteormash:["4E"],naturalgift:["4M"],odorsleuth:["4L10"],ominouswind:["4T"],painsplit:["4T"],payback:["4M"],perishsong:["4L55"],protect:["4M"],psychoshift:["4E"],psychup:["4M"],raindance:["4M"],rest:["4M"],"return":["4M"],revenge:["4L44"],roar:["4M"],safeguard:["4M"],scratch:["4L1"],secretpower:["4M"],shadowball:["4M"],shadowclaw:["4L40","4M"],shadowsneak:["4L18"],shadowstrike:["4L49"],sleeptalk:["4M"],snatch:["4M"],snore:["4T"],spite:["4T"],substitute:["4M"],suckerpunch:["4T"],sunnyday:["4M"],superfang:["4T"],superpower:["4T"],swagger:["4M"],tailwhip:["4L1"],taunt:["4M"],thief:["4M"],thunderpunch:["4T"],torment:["4M"],toxic:["4M"],trick:["4T"],trickroom:["4M"],uturn:["4M"],willowisp:["4M"],yawn:["4E"]}}, cyclohm:{learnset:{aerialace:["4M"],attract:["4M"],bide:["4L1"],blizzard:["4M"],captivate:["4M"],charge:["4L11"],chargebeam:["4M"],discharge:["4L37"],doublehit:["4L22"],doubleteam:["4M"],dracometeor:["4T"],dragonbreath:["4E"],dragonclaw:["4M"],dragonpulse:["4M"],dragonrage:["4L7"],earthquake:["4M"],endure:["4M"],facade:["4M"],fireblast:["4M"],flamethrower:["4M"],flash:["4M"],frustration:["4M"],gigaimpact:["4M"],growl:["4L1"],hail:["4M"],headbutt:["4T"],healbell:["4E"],hiddenpower:["4M"],hydropump:["4E"],hyperbeam:["4M"],icebeam:["4M"],lightscreen:["4M"],mudslap:["4T","4E"],naturalgift:["4M"],outrage:["4T"],powergem:["4E"],protect:["4M"],raindance:["4L19","4M"],rest:["4M"],"return":["4M"],roar:["4M"],sandstorm:["4M"],secretpower:["4M"],shockwave:["4M"],signalbeam:["4T"],slackoff:["4L42"],sleeptalk:["4M"],snore:["4T"],sonicboom:["4L29"],strength:["4M"],substitute:["4M"],sunnyday:["4M"],surf:["4M"],swift:["4T"],tackle:["4L1"],thrash:["4L50"],thunder:["4M"],thunderbolt:["4M"],thundershock:["4L15"],thunderwave:["4M"],torment:["4M"],toxic:["4M"],triattack:["4L33"],trickroom:["4M"],twister:["4T"],waterfall:["4M"],waterpulse:["4M"],whirlwind:["4L1"],zapcannon:["4L59"]}}, colossoil:{learnset:{ancientpower:["4T"],aquatail:["4T"],attract:["4M"],bite:["4L11"],bodyslam:["4L22","4T"],bounce:["4L35","4T"],brickbreak:["4M"],captivate:["4M"],crunch:["4L55"],darkpulse:["4M"],dig:["4M"],dive:["4T"],doubleedge:["4T","4E"],doubleteam:["4M"],earthpower:["4T"],earthquake:["4M"],embargo:["4M"],encore:["4E"],endure:["4M"],facade:["4M"],fakeout:["4E"],firefang:["4E"],fissure:["4E"],flail:["4E"],frustration:["4M"],gigaimpact:["4M"],hiddenpower:["4M"],hornattack:["4L6"],horndrill:["4L70","4E"],hyperbeam:["4M"],irontail:["4M"],knockoff:["4T"],leer:["4L1"],magnitude:["4L42"],megahorn:["4L63"],mimic:["4T"],mudslap:["4T"],naturalgift:["4M"],payback:["4M"],peck:["4L1"],protect:["4M"],pursuit:["4L29"],raindance:["4M"],rapidspin:["4L17"],rest:["4M"],"return":["4M"],roar:["4M"],rockslide:["4M"],rocksmash:["4M"],rollout:["4T"],sandstorm:["4M"],sandtomb:["4E"],screech:["4E"],secretpower:["4M"],sleeptalk:["4M"],snatch:["4M"],snore:["4T"],spitup:["4L48"],stockpile:["4L48"],stoneedge:["4M"],strength:["4M"],substitute:["4M"],suckerpunch:["4T","4E"],sunnyday:["4M"],superpower:["4T"],swagger:["4M"],swallow:["4L48"],taunt:["4M"],thunderfang:["4E"],toxic:["4M"],uturn:["4M"]}}, krilowatt:{learnset:{attract:["4M"],blizzard:["4M"],bubble:["4L1"],bubblebeam:["4L28"],captivate:["4M"],charge:["4L1"],confuseray:["4L11"],copycat:["4L39"],counter:["4L33","4E"],cut:["4M"],discharge:["4L51"],dive:["4T"],doubleteam:["4M"],earthpower:["4T"],earthquake:["4M"],endure:["4M"],facade:["4M"],flash:["4M"],fling:["4M"],followme:["4E"],frustration:["4M"],furycutter:["4T"],gigaimpact:["4M"],guillotine:["4L57"],hail:["4M"],heartswap:["4L46"],helpinghand:["4T"],hiddenpower:["4M"],hyperbeam:["4M"],icebeam:["4M"],icepunch:["4T"],iceshard:["4L1"],icywind:["4T"],imprison:["4L17"],lowkick:["4T"],mefirst:["4E"],metronome:["4E"],mindreader:["4E"],mirrorcoat:["4L24","4E"],muddywater:["4L68"],naturalgift:["4M"],payback:["4M"],protect:["4M"],raindance:["4M"],recycle:["4M"],rest:["4M"],"return":["4M"],secretpower:["4M"],sheercold:["4E"],shockwave:["4M"],signalbeam:["4T"],sleeptalk:["4M"],substitute:["4M"],surf:["4M"],swift:["4T"],thunder:["4L63","4M"],thunderbolt:["4M"],thunderpunch:["4T"],thundershock:["4L5"],thunderwave:["4M"],torment:["4M"],toxic:["4M"],waterfall:["4M"],waterpulse:["4M"],whirlpool:["4M"]}}, - voodoom:{learnset:{acupressure:["4L40"],astonish:["4L1"],attract:["4M"],aurasphere:["4L45"],batonpass:["4E"],beatup:["4L55"],brickbreak:["4M"],bulkup:["4M"],captivate:["4M"],charge:["4L19"],closecombat:["4L35"],copycat:["4L1"],counter:["4T"],darkpulse:["4M"],drainpunch:["4M"],dreameater:["4M"],earthquake:["4M"],endure:["4M"],facade:["4M"],faintattack:["4L30"],fling:["4M"],focusblast:["4M"],focuspunch:["4M"],followme:["4L20"],frustration:["4M"],gigaimpact:["4M"],grudge:["4L15"],hiddenpower:["4M"],hyperbeam:["4M"],icepunch:["4T"],imprison:["4E"],knockoff:["4T"],lowkick:["4T"],machpunch:["4E"],magiccoat:["4T"],memento:["4E"],metronome:["4T"],mimic:["4T"],mudslap:["4T"],naturalgift:["4M"],nightmare:["4T"],nightslash:["4L1"],painsplit:["4L1","4L7","4T"],payback:["4M"],perishsong:["4E"],pinmissile:["4L25"],protect:["4M"],psychic:["4M"],pursuit:["4E"],rest:["4M"],"return":["4M"],revenge:["4L1"],rockslide:["4M"],rocksmash:["4M"],screech:["4E"],secretpower:["4M"],shockwave:["4M"],sleeptalk:["4M"],smellingsalt:["4E"],snatch:["4M"],snore:["4T"],spite:["4L1","4L11","4T"],stoneedge:["4M"],strength:["4M"],substitute:["4L50","4M"],sunnyday:["4M"],swagger:["4M"],taunt:["4M"],thief:["4M"],thunderwave:["4M"],torment:["4M"],toxic:["4M"],uproar:["4T"],vacuumwave:["4T"],wrap:["4L1"]}}, - bulbasaur:{learnset:{amnesia:["4E","5E"],attract:["3M","4M","5M"],block:["5S3"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],charm:["3E","4E","5E"],curse:["3E","4E","5E"],cut:["3M","4M","5M"],defensecurl:["3T"],doubleedge:["3T","4L27","5L27"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M","5E"],energyball:["4M","5M"],facade:["3M","4M","5M"],falseswipe:["5S3"],flash:["3M","4M","5M"],frenzyplant:["5S3"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5E","5T"],grassknot:["4M","5M"],grasspledge:["5T"],grasswhistle:["3E","4E","5E"],growl:["3L4","4L3","5L3","3S1","5S2"],growth:["3L32","4L25","5L25","3S0"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],ingrain:["4E","5E"],knockoff:["4T","5T"],leafstorm:["4E","5E"],leechseed:["3L7","4L7","5L7","3S1","5S2"],lightscreen:["3E","4E","5M"],magicalleaf:["3E","4E","5E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],naturepower:["4E","5E"],petaldance:["3E","4E","5E"],poisonpowder:["3L15","4L13","5L13"],powerwhip:["4E","5E"],protect:["3M","4M","5M"],razorleaf:["3L20","4L19","5L19"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],safeguard:["3E","4E","5M"],secretpower:["3M","4M"],seedbomb:["4L37","4T","5L37","5T"],skullbash:["3E","4E","5E"],sleeppowder:["3L15","4L13","5L13"],sleeptalk:["3T","4M","5T"],sludge:["4E","5E"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","3L46","4M","5M","3S0"],strength:["3M","4M","5M"],stringshot:["4T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["3L25","4L21","5L21","3S0"],swordsdance:["3T","4M","5M"],synthesis:["3L39","4L33","4T","5L33","3S0","5T"],tackle:["3L1","4L1","5L1","3S1","5S2"],takedown:["4L15","5L15"],toxic:["3M","4M","5M"],venoshock:["5M"],vinewhip:["3L10","4L9","5L9","3S1","5S2"],weatherball:["5S3"],worryseed:["4L31","4T","5L31","5T"],bind:["5T"]}}, - ivysaur:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M"],defensecurl:["3T"],doubleedge:["3T","4L31","5L31"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M"],grasspledge:["5T"],growl:["3L1","3L4","4L1","4L3","5L1","5L3"],growth:["3L38","4L28","5L28"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],knockoff:["4T","5T"],leechseed:["3L1","3L7","4L1","4L7","5L1","5L7"],lightscreen:["5M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],poisonpowder:["3L15","4L13","5L13"],protect:["3M","4M","5M"],razorleaf:["3L22","4L20","5L20"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],safeguard:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeppowder:["3L15","4L13","5L13"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","3L56","4M","4L44","5M","5L44"],strength:["3M","4M","5M"],stringshot:["4T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["3L29","4L23","5L23"],swordsdance:["3T","4M","5M"],synthesis:["3L47","4L39","4T","5L39","5T"],tackle:["3L1","4L1","5L1"],takedown:["4L15","5L15"],toxic:["3M","4M","5M"],venoshock:["5M"],vinewhip:["3L10","4L9","5L9"],worryseed:["4L36","4T","5L36","5T"],bind:["5T"]}}, - venusaur:{learnset:{attract:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],bulldoze:["5M"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M"],defensecurl:["3T"],doubleedge:["3T","4L31","5L31"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frenzyplant:["3T","4T","5T"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],grasspledge:["5T"],growl:["3L1","3L4","4L1","4L3","5L1","5L3"],growth:["3L41","4L28","5L28"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],knockoff:["4T","5T"],leechseed:["3L1","3L7","4L1","4L7","5L1","5L7"],lightscreen:["5M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],petaldance:["4L32","5L32"],poisonpowder:["3L15","4L13","5L13"],protect:["3M","4M","5M"],razorleaf:["3L22","4L20","5L20"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockclimb:["4M"],rocksmash:["3M","4M","5M"],round:["5M"],safeguard:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeppowder:["3L15","4L13","5L13"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","3L65","4M","4L53","5M","5L53"],strength:["3M","4M","5M"],stringshot:["4T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["3L29","4L23","5L23"],swordsdance:["3T","4M","5M"],synthesis:["3L53","4L45","4T","5L45","5T"],tackle:["3L1","4L1","5L1"],takedown:["4L15","5L15"],toxic:["3M","4M","5M"],venoshock:["5M"],vinewhip:["3L1","3L10","4L1","4L9","5L1","5L9"],worryseed:["4L39","4T","5L39","5T"],bind:["5T"]}}, - charmander:{learnset:{acrobatics:["5S6"],aerialace:["3M","4M","5M"],ancientpower:["3E","4E","5E"],attract:["3M","4M","5M"],beatup:["3E","4E","5E"],bellydrum:["3E","4E","5E"],bite:["3E","4E","5E"],blastburn:["5S6"],block:["5S6"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],counter:["3T","4E","5E"],crunch:["4E","5E"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonclaw:["3M","4M","5M"],dragondance:["3E","4E","5E"],dragonpulse:["5E"],dragonrage:["3L43","4L16","5L16"],dragonrush:["4E","5E"],dynamicpunch:["3T"],echoedvoice:["5M"],ember:["3L7","4L7","5L7","3S0","5S4"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["5S6"],fireblast:["3M","4M","5M"],firefang:["4L25","5L25"],firepledge:["5T"],firepunch:["3T","4T","5T"],firespin:["3L49","4L37","5L43"],flameburst:["5L28"],flamecharge:["5M"],flamethrower:["3M","3L31","4M","4L34","5M","5L37"],flareblitz:["4E","5E"],fling:["4M","5M"],focuspunch:["3M","4M","5E"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],growl:["3L1","4L1","5L1","3S0","5S4"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","4S1","4S2","4S3","4S5"],honeclaws:["5M"],howl:["4S1","4S2","4S3","4S5"],incinerate:["5M"],inferno:["5L46"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],metalclaw:["3L13","4E","5E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["3E","4E","5E","5T"],overheat:["3M","4M","5M"],protect:["3M","4M","5M"],quickattack:["4S1","4S2","4S3","4S5"],rage:["3L19"],rest:["3M","4M","5M"],"return":["3M","4M","5M","4S1","4S2","4S3","4S5"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],round:["5M"],scaryface:["3L25","4L19","5L19"],scratch:["3L1","4L1","5L1","3S0","5S4"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],slash:["3L37","4L28","5L34"],sleeptalk:["3T","4M","5T"],smokescreen:["3L13","3L19","4L10","5L10","5S4"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3E","3T","4E","4M","5M"],thunderpunch:["4T","5T"],toxic:["3M","4M","5M"],willowisp:["4M","5M"]}}, - charmeleon:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonclaw:["3M","4M","5M"],dragonrage:["3L48","4L17","5L17"],dynamicpunch:["3T"],echoedvoice:["5M"],ember:["3L1","3L7","4L1","4L7","5L1","5L7"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firefang:["4L28","5L28"],firepledge:["5T"],firepunch:["3T","4T","5T"],firespin:["3L55","4L43","5L50"],flameburst:["5L32"],flamecharge:["5M"],flamethrower:["3M","3L34","4M","4L39","5M","5L43"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],growl:["3L1","4L1","5L1"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],incinerate:["5M"],inferno:["5L54"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],metalclaw:["3L13"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M"],protect:["3M","4M","5M"],rage:["3L20"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],round:["5M"],scaryface:["3L27","4L21","5L21"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],slash:["3L41","4L32","5L39"],sleeptalk:["3T","4M","5T"],smokescreen:["3L13","3L20","4L10","5L10"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],thunderpunch:["4T","5T"],toxic:["3M","4M","5M"],willowisp:["4M","5M"],outrage:["5T"]}}, - charizard:{learnset:{aerialace:["3M","4M","5M"],aircutter:["4T"],airslash:["4L1","5L1"],attract:["3M","4M","5M"],blastburn:["3T","4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M"],defensecurl:["3T"],defog:["4M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonclaw:["3M","4M","4L1","5M","5L1"],dragonpulse:["4M","5T"],dragonrage:["3L54","4L17","5L17","3S0"],dragontail:["5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],ember:["3L1","3L7","4L1","4L7","5L1","5L7"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firefang:["4L28","5L28"],firepledge:["5T"],firepunch:["3T","4T","5T"],firespin:["3L64","4L49","5L56","3S0"],flameburst:["5L32"],flamecharge:["5M"],flamethrower:["3M","3L34","4M","4L42","5M","5L47"],flareblitz:["4L66","5L77","6L0"],fling:["4M","5M"],fly:["3M","4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1"],headbutt:["4T"],heatwave:["3L1","4L59","4T","5L71","5T","6L0"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],inferno:["5L62"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],metalclaw:["3L1","3L13"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],outrage:["4T","5T"],overheat:["3M","4M","5M"],protect:["3M","4M","5M"],rage:["3L20"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],roost:["4M","5T"],round:["5M"],scaryface:["3L27","4L21","5L21"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","4L1","5M","5L1"],skydrop:["5M"],slash:["3L44","4L32","5L41","3S0"],sleeptalk:["3T","4M","5T"],smokescreen:["3L1","3L13","3L20","4L1","4L10","5L1","5L10"],snore:["3T","4T","5T"],solarbeam:["4M","5M"],steelwing:["3M","4M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],tailwind:["4T","5T"],thunderpunch:["4T","5T"],toxic:["3M","4M","5M"],twister:["4T"],willowisp:["4M","5M"],wingattack:["3L36","4L36","5L36","3S0"]}}, - squirtle:{learnset:{aquajet:["4E","5E"],aquaring:["4E","5E"],aquatail:["4L28","4T","5L28","5T"],attract:["3M","4M","5M"],bite:["3L18","4L16","5L16"],blizzard:["3M","4M","5M"],block:["5S2"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],brine:["4M","5E"],bubble:["3L7","4L7","5L7","3S0","5S1"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M"],fakeout:["4E","5E"],falseswipe:["5S2"],flail:["3E","4E","5E"],fling:["4M","5M"],focuspunch:["3M","4M"],followme:["5S2"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],gyroball:["4M","5M"],hail:["3M","4M","5M"],haze:["3E","4E","5E"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydrocannon:["5S2"],hydropump:["3L47","4L37","4L40","5L40"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irondefense:["4T","4L34","5L34","5T"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mirrorcoat:["3E","4E","5E"],mist:["3E","4E","5E"],muddywater:["4E","5E"],mudslap:["3T","4T"],mudsport:["3E","4E","5E"],naturalgift:["4M"],protect:["3M","3L28","4M","4L22","5M","5L22"],raindance:["3M","3L33","4M","4L34","4L37","5M","5L37"],rapidspin:["3L23","4L19","5L19"],refresh:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],rollout:["3T","4T"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],skullbash:["3L40","4L31","5L31"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1","3S0","5S1"],tailwhip:["3L4","4L4","5L4","3S0","5S1"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L13","4L13","5L13"],waterpledge:["5T"],waterpulse:["3M","4M","4L25","5L25"],waterspout:["4E","5E"],whirlpool:["4M"],withdraw:["3L10","4L10","5L10","3S0","5S1"],yawn:["3E","4E","5E"],zenheadbutt:["4T","5T"]}}, - wartortle:{learnset:{aquatail:["4L32","4T","5L32","5T"],attract:["3M","4M","5M"],bite:["3L19","4L16","5L16"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],brine:["4M"],bubble:["3L1","3L7","4L1","4L7","5L1","5L7"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gyroball:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["3L53","4L44","4L48","5L48"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irondefense:["4T","4L40","5L40","5T"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","3L31","4M","4L24","5M","5L24"],raindance:["3M","3L37","4M","4L40","4L44","5M","5L44"],rapidspin:["3L25","4L20","5L20"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],rollout:["3T","4T"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],skullbash:["3L45","4L36","5L36"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],tailwhip:["3L1","3L4","4L1","4L4","5L1","5L4"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L13","4L13","5L13"],waterpledge:["5T"],waterpulse:["3M","4M","4L28","5L28"],whirlpool:["4M"],withdraw:["3L10","4L10","5L10"],zenheadbutt:["4T","5T"]}}, - blastoise:{learnset:{aquatail:["4L32","4T","5L32","5T"],attract:["3M","4M","5M"],avalanche:["4M"],bite:["3L19","4L16","5L16"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],brine:["4M"],bubble:["3L1","3L7","4L1","4L7","5L1","5L7"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragontail:["5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flashcannon:["4M","4L1","5M","5L1"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gyroball:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydrocannon:["3T","4T","5T"],hydropump:["3L68","4L53","4L60","5L60","3S0"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irondefense:["4T","4L46","5L46","5T"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","3L31","4M","4L24","5M","5L24","3S0"],raindance:["3M","3L42","4M","4L46","4L53","5M","5L53","3S0"],rapidspin:["3L25","4L20","5L20"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],rollout:["3T","4T"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],signalbeam:["4T","5T"],skullbash:["3L55","4L39","5L39","3S0"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],tailwhip:["3L1","3L4","4L1","4L4","5L1","5L4"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L13","4L13","5L13"],waterpledge:["5T"],waterpulse:["3M","4M","4L28","5L28"],whirlpool:["4M"],withdraw:["3L1","3L10","4L1","4L10","5L1","5L10"],zenheadbutt:["4T","5T"]}}, - caterpie:{learnset:{bugbite:["4L15","4T","5L15","5T"],snore:["4T","5T"],stringshot:["3L1","4L1","4T","5L1"],tackle:["3L1","4L1","5L1"],electroweb:["5T"]}}, - metapod:{learnset:{bugbite:["4T","5T"],harden:["3L1","3L7","4L1","4L7","5L1","5L7"],irondefense:["4T","5T"],stringshot:["4T"],electroweb:["5T"]}}, - butterfree:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M","3S0"],aircutter:["4T","5D"],attract:["3M","4M","5M"],bugbite:["4T","5T"],bugbuzz:["4L40","5L42"],captivate:["4M","4L36","5L40"],confusion:["3L1","3L10","4L1","4L10","5L1","5L10","5D"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],gust:["3L28","4L16","5L16"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],mimic:["3T"],morningsun:["3S0"],naturalgift:["4M"],nightmare:["3T"],ominouswind:["4T"],poisonpowder:["3L13","4L12","5L12"],protect:["3M","4M","5M"],psybeam:["3L34","4L24","5L24"],psychic:["3M","4M","5M","3S0"],psychup:["4M","5M"],quiverdance:["5L46"],ragepowder:["5L34"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5D","5T"],round:["5M"],safeguard:["3M","3L40","4M","4L34","5M","5L36"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],silverwind:["3L47","4M","4L28","5L28"],skillswap:["3M","4M","5T"],sleeppowder:["3L15","4L12","5L12","3S0"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],stunspore:["3L14","4L12","5L12"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3L18","4L18","5L18"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4L30","4T","5L30","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uturn:["4M","5M"],venoshock:["5M"],whirlwind:["3L23","4L22","5L22"],electroweb:["5T"]}}, - weedle:{learnset:{bugbite:["4L15","4T","5L15","5T"],poisonsting:["3L1","4L1","5L1"],stringshot:["3L1","4L1","4T","5L1"],electroweb:["5T"]}}, - kakuna:{learnset:{bugbite:["4T","5T"],harden:["3L1","3L7","4L1","4L7","5L1","5L7"],irondefense:["4T","5T"],stringshot:["4T"],electroweb:["5T"]}}, - beedrill:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M"],agility:["3L40","4L31","5L31"],aircutter:["4T","5D"],assurance:["4L34","5L34"],attract:["3M","4M","5M"],batonpass:["3S0"],brickbreak:["3M","4M","5M"],bugbite:["4T","5T"],captivate:["4M"],cut:["3M","4M","5M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endeavor:["3L45","4L40","4T","5L40","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["4M","5M"],flash:["4M","5M"],focusenergy:["3L15","4L13","5L13"],frustration:["3M","4M","5M"],furyattack:["3L1","3L10","4L1","4L10","5L1","5L10","5D"],furycutter:["3T","4T","5D"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],knockoff:["4T","5T"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","5M"],pinmissile:["3L35","4L28","5L28"],poisonjab:["4M","4L37","5M","5L37"],protect:["3M","4M","5M"],pursuit:["3L30","4L22","5L22"],rage:["3L25","4L19","5L19"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],roost:["4M","5T"],round:["5M"],secretpower:["3M","4M"],silverwind:["4M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M","3S0"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","3S0"],tailwind:["4T","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],toxicspikes:["4L25","5L25"],twineedle:["3L20","4L16","5L16","3S0"],uturn:["4M","5M"],venoshock:["5M"],xscissor:["4M","5M"],drillrun:["5T"],electroweb:["5T"]}}, - pidgey:{learnset:{aerialace:["3M","4M","5M"],agility:["3L39","4L29","5L29"],aircutter:["3E","4E","4T","5E"],airslash:["4E","4L49","5E","5L49"],attract:["3M","4M","5M"],bravebird:["4E","5E"],captivate:["4M"],defog:["4M","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E"],featherdance:["3L31","4L25","5L25"],fly:["3M","4M","5M"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],gust:["3L9","4L9","5L9","5D"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hurricane:["5L53"],mimic:["3T"],mirrormove:["3L47","4L45","5L45"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],protect:["3M","4M","5M"],pursuit:["3E","4E","5E"],quickattack:["3L13","4L13","5L13"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","4L37","5L37","5T"],round:["5M"],sandattack:["3L5","4L5","5L5"],secretpower:["3M","4M","5D"],skyattack:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3E","3M","4E","4M","5E","5D"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],tailwind:["4L41","4T","5L41","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4L21","4T","5L21"],uproar:["4E","4T","5E","5T"],uturn:["4M","5M"],whirlwind:["3L19","4L17","5L17"],wingattack:["3L25","4L33","5L33"],workup:["5M"]}}, - pidgeotto:{learnset:{aerialace:["3M","4M","5M"],agility:["3L43","4L32","5L32"],aircutter:["4T"],airslash:["4L57","5L57"],attract:["3M","4M","5M"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],featherdance:["3L34","4L27","5L27","3S0"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],gust:["3L1","3L9","4L1","4L9","5L1","5L9"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hurricane:["5L62"],mimic:["3T"],mirrormove:["3L52","4L52","5L52"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],protect:["3M","4M","5M"],quickattack:["3L13","4L13","5L13"],raindance:["3M","4M","5M"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","4L42","5L42","5T"],round:["5M"],sandattack:["3L1","3L5","4L1","4L5","5L1","5L5"],secretpower:["3M","4M"],skyattack:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M","3S0"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],tailwind:["4L47","4T","5L47","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4L22","4T","5L22"],uproar:["4T","5T"],uturn:["4M","5M"],whirlwind:["3L20","4L17","5L17"],wingattack:["3L27","4L37","5L37","3S0"],workup:["5M"]}}, - pidgeot:{learnset:{aerialace:["3M","4M","5M"],agility:["3L48","4L32","5L32"],aircutter:["4T"],airslash:["4L62","5L62"],attract:["3M","4M","5M"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],featherdance:["3L34","4L27","5L27"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gust:["3L1","3L9","4L1","4L9","5L1","5L9"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hurricane:["5L68"],hyperbeam:["3M","4M","5M"],mimic:["3T"],mirrormove:["3L62","4L56","5L56","5S0"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],protect:["3M","4M","5M"],quickattack:["3L1","3L13","4L1","4L13","5L1","5L13"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","4L44","5L44","5T"],round:["5M"],sandattack:["3L1","3L5","4L1","4L5","5L1","5L5"],secretpower:["3M","4M"],skyattack:["3T","4T","5T","5S0"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],tailwind:["4L50","4T","5L50","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4L22","4T","5L22"],uproar:["4T","5T"],uturn:["4M","5M"],whirlwind:["3L20","4L17","5L17","5S0"],wingattack:["3L27","4L38","5L38","5S0"],workup:["5M"]}}, - rattata:{learnset:{assurance:["4L25","5L25"],attract:["3M","4M","5M"],bite:["3E","4E","4L10","5E","5L10"],blizzard:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M"],chargebeam:["4M","5M"],counter:["3E","3T","4E","5E"],crunch:["4L22","5L22"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T","4L31","5L31"],doubleteam:["3M","4M","5M"],endeavor:["3L41","4L34","4T","5L34","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],finalgambit:["5E"],flamewheel:["3E","4E","5E"],focusenergy:["3L20","4L7","5L7"],frustration:["3M","4M","5M"],furyswipes:["3E","4E","5E"],grassknot:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperfang:["3L13","4L16","5L16"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5D","5T"],lastresort:["4E","4T","5E","5T"],mefirst:["4E","5E","5D"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],pluck:["4M","5M"],protect:["3M","4M","5M"],pursuit:["3L27","4L13","5L13"],quickattack:["3L7","4L4","5L4","5D"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],revenge:["5E"],reversal:["3E","4E","5E"],rocksmash:["3M","4M","5M"],round:["5M"],screech:["3E","4E","5E"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],suckerpunch:["4L19","4T","5L19"],sunnyday:["3M","4M","5M"],superfang:["3L34","4L28","4T","5L28","5T"],swagger:["3E","3T","4E","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],tailwhip:["3L1","4L1","5L1"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],uproar:["3E","4E","5E","5T"],uturn:["4M","5M"],wildcharge:["5M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"]}}, - raticate:{learnset:{assurance:["4L29","5L29"],attract:["3M","4M","5M"],bite:["4L10","5L10"],blizzard:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M"],chargebeam:["4M","5M"],counter:["3T"],crunch:["4L24","5L24"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T","4L39","5L39"],doubleteam:["3M","4M","5M"],endeavor:["3L50","4L44","4T","5L44","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],focusenergy:["4L1","4L7","5L1","5L7"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],hyperfang:["3L13","4L16","5L16","3S0"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],pluck:["4M","5M"],protect:["3M","4M","5M"],pursuit:["3L30","4L13","5L13"],quickattack:["3L1","3L7","4L1","4L4","5L1","5L4"],raindance:["3M","4M","5M"],refresh:["3S0"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],scaryface:["3L20","4L20","5L20","3S0"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4L19","4T","5L19"],sunnyday:["3M","4M","5M"],superfang:["3L40","4L34","4T","5L34","5T","3S0"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["4M","4L1","5M","5L1"],tackle:["3L1","4L1","5L1"],tailwhip:["3L1","4L1","5L1"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],uturn:["4M","5M"],wildcharge:["5M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],uproar:["5T"]}}, - spearow:{learnset:{aerialace:["3M","3L25","4M","4L17","5M","5L17","3S0"],agility:["3L43","4L25","5L25"],aircutter:["4T"],assurance:["4L29","5L29"],astonish:["3E","4E","5E"],attract:["3M","4M","5M"],batonpass:["3S0"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drillpeck:["3L37","4L37","5L37"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E","5D"],falseswipe:["3E","4E","5M","3S0"],featherdance:["4E","5E"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],furyattack:["3L13","4L9","5L9"],growl:["3L1","4L1","5L1"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],leer:["3L7","4L5","5L5","3S0"],mimic:["3T"],mirrormove:["3L31","4L21","5L21"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],peck:["3L1","4L1","5L1","5D"],pluck:["4M","5M"],protect:["3M","4M","5M"],pursuit:["3L19","4L13","5L13"],quickattack:["3E","4E","5E"],raindance:["3M","4M","5M"],razorwind:["5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","4L33","5L33","5T"],round:["5M"],scaryface:["3E","4E","5E"],secretpower:["3M","4M"],skyattack:["3E","3T","4E","5E","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M","5E","5D"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],triattack:["3E","4E","5E"],twister:["4T"],uproar:["4E","5E","5T"],uturn:["4M","5M"],whirlwind:["4E","5E"],workup:["5M"],drillrun:["5T"]}}, + voodoom:{learnset:{acupressure:["4L40"],astonish:["4L1"],attract:["4M"],aurasphere:["4L45"],batonpass:["4E"],beatup:["4L55"],brickbreak:["4M"],bulkup:["4M"],captivate:["4M"],charge:["4L19"],closecombat:["4L35"],copycat:["4L1"],counter:["4T"],darkpulse:["4M"],drainpunch:["4M"],dreameater:["4M"],earthquake:["4M"],endure:["4M"],facade:["4M"],feintattack:["4L30"],fling:["4M"],focusblast:["4M"],focuspunch:["4M"],followme:["4L20"],frustration:["4M"],gigaimpact:["4M"],grudge:["4L15"],hiddenpower:["4M"],hyperbeam:["4M"],icepunch:["4T"],imprison:["4E"],knockoff:["4T"],lowkick:["4T"],machpunch:["4E"],magiccoat:["4T"],memento:["4E"],metronome:["4T"],mimic:["4T"],mudslap:["4T"],naturalgift:["4M"],nightmare:["4T"],nightslash:["4L1"],painsplit:["4L1","4L7","4T"],payback:["4M"],perishsong:["4E"],pinmissile:["4L25"],protect:["4M"],psychic:["4M"],pursuit:["4E"],rest:["4M"],"return":["4M"],revenge:["4L1"],rockslide:["4M"],rocksmash:["4M"],screech:["4E"],secretpower:["4M"],shockwave:["4M"],sleeptalk:["4M"],smellingsalts:["4E"],snatch:["4M"],snore:["4T"],spite:["4L1","4L11","4T"],stoneedge:["4M"],strength:["4M"],substitute:["4L50","4M"],sunnyday:["4M"],swagger:["4M"],taunt:["4M"],thief:["4M"],thunderwave:["4M"],torment:["4M"],toxic:["4M"],uproar:["4T"],vacuumwave:["4T"],wrap:["4L1"]}}, + bulbasaur:{learnset:{amnesia:["4E","5E","6E"],attract:["3M","4M","5M","6M"],block:["5S3"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],charm:["3E","4E","5E","6E"],curse:["3E","4E","5E","6E"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],doubleedge:["3T","4L27","5L27","6L27"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M","5E","6E"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],falseswipe:["5S3"],flash:["3M","4M","5M","6M"],frenzyplant:["5S3"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5E","5T","6E"],grassknot:["4M","5M","6M"],grasspledge:["5T","6T"],grasswhistle:["3E","4E","5E","6E"],growl:["3L4","4L3","5L3","3S1","5S2","6L3"],growth:["3L32","4L25","5L25","3S0","6L25"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],ingrain:["4E","5E","6E"],knockoff:["4T","5T"],leafstorm:["4E","5E","6E"],leechseed:["3L7","4L7","5L7","3S1","5S2","6L7"],lightscreen:["3E","4E","5M","6M"],magicalleaf:["3E","4E","5E","6E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],naturepower:["4E","5E","6M","6E"],petaldance:["3E","4E","5E","6E"],poisonpowder:["3L15","4L13","5L13","6L13"],powerwhip:["4E","5E","6E"],protect:["3M","4M","5M","6M"],razorleaf:["3L20","4L19","5L19","6L19"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3E","4E","5M","6M"],secretpower:["3M","4M"],seedbomb:["4L37","4T","5L37","5T","6L37"],skullbash:["3E","4E","5E","6E"],sleeppowder:["3L15","4L13","5L13","6L13"],sleeptalk:["3T","4M","5T","6M"],sludge:["4E","5E","6E"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","3L46","4M","5M","3S0","6M"],strength:["3M","4M","5M","6M"],stringshot:["4T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3L25","4L21","5L21","3S0","6L21"],swordsdance:["3T","4M","5M","6M"],synthesis:["3L39","4L33","4T","5L33","3S0","5T","6L33"],tackle:["3L1","4L1","5L1","3S1","5S2","6L1"],takedown:["4L15","5L15","6L15"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],vinewhip:["3L10","4L9","5L9","3S1","5S2","6L9"],weatherball:["5S3"],worryseed:["4L31","4T","5L31","5T","6L31"],bind:["5T"],confide:["6M"],grassyterrain:["6E"]}}, + ivysaur:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],doubleedge:["3T","4L31","5L31","6L31"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M","6M"],grasspledge:["5T","6T"],growl:["3L1","3L4","4L1","4L3","5L1","5L3","6L1","6L3"],growth:["3L38","4L28","5L28","6L28"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],knockoff:["4T","5T"],leechseed:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],lightscreen:["5M","6M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],poisonpowder:["3L15","4L13","5L13","6L13"],protect:["3M","4M","5M","6M"],razorleaf:["3L22","4L20","5L20","6L20"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeppowder:["3L15","4L13","5L13","6L13"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","3L56","4M","4L44","5M","5L44","6L44","6M"],strength:["3M","4M","5M","6M"],stringshot:["4T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3L29","4L23","5L23","6L23"],swordsdance:["3T","4M","5M","6M"],synthesis:["3L47","4L39","4T","5L39","5T","6L39"],tackle:["3L1","4L1","5L1","6L1"],takedown:["4L15","5L15","6L15"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],vinewhip:["3L10","4L9","5L9","6L9"],worryseed:["4L36","4T","5L36","5T","6L36"],bind:["5T"],naturepower:["6M"],confide:["6M"]}}, + venusaur:{learnset:{attract:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],bulldoze:["5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],doubleedge:["3T","4L31","5L31","6L31"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frenzyplant:["3T","4T","5T","6T"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],grasspledge:["5T","6T"],growl:["3L1","3L4","4L1","4L3","5L1","5L3","6L1","6L3"],growth:["3L41","4L28","5L28","6L28"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],knockoff:["4T","5T"],leechseed:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],lightscreen:["5M","6M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],petaldance:["4L32","5L32","6L32"],poisonpowder:["3L15","4L13","5L13","6L13"],protect:["3M","4M","5M","6M"],razorleaf:["3L22","4L20","5L20","6L20"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeppowder:["3L15","4L13","5L13","6L13"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","3L65","4M","4L53","5M","5L53","6L53","6M"],strength:["3M","4M","5M","6M"],stringshot:["4T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3L29","4L23","5L23","6L23"],swordsdance:["3T","4M","5M","6M"],synthesis:["3L53","4L45","4T","5L45","5T","6L45"],tackle:["3L1","4L1","5L1","6L1"],takedown:["4L15","5L15","6L15"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],vinewhip:["3L1","3L10","4L1","4L9","5L1","5L9","6L1","6L9"],worryseed:["4L39","4T","5L39","5T","6L39"],bind:["5T"],petalblizzard:["6L50"],naturepower:["6M"],confide:["6M"]}}, + charmander:{learnset:{acrobatics:["5S6"],aerialace:["3M","4M","5M","6M"],ancientpower:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],beatup:["3E","4E","5E","6E"],bellydrum:["3E","4E","5E","6E"],bite:["3E","4E","5E","6E"],blastburn:["5S6"],block:["5S6"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],counter:["3T","4E","5E","6E"],crunch:["4E","5E","6E"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonclaw:["3M","4M","5M","6M"],dragondance:["3E","4E","5E","6E"],dragonpulse:["5E","6E"],dragonrage:["3L43","4L16","5L16","6L16"],dragonrush:["4E","5E","6E"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],ember:["3L7","4L7","5L7","3S0","5S4","6L7"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["5S6"],fireblast:["3M","4M","5M","6M"],firefang:["4L25","5L25","6L25"],firepledge:["5T","6T"],firepunch:["3T","4T","5T"],firespin:["3L49","4L37","5L43","6L43"],flameburst:["5L28","6L28"],flamecharge:["5M","6M"],flamethrower:["3M","3L31","4M","4L34","5M","5L37","6L37","6M"],flareblitz:["4E","5E","6E"],fling:["4M","5M","6M"],focuspunch:["3M","4M","5E","6E"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],growl:["3L1","4L1","5L1","3S0","5S4","6L1"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","4S1","4S2","4S3","4S5","6M"],honeclaws:["5M","6M"],howl:["4S1","4S2","4S3","4S5"],incinerate:["5M","6M"],inferno:["5L46","6L46"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],metalclaw:["3L13","4E","5E","6E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["3E","4E","5E","5T","6E"],overheat:["3M","4M","5M","6M"],protect:["3M","4M","5M","6M"],quickattack:["4S1","4S2","4S3","4S5"],rage:["3L19"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","4S1","4S2","4S3","4S5","6M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scaryface:["3L25","4L19","5L19","6L19"],scratch:["3L1","4L1","5L1","3S0","5S4","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],slash:["3L37","4L28","5L34","6L34"],sleeptalk:["3T","4M","5T","6M"],smokescreen:["3L13","3L19","4L10","5L10","5S4","6L10"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3E","3T","4E","4M","5M","6M"],thunderpunch:["4T","5T"],toxic:["3M","4M","5M","6M"],willowisp:["4M","5M","6M"],poweruppunch:["6M"],confide:["6M"]}}, + charmeleon:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonclaw:["3M","4M","5M","6M"],dragonrage:["3L48","4L17","5L17","6L17"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],ember:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firefang:["4L28","5L28","6L28"],firepledge:["5T","6T"],firepunch:["3T","4T","5T"],firespin:["3L55","4L43","5L50","6L50"],flameburst:["5L32","6L32"],flamecharge:["5M","6M"],flamethrower:["3M","3L34","4M","4L39","5M","5L43","6L43","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],growl:["3L1","4L1","5L1","6L1"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],incinerate:["5M","6M"],inferno:["5L54","6L54"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],metalclaw:["3L13"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],protect:["3M","4M","5M","6M"],rage:["3L20"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scaryface:["3L27","4L21","5L21","6L21"],scratch:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],slash:["3L41","4L32","5L39","6L39"],sleeptalk:["3T","4M","5T","6M"],smokescreen:["3L13","3L20","4L10","5L10","6L10"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],thunderpunch:["4T","5T"],toxic:["3M","4M","5M","6M"],willowisp:["4M","5M","6M"],outrage:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + charizard:{learnset:{aerialace:["3M","4M","5M","6M"],aircutter:["4T"],airslash:["4L1","5L1","6L1"],attract:["3M","4M","5M","6M"],blastburn:["3T","4T","5T","6T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],defog:["4M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonclaw:["3M","4M","4L1","5M","5L1","6L1","6M"],dragonpulse:["4M","5T"],dragonrage:["3L54","4L17","5L17","3S0","6L17"],dragontail:["5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],ember:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firefang:["4L28","5L28","6L28"],firepledge:["5T","6T"],firepunch:["3T","4T","5T"],firespin:["3L64","4L49","5L56","3S0","6L56"],flameburst:["5L32","6L32"],flamecharge:["5M","6M"],flamethrower:["3M","3L34","4M","4L42","5M","5L47","6L47","6M"],flareblitz:["4L66","5L77","6L1","6L77"],fling:["4M","5M","6M"],fly:["3M","4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],headbutt:["4T"],heatwave:["3L1","4L59","4T","5L71","5T","6L1","6L71"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],inferno:["5L62","6L62"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],metalclaw:["3L1","3L13"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],outrage:["4T","5T"],overheat:["3M","4M","5M","6M"],protect:["3M","4M","5M","6M"],rage:["3L20"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],scaryface:["3L27","4L21","5L21","6L21"],scratch:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","4L1","5M","5L1","6L1","6M"],skydrop:["5M","6M"],slash:["3L44","4L32","5L41","3S0","6L41"],sleeptalk:["3T","4M","5T","6M"],smokescreen:["3L1","3L13","3L20","4L1","4L10","5L1","5L10","6L1","6L10"],snore:["3T","4T","5T"],solarbeam:["4M","5M","6M"],steelwing:["3M","4M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],tailwind:["4T","5T"],thunderpunch:["4T","5T"],toxic:["3M","4M","5M","6M"],twister:["4T"],willowisp:["4M","5M","6M"],wingattack:["3L36","4L36","5L36","3S0","6L36"],poweruppunch:["6M"],confide:["6M"]}}, + squirtle:{learnset:{aquajet:["4E","5E","6E"],aquaring:["4E","5E","6E"],aquatail:["4L28","4T","5L28","5T","6L28"],attract:["3M","4M","5M","6M"],bite:["3L18","4L16","5L16","6L16"],blizzard:["3M","4M","5M","6M"],block:["5S2"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],brine:["4M","5E","6E"],bubble:["3L7","4L7","5L7","3S0","5S1","6L13"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fakeout:["4E","5E","6E"],falseswipe:["5S2"],flail:["3E","4E","5E","6E"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],followme:["5S2"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],gyroball:["4M","5M","6M"],hail:["3M","4M","5M","6M"],haze:["3E","4E","5E","6E"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydrocannon:["5S2"],hydropump:["3L47","4L37","4L40","5L40","6L40"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irondefense:["4T","4L34","5L34","5T","6L34"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mirrorcoat:["3E","4E","5E","6E"],mist:["3E","4E","5E","6E"],muddywater:["4E","5E","6E"],mudslap:["3T","4T"],mudsport:["3E","4E","5E","6E"],naturalgift:["4M"],protect:["3M","3L28","4M","4L22","5M","5L22","6L22","6M"],raindance:["3M","3L33","4M","4L34","4L37","5M","5L37","6L37","6M"],rapidspin:["3L23","4L19","5L19","6L19"],refresh:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],skullbash:["3L40","4L31","5L31","6L31"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","3S0","5S1","6L1"],tailwhip:["3L4","4L4","5L4","3S0","5S1","6L4"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L13","4L13","5L13","6L7"],waterpledge:["5T","6T"],waterpulse:["3M","4M","4L25","5L25","6L25"],waterspout:["4E","5E","6E"],whirlpool:["4M"],withdraw:["3L10","4L10","5L10","3S0","5S1","6L10"],yawn:["3E","4E","5E","6E"],zenheadbutt:["4T","5T"],poweruppunch:["6M"],confide:["6M"],aurasphere:["6E"],dragonpulse:["6E"],flashcannon:["6E"]}}, + wartortle:{learnset:{aquatail:["4L32","4T","5L32","5T","6L32"],attract:["3M","4M","5M","6M"],bite:["3L19","4L16","5L16","6L16"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],brine:["4M"],bubble:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L13"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gyroball:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L53","4L44","4L48","5L48","6L48"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irondefense:["4T","4L40","5L40","5T","6L40"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","3L31","4M","4L24","5M","5L24","6L24","6M"],raindance:["3M","3L37","4M","4L40","4L44","5M","5L44","6L44","6M"],rapidspin:["3L25","4L20","5L20","6L20"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],skullbash:["3L45","4L36","5L36","6L36"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],tailwhip:["3L1","3L4","4L1","4L4","5L1","5L4","6L1","6L4"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L13","4L13","5L13","6L7"],waterpledge:["5T","6T"],waterpulse:["3M","4M","4L28","5L28","6L28"],whirlpool:["4M"],withdraw:["3L10","4L10","5L10","6L10"],zenheadbutt:["4T","5T"],poweruppunch:["6M"],confide:["6M"]}}, + blastoise:{learnset:{aquatail:["4L32","4T","5L32","5T","6L32"],attract:["3M","4M","5M","6M"],avalanche:["4M"],bite:["3L19","4L16","5L16","6L16"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],brine:["4M"],bubble:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L13"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragontail:["5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flashcannon:["4M","4L1","5M","5L1","6L1","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gyroball:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydrocannon:["3T","4T","5T","6T"],hydropump:["3L68","3S0","4L53","4L60","5L60","6L60"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irondefense:["4T","4L46","5L46","5T","6L46"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","3L31","3S0","4M","4L24","5M","5L24","6L24","6M"],raindance:["3M","3L42","3S0","4M","4L46","4L53","5M","5L53","6L53","6M"],rapidspin:["3L25","4L20","5L20","6L20"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],signalbeam:["4T","5T"],skullbash:["3L55","3S0","4L39","5L39","6L39"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],tailwhip:["3L1","3L4","4L1","4L4","5L1","5L4","6L1","6L4"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L13","4L13","5L13","6L7"],waterpledge:["5T","6T"],waterpulse:["3M","4M","4L28","5L28","6L28"],whirlpool:["4M"],withdraw:["3L1","3L10","4L1","4L10","5L1","5L10","6L1","6L10"],zenheadbutt:["4T","5T"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + caterpie:{learnset:{bugbite:["4L15","4T","5L15","5T","6L15"],snore:["4T","5T"],stringshot:["3L1","4L1","4T","5L1","6L1"],tackle:["3L1","4L1","5L1","6L1"],electroweb:["5T"]}}, + metapod:{learnset:{bugbite:["4T","5T"],harden:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],irondefense:["4T","5T"],stringshot:["4T"],electroweb:["5T"]}}, + butterfree:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","3S0","6M"],aircutter:["4T","5D"],attract:["3M","4M","5M","6M"],bugbite:["4T","5T"],bugbuzz:["4L40","5L42","6L42"],captivate:["4M","4L36","5L40","6L40"],confusion:["3L1","3L10","4L1","4L10","5L1","5L10","5D","6L1","6L10"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],gust:["3L28","4L16","5L16","6L16"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],mimic:["3T"],morningsun:["3S0"],naturalgift:["4M"],nightmare:["3T"],ominouswind:["4T"],poisonpowder:["3L13","4L12","5L12","6L12"],protect:["3M","4M","5M","6M"],psybeam:["3L34","4L24","5L24","6L24"],psychic:["3M","4M","5M","3S0","6M"],psychup:["4M","5M","6M"],quiverdance:["5L46","6L46"],ragepowder:["5L34","6L34"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5D","5T","6M"],round:["5M","6M"],safeguard:["3M","3L40","4M","4L34","5M","5L36","6L36","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],silverwind:["3L47","4M","4L28","5L28","6L28"],skillswap:["3M","4M","5T"],sleeppowder:["3L15","4L12","5L12","3S0","6L12"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],stunspore:["3L14","4L12","5L12","6L12"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3L18","4L18","5L18","6L18"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4L30","4T","5L30","5T","6L30"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],venoshock:["5M","6M"],whirlwind:["3L23","4L22","5L22","6L22"],electroweb:["5T"],infestation:["6M"],confide:["6M"]}}, + weedle:{learnset:{bugbite:["4L15","4T","5L15","5T","6L15"],poisonsting:["3L1","4L1","5L1","6L1"],stringshot:["3L1","4L1","4T","5L1","6L1"],electroweb:["5T"]}}, + kakuna:{learnset:{bugbite:["4T","5T"],harden:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],irondefense:["4T","5T"],stringshot:["4T"],electroweb:["5T"]}}, + beedrill:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],agility:["3L40","4L31","5L31","6L31"],aircutter:["4T","5D"],assurance:["4L34","5L34","6L34"],attract:["3M","4M","5M","6M"],batonpass:["3S0"],brickbreak:["3M","4M","5M","6M"],bugbite:["4T","5T"],captivate:["4M"],cut:["3M","4M","5M","6M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endeavor:["3L45","4L40","4T","5L40","5T","6L40"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["4M","5M","6M"],flash:["4M","5M","6M"],focusenergy:["3L15","4L13","5L13","6L13"],frustration:["3M","4M","5M","6M"],furyattack:["3L1","3L10","4L1","4L10","5L1","5L10","5D","6L1","6L10"],furycutter:["3T","4T","5D"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],knockoff:["4T","5T"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","5M","6M"],pinmissile:["3L35","4L28","5L28","6L28"],poisonjab:["4M","4L37","5M","5L37","6L37","6M"],protect:["3M","4M","5M","6M"],pursuit:["3L30","4L22","5L22","6L22"],rage:["3L25","4L19","5L19","6L19"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],secretpower:["3M","4M"],silverwind:["4M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","3S0","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","3S0","6M"],tailwind:["4T","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],toxicspikes:["4L25","5L25","6L25"],twineedle:["3L20","4L16","5L16","3S0","6L16"],uturn:["4M","5M","6M"],venoshock:["5M","6M"],xscissor:["4M","5M","6M"],drillrun:["5T"],electroweb:["5T"],fellstinger:["6L45"],infestation:["6M"],confide:["6M"]}}, + pidgey:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L39","4L29","5L29","6L29"],aircutter:["3E","4E","4T","5E","6E"],airslash:["4E","4L49","5E","5L49","6L49","6E"],attract:["3M","4M","5M","6M"],bravebird:["4E","5E","6E"],captivate:["4M"],defog:["4M","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","6E"],featherdance:["3L31","4L25","5L25","6L25"],fly:["3M","4M","5M","6M"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],gust:["3L9","4L9","5L9","5D","6L9"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hurricane:["5L53","6L53"],mimic:["3T"],mirrormove:["3L47","4L45","5L45","6L45"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],pursuit:["3E","4E","5E","6E"],quickattack:["3L13","4L13","5L13","6L13"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","4L37","5L37","5T","6L37","6M"],round:["5M","6M"],sandattack:["3L5","4L5","5L5","6L5"],secretpower:["3M","4M","5D"],skyattack:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3E","3M","4E","4M","5E","5D","6M","6E"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],tailwind:["4L41","4T","5L41","5T","6L41"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4L21","4T","5L21","6L21"],uproar:["4E","4T","5E","5T","6E"],uturn:["4M","5M","6M"],whirlwind:["3L19","4L17","5L17","6L17"],wingattack:["3L25","4L33","5L33","6L33"],workup:["5M"],confide:["6M"]}}, + pidgeotto:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L43","4L32","5L32","6L32"],aircutter:["4T"],airslash:["4L57","5L57","6L57"],attract:["3M","4M","5M","6M"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],featherdance:["3L34","4L27","5L27","3S0","6L27"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gust:["3L1","3L9","4L1","4L9","5L1","5L9","6L1","6L9"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hurricane:["5L62","6L62"],mimic:["3T"],mirrormove:["3L52","4L52","5L52","6L52"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],quickattack:["3L13","4L13","5L13","6L13"],raindance:["3M","4M","5M","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","4L42","5L42","5T","6L42","6M"],round:["5M","6M"],sandattack:["3L1","3L5","4L1","4L5","5L1","5L5","6L1","6L5"],secretpower:["3M","4M"],skyattack:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M","3S0","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],tailwind:["4L47","4T","5L47","5T","6L47"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4L22","4T","5L22","6L22"],uproar:["4T","5T"],uturn:["4M","5M","6M"],whirlwind:["3L20","4L17","5L17","6L17"],wingattack:["3L27","4L37","5L37","3S0","6L37"],workup:["5M"],confide:["6M"]}}, + pidgeot:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L48","4L32","5L32","6L32"],aircutter:["4T"],airslash:["4L62","5L62","6L62"],attract:["3M","4M","5M","6M"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],featherdance:["3L34","4L27","5L27","6L27"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gust:["3L1","3L9","4L1","4L9","5L1","5L9","6L1","6L9"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hurricane:["5L68","6L1","6L68"],hyperbeam:["3M","4M","5M","6M"],mimic:["3T"],mirrormove:["3L62","4L56","5L56","5S0","6L56"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],quickattack:["3L1","3L13","4L1","4L13","5L1","5L13","6L1","6L13"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","4L44","5L44","5T","6L44","6M"],round:["5M","6M"],sandattack:["3L1","3L5","4L1","4L5","5L1","5L5","6L1","6L5"],secretpower:["3M","4M"],skyattack:["3T","4T","5T","5S0"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],tailwind:["4L50","4T","5L50","5T","6L50"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4L22","4T","5L22","6L22"],uproar:["4T","5T"],uturn:["4M","5M","6M"],whirlwind:["3L20","4L17","5L17","5S0","6L17"],wingattack:["3L27","4L38","5L38","5S0","6L38"],workup:["5M"],confide:["6M"]}}, + rattata:{learnset:{assurance:["4L25","5L25","6L0"],attract:["3M","4M","5M","6M"],bite:["3E","4E","4L10","5E","5L10","6E"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M"],chargebeam:["4M","5M","6M"],counter:["3E","3T","4E","5E","6E"],crunch:["4L22","5L22","6L0"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T","4L31","5L31","6L0"],doubleteam:["3M","4M","5M","6M"],endeavor:["3L41","4L34","4T","5L34","5T","6L0"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],finalgambit:["5E","6E"],flamewheel:["3E","4E","5E","6E"],focusenergy:["3L20","4L7","5L7","6L0"],frustration:["3M","4M","5M","6M"],furyswipes:["3E","4E","5E","6E"],grassknot:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperfang:["3L13","4L16","5L16","6L0"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5D","5T"],lastresort:["4E","4T","5E","5T","6E"],mefirst:["4E","5E","5D","6E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],pursuit:["3L27","4L13","5L13","6L0"],quickattack:["3L7","4L4","5L4","5D","6L0"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],revenge:["5E","6E"],reversal:["3E","4E","5E","6E"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],screech:["3E","4E","5E","6E"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L19","4T","5L19","6L0"],sunnyday:["3M","4M","5M","6M"],superfang:["3L34","4L28","4T","5L28","5T","6L0"],swagger:["3E","3T","4E","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L0"],tailwhip:["3L1","4L1","5L1","6L0"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["3E","4E","5E","5T","6E"],uturn:["4M","5M","6M"],wildcharge:["5M","6M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"]}}, + raticate:{learnset:{assurance:["4L29","5L29","6L0"],attract:["3M","4M","5M","6M"],bite:["4L10","5L10","6L0"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M"],chargebeam:["4M","5M","6M"],counter:["3T"],crunch:["4L24","5L24","6L0"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T","4L39","5L39","6L0"],doubleteam:["3M","4M","5M","6M"],endeavor:["3L50","4L44","4T","5L44","5T","6L0"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],focusenergy:["4L1","4L7","5L1","5L7","6L0","6L0"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],hyperfang:["3L13","4L16","5L16","3S0","6L0"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],pursuit:["3L30","4L13","5L13","6L0"],quickattack:["3L1","3L7","4L1","4L4","5L1","5L4","6L0","6L0"],raindance:["3M","4M","5M","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],scaryface:["3L20","4L20","5L20","3S0","6L0"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L19","4T","5L19","6L0"],sunnyday:["3M","4M","5M","6M"],superfang:["3L40","4L34","4T","5L34","5T","3S0","6L0"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["4M","4L1","5M","5L1","6L0","6M"],tackle:["3L1","4L1","5L1","6L0"],tailwhip:["3L1","4L1","5L1","6L0"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uturn:["4M","5M","6M"],wildcharge:["5M","6M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],uproar:["5T"]}}, + spearow:{learnset:{aerialace:["3M","3L25","4M","4L17","5M","5L17","3S0","6L17","6M"],agility:["3L43","4L25","5L25","6L25"],aircutter:["4T"],assurance:["4L29","5L29","6L29"],astonish:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],batonpass:["3S0"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drillpeck:["3L37","4L37","5L37","6L37"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","5D","6E"],falseswipe:["3E","4E","5M","3S0","6M"],featherdance:["4E","5E","6E"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furyattack:["3L13","4L9","5L9","6L9"],growl:["3L1","4L1","5L1","6L1"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],leer:["3L7","4L5","5L5","3S0","6L5"],mimic:["3T"],mirrormove:["3L31","4L21","5L21","6L21"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],peck:["3L1","4L1","5L1","5D","6L1"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],pursuit:["3L19","4L13","5L13","6L13"],quickattack:["3E","4E","5E","6E"],raindance:["3M","4M","5M","6M"],razorwind:["5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","4L33","5L33","5T","6L33","6M"],round:["5M","6M"],scaryface:["3E","4E","5E","6E"],secretpower:["3M","4M"],skyattack:["3E","3T","4E","5E","5T","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M","5E","5D","6M","6E"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],triattack:["3E","4E","5E","6E"],twister:["4T"],uproar:["4E","5E","5T","6E"],uturn:["4M","5M","6M"],whirlwind:["4E","5E","6E"],workup:["5M"],drillrun:["5T"],confide:["6M"]}}, fearow:{learnset:{aerialace:["3M","4M","4L17","5M","5L17"],agility:["3L47","4L29","5L29"],aircutter:["4T"],assurance:["4L35","5L35"],attract:["3M","4M","5M"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drillpeck:["3L40","4L47","5L47"],drillrun:["5L53","5T"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["5M"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],furyattack:["3L1","3L13","4L1","4L9","5L1","5L9"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],leer:["3L1","3L7","4L1","4L5","5L1","5L5"],mimic:["3T"],mirrormove:["3L32","4L23","5L23"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],peck:["3L1","4L1","5L1"],pluck:["4M","4L1","5M","5L1"],protect:["3M","4M","5M"],pursuit:["3L26","4L13","5L13"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","4L41","5L41","5T"],round:["5M"],secretpower:["3M","4M"],skyattack:["3T","4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uturn:["4M","5M"],workup:["5M"],uproar:["5T"]}}, - ekans:{learnset:{acid:["3L32","4L20","5L20"],acidspray:["5L28"],aquatail:["4T","5T"],attract:["3M","4M","5M"],beatup:["3E","4E","5E","5D"],bite:["3L13","4L9","5L9","3S0"],bodyslam:["3T"],bulldoze:["5M"],captivate:["4M"],coil:["5L44"],darkpulse:["4M","5T","5D"],dig:["3M","4M","5M"],disable:["4E","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gastroacid:["4L33","4T","5L36","5T"],gigadrain:["3M","4M","5T"],glare:["3L20","4L12","5L12"],gunkshot:["4L41","4T","5L49","5T"],haze:["3L44","4L36","5L41"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],irontail:["3M","4M","5E","5T"],leer:["3L1","4L1","5L1","3S0","3S1"],mimic:["3T"],mudbomb:["4L28","5L33"],naturalgift:["4M"],payback:["4M","5M"],poisonfang:["3E","4E","5E"],poisonjab:["4M","5M"],poisonsting:["3L8","4L4","5L4","3S0","3S1","5D"],poisontail:["4E","5E"],protect:["3M","4M","5M"],pursuit:["3E","4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocktomb:["4M","5M"],round:["5M"],scaryface:["4E","5E"],screech:["3L25","4L17","5L17"],secretpower:["3M","4M"],seedbomb:["4T","5T"],slam:["3E","4E","5E"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5M"],snatch:["3M","4M","5E","5T"],snore:["3T","4T","5T"],spite:["3E","4E","4T","5E","5T"],spitup:["3L37","4L25","5L25"],stockpile:["3L37","4L25","5L25"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["5E"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["3L37","4L25","5L25"],switcheroo:["4E","5E"],thief:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],venoshock:["5M"],wrap:["3L1","4L1","5L1","3S0","3S1"],bind:["5T"]}}, - arbok:{learnset:{acid:["3L38","4L20","5L20"],acidspray:["5L32"],aquatail:["4T","5T"],attract:["3M","4M","5M"],bite:["3L1","3L13","4L1","4L9","5L1","5L9","3S0"],bodyslam:["3T"],bulldoze:["5M"],captivate:["4M"],coil:["5L56"],crunch:["4L22","5L22"],darkpulse:["4M","5T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragontail:["5M"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],firefang:["4L1","5L1"],frustration:["3M","4M","5M"],gastroacid:["4L42","4T","5L44","5T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],glare:["3L20","4L12","5L12","3S0"],gunkshot:["4L56","4T","5L63","5T"],haze:["3L56","4L48","5L51"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icefang:["4L1","5L1"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1"],mimic:["3T"],mudbomb:["4L34","5L39"],naturalgift:["4M"],payback:["4M","5M"],poisonjab:["4M","5M"],poisonsting:["3L1","3L8","4L1","4L4","5L1","5L4"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocktomb:["4M","5M"],round:["5M"],screech:["3L28","4L17","5L17"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M","3S0"],sludgewave:["5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],spitup:["3L46","4L28","5L27"],stockpile:["3L46","4L28","5L27"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["3L46","4L28","5L27"],thief:["3M","4M","5M"],thunderfang:["4L1","5L1"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],venoshock:["5M"],wrap:["3L1","4L1","5L1"],bind:["5T"]}}, - pichu:{learnset:{attract:["3M","4M","5M"],bestow:["5E"],bide:["3E","4E","5E"],bodyslam:["3T"],captivate:["4M"],charge:["3E","4E","5E","4S5","4S6"],chargebeam:["4M","5M"],charm:["3L1","4L1","5L1","3S0","3S1","3S2","3S3"],counter:["3T"],defensecurl:["3T"],doubleedge:["3T"],doubleslap:["3E","4E","5E"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],encore:["3E","4E","5E"],endeavor:["4S5","4S6"],endure:["3T","4M","5E","4S5","4S6"],facade:["3M","4M","5M"],fakeout:["4E","5E"],flail:["4E","5E"],flash:["3M","4M","5M"],fling:["4M","5M"],followme:["3S3"],frustration:["3M","4M","5M"],grassknot:["4M","5M","4S4"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],irontail:["3M","4M","5T"],lightscreen:["3M","4M","5M"],luckychant:["5E"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L18","5L18"],naturalgift:["4M"],present:["3E","4E","5E"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M","4S4"],reversal:["3E","4E","5E"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],surf:["3S0"],swagger:["3T","4M","5M"],sweetkiss:["3L11","4L13","5L13"],swift:["3T","4T"],tailwhip:["3L6","4L5","5L5"],teeterdance:["3S2"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M","4S4"],thunderpunch:["4E","5E"],thundershock:["3L1","4L1","5L1","3S0","3S1","3S2","3S3"],thunderwave:["3L8","3T","4M","4L10","5M","5L10"],tickle:["4E","5E"],toxic:["3M","4M","5M"],uproar:["4T","5T"],voltswitch:["5M"],volttackle:["3E","4E","5E","4S4","4S5","4S6"],wildcharge:["5M"],wish:["3E","4E","5E","3S1"],covet:["5T"]}}, + ekans:{learnset:{acid:["3L32","4L20","5L20","6L20"],acidspray:["5L28","6L28"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],beatup:["3E","4E","5E","5D","6E"],bite:["3L13","4L9","5L9","3S0","6L9"],bodyslam:["3T"],bulldoze:["5M","6M"],captivate:["4M"],coil:["5L44","6L44"],darkpulse:["4M","5T","5D","6M"],dig:["3M","4M","5M","6M"],disable:["4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gastroacid:["4L33","4T","5L36","5T","6L36"],gigadrain:["3M","4M","5T"],glare:["3L20","4L12","5L12","6L12"],gunkshot:["4L41","4T","5L49","5T","6L49"],haze:["3L44","4L36","5L41","6L41"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],irontail:["3M","4M","5E","5T","6E"],leer:["3L1","4L1","5L1","3S0","3S1","6L1"],mimic:["3T"],mudbomb:["4L28","5L33","6L33"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonfang:["3E","4E","5E","6E"],poisonjab:["4M","5M","6M"],poisonsting:["3L8","4L4","5L4","3S0","3S1","5D","6L4"],poisontail:["4E","5E","6E"],protect:["3M","4M","5M","6M"],pursuit:["3E","4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scaryface:["4E","5E","6E"],screech:["3L25","4L17","5L17","6L17"],secretpower:["3M","4M"],seedbomb:["4T","5T"],slam:["3E","4E","5E","6E"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5M","6M"],snatch:["3M","4M","5E","5T","6E"],snore:["3T","4T","5T"],spite:["3E","4E","4T","5E","5T","6E"],spitup:["3L37","4L25","5L25","6L25"],stockpile:["3L37","4L25","5L25","6L25"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["5E","6E"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["3L37","4L25","5L25","6L25"],switcheroo:["4E","5E","6E"],thief:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],wrap:["3L1","4L1","5L1","3S0","3S1","6L1"],bind:["5T"],belch:["6L38"],infestation:["6M"],confide:["6M"]}}, + arbok:{learnset:{acid:["3L38","4L20","5L20","6L20"],acidspray:["5L32","6L32"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],bite:["3L1","3L13","4L1","4L9","5L1","5L9","3S0","6L1","6L9"],bodyslam:["3T"],bulldoze:["5M","6M"],captivate:["4M"],coil:["5L56","6L56"],crunch:["4L22","5L22","6L22"],darkpulse:["4M","5T","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragontail:["5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],firefang:["4L1","5L1","6L1"],frustration:["3M","4M","5M","6M"],gastroacid:["4L42","4T","5L44","5T","6L44"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],glare:["3L20","4L12","5L12","3S0","6L12"],gunkshot:["4L56","4T","5L63","5T","6L63"],haze:["3L56","4L48","5L51","6L51"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icefang:["4L1","5L1","6L1"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","6L1"],mimic:["3T"],mudbomb:["4L34","5L39","6L39"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],poisonsting:["3L1","3L8","4L1","4L4","5L1","5L4","6L1","6L4"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],screech:["3L28","4L17","5L17","6L17"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","3S0","6M"],sludgewave:["5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],spitup:["3L46","4L28","5L27","6L27"],stockpile:["3L46","4L28","5L27","6L27"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["3L46","4L28","5L27","6L27"],thief:["3M","4M","5M","6M"],thunderfang:["4L1","5L1","6L1"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],wrap:["3L1","4L1","5L1","6L1"],bind:["5T"],belch:["6L48"],infestation:["6M"],confide:["6M"]}}, + pichu:{learnset:{attract:["3M","4M","5M","6M"],bestow:["5E","6E"],bide:["3E","4E","5E","6E"],bodyslam:["3T"],captivate:["4M"],charge:["3E","4E","5E","4S5","4S6","6E"],chargebeam:["4M","5M","6M"],charm:["3L1","4L1","5L1","3S0","3S1","3S2","3S3","6L1"],counter:["3T"],defensecurl:["3T"],doubleedge:["3T"],doubleslap:["3E","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],encore:["3E","4E","5E","6E"],endeavor:["4S5","4S6"],endure:["3T","4M","5E","4S5","4S6","6E"],facade:["3M","4M","5M","6M"],fakeout:["4E","5E","6E"],flail:["4E","5E","6E"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],followme:["3S3"],frustration:["3M","4M","5M","6M"],grassknot:["4M","5M","4S4","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],lightscreen:["3M","4M","5M","6M"],luckychant:["5E","6E"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L18","5L18","6L18"],naturalgift:["4M"],present:["3E","4E","5E","6E"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","4S4","6M"],reversal:["3E","4E","5E","6E"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],surf:["3S0"],swagger:["3T","4M","5M","6M"],sweetkiss:["3L11","4L13","5L13","6L10"],swift:["3T","4T"],tailwhip:["3L6","4L5","5L5","6L5"],teeterdance:["3S2"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","4S4","6M"],thunderpunch:["4E","5E","6E"],thundershock:["3L1","4L1","5L1","3S0","3S1","3S2","3S3","6L1"],thunderwave:["3L8","3T","4M","4L10","5M","5L10","6L13","6M"],tickle:["4E","5E","6E"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],voltswitch:["5M","6M"],volttackle:["3E","4E","5E","4S4","4S5","4S6","6E"],wildcharge:["5M","6M"],wish:["3E","4E","5E","3S1","6E"],covet:["5T"],confide:["6M"],disarmingvoice:["6E"]}}, pichuspikyeared:{learnset:{attract:["4M"],captivate:["4M"],chargebeam:["4M"],charm:["4L1"],doubleteam:["4M"],endure:["4M"],facade:["4M"],flash:["4M"],fling:["4M"],frustration:["4M"],grassknot:["4M"],headbutt:["4T"],helpinghand:["4T","4S0"],hiddenpower:["4M"],irontail:["4M"],lightscreen:["4M"],magnetrise:["4T"],mudslap:["4T"],nastyplot:["4L18"],naturalgift:["4M"],painsplit:["4S0"],protect:["4M"],raindance:["4M"],rest:["4M"],"return":["4M"],rollout:["4T"],secretpower:["4M"],shockwave:["4M"],signalbeam:["4T"],sleeptalk:["4M"],snore:["4T"],substitute:["4M"],swagger:["4M","4S0"],sweetkiss:["4L13"],swift:["4T"],tailwhip:["4L5"],thunder:["4M"],thunderbolt:["4M"],thundershock:["4L1"],thunderwave:["4M","4L10"],toxic:["4M"],uproar:["4T"],volttackle:["4S0"]}}, - pikachu:{learnset:{agility:["3L33","4L34","5L37","3S0","3S8"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","5S26"],captivate:["4M"],chargebeam:["4M","5M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M"],discharge:["4L37","5L42"],doubleedge:["3T"],doubleteam:["3M","3L15","4M","4L18","5M","5L21","4S13"],dynamicpunch:["3T"],echoedvoice:["5M"],electroball:["5L18","5S23","5S24","5S30"],encore:["5S23"],endure:["3T","4M"],extremespeed:["5S26"],facade:["3M","4M","5M"],feint:["4L29","5L34","5S29"],flash:["3M","4M","5M","4S13"],fling:["4M","5M"],fly:["3S2","3S4","3S6","5S24","5S27"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],grassknot:["4M","5M","4S13","5S25","5S26","5S27"],growl:["3L1","4L1","5L1","3S1","3S2","3S3","3S4","3S5","3S10"],headbutt:["4T","5S28"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],irontail:["3M","4M","4S21","5S24","5T","5S30"],knockoff:["4T","5T"],lastresort:["4S18"],lightscreen:["3M","3L50","4M","4L42","5M","5L45","3S0","3S6","3S7","3S8","4S11"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],present:["4S12","4S15","4S17","4S18","4S20","4S22"],protect:["3M","4M","5M","4S14","4S16","5S27"],quickattack:["3L11","4L13","5L13","4S11","4S12","4S15","4S17","4S18","4S20","4S21","4S22","5S24","5S25","5S29","5S30"],raindance:["3M","4M","5M"],rest:["3M","4M","5M","4S19"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sing:["5S23"],slam:["3L20","4L21","5L26"],sleeptalk:["3T","4M","4S19","5T"],snore:["3T","4T","4S19","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],surf:["3S3","3S5","3S7","4S9","4S11","4S14","4S16"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwhip:["3L6","4L5","5L5","3S1","3S2","3S3","3S4","4S9","3S10","4S12","4S15","4S17","4S20","4S22","5S28"],teeterdance:["5S23"],thunder:["3M","3L41","4M","4L45","5M","5L50","3S0","3S6","3S7","3S8","4S14","4S16","5S25"],thunderbolt:["3M","3L26","4M","4L26","5M","5L29","3S0","3S6","3S7","3S8","4S11","4S13","4S18","4S21","5S26","5S27","5S30"],thunderpunch:["3T","4T","5T"],thundershock:["3L1","4L1","5L1","3S1","3S5","3S10","4S12","4S15","4S20","4S22","5S28"],thunderwave:["3L8","3T","4M","4L10","5M","5L10","3S1","3S2","3S3","3S4","3S5","4S9","3S10","4S17","5S28"],toxic:["3M","4M","5M"],voltswitch:["5M","5S29"],volttackle:["4S9","4S21","5S25","5S29"],wildcharge:["5M"],yawn:["4S19"],covet:["5T"]}}, - raichu:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lightscreen:["3M","4M","5M"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],quickattack:["3L1","4L1","5L1"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwhip:["3L1","4L1","5L1"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","3L1","4M","4L1","5M","5L1"],thunderpunch:["3T","4T","5T"],thundershock:["3L1","4L1","5L1"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],voltswitch:["5M"],wildcharge:["5M"],covet:["5T"]}}, - sandshrew:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5E"],counter:["3E","3T","4E","5E","5D"],crushclaw:["3E","4E","5E"],cut:["3M","4M","5M"],defensecurl:["3L6","3T","4L3","5L3","3S0"],dig:["3M","4M","5M","5L30"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","5L46"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],flail:["3E","4E","5E"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4L25","4T","5L25"],furyswipes:["3L37","4L19","5L19"],gyroball:["4M","4L33","5M","5L33"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],magnitude:["5L17"],metalclaw:["3E","4E","5E"],mimic:["3T"],mudshot:["4E","5E"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4E","5E"],poisonjab:["4M","5M"],poisonsting:["3L17","4L9","5L9","3S0"],protect:["3M","4M","5M"],rapidspin:["3E","4E","4L13","5E","5L13"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["4M","5E"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4L21","4T","5L21"],round:["5M"],safeguard:["3E","4E","5M"],sandattack:["3L11","4L7","5L7","5D","3S0"],sandstorm:["3M","3L53","4M","4L37","5M","5L37"],sandtomb:["3L45","4L27","5L27"],scratch:["3L1","4L1","5L1","3S0"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],slash:["3L23","4L31","5L31"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superfang:["4T","5T","5D"],swagger:["3T","4M","5M"],swift:["3L30","3T","4L15","4T","5L15"],swordsdance:["3E","3T","4E","4M","5M","5L38"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],xscissor:["4M","5M"],covet:["5T"]}}, - sandslash:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],crushclaw:["4L22","5L22"],cut:["3M","4M","5M"],defensecurl:["3L1","3L6","3T","4L1","4L3","5L1","5L3"],dig:["3M","4M","5M","5L30"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","5L46"],endure:["3T","4M"],facade:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4L28","4T","5L28"],furyswipes:["3L42","4L19","5L19"],gigaimpact:["4M","5M"],gyroball:["4M","4L45","5M","5L45"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],magnitude:["5L17"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],poisonjab:["4M","5M"],poisonsting:["3L17","4L9","5L9"],protect:["3M","4M","5M"],rapidspin:["4L13","5L13"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4L21","4T","5L21"],round:["5M"],safeguard:["5M"],sandattack:["3L1","3L11","4L1","4L7","5L1","5L7"],sandstorm:["3M","3L62","4M","4L52","5M","5L52"],sandtomb:["3L52","4L33","5L33"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],slash:["3L24","4L40","5L40"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],swagger:["3T","4M","5M"],swift:["3L33","3T","4L15","4T","5L15"],swordsdance:["3T","4M","5M","5L38"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],xscissor:["4M","5M"],covet:["5T"]}}, - nidoranf:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],beatup:["3E","4E","5E"],bite:["3L20","4L21","5L21"],blizzard:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M","4L43","5L43"],charm:["3E","4E","5E"],chipaway:["5E"],counter:["3E","3T","4E","5E"],crunch:["3L47","4L37","5L37"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],disable:["3E","4E","5E"],doubleedge:["3T"],doublekick:["3L12","4L9","5L9"],doubleteam:["3M","4M","5M"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],flatter:["3L38","4L33","5L33"],focusenergy:["3E","4E","5E"],frustration:["3M","4M","5M"],furyswipes:["3L30","4L19","5L19"],growl:["3L1","4L1","5L1"],headbutt:["4T"],helpinghand:["3L23","4L25","5L25","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],icebeam:["3M","4M","5M"],irontail:["3M","4M","5E","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],poisonfang:["4L45","5L45"],poisonjab:["4M","5M"],poisonsting:["3L17","4L13","5L13"],poisontail:["5E"],protect:["3M","4M","5M"],pursuit:["4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],scratch:["3L1","4L1","5L1","5D"],secretpower:["3M","4M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],skullbash:["4E","5E"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["5D"],sunnyday:["3M","4M","5M"],superfang:["4T","5D","5T"],supersonic:["3E","4E","5E"],swagger:["3T","4M","5M"],tailwhip:["3L8","4L7","5L7"],takedown:["3E","4E","5E"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],toxic:["3M","4M","5M"],toxicspikes:["4L31","5L31"],venoshock:["5M"],waterpulse:["3M","4M"]}}, - nidorina:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bite:["3L22","4L23","5L23"],blizzard:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M","4L50","5L50"],counter:["3T"],crunch:["3L53","4L43","5L43"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doublekick:["3L12","4L9","5L9"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flatter:["3L43","4L38","5L38"],frustration:["3M","4M","5M"],furyswipes:["3L34","4L20","5L20"],growl:["3L1","4L1","5L1"],headbutt:["4T"],helpinghand:["3L26","4L28","4T","5L28","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],icebeam:["3M","4M","5M"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],poisonfang:["4L58","5L58"],poisonjab:["4M","5M"],poisonsting:["3L18","4L13","5L13"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],swagger:["3T","4M","5M"],tailwhip:["3L8","4L7","5L7"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],toxic:["3M","4M","5M"],toxicspikes:["4L35","5L35"],venoshock:["5M"],waterpulse:["3M","4M"]}}, - nidoqueen:{learnset:{aerialace:["3M","4M","5M"],aquatail:["4T","5T"],attract:["3M","4M","5M"],avalanche:["4M"],blizzard:["3M","4M","5M"],bodyslam:["3L23","3T","3L22","4L23","5L35"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L23"],counter:["3T"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doublekick:["3L1","4L1","5L1"],doubleteam:["3M","4M","5M"],dragonpulse:["4M","5T"],dragontail:["5M"],dynamicpunch:["3T"],earthpower:["4L43","4T","5L43","5T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T"],gigaimpact:["4M","5M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],poisonjab:["4M","5M"],poisonsting:["3L1","4L1","5L1"],protect:["3M","4M","5M"],quash:["5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5M"],smackdown:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],superpower:["3L43","4L58","4T","5L58","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tailwhip:["3L1","4L1","5L1"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],venoshock:["5M"],waterpulse:["3M","4M"],whirlpool:["4M"]}}, - nidoranm:{learnset:{amnesia:["3E","4E","5E"],attract:["3M","4M","5M"],beatup:["3E","4E","5E"],blizzard:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M","4L43","5L43"],chipaway:["5E"],confusion:["3E","4E","5E"],counter:["3E","3T","4E","5E","5D"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],disable:["3E","4E","5E"],doubleedge:["3T"],doublekick:["3L12","4L9","5L9"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],flatter:["3L38","4L33","5L33"],focusenergy:["3L8","4L7","5L7"],frustration:["3M","4M","5M"],furyattack:["3L30","4L19","5L19"],headbutt:["4T"],headsmash:["4E","5E"],helpinghand:["3L23","4L25","4T","5L25","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hornattack:["3L20","4L21","5L21"],horndrill:["3L47","4L45","5L45"],icebeam:["3M","4M","5M"],irontail:["3M","4M","5E","5T"],leer:["3L1","4L1","5L1"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],peck:["3L1","4L1","5L1","5D"],poisonjab:["4M","4L37","5M","5L37"],poisonsting:["3L17","4L13","5L13"],poisontail:["5E"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4E","4T","5E"],sunnyday:["3M","4M","5M"],superfang:["4T","5D","5T"],supersonic:["3E","4E","5E"],swagger:["3T","4M","5M"],takedown:["3E","4E","5E"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],toxic:["3M","4M","5M"],toxicspikes:["4L31","5L31"],venoshock:["5M"],waterpulse:["3M","4M"],drillrun:["5T"]}}, - nidorino:{learnset:{attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M","4L50","5L50"],counter:["3T"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doublekick:["3L12","4L9","5L9"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flatter:["3L43","4L38","5L38"],focusenergy:["3L8","4L7","5L7"],frustration:["3M","4M","5M"],furyattack:["3L34","4L20","5L20"],headbutt:["4T"],helpinghand:["3L26","4L28","4T","5L28","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hornattack:["3L22","4L23","5L23"],horndrill:["3L53","4L58","5L58"],icebeam:["3M","4M","5M"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],peck:["3L1","4L1","5L1"],poisonjab:["4M","4L43","5M","5L43"],poisonsting:["3L18","4L13","5L13"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],toxic:["3M","4M","5M"],toxicspikes:["4L35","5L35"],venoshock:["5M"],waterpulse:["3M","4M"],drillrun:["5T"]}}, - nidoking:{learnset:{aquatail:["4T","5T"],attract:["3M","4M","5M"],avalanche:["4M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L23"],counter:["3T"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doublekick:["3L1","4L1","5L1"],doubleteam:["3M","4M","5M"],dragonpulse:["4M","5T"],dragontail:["5M"],dynamicpunch:["3T"],earthpower:["4L43","4T","5L43","5T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focusenergy:["3L1","4L1","5L1"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T"],gigaimpact:["4M","5M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],megahorn:["3L43","4L58","5L58"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],peck:["3L1","4L1","5L1"],poisonjab:["4M","5M"],poisonsting:["3L1","4L1","5L1"],protect:["3M","4M","5M"],quash:["5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5M"],smackdown:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thrash:["3L23","3L22","4L23","5L35"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],venoshock:["5M"],waterpulse:["3M","4M"],whirlpool:["4M"],drillrun:["5T"]}}, - cleffa:{learnset:{amnesia:["3E","4E","5E"],aromatherapy:["4E","5E","5D"],attract:["3M","4M","5M"],bellydrum:["3E","4E","5E"],bodyslam:["3T"],captivate:["4M"],charm:["3L1","4L1","5L1"],copycat:["4L13","5L13"],counter:["3T"],covet:["4E","5E","5T"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],echoedvoice:["5M"],encore:["3L4","4L4","5L4","5D"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],faketears:["4E","5E"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M"],magicalleaf:["3L17","4L16","5L16"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3E","3T","4E","5E"],mimic:["3E","3T","4E","5E"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],pound:["3L1","4L1","5L1"],present:["3E","4E","5E"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roleplay:["4T","5T"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sing:["3L8","4L7","5L7"],sleeptalk:["3T","4M","5T","5D"],snore:["3T","4T","5T"],softboiled:["3T"],solarbeam:["3M","4M","5M"],splash:["3E","4E","5E"],storedpower:["5E"],substitute:["3E","3T","4E","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetkiss:["3L13","4L10","5L10"],telekinesis:["5M"],thunderwave:["3T","4M","5M"],tickle:["5E"],toxic:["3M","4M","5M"],trick:["4T","5T"],uproar:["4T","5T"],waterpulse:["3M","4M"],wish:["3E","4E","5E"],workup:["5M"],zenheadbutt:["4T","5T"],hypervoice:["5T"],afteryou:["5T"],wonderroom:["5T"]}}, - clefairy:{learnset:{afteryou:["5L52","5T"],attract:["3M","4M","5M"],bestow:["5L25"],blizzard:["3M","4M","5M"],bodyslam:["3T","5L40"],bounce:["4T","5T"],brickbreak:["3M","4M","5M"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],cosmicpower:["3L33","4L25","5L28"],counter:["3T"],defensecurl:["3L25","3T","4L13","5L13"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleslap:["3L13","4L10","5L10"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],encore:["3L5","4L4","5L4"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],followme:["3L17","4L16","5L16"],frustration:["3M","4M","5M"],grassknot:["4M","5M"],gravity:["4L34","4T","5L37","5T"],growl:["3L1","4L1","5L1"],headbutt:["4T"],healbell:["4T","5T"],healingwish:["4L46","5L49"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","3L41","4M","4L40","5M","5L46"],luckychant:["4L28","5L31"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],meteormash:["3L45","4L43","5L55"],metronome:["3L29","3T","4L31","5L34"],mimic:["3T"],minimize:["3L21","4L19","5L19"],moonlight:["3L37","4L37","5L40"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],pound:["3L1","4L1","5L1"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rocksmash:["4M","5M"],roleplay:["4T","5T"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sing:["3L9","4L7","5L7"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],softboiled:["3T"],solarbeam:["3M","4M","5M"],stealthrock:["4M","5T"],storedpower:["5L43"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],telekinesis:["5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],wakeupslap:["4L22","5L22"],waterpulse:["3M","4M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],wonderroom:["5T"]}}, - clefable:{learnset:{attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bounce:["4T","5T"],brickbreak:["3M","4M","5M"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleslap:["3L1","4L1","5L1"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3L1","3T","4L1","5L1"],mimic:["3T"],minimize:["3L1","4L1","5L1"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rocksmash:["4M","5M"],roleplay:["4T","5T"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sing:["3L1","4L1","5L1"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],softboiled:["3T"],solarbeam:["3M","4M","5M"],stealthrock:["4M","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],telekinesis:["5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],waterpulse:["3M","4M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],afteryou:["5T"],wonderroom:["5T"]}}, - vulpix:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M","4L37","5L41"],charm:["3S1"],confuseray:["3L21","4L17","5L17"],darkpulse:["4M","5D","5T"],dig:["3M","4M","5M","3S1"],disable:["3E","4E","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],ember:["3L1","4L1","5L1","3S1"],endure:["3T","4M"],energyball:["4E","5M"],extrasensory:["4E","4L44","5E","5L51"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E","5L20"],fireblast:["3M","4M","4L47","5M","5L54"],firespin:["3L41","4L34","5L14"],flail:["3E","4E","5E"],flameburst:["5L24"],flamecharge:["5M"],flamethrower:["3M","3L29","4M","4L24","5M","5L37"],flareblitz:["4E","5E"],frustration:["3M","4M","5M"],grudge:["3L37","4L41","5L47"],headbutt:["4T"],heatwave:["3E","4E","4T","5E","5D","5T","3S1"],hex:["5E","5L28"],hiddenpower:["3M","4M","5M"],howl:["3E","4E","5E"],hypnosis:["3E","4E","5E"],imprison:["3L25","4L21","5L21"],incinerate:["5M"],inferno:["5L44"],irontail:["3M","4M","5T"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],overheat:["3M","4M","5M"],painsplit:["4T","5T"],payback:["4M","4L31","5M","5L34"],powerswap:["4E","5E"],protect:["3M","4M","5M"],psychup:["3E","4E","4M","5M"],quickattack:["3L13","4L11","5L11","3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","3L9","4M","4L7","5M","5L7","5D","3S0"],roleplay:["4T","5T"],round:["5M"],safeguard:["3M","3L33","4M","4L27","5M","5L27"],secretpower:["3M","4M","5E"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spite:["3E","4E","4T","5E","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailslap:["5E"],tailwhip:["3L5","4L4","5L4","3S0"],toxic:["3M","4M","5M"],willowisp:["3L17","4M","4L14","5M","5L31","3S0"],zenheadbutt:["4T","5T"],covet:["5T"],foulplay:["5T"]}}, - ninetales:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],calmmind:["4M","5M"],captivate:["4M"],confuseray:["3L1","4L1","5L1"],darkpulse:["4M","5T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["4M","5M"],ember:["3L1","4L1","5L1"],endure:["3T","4M"],energyball:["5M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firespin:["3L45"],flamecharge:["5M"],flamethrower:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],heatwave:["4T","5S0","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],irontail:["3M","4M","5T"],mimic:["3T"],nastyplot:["4L1","5L1"],naturalgift:["4M"],ominouswind:["4T"],overheat:["3M","4M","5M"],painsplit:["4T","5T"],payback:["4M","5M"],protect:["3M","4M","5M"],psychup:["4M","5M"],psyshock:["5M","5S0"],quickattack:["3L1","4L1","5L1"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],safeguard:["3M","3L1","4M","4L1","5M","5L1"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["4M","5M","5S0"],spite:["4T","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],toxic:["3M","4M","5M"],willowisp:["4M","5M","5S0"],zenheadbutt:["4T","5T"],covet:["5T"],foulplay:["5T"]}}, - igglybuff:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],bounce:["4T","5T"],captivate:["4M","5E"],charm:["3L1","4L1","5L1","3S0"],copycat:["4L17","5L17"],counter:["3T"],covet:["4E","5E","5T"],defensecurl:["3L4","3T","4L5","5L5","3S0"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],echoedvoice:["5M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E"],faketears:["3E","4E","5E","5D"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],grassknot:["4M","5M"],gravity:["4E","4T","5E","5T"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4T","5D","5T"],hiddenpower:["3M","4M","5M"],icywind:["3T","4T","5T"],incinerate:["5M"],lastresort:["4E","4T","5E","5T"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],perishsong:["3E","4E","5E"],pound:["3L9","4L9","5L9"],present:["3E","4E","5E"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],punishment:["5E"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roleplay:["4T","5T"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sing:["3L1","4L1","5L1","5D","3S0"],sleeptalk:["3T","4M","5E","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetkiss:["3L14","4L13","5L13"],thunderwave:["3T","4M","5M"],tickle:["3S0"],toxic:["3M","4M","5M"],uproar:["4T","5T"],waterpulse:["3M","4M"],wildcharge:["5M"],wish:["3E","4E","5E"],workup:["5M"],hypervoice:["5T"]}}, - jigglypuff:{learnset:{attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3L34","3T","4L29","5L33"],bounce:["4T","5T"],brickbreak:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],counter:["3T"],defensecurl:["3L4","3T","4L5","5L5"],dig:["3M","4M","5M"],disable:["3L14","4L13","5L13"],doubleedge:["3L49","3T","4L49","5L53"],doubleslap:["3L24","4L21","5L25"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],gyroball:["4M","4L33","5M","5L37"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hypervoice:["3L44","4L45","5L49","5T"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],incinerate:["5M"],knockoff:["4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3L39","3T","4L41","5L45"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],pound:["3L9","4L9","5L9"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","3L29","4M","4L25","5M","5L29"],retaliate:["5M"],"return":["3M","4M","5M"],roleplay:["4T","5T"],rollout:["3L19","3T","4L17","4T","5L21"],round:["5M","5L17"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sing:["3L1","4L1","5L1"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stealthrock:["4M","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],wakeupslap:["4L37","5L41"],waterpulse:["3M","4M"],wildcharge:["5M"],workup:["5M"],covet:["5T"]}}, - wigglytuff:{learnset:{attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bounce:["4T","5T"],brickbreak:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],counter:["3T"],defensecurl:["3L1","3T","4L1","5L1"],dig:["3M","4M","5M"],disable:["3L1","4L1","5L1"],doubleedge:["3T"],doubleslap:["3L1","4L1","5L1"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],gyroball:["4M","5M"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],incinerate:["5M"],knockoff:["4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roleplay:["4T","5T"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sing:["3L1","4L1","5L1"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stealthrock:["4M","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"],wildcharge:["5M"],workup:["5M"],covet:["5T"],hypervoice:["5T"],magicroom:["5T"]}}, - zubat:{learnset:{acrobatics:["5M","5L33"],aerialace:["3M","4M","5M"],aircutter:["3L31","4L25","4T","5L25"],airslash:["4L41","5L45"],astonish:["3L11","3L6","4L9","5L9"],attract:["3M","4M","5M"],bite:["3L16","4L13","5L13"],bravebird:["4E","5E"],captivate:["4M"],confuseray:["3L26","4L21","5L21"],curse:["3E","4E","5E"],defog:["4M","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E"],fly:["4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5E","5T"],gust:["3E","4E","5E"],haze:["3L46","4L37","5L41"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hypnosis:["4E","5E","5D"],leechlife:["3L1","4L1","5L1"],meanlook:["3L36","4L29","5L29"],mimic:["3T"],nastyplot:["4E","5E"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","5M"],pluck:["4M","5M"],poisonfang:["3L41","4L33","5L37"],protect:["3M","4M","5M"],pursuit:["3E","4E","5E"],quickattack:["3E","4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5T"],round:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M","5E"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superfang:["4T","5D","5T"],supersonic:["3L6","3L11","4L5","5L5","5D"],swagger:["3T","4M","5M"],swift:["3T","4T","5L24"],tailwind:["4T","5T"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uproar:["4T","5T"],uturn:["4M","5M"],venoshock:["5M"],whirlwind:["3E","4E","5E"],wingattack:["3L21","4L17","5L17"],zenheadbutt:["4E","4T","5E","5T"]}}, - golbat:{learnset:{acrobatics:["5M","5L39"],aerialace:["3M","4M","5M"],aircutter:["3L35","4L27","4T","5L27"],airslash:["4L51","5L57"],astonish:["3L1","3L11","3L6","4L1","4L9","5L1","5L9"],attract:["3M","4M","5M"],bite:["3L16","4L13","5L13"],captivate:["4M"],confuseray:["3L28","4L21","5L21"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fly:["4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],haze:["3L56","4L45","5L51"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],leechlife:["3L1","4L1","5L1"],meanlook:["3L42","4L33","5L33"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","5M"],pluck:["4M","5M"],poisonfang:["3L49","4L39","5L45"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5T"],round:["5M"],screech:["3L1","4L1","5L1"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],supersonic:["3L1","3L6","3L11","4L1","4L5","5L1","5L5"],swagger:["3T","4M","5M"],swift:["3T","4T","5L24"],tailwind:["4T","5T"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uproar:["4T","5T"],uturn:["4M","5M"],venoshock:["5M"],wingattack:["3L21","4L17","5L17"],zenheadbutt:["4T","5T"]}}, - crobat:{learnset:{acrobatics:["5M","5L39"],aerialace:["3M","4M","5M"],aircutter:["3L35","4L27","4T","5L27"],airslash:["4L51","5L57","4S0"],astonish:["3L1","3L11","3L6","4L1","4L9","5L1","5L9"],attract:["3M","4M","5M"],bite:["3L16","4L13","5L13"],captivate:["4M"],confuseray:["3L28","4L21","5L21"],crosspoison:["4L1","5L1"],darkpulse:["4M","5T"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],haze:["3L56","4L45","5L51"],heatwave:["4T","4S0","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],leechlife:["3L1","4L1","5L1"],meanlook:["3L42","4L33","5L33"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","5M"],pluck:["4M","5M"],poisonfang:["3L49","4L39","5L45"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5T"],round:["5M"],screech:["3L1","4L1","5L1"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],skyattack:["4T","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M","4S0"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superfang:["4T","4S0","5T"],supersonic:["3L1","3L6","3L11","4L1","4L5","5L1","5L5"],swagger:["3T","4M","5M"],swift:["3T","4T","5L24"],tailwind:["4T","5T"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uproar:["4T","5T"],uturn:["4M","5M"],venoshock:["5M"],wingattack:["3L21","4L17","5L17"],xscissor:["4M","5M"],zenheadbutt:["4T","5T"]}}, - oddish:{learnset:{absorb:["3L1","4L1","5L1","3S1"],acid:["3L23","4L9","5L9","3S0"],afteryou:["5E","5T"],attract:["3M","4M","5M"],bulletseed:["3M","4M"],captivate:["4M"],charm:["3E","4E","5E"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flail:["3E","4E","5E"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gastroacid:["4T","5T"],gigadrain:["3M","4M","4L37","5L37","5D","5T"],grassknot:["4M","5M"],hiddenpower:["3M","4M","5M"],ingrain:["3E","4E","5E"],leechseed:["3S1"],luckychant:["4L25","5L25"],megadrain:["4L21","5L21"],mimic:["3T"],moonlight:["3L32","4L33","5L33"],naturalgift:["4M","4L29","5L29"],naturepower:["5E"],petaldance:["3L39","4L41","5L41"],poisonpowder:["3L14","4L13","5L13","3S0"],protect:["3M","4M","5M"],razorleaf:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M","5E"],seedbomb:["4T","5T"],sleeppowder:["3L18","4L17","5L17","3S0"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stunspore:["3L16","4L15","5L15","3S0"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["3L7","4L5","5L5","5D"],swordsdance:["3E","3T","4E","4M","5M"],synthesis:["3E","4E","4T","5E","5T"],teeterdance:["4E","5E","5D"],tickle:["4E","5E"],toxic:["3M","4M","5M"],venoshock:["5M"],worryseed:["4T","5T"]}}, - gloom:{learnset:{absorb:["3L1","4L1","5L1"],acid:["3L24","4L1","4L9","5L1","5L9","3S0"],attract:["3M","4M","5M"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],gastroacid:["4T","5T"],gigadrain:["3M","4M","4L47","5L47","5T"],grassknot:["4M","5M"],hiddenpower:["3M","4M","5M"],luckychant:["4L29","5L29"],megadrain:["4L23","5L23"],mimic:["3T"],moonlight:["3L35","4L41","5L41","3S0"],naturalgift:["4M","4L35","5L35"],petaldance:["3L44","4L53","5L53","3S0"],poisonpowder:["3L1","3L14","4L13","5L13"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeppowder:["3L18","4L17","5L17","3S0"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stunspore:["3L16","4L15","5L15"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["3L1","3L7","4L1","4L5","5L1","5L5"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],toxic:["3M","4M","5M"],venoshock:["5M"],worryseed:["4T","5T"],afteryou:["5T"]}}, - vileplume:{learnset:{absorb:["3L1"],aromatherapy:["3L1","4L1","5L1"],attract:["3M","4M","5M"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],gastroacid:["4T","5T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],megadrain:["3L1","4L1","5L1"],mimic:["3T"],naturalgift:["4M"],petaldance:["3L44","4L53","5L53"],poisonpowder:["4L1","5L1"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","4L65","5M","5L65"],stunspore:["3L1","4L1","5L1"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],toxic:["3M","4M","5M"],venoshock:["5M"],worryseed:["4T","5T"],afteryou:["5T"]}}, - bellossom:{learnset:{absorb:["3L1"],attract:["3M","4M","5M"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],gastroacid:["4T","5T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],leafblade:["4L1","5L1"],leafstorm:["4L53","5L53"],magicalleaf:["3L1","4L23","5L23"],megadrain:["4L1","5L1"],mimic:["3T"],naturalgift:["4M"],petaldance:["3L44"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","3L55","4M","5M"],stunspore:["3L1","4L1","5L1"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","4L1","5M","5L1"],swagger:["3T","4M","5M"],sweetscent:["3L1","4L1","5L1"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],toxic:["3M","4M","5M"],uproar:["4T","5T"],venoshock:["5M"],worryseed:["4T","5T"],afteryou:["5T"]}}, - paras:{learnset:{aerialace:["3M","4M","5M"],agility:["4E","5E"],aromatherapy:["3L49","4L38","5L43"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["4M","5M"],bugbite:["4E","4T","5E","5T"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3E","3T","4E","5E"],crosspoison:["4E","5E","5D"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M","5E"],energyball:["4M","5M"],facade:["3M","4M","5M"],falseswipe:["3E","4E","4M","5M","3S0"],flail:["3E","4E","5E"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T","5L17"],gigadrain:["3M","3L43","4M","4L33","5L38","5T"],grassknot:["4M","5M"],growth:["3L37","4L27","5L33"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],knockoff:["4T","5T"],leechlife:["3L19","4L11","5L11"],leechseed:["5E"],lightscreen:["3E","4E","5M"],metalclaw:["4E","5E"],mimic:["3T"],naturalgift:["4M","5E"],poisonpowder:["3L13","4L6","5L6"],protect:["3M","4M","5M"],psybeam:["3E","4E","5E"],pursuit:["3E","4E","5E"],ragepowder:["5L49"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],scratch:["3L1","4L1","5L1"],screech:["3E","4E","5E"],secretpower:["3M","4M"],seedbomb:["4T","5T"],slash:["3L31","4L22","5L27","3S0"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spore:["3L25","4L17","5L22","3S0"],stringshot:["4T"],strugglebug:["5M"],stunspore:["3L7","4L6","5L6","5D"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["3E","4E","5E"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T","5D"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],venoshock:["5M"],worryseed:["4T","5T"],xscissor:["4M","4L43","5M","5L54"],afteryou:["5T"]}}, - parasect:{learnset:{aerialace:["3M","4M","5M"],aromatherapy:["3L59","4L47","5L51"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["4M","5M"],bugbite:["4T","5T"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],crosspoison:["4L1","5L1"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],falseswipe:["4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T","5L17"],gigadrain:["3M","3L51","4M","4L39","5L44","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growth:["3L43","4L30","5L37"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],knockoff:["4T","5T"],leechlife:["3L19","4L1","4L11","5L1","5L11"],lightscreen:["5M"],mimic:["3T"],naturalgift:["4M"],poisonpowder:["3L1","3L13","4L1","4L6","5L1","5L6"],protect:["3M","4M","5M"],ragepowder:["5L59"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],seedbomb:["4T","5T"],slash:["3L35","4L22","5L29"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spore:["3L27","4L17","5L22"],stringshot:["4T"],strugglebug:["5M"],stunspore:["3L1","3L7","4L1","4L6","5L1","5L6"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],venoshock:["5M"],worryseed:["4T","5T"],xscissor:["4M","4L55","5M","5L66"],afteryou:["5T"]}}, - venonat:{learnset:{agility:["4E","5E"],attract:["3M","4M","5M"],batonpass:["3E","4E","5E","5D"],bugbite:["4E","4T","5E","5T"],captivate:["4M"],confusion:["3L17","4L11","5L11"],disable:["3L1","4L1","5L1","5D"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],foresight:["3L1","4L1","5L1"],frustration:["3M","4M","5M"],gigadrain:["3E","3M","4E","4M","5E","5T"],hiddenpower:["3M","4M","5M"],leechlife:["3L25","4L17","5L17"],mimic:["3T"],morningsun:["4E","5E"],naturalgift:["4M"],poisonfang:["4L41","5L41"],poisonpowder:["3L20","4L13","5L13"],protect:["3M","4M","5M"],psybeam:["3L33","4L25","5L25"],psychic:["3M","3L41","4M","4L47","5M","5L47"],ragepowder:["5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],screech:["3E","4E","5E"],secretpower:["3M","4M","5E"],signalbeam:["3E","4E","4L35","4T","5E","5L35","5T"],skillswap:["3M","4M","5E","5T","5D"],sleeppowder:["3L36","4L29","5L29"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],stunspore:["3L28","4L23","5L23"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3L9","4L5","5L5"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],toxicspikes:["4E","5E"],venoshock:["5M"],zenheadbutt:["4L37","4T","5L37","5T"]}}, - venomoth:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M"],aircutter:["4T"],attract:["3M","4M","5M"],bugbite:["4T","5T"],bugbuzz:["4L59","5L59"],captivate:["4M"],confusion:["3L17","4L11","5L11"],defog:["4M"],disable:["3L1","4L1","5L1"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],foresight:["3L1","4L1","5L1"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],gust:["3L31","4L31","5L31"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],leechlife:["3L25","4L17","5L17"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],poisonfang:["4L47","5L47"],poisonpowder:["3L20","4L13","5L13"],protect:["3M","4M","5M"],psybeam:["3L36","4L25","5L25"],psychic:["3M","3L52","4M","4L55","5M","5L55","3S0"],quiverdance:["5L63"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5T"],round:["5M"],secretpower:["3M","4M"],signalbeam:["4L37","4T","5L37","5T"],silverwind:["3L1","4M","4L1","5L1","3S0"],skillswap:["3M","4M","5T"],sleeppowder:["3L42","4L29","5L29"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],stunspore:["3L28","4L23","5L23"],substitute:["3T","4M","5M","3S0"],sunnyday:["3M","4M","5M"],supersonic:["3L1","3L9","4L1","4L5","5L1","5L5"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],tailwind:["4T","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uturn:["4M","5M"],venoshock:["5M"],zenheadbutt:["4L41","4T","5L41","5T"]}}, - diglett:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["3E","4E","5E"],astonish:["4E","4L7","5E","5L7"],attract:["3M","4M","5M"],beatup:["3E","4E","5E","5D"],bodyslam:["3T"],bulldoze:["5M","5L18"],captivate:["4M"],cut:["3M","4M","5M"],dig:["3M","3L17","4M","4L18","5M","5L34"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4L26","4T","5L29","5T"],earthquake:["3M","3L41","4M","4L37","5M","5L40"],echoedvoice:["5M"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E"],finalgambit:["5E"],fissure:["3L49","4L40","5L45"],frustration:["3M","4M","5M"],furyswipes:["3L21"],growl:["3L5","4L4","5L4"],headbutt:["5E"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],magnitude:["3L9","4L12","5L15"],memento:["5E"],mimic:["3T"],mudbomb:["4E","4L29","5E","5L26"],mudslap:["3L25","3T","4L15","4T","5L12"],naturalgift:["4M"],protect:["3M","4M","5M"],pursuit:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],reversal:["4E","5E"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandattack:["3L1","4L1","5L1","5D"],sandstorm:["4M","5M"],scratch:["3L1","4L1","5L1"],screech:["3E","4E","5E"],secretpower:["3M","4M"],shadowclaw:["4M","5M"],slash:["3L33","4L34","5L37"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T","5D"],substitute:["3T","4M","5M"],suckerpunch:["4L23","4T","5L23"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["3E","4E","5E","5T"]}}, - dugtrio:{learnset:{aerialace:["3M","4M","5M"],astonish:["4L7","5L7"],attract:["3M","4M","5M"],bodyslam:["3T"],bulldoze:["5M","5L18"],captivate:["4M"],charm:["3S0"],cut:["3M","4M","5M"],dig:["3M","3L17","4M","4L18","5M","5L40"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4L28","4T","5L33","5T"],earthquake:["3M","3L51","4M","4L45","5M","5L50","3S0"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fissure:["3L64","4L50","5L57"],frustration:["3M","4M","5M"],furyswipes:["3L21"],gigaimpact:["4M","5M"],growl:["3L1","3L5","4L1","4L4","5L1","5L4"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],magnitude:["3L9","4L12","5L15"],mimic:["3T"],mudbomb:["4L33","5L28"],mudslap:["3L25","3T","4L15","4T","5L12"],naturalgift:["4M"],nightslash:["4L1","5L1"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandattack:["3L1","4L1","5L1"],sandstorm:["3S0","4M","5M"],sandtomb:["3L26","4L26","5L26"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],shadowclaw:["4M","5M"],slash:["3L38","4L40","5L45"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4L23","4T","5L23"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],triattack:["3L1","4L1","5L1","3S0"],uproar:["5T"]}}, - meowth:{learnset:{aerialace:["3M","4M","5M"],amnesia:["3E","4E","5E"],assist:["3E","4E","5E","4S5"],assurance:["4L41","5L41"],attract:["3M","4M","5M"],bite:["3L11","3L10","4L6","5L6","3S2","3S3","4S4"],bodyslam:["3T"],captivate:["4M","4L46","5L46"],charm:["3E","4E","5E"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L28","3L25","4L22","5L22"],fakeout:["3L50","3L43","4L9","5L9","4S4","4S5"],feint:["4L54","5L54"],flail:["4E","5E"],flash:["3M","4M","5M"],foulplay:["5E","5T"],frustration:["3M","4M","5M"],furyswipes:["3L41","3L36","4L14","5L14","4S4","5S6"],growl:["3L1","4L1","5L1","3S0","3S1","3S2"],gunkshot:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hypnosis:["3E","4E","5E","5D"],icywind:["3T","4T","5T"],irontail:["3M","4M","5E","5T"],knockoff:["4T","5T"],lastresort:["4E","4T","5E","5T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L38","5L38","5S6"],naturalgift:["4M"],nightmare:["3T"],nightslash:["4L49","5L49"],odorsleuth:["4E","5E"],payback:["4M","5M"],payday:["3L20","3L18","4L30","5L30","3S3","4S5"],petaldance:["3S0"],protect:["3M","4M","5M"],psychup:["3E","3T","4E","4M","5M"],punishment:["4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],round:["5M"],scratch:["3L1","4L1","5L1","5D","3S0","3S1","3S2","4S5"],screech:["3L35","3L31","4L17","5L17","4S4"],secretpower:["3M","4M","5D"],seedbomb:["4T","5T"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sing:["3S3","5S6"],slash:["3L46","3L40","4L33","5L33","3S3"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5E","5T","5S6"],snore:["3T","4T","5T"],spite:["3E","4E","4T","5E","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","3L45","4M","5M"],swift:["3T","4T"],tailwhip:["4E","5E"],taunt:["3M","4M","4L25","5M","5L25"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uturn:["4M","5M"],waterpulse:["3M","4M"],workup:["5M"],covet:["5T"],uproar:["5T"],hypervoice:["5T"]}}, - persian:{learnset:{aerialace:["3M","4M","5M"],assurance:["4L49","5L49"],attract:["3M","4M","5M"],bite:["3L1","3L11","3L10","4L1","4L6","5L1","5L6"],bodyslam:["3T"],captivate:["4M","4L56","5L56"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],echoedvoice:["5M"],embargo:["4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L29","3L25","4L22","5L22"],fakeout:["3L59","3L55","4L1","4L9","5L1","5L9"],feint:["4L68","5L68"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],furyswipes:["3L46","3L42","4L14","5L14"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1"],gunkshot:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L44","5L44"],naturalgift:["4M"],nightmare:["3T"],nightslash:["4L61","5L61"],payback:["4M","5M"],payday:["3L20","3L18"],powergem:["4L32","5L32"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],round:["5M"],scratch:["3L1","4L1","5L1"],screech:["3L38","3L34","4L17","5L17"],secretpower:["3M","4M"],seedbomb:["4T","5T"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],slash:["3L53","3L49","4L37","5L37"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","3L61","4M","5M"],swift:["3T","4T","5L28"],switcheroo:["4L1","5L1"],taunt:["3M","4M","4L25","5M","5L25"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"],waterpulse:["3M","4M"],workup:["5M"],covet:["5T"],foulplay:["5T"],hypervoice:["5T"]}}, - psyduck:{learnset:{aerialace:["3M","4M","5M"],amnesia:["4L44","5L48"],aquatail:["4T","5T","5L32"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],brine:["4M","5D"],calmmind:["3M","4M","5M"],captivate:["4M"],confuseray:["4E","5E"],confusion:["3L16","4L18","5L18","3S0"],counter:["3T"],crosschop:["3E","4E","5E"],dig:["3M","4M","5M"],disable:["3L10","4L14","5L14","3S0"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],encore:["4E","5E","5D"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],furyswipes:["3L40","4L27","5L27"],futuresight:["3E","4E","5E"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hydropump:["3L50","4L48","5L53"],hypnosis:["3E","4E","5E"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lightscreen:["3E","4E","5M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudbomb:["4E","5E"],mudslap:["3T","4T"],mudsport:["3S1"],naturalgift:["4M"],protect:["3M","4M","5M"],psybeam:["3E","4E","5E"],psychic:["3E","4E","4M","5M"],psychup:["3L31","3T","4M","4L35","5M","5L40"],psyshock:["5M"],raindance:["3M","4M","5M"],refresh:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],scald:["5M"],scratch:["3L1","4L1","5L1","3S1"],screech:["3L23","4L31","5L31"],secretpower:["3M","4M","5E"],seismictoss:["3T"],shadowclaw:["4M","5M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5E","5T"],snore:["3T","4T","5T"],soak:["5L35"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],synchronoise:["5E"],tailwhip:["3L5","4L5","5L5","3S0","3S1"],telekinesis:["5M"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["4L9","5L9"],waterpulse:["3M","4M","4L22","5L22"],watersport:["3L1","4L1","5L1","5D","3S1"],whirlpool:["4M"],wonderroom:["5L57","5T"],worryseed:["4T","5T"],yawn:["4E","5E"],zenheadbutt:["4L40","4T","5L44","5T"]}}, - golduck:{learnset:{aerialace:["3M","4M","5M"],amnesia:["4L50","5L56"],aquajet:["4L1","5L1"],aquatail:["4T","5T","5L32"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","3S0"],brine:["4M"],calmmind:["3M","4M","5M"],captivate:["4M"],charm:["3S0"],confusion:["3L16","4L18","5L18"],counter:["3T"],dig:["3M","4M","5M"],disable:["3L1","3L10","4L14","5L14"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],furyswipes:["3L44","4L27","5L27"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hydropump:["3L58","4L56","5L63"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lightscreen:["5M"],lowkick:["4T","5T"],lowsweep:["5M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],psychic:["4M","5M"],psychup:["3L31","3T","4M","4L37","5M","5L44","3S0"],psyshock:["5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rocksmash:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],scald:["5M"],scratch:["3L1","4L1","5L1"],screech:["3L23","4L31","5L31"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],soak:["5L37"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwhip:["3L1","3L5","4L1","4L5","5L1","5L5"],telekinesis:["5M"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M","3S0"],watergun:["4L1","4L9","5L1","5L9"],waterpulse:["3M","4M","4L22","5L22"],watersport:["3L1","4L1","5L1"],whirlpool:["4M"],wonderroom:["5L69","5T"],worryseed:["4T","5T"],zenheadbutt:["4L44","4T","5L50","5T"]}}, - mankey:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M"],assurance:["4L25","5L25"],attract:["3M","4M","5M"],beatup:["3E","4E","5E"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],closecombat:["4E","4L49","5E","5L49"],counter:["3E","3T","4E","5E"],covet:["4L1","5L1","5T"],crosschop:["3L39","3L31","4L37","5L37"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],encore:["4E","5E"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],finalgambit:["5L53"],firepunch:["3T","4T","5T"],fling:["4M","5M"],focusblast:["4M","5M"],focusenergy:["3L27","3L21","4L1","5L1"],focuspunch:["3M","4M","5E"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],furyswipes:["3L21","3L16","4L9","5L9"],gunkshot:["4T","5T"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5T"],karatechop:["3L15","3L11","4L13","5L13"],leer:["3L1","4L1","5L1"],lowkick:["3L9","3L6","4L1","4T","5L1","5D","5T"],lowsweep:["5M"],meditate:["3E","4E","5E"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],overheat:["3M","4M","5M"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],psychup:["3T"],punishment:["4L45","5L45"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],revenge:["3E","4E","5E"],reversal:["3E","4E","5E","5D"],rockclimb:["4M"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],scratch:["3L1","4L1","5L1"],screech:["3L45","3L41","4L21","5L21"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3L33","3T","3L26","4L17","5L17"],sleeptalk:["3T","4M","5E","5T"],smackdown:["5M"],smellingsalt:["3E","4E","5E"],snore:["3T"],spite:["4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","3L36","4M","4L33","5M","5L33"],swift:["3T","4T"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thrash:["3L51","3L46","4L41","5L41"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5D","5T"],toxic:["3M","4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"],vacuumwave:["4T"],workup:["5M"],dualchop:["5T"]}}, - primeape:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M"],assurance:["4L25","5L25"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],closecombat:["4L59","5L59"],crosschop:["3L45","3L35","4L41","5L41","3S0"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],finalgambit:["5L63"],firepunch:["3T","4T","5T"],fling:["4M","4L1","5M","5L1"],focusblast:["4M","5M"],focusenergy:["3L27","3L21","4L1","5L1","3S0"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furyswipes:["3L21","3L16","4L9","5L9"],gigaimpact:["4M","5M"],gunkshot:["4T","5T"],headbutt:["4T"],helpinghand:["4T","5T","3S0"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5T"],karatechop:["3L15","3L11","4L13","5L13"],leer:["3L1","4L1","5L1"],lowkick:["3L1","3L9","3L6","4L1","4T","5L1","5T"],lowsweep:["5M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],overheat:["3M","4M","5M"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],psychup:["3T"],punishment:["4L53","5L53"],rage:["3L1","3L28","4L28","5L28"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],reversal:["3S0"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],scratch:["3L1","4L1","5L1"],screech:["3L54","3L53","4L21","5L21"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3L36","3T","3L26","4L17","5L17"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T"],spite:["4T","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","3L44","4M","4L35","5M","5L35"],swift:["3T","4T"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thrash:["3L63","3L62","4L47","5L47"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"],vacuumwave:["4T"],workup:["5M"],covet:["5T"],dualchop:["5T"]}}, - growlithe:{learnset:{aerialace:["3M","4M","5M"],agility:["3L43","4L39","5L42"],attract:["3M","4M","5M"],bite:["3L1","4L1","5L1","5D","3S1","3S2"],bodyslam:["3E","3T","4E","5E","5D"],captivate:["4M"],charm:["3S2"],closecombat:["5E"],covet:["5E","5T"],crunch:["3E","4E","4L42","5E","5L45"],dig:["3M","4M","5M"],doubleedge:["3T","4E","5E"],doublekick:["5E"],doubleteam:["3M","4M","5M"],ember:["3L7","4L6","5L6","3S1"],endure:["3T","4M","5D"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firefang:["4L28","5L28"],firespin:["3E","4E","5E"],flameburst:["5L31"],flamecharge:["5M"],flamethrower:["3M","3L49","4M","4L34","5M","5L39","3S2"],flamewheel:["3L31","4L20","5L20","3S0"],flareblitz:["4E","4L48","5E","5L56"],frustration:["3M","4M","5M"],headbutt:["4T"],heatwave:["3E","4E","4L45","4T","5E","5L51","5T"],helpinghand:["3L37","4L17","4T","5L17","5T"],hiddenpower:["3M","4M","5M"],howl:["3E","4E","5E"],incinerate:["5M"],irontail:["3M","4M","5E","5T"],leer:["3L13","4L9","5L9","3S0"],mimic:["3T"],morningsun:["4E","5E"],mudslap:["4T"],naturalgift:["4M"],odorsleuth:["3L19","4L14","5L14","3S0"],outrage:["5L43","5T"],overheat:["3M","4M","5M"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M","5L48"],"return":["3M","4M","5M"],reversal:["4L25","5L25"],roar:["3M","3L1","4M","4L1","5M","5L1","3S1","5D"],rocksmash:["3M","4M","5M"],round:["5M"],safeguard:["3E","4E","5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],takedown:["3L25","4L31","5L34","3S0","3S2"],thief:["3M","4M","5M"],thrash:["3E","4E","5E"],toxic:["3M","4M","5M"],wildcharge:["5M"],willowisp:["4M","5M"]}}, - arcanine:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bite:["3L1","4L1","5L1"],bodyslam:["3T"],bulldoze:["5M"],captivate:["4M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonpulse:["4M","5T"],ember:["3L1"],endure:["3T","4M"],extremespeed:["3L49","4L39","5L39"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firefang:["4L1","5L1"],flamecharge:["5M"],flamethrower:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["4T"],naturalgift:["4M"],odorsleuth:["3L1","4L1","5L1"],overheat:["3M","4M","5M"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","3L1","4M","4L1","5M","5L1"],rockclimb:["4M"],rocksmash:["3M","4M","5M"],round:["5M"],safeguard:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snore:["3T","4T","5T"],solarbeam:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],thief:["3M","4M","5M"],thunderfang:["4L1","5L1"],toxic:["3M","4M","5M"],wildcharge:["5M"],willowisp:["4M","5M"],covet:["5T"],outrage:["5T"]}}, - poliwag:{learnset:{attract:["3M","4M","5M"],bellydrum:["3L37","4L31","5L31"],blizzard:["3M","4M","5M"],bodyslam:["3L31","3T","4L21","5L21"],bubble:["3L1","4L5","5L5","3S0"],bubblebeam:["3E","4E","4L25","5E","5L25"],captivate:["4M"],defensecurl:["3T"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleslap:["3L19","4L15","5L15"],doubleteam:["3M","4M","5M"],encore:["4E","5E"],endeavor:["4E","5E","5T"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],haze:["3E","4E","5E"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["3L43","4L38","5L38"],hypnosis:["3L7","4L8","5L8","5D"],iceball:["3E","4E","5E"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],mimic:["3T"],mindreader:["3E","4E","5E"],mist:["3E","4E","5E","5D"],mudbomb:["4L41","5L41"],mudshot:["4E","4L28","5E","5L28"],naturalgift:["4M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],raindance:["3M","3L25","4M","4L18","5M","5L18"],refresh:["4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5D","5T"],snore:["3T","4T","5T"],splash:["3E","4E","5E"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetkiss:["3S0"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],wakeupslap:["4L35","5L35"],waterfall:["3M","4M","5M"],watergun:["3L13","4L11","5L11"],waterpulse:["3M","4M","5E"],watersport:["3E","4E","4L1","5E","5L1"],whirlpool:["4M"],helpinghand:["5T"]}}, - poliwhirl:{learnset:{attract:["3M","4M","5M"],bellydrum:["3L43","4L37","5L37"],blizzard:["3M","4M","5M"],bodyslam:["3L35","3T","4L21","5L21"],brickbreak:["3M","4M","5M"],bubble:["3L1","4L1","4L5","5L1","5L5"],bubblebeam:["4L27","5L27"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleslap:["3L19","4L15","5L15"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["3L51","4L48","5L48"],hypnosis:["3L1","3L7","4L1","4L8","5L1","5L8"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudbomb:["4L53","5L53"],mudshot:["4L32","5L32"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],raindance:["3M","3L27","4M","4L18","5M","5L18"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],wakeupslap:["4L43","5L43"],waterfall:["3M","4M","5M"],watergun:["3L1","3L13","4L11","5L11"],waterpulse:["3M","4M"],watersport:["4L1","5L1"],whirlpool:["4M"],helpinghand:["5T"],endeavor:["5T"]}}, - poliwrath:{learnset:{attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","3S0"],bubblebeam:["4L1","5L1"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],circlethrow:["5L53"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleslap:["3L1","4L1","5L1"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T","4L43","5L32"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],helpinghand:["4T","5T","3S0"],hiddenpower:["3M","4M","5M"],hydropump:["3S0"],hyperbeam:["3M","4M","5M"],hypnosis:["3L1","4L1","5L1"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],lowsweep:["5M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mindreader:["3L51","4L53","5L43"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],raindance:["3M","4M","5M","3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],submission:["3L1","3L35","4L1","5L1"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],vacuumwave:["4T"],waterfall:["3M","4M","5M"],watergun:["3L1"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"],endeavor:["5T"]}}, - politoed:{learnset:{attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bounce:["4L43","4T","4L37","5L37","5T"],brickbreak:["3M","4M","5M"],bubblebeam:["4L1","5L1"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleslap:["3L1","4L1","5L1"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],hypervoice:["4L48","5L48","5T"],hypnosis:["3L1","4L1","5L1"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M"],perishsong:["3L1","3L35","4L1","5L1"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3L51","3T","4M","4L53","4L27","5M","5L27"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L1"],waterpulse:["3M","4M"],whirlpool:["4M"],icepunch:["5T"],endeavor:["5T"]}}, - abra:{learnset:{allyswitch:["5M"],attract:["3M","4M","5M"],barrier:["3E","4E","5E"],bodyslam:["3T"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],counter:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],embargo:["4M","5M"],encore:["3E","4E","5E"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],firepunch:["3E","3T","4E","4T","5E","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],grassknot:["4M","5M"],gravity:["4T","5D","5T"],guardsplit:["5E"],guardswap:["4E","5E"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],icepunch:["3E","3T","4E","4T","5E","5T"],irontail:["3M","4M","5T"],knockoff:["3E","4E","4T","5E","5T"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],powertrick:["4E","5E"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5E","5D","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],telekinesis:["5M"],teleport:["3L1","4L1","5L1","5D"],thief:["3M","4M","5M"],thunderpunch:["3E","3T","4E","4T","5E","5T"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],zenheadbutt:["4T","5T"],foulplay:["5T"],magicroom:["5T"],wonderroom:["5T"]}}, - kadabra:{learnset:{allyswitch:["5M","5L24"],attract:["3M","4M","5M"],bodyslam:["3T"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],confusion:["3L1","3L16","4L1","4L16","5L1","5L16"],counter:["3T"],disable:["3L18","4L18","5L18"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],embargo:["4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],futuresight:["3L30","4L42","5L48"],grassknot:["4M","5M"],gravity:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5T"],kinesis:["3L1","4L1","5L1"],knockoff:["4T","5T"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],miracleeye:["4L22","5L22"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M"],psybeam:["3L21","4L24","5L28"],psychic:["3M","3L36","4M","4L40","5M","5L46"],psychocut:["4L34","5L40"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],recover:["3L25","4L30","5L36"],recycle:["4M","5T"],reflect:["3M","3L23","4M","4L28","5M","5L30"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roleplay:["3L33","4L36","4T","5L42","5T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],telekinesis:["5M","5L34"],teleport:["3L1","4L1","5L1"],thief:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["3L43","4L46","4T","5L52","5T"],trickroom:["4M","5M"],zenheadbutt:["4T","5T"],foulplay:["5T"],magicroom:["5T"],wonderroom:["5T"]}}, - alakazam:{learnset:{allyswitch:["5M","5L24"],attract:["3M","4M","5M"],bodyslam:["3T"],calmmind:["3M","3L33","4M","4L36","5M","5L42","3S0"],captivate:["4M"],chargebeam:["4M","5M"],confusion:["3L1","3L16","4L1","4L16","5L1","5L16"],counter:["3T"],disable:["3L18","4L18","5L18"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],embargo:["4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],futuresight:["3L30","4L42","5L48","3S0"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5T"],kinesis:["3L1","4L1","5L1"],knockoff:["4T","5T"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],miracleeye:["4L22","5L22"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M"],psybeam:["3L21","4L24","5L28"],psychic:["3M","3L36","4M","4L40","5M","5L46","3S0"],psychocut:["4L34","5L40"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],recover:["3L25","4L30","5L36"],recycle:["4M","5T"],reflect:["3M","3L23","4M","4L28","5M","5L30"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],telekinesis:["5M","5L34"],teleport:["3L1","4L1","5L1"],thief:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["3L43","4L46","4T","5L52","3S0","5T"],trickroom:["4M","5M"],zenheadbutt:["4T","5T"],foulplay:["5T"],magicroom:["5T"],wonderroom:["5T"]}}, - machop:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],bulletpunch:["4E","5E","5D"],captivate:["4M"],closecombat:["4E","5E"],counter:["3E","3T","4E","5E"],crosschop:["3L40","4L37","5L43"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3L49","3T","4L46","5L49"],earthquake:["3M","4M","5M"],encore:["3E","4E","5E"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4E","4T","5E","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focusenergy:["3L7","4L7","5L7"],focuspunch:["3M","4M"],foresight:["3L22","4L13","5L19"],frustration:["3M","4M","5M"],headbutt:["4T"],heavyslam:["5E"],helpinghand:["4T","5D","5T"],hiddenpower:["3M","4M","5M"],icepunch:["3T","4E","4T","5E","5T"],incinerate:["5M"],karatechop:["3L13","4L10","5L10"],knockoff:["5E","5T"],leer:["3L1","4L1","5L1"],lightscreen:["3E","4E","5M"],lowkick:["3L1","4L1","4T","5L1","5D","5T"],lowsweep:["5M","5L13"],meditate:["3E","4E","5E"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M"],poisonjab:["4M","5M"],powertrick:["4E","5E"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],revenge:["3L25","4L22","5L25"],rockclimb:["4M"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4T","5T"],rollingkick:["3E","4E","5E"],round:["5M"],scaryface:["3L43","4L43","5L46"],secretpower:["3M","4M"],seismictoss:["3L19","3T","4L19","5L22"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],smellingsalt:["3E","4E","5E"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],submission:["3L37","4L31","5L34"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],thunderpunch:["3T","4E","4T","5E","5T"],tickle:["5E"],toxic:["3M","4M","5M"],vacuumwave:["4T"],vitalthrow:["3L31","4L25","5L31"],wakeupslap:["4L34","5L37"],workup:["5M"],dualchop:["5T"]}}, - machoke:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],crosschop:["3L46","4L40","5L44"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3L59","3T","4L51","5L55"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focusenergy:["3L1","3L7","4L1","4L7","5L1","5L7"],focuspunch:["3M","4M"],foresight:["3L22","4L13","5L19","3S0","5S1"],frustration:["3M","4M","5M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],icepunch:["3T","4T","5T"],incinerate:["5M"],karatechop:["3L13","4L10","5L1","5L10"],leer:["3L1","4L1","5L1"],lightscreen:["5M"],lowkick:["3L1","4L1","4T","5L1","5T"],lowsweep:["5M","5L13","5S1"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],revenge:["3L25","4L22","5L25","3S0","5S1"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],scaryface:["3L51","4L44","5L51"],secretpower:["3M","4M"],seismictoss:["3L19","3T","4L19","5L22","3S0","5S1"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],submission:["3L41","4L32","5L36"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],vacuumwave:["4T"],vitalthrow:["3L33","4L25","5L32","3S0"],wakeupslap:["4L36","5L40"],workup:["5M"],dualchop:["5T"],knockoff:["5T"]}}, - machamp:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],bulletpunch:["4C"],captivate:["4M"],counter:["3T"],crosschop:["3L46","4L40","5L44"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3L59","3T","4L51","5L55"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focusenergy:["3L1","3L7","4L1","4L7","5L1","5L7"],focuspunch:["3M","4M"],foresight:["3L22","4L13","5L19"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],incinerate:["5M"],karatechop:["3L13","4L10","5L1","5L10"],leer:["3L1","4L1","5L1"],lightscreen:["5M"],lowkick:["3L1","4L1","4T","5L1","5T"],lowsweep:["5M","5L13"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],revenge:["3L25","4L22","5L25"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],scaryface:["3L51","4L44","5L51"],secretpower:["3M","4M"],seismictoss:["3L19","3T","4L19","5L22"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],submission:["3L41","4L32","5L36"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],vacuumwave:["4T"],vitalthrow:["3L33","4L25","5L32"],wakeupslap:["4L36","5L40"],wideguard:["5L1"],workup:["5M"],dualchop:["5T"],knockoff:["5T"]}}, - bellsprout:{learnset:{acid:["3L23","4L23","5L23"],attract:["3M","4M","5M"],bulletseed:["3M","4M","5E"],captivate:["4M"],clearsmog:["5E"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],encore:["3E","4E","5E"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gastroacid:["4L35","4T","5L35","5T"],gigadrain:["3M","4M","5E","5T"],grassknot:["4M","5M"],growth:["3L6","4L7","5L7","3S1"],hiddenpower:["3M","4M","5M"],ingrain:["3E","4E","5E"],knockoff:["4L27","4T","5L27","5T"],leechlife:["3E","4E","5E"],magicalleaf:["3E","4E","5E"],mimic:["3T"],naturalgift:["4M","5E"],poisonpowder:["3L17","4L15","5L15"],powerwhip:["5E"],protect:["3M","4M","5M"],razorleaf:["3L37","4L39","5L39"],reflect:["3E","4E","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5D","5T"],slam:["3L45","4L41","5L41"],sleeppowder:["3L15","4L13","5L13"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stunspore:["3L19","4L17","5L17"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["3L30","4L29","5L29"],swordsdance:["3E","3T","4E","4M","5M"],synthesis:["3E","4E","4T","5E","5D","5T"],teeterdance:["3S0"],thief:["3M","4M","5M"],tickle:["4E","5E"],toxic:["3M","4M","5M"],venoshock:["5M"],vinewhip:["3L1","4L1","5L1","5D","3S0","3S1"],weatherball:["4E","5E"],worryseed:["4E","4T","5E","5T"],wrap:["3L11","4L11","5L11"],wringout:["4L47","5L47"],bind:["5T"]}}, - weepinbell:{learnset:{acid:["3L24","4L23","5L23"],attract:["3M","4M","5M"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gastroacid:["4L35","4T","5L35","5T"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M"],growth:["3L1","3L6","4L1","4L7","5L1","5L7"],hiddenpower:["3M","4M","5M"],knockoff:["4L27","4T","5L27","5T"],magicalleaf:["3S0"],mimic:["3T"],morningsun:["3S0"],naturalgift:["4M"],poisonpowder:["3L17","4L15","5L15"],protect:["3M","4M","5M"],razorleaf:["3L42","4L39","5L39"],reflect:["5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],slam:["3L54","4L41","5L41"],sleeppowder:["3L15","4L13","5L13"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M","3S0"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stunspore:["3L19","4L17","5L17"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["3L33","4L29","5L29","3S0"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],venoshock:["5M"],vinewhip:["3L1","4L1","5L1"],worryseed:["4T","5T"],wrap:["3L1","3L11","4L1","4L11","5L1","5L11"],wringout:["4L47","5L47"],bugbite:["5T"],bind:["5T"]}}, - victreebel:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gastroacid:["4T","5T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],knockoff:["4T","5T"],leafblade:["4L47","5L47"],leafstorm:["4L47","5L47"],leaftornado:["5L27"],mimic:["3T"],naturalgift:["4M"],protect:["3M","4M","5M"],razorleaf:["3L1","4L1","5L1"],reflect:["5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeppowder:["3L1","4L1","5L1"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spitup:["3L1","4L1","5L1"],stockpile:["3L1","4L1","5L1"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["3L1","4L1","5L1"],sweetscent:["3L1","4L1","5L1"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],venoshock:["5M"],vinewhip:["3L1","4L1","5L1"],worryseed:["4T","5T"],bugbite:["5T"],bind:["5T"]}}, - tentacool:{learnset:{acid:["3L19","4L12","5L12"],acidspray:["5L26"],acupressure:["4E","5E","5D"],aquaring:["5E"],attract:["3M","4M","5M"],aurorabeam:["3E","4E","5E"],barrier:["3L36","4L26","5L29"],blizzard:["3M","4M","5M"],brine:["4M"],bubble:["5E"],bubblebeam:["3L25","4L19","5L19"],captivate:["4M"],confuseray:["3E","4E","5E"],constrict:["3L12","4L8","5L8"],cut:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5D","5T"],hail:["3M","4M","5M"],haze:["3E","4E","5E"],hex:["5L43"],hiddenpower:["3M","4M","5M"],hydropump:["3L49","4L40","5L47"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],knockoff:["4E","4T","5E","5T"],magiccoat:["4T","5T"],mimic:["3T"],mirrorcoat:["3E","4E","5E"],muddywater:["4E","5E"],naturalgift:["4M"],payback:["4M","5M"],poisonjab:["4M","4L33","5M","5L36"],poisonsting:["3L1","4L1","5L1"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rapidspin:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3E","4E","5M"],scald:["5M"],screech:["3L43","4L36","5L40"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5M","5L50"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],supersonic:["3L6","4L5","5L5","5D"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],thief:["3M","4M","5M"],tickle:["5E"],toxic:["3M","4M","5M"],toxicspikes:["4L15","5L15"],venoshock:["5M"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M","4L29","5L33"],whirlpool:["4M"],wrap:["3L30","4L22","5L22"],wringout:["4L43","5L54"],bind:["5T"]}}, - tentacruel:{learnset:{acid:["3L19","4L12","5L12"],acidspray:["5L26"],attract:["3M","4M","5M"],barrier:["3L38","4L26","5L29"],blizzard:["3M","4M","5M"],brine:["4M"],bubblebeam:["3L25","4L19","5L19"],captivate:["4M"],constrict:["3L1","3L12","4L1","4L8","5L1","5L8"],cut:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],hex:["5L47"],hiddenpower:["3M","4M","5M"],hydropump:["3L55","4L49","5L52"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],knockoff:["4T","5T"],magiccoat:["4T","5T"],mimic:["3T"],naturalgift:["4M"],payback:["4M","5M"],poisonjab:["4M","4L36","5M","5L38"],poisonsting:["3L1","4L1","5L1"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["5M"],scald:["5M"],screech:["3L47","4L42","5L43"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5M","5L56"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],supersonic:["3L1","3L6","4L1","4L5","5L1","5L5"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],toxicspikes:["4L15","5L15"],venoshock:["5M"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M","4L29","5L34"],whirlpool:["4M"],wrap:["3L30","4L22","5L22"],wringout:["4L55","5L61"],bind:["5T"]}}, - geodude:{learnset:{ancientpower:["4T"],attract:["3M","4M","5M"],autotomize:["5E"],block:["3E","4E","4T","5E","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M","5L32"],captivate:["4M"],counter:["3T"],curse:["4E","5E"],defensecurl:["3L1","3T","4L1","5L1","5D"],dig:["3M","4M","5M"],doubleedge:["3L46","3T","4L36","5L46"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L36","4M","4L29","5M","5L39"],endure:["3T","4M","5E"],explosion:["3L41","3T","4M","4L32","5M","5L43"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flail:["4E","5E"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M","5E"],frustration:["3M","4M","5M"],gyroball:["4M","5M"],hammerarm:["4E","5E"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],incinerate:["5M"],magnitude:["3L16","4L15","5L15"],megapunch:["3E","3T","4E","5E"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3L6","4L4","5L4"],naturalgift:["4M"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockblast:["3L31","4L25","5L22"],rockclimb:["4M","5E","5D"],rockpolish:["4M","4L8","5M","5L8"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rockthrow:["3L11","4L11","5L11"],rocktomb:["3M","4M","5M"],rollout:["3L26","3T","4L22","4T","5L18"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3L21","3T","4L18","5L29"],sleeptalk:["3T","4M","5T"],smackdown:["5M","5L25"],snore:["3T","4T","5T"],stealthrock:["4M","5L36","5T","5D"],stoneedge:["4M","4L39","5M","5L50"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],thunderpunch:["4T","5T"],toxic:["3M","4M","5M"],irondefense:["5T"]}}, - graveler:{learnset:{ancientpower:["4T"],attract:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M","5L36"],captivate:["4M"],counter:["3T"],defensecurl:["3L1","3T","4L1","5L1"],dig:["3M","4M","5M"],doubleedge:["3L62","3T","4L44","5L58"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L45","4M","4L33","5M","5L47"],endure:["3T","4M"],explosion:["3L53","3T","4M","4L38","5M","5L53"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gyroball:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],incinerate:["5M"],magnitude:["3L16","4L15","5L15"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3L1","3L6","4L1","4L4","5L1","5L4"],naturalgift:["4M"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockblast:["3L37","4L27","5L22"],rockclimb:["4M"],rockpolish:["4M","4L1","4L8","5M","5L1","5L8"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rockthrow:["3L1","3L11","4L11","5L11"],rocktomb:["3M","4M","5M"],rollout:["3L29","3T","4L22","4T","5L18"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3L21","3T","4L18","5L31"],sleeptalk:["3T","4M","5T"],smackdown:["5M","5L27"],snore:["3T","4T","5T"],stealthrock:["4M","5L42","5T"],stoneedge:["4M","4L49","5M","5L64"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],thunderpunch:["4T","5T"],toxic:["3M","4M","5M"],irondefense:["5T"]}}, - golem:{learnset:{ancientpower:["4T"],attract:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M","5L36"],captivate:["4M"],counter:["3T"],defensecurl:["3L1","3T","4L1","5L1"],dig:["3M","4M","5M"],doubleedge:["3L62","3T","4L44","5L58"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L45","4M","4L33","5M","5L47"],endure:["3T","4M"],explosion:["3L53","3T","4M","4L38","5M","5L53"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],gyroball:["4M","5M"],headbutt:["4T"],heavyslam:["5L69"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],ironhead:["4T","5T"],magnitude:["3L16","4L15","5L15"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3L1","3L6","4L1","4L4","5L1","5L4"],naturalgift:["4M"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockblast:["3L37","4L27","5L22"],rockclimb:["4M"],rockpolish:["4M","4L1","4L8","5M","5L1","5L8"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rockthrow:["3L1","3L11","4L11","5L11"],rocktomb:["3M","4M","5M"],rollout:["3L29","3T","4L22","4T"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3L21","3T","4L18","5L31"],sleeptalk:["3T","4M","5T"],smackdown:["5M","5L27"],snore:["3T","4T","5T"],stealthrock:["4M","5L42","5T"],steamroller:["5L18"],stoneedge:["4M","4L49","5M","5L64"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],thunderpunch:["4T","5T"],toxic:["3M","4M","5M"],irondefense:["5T"]}}, - ponyta:{learnset:{agility:["3L38","4L34","4L33","5L37"],attract:["3M","4M","5M"],bodyslam:["3T"],bounce:["3L45","4L44","4T","4L42","5L45","5T"],captivate:["4M","5E"],charm:["3E","4E","5E"],doubleedge:["3E","3T","4E","5E"],doublekick:["3E","4E","5E"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],ember:["3L14","4L16","4L10","5L9"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","3L53","4M","4L38","4L37","5M","5L41"],firespin:["3L25","4L25","4L24","5L25"],flamecharge:["5M","5L21"],flamethrower:["3M","4M","5M"],flamewheel:["3E","4E","4L15","5E","5L13"],flareblitz:["4L48","4L46","5L49"],frustration:["3M","4M","5M"],growl:["3L5","4L7","4L1","5L1"],headbutt:["4T"],heatwave:["4T","5D","5T"],hiddenpower:["3M","4M","5M"],horndrill:["4E","5E"],hypnosis:["3E","4E","5E"],incinerate:["5M"],inferno:["5L33"],irontail:["3M","4M","5T"],lowkick:["5E","5T"],mimic:["3T"],morningsun:["4E","5E"],naturalgift:["4M"],overheat:["3M","4M","5M"],protect:["3M","4M","5M"],quickattack:["3L1"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stomp:["3L19","4L19","5L17"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5D"],tailwhip:["3L9","4L10","4L6","5L4"],takedown:["3L31","4L28","5L29"],thrash:["3E","4E","5E","5D"],toxic:["3M","4M","5M"],wildcharge:["5M"],willowisp:["4M","5M"]}}, - rapidash:{learnset:{agility:["3L38","4L34","4L33","5L37"],attract:["3M","4M","5M"],batonpass:["3S0"],bodyslam:["3T"],bounce:["3L50","4L49","4T","4L47","5L45","5T"],captivate:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],ember:["3L1","3L14","4L1","4L16","4L10","5L1","5L9"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","3L63","4M","4L38","4L37","5M","5L41"],firespin:["3L25","4L25","4L24","5L25"],flamecharge:["5M","5L21"],flamethrower:["3M","4M","5M","3S0"],flamewheel:["4L15","5L13"],flareblitz:["4L58","4L56","5L49"],frustration:["3M","4M","5M"],furyattack:["3L40","4L40","5L40"],gigaimpact:["4M","5M"],growl:["3L1","3L5","4L1","4L7","5L1"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],inferno:["5L33"],irontail:["3M","4M","5T"],megahorn:["4L1","5L1"],mimic:["3T"],naturalgift:["4M"],overheat:["3M","4M","5M"],poisonjab:["4M","4L1","5M","5L1"],protect:["3M","4M","5M"],quickattack:["3L1","4L1","5L1"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","3S0"],stomp:["3L19","4L19","5L17"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M","3S0"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1"],tailwhip:["3L1","3L9","4L1","4L10","4L6","5L1","5L4"],takedown:["3L31","4L28","5L29"],toxic:["3M","4M","5M"],wildcharge:["5M"],willowisp:["4M","5M"],drillrun:["5T"],lowkick:["5T"]}}, - slowpoke:{learnset:{amnesia:["3L43","3L36","4L43","5L41"],aquatail:["4T","5T"],attract:["3M","4M","5M"],bellydrum:["3E","4E","5E"],blizzard:["3M","4M","5M"],block:["4E","4T","5E","5D","5T"],bodyslam:["3T"],brine:["4M","5D"],bulldoze:["5M"],calmmind:["3M","4M","5M"],captivate:["4M"],confusion:["3L20","3L17","4L15","5L14","3S0","5S2"],curse:["3L1","4L1","5L1","3S1"],dig:["3M","4M","5M"],disable:["3L29","3L24","4L20","5L19","3S0","5S2"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],futuresight:["3E","4E","5E"],grassknot:["4M","5M"],growl:["3L6","4L6","5L5","3S1"],hail:["3M","4M","5M"],headbutt:["3L34","3L29","4L25","4T","5L23","3S0","5S2"],healpulse:["5L58"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],lightscreen:["4M","5M"],magiccoat:["4T","5T"],mefirst:["4E","5E"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3E","4E","5E"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M"],psychic:["3M","3L48","3L40","4M","4L48","5M","5L45"],psychup:["3T","3L47","4M","4L57","5M","5L54"],psyshock:["5M"],raindance:["3M","4M","4L53","5M","5L49"],recycle:["4M","5T"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3E","3M","4E","4M","5M"],scald:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],slackoff:["4L39","5L36"],sleeptalk:["3E","3T","4E","4M","5E","5T"],snore:["3E","3T","4E","4T","5E","5T"],stomp:["3E","4E","5E"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S1"],telekinesis:["5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],watergun:["3L15","3L13","4L11","5L9","3S0"],waterpulse:["3M","4M","4L29","5L28","5S2"],whirlpool:["4M"],wonderroom:["5E","5T"],yawn:["3L1","4L1","5L1","5D","3S1"],zenheadbutt:["4E","4L34","4T","5E","5L32","5T"],afteryou:["5T"]}}, - slowbro:{learnset:{aerialace:["5M"],amnesia:["3L46","3L36","4L47","5L43"],aquatail:["4T","5T"],attract:["3M","4M","5M"],avalanche:["4M"],blizzard:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],brine:["4M"],bulldoze:["5M"],calmmind:["3M","4M","5M"],captivate:["4M"],confusion:["3L20","3L17","4L15","5L14"],counter:["3T"],curse:["3L1","4L1","5L1"],dig:["3M","4M","5M"],disable:["3L29","3L24","4L20","5L19"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growl:["3L1","3L6","4L1","4L6","5L1","5L5"],hail:["3M","4M","5M"],headbutt:["3L34","3L29","4L25","4T","5L23"],healpulse:["5L68"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irondefense:["4T","5T"],irontail:["3M","4M","5T"],lightscreen:["4M","5M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M"],psychic:["3M","3L54","3L44","4M","4L54","5M","5L49"],psychup:["3T","3L55","4M","4L67","5M","5L62"],psyshock:["5M"],raindance:["3M","4M","4L61","5M","5L55"],recycle:["4M","5T"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],scald:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],slackoff:["4L41","5L36"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],telekinesis:["5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],watergun:["3L15","3L13","4L11","5L9"],waterpulse:["3M","4M","4L29","5L28"],whirlpool:["4M"],withdraw:["3L37","4L37","5L37"],yawn:["3L1","4L1","5L1"],zenheadbutt:["4L34","4T","5L32","5T"],foulplay:["5T"],afteryou:["5T"],wonderroom:["5T"]}}, - slowking:{learnset:{aquatail:["4T","5T"],attract:["3M","4M","5M"],avalanche:["4M"],blizzard:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],brine:["4M"],bulldoze:["5M"],calmmind:["3M","4M","5M"],captivate:["4M"],confusion:["3L20","3L17","4L15","5L14"],counter:["3T"],curse:["3L1","4L1","5L1"],dig:["3M","4M","5M"],disable:["3L29","3L24","4L20","5L19"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragontail:["5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growl:["3L6","4L6","5L5"],hail:["3M","4M","5M"],headbutt:["3L34","3L29","4L25","4T","5L23"],healpulse:["5L58"],hiddenpower:["3M","4M","4L1","5M","5L1"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irondefense:["4T","5T"],irontail:["3M","4M","5T"],lightscreen:["4M","5M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L39","5L36"],naturalgift:["4M"],nightmare:["3T"],powergem:["4L1","5L1"],protect:["3M","4M","5M"],psychic:["3M","3L48","3L40","4M","4L48","5M","5L45"],psychup:["3T","3L47","4M","4L57","5M","5L54"],psyshock:["5M"],quash:["5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],scald:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3L43","3T","3L36","4M","4L43","5M","5L41"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],telekinesis:["5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],trumpcard:["4L53","5L49"],watergun:["3L15","3L13","4L11","5L9"],waterpulse:["3M","4M","4L29","5L28"],whirlpool:["4M"],yawn:["3L1","4L1","5L1"],zenheadbutt:["4L34","4T","5L32","5T"],foulplay:["5T"],afteryou:["5T"],wonderroom:["5T"]}}, - magnemite:{learnset:{chargebeam:["4M","5M"],discharge:["4L38","5L43"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],electroball:["5L27"],endure:["3T","4M"],explosion:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],flashcannon:["4M","5M","5L35"],frustration:["3M","4M","5M"],gravity:["4T","5D","5T"],gyroball:["4M","4L49","5M","5L54"],hiddenpower:["3M","4M","5M"],irondefense:["4T","5T"],lightscreen:["4M","5M"],lockon:["3L32","4L27","5L30"],magiccoat:["4T","5T"],magnetbomb:["4L30","5L33"],magnetrise:["4L46","4T","5L49","5T"],metalsound:["3L1","4L1","5L1","5D"],mimic:["3T"],mirrorshot:["4L43","5L46"],naturalgift:["4M"],protect:["3M","4M","5M"],psychup:["4M","5M"],raindance:["3M","4M","5M"],recycle:["4M","5D","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],screech:["3L44","4L33","5L38"],secretpower:["3M","4M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],sonicboom:["3L16","4L14","5L14"],spark:["3L26","4L22","5L22"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3L11","4L11","5L11"],swagger:["3T","4M","5M"],swift:["3L38","3T","4T"],tackle:["3L1","4L1","5L1"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thundershock:["3L6","4L6","5L6","5D"],thunderwave:["3L21","3T","4M","4L17","5M","5L17"],toxic:["3M","4M","5M"],voltswitch:["5M"],wildcharge:["5M"],zapcannon:["3L50","4L54","5L59"],electroweb:["5T"]}}, - magneton:{learnset:{chargebeam:["4M","5M"],discharge:["4L40","5L46"],doubleedge:["3T","3S0"],doubleteam:["3M","4M","5M"],electroball:["5L27"],endure:["3T","4M"],explosion:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],flashcannon:["4M","5M","5L39"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gravity:["4T","5T"],gyroball:["4M","4L54","5M","5L60"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],irondefense:["4T","5T"],lightscreen:["4M","5M"],lockon:["3L35","4L27","5L30"],magiccoat:["4T","5T"],magnetbomb:["4L30","5L34"],magnetrise:["4L50","4T","5L54","5T"],metalsound:["3L1","4L1","5L1"],mimic:["3T"],mirrorshot:["4L46","5L50"],naturalgift:["4M"],protect:["3M","4M","5M"],psychup:["4M","5M"],raindance:["3M","4M","5M","3S0"],recycle:["4M","5T"],reflect:["3M","4M","5M"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],screech:["3L53","4L34","5L40"],secretpower:["3M","4M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],sonicboom:["3L16","4L14","5L14"],spark:["3L26","4L22","5L22"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3L1","3L11","4L1","4L11","5L1","5L11"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],thunder:["3M","4M","5M","3S0"],thunderbolt:["3M","4M","5M"],thundershock:["3L1","3L6","4L1","4L6","5L1","5L6"],thunderwave:["3L21","3T","4M","4L17","5M","5L17"],toxic:["3M","4M","5M"],triattack:["3L44","4L1","5L1"],voltswitch:["5M"],wildcharge:["5M"],zapcannon:["3L62","4L60","5L66"],electroweb:["5T"]}}, - magnezone:{learnset:{barrier:["4L1","5L1"],chargebeam:["4M","5M"],discharge:["4L40","5L46"],doubleteam:["4M","5M"],electroball:["5L27"],endure:["4M"],explosion:["4M","5M"],facade:["4M","5M"],flash:["4M","5M"],flashcannon:["4M","5M","5L39"],frustration:["4M","5M"],gigaimpact:["4M","5M"],gravity:["4T","5T"],gyroball:["4M","4L54","5M","5L60"],headbutt:["4T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],irondefense:["4T","5T"],ironhead:["4T","5T"],lightscreen:["4M","5M"],lockon:["4L27","5L30"],magiccoat:["4T","5T"],magnetbomb:["4L30","5L34"],magnetrise:["4L50","4T","5L54","5T"],metalsound:["4L1","5L1"],mirrorcoat:["4L1","5L1"],mirrorshot:["4L46","5L50"],naturalgift:["4M"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],recycle:["4M","5T"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rollout:["4T"],round:["5M"],screech:["4L34","5L40"],secretpower:["4M"],shockwave:["4M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],sonicboom:["4L14","5L14"],spark:["4L22","5L22"],substitute:["4M","5M"],sunnyday:["4M","5M"],supersonic:["4L1","4L11","5L1","5L11"],swagger:["4M","5M"],swift:["4T"],tackle:["4L1","5L1"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thundershock:["4L1","4L6","5L1","5L6"],thunderwave:["4M","4L17","5M","5L17"],toxic:["4M","5M"],voltswitch:["5M"],wildcharge:["5M"],zapcannon:["4L60","5L66"],electroweb:["5T"]}}, - farfetchd:{learnset:{acrobatics:["5M","5L37"],aerialace:["3M","4M","4L13","5M","5L13","3S0"],agility:["3L36","4L31","5L31"],aircutter:["4L21","4T","5L21"],airslash:["4L37","5L49"],attract:["3M","4M","5M"],batonpass:["3S0"],bodyslam:["3T"],bravebird:["5L55"],captivate:["4M"],covet:["4E","5E","5T"],curse:["3E","4E","5E"],cut:["3M","4M","5M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["3L46","4M","4L43","4L45","5M","5L45"],featherdance:["3E","4E","5E"],feint:["4L43","5L43"],flail:["3E","4E","5E"],fly:["3M","4M","5M"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],furyattack:["3L16","4L7","5L7"],furycutter:["3L26","4L1","4T","5L1","5D"],gust:["3E","4E","5E"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],irontail:["3M","4M","5T"],knockoff:["3L21","4L9","4T","5L9","5T"],lastresort:["4T","5T"],leafblade:["4E","5E","5D"],leer:["3L11","4L1","5L1"],mimic:["3T"],mirrormove:["3E","4E","5E"],mudslap:["3T","4E","4T","5E"],naturalgift:["4M"],nightslash:["4E","4L33","5E","5L33"],ominouswind:["4T"],peck:["3L1","4L1","5L1"],pluck:["4M","5M"],poisonjab:["4M","4L1","5M","5L1"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],quickattack:["3E","4E","5E"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],revenge:["5E"],roost:["4M","5E","5D","5T"],round:["5M"],sandattack:["3L6","4L1","5L1"],secretpower:["3M","4M"],slash:["3L41","4L19","5L19","3S0"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3E","3M","4E","4M","5E"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3L31","3T","4M","4L25","5M","5L25","3S0"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],trumpcard:["5E"],twister:["4T"],uproar:["4T","5T"],uturn:["4M","5M"],wish:["3S0"],workup:["5M"],yawn:["3S0"],tailwind:["5T"],skyattack:["5T"],helpinghand:["5T"]}}, - doduo:{learnset:{acupressure:["4L28","5L28"],aerialace:["3M","4M","5M"],agility:["3L45","4L37","5L37"],aircutter:["4T"],assurance:["5E"],attract:["3M","4M","5M"],bodyslam:["3T"],bravebird:["4E","5E"],captivate:["4M"],doubleedge:["3T"],doublehit:["4L32","5L32"],doubleteam:["3M","4M","5M"],drillpeck:["3L37","4L41","5L41"],echoedvoice:["5M"],endeavor:["3E","4E","4L46","4T","5E","5L46","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E"],flail:["3E","4E","5E","5D"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],furyattack:["3L13","4L14","5L14"],growl:["3L1","4L1","5L1","5D"],haze:["3E","4E","5E"],hiddenpower:["3M","4M","5M"],knockoff:["4T","5T"],mimic:["3T"],mirrormove:["4E","5E"],mudslap:["3T","4T"],naturalgift:["4M","5E"],peck:["3L1","4L1","5L1"],pluck:["4M","5M"],protect:["3M","4M","5M"],pursuit:["3L9","4L19","5L19"],quickattack:["3E","4E","4L5","5E","5L5"],rage:["3L25","4L10","5L10"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5D","5T"],round:["5M"],secretpower:["3M","4M"],skyattack:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3E","4E","5E"],swagger:["3T","4M","5M"],swift:["3T","4T"],thief:["3M","4M","5M"],thrash:["5L50"],toxic:["3M","4M","5M"],triattack:["3L21"],uproar:["3L33","4L23","4T","5L23","5T"],workup:["5M"]}}, - dodrio:{learnset:{acupressure:["4L28","5L28"],aerialace:["3M","4M","5M"],agility:["3L60","4L41","5L41","3S0"],aircutter:["4T"],attract:["3M","4M","5M"],batonpass:["3S0"],bodyslam:["3T"],captivate:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drillpeck:["3L47","4L47","5L47","3S0"],echoedvoice:["5M"],endeavor:["4L54","4T","5L54","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],furyattack:["3L1","3L13","4L14","5L14"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],knockoff:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M"],peck:["3L1","4L1","5L1"],pluck:["4M","4L1","5M","5L1"],protect:["3M","4M","5M"],pursuit:["3L1","3L9","4L19","5L19"],quickattack:["4L1","4L5","5L1","5L5"],rage:["3L25","4L1","4L10","5L1","5L10"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5T"],round:["5M"],secretpower:["3M","4M"],skyattack:["3T","4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thrash:["5L60"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],triattack:["3L21","4L34","5L34","3S0"],uproar:["3L38","4L23","4T","5L23","5T"],workup:["5M"]}}, - seel:{learnset:{aquajet:["4L31","5L31"],aquaring:["4L23","5L23"],aquatail:["4L43","4T","5L43","5T"],attract:["3M","4M","5M"],aurorabeam:["3L21","4L27","5L27"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brine:["4M","4L33","5L33"],captivate:["4M"],disable:["3E","4E","5E"],dive:["3M","4L41","4T","5M","5L41"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],encore:["3E","4E","4L13","5E","5L13"],endure:["3T","4M"],facade:["3M","4M","5M"],fakeout:["3E","4E","5E"],fling:["4M","5M"],frustration:["3M","4M","5M"],growl:["3L9","4L3","5L3"],hail:["3M","4M","5M","5L53"],headbutt:["3L1","4L1","4T","5L1","5D"],helpinghand:["3S0"],hiddenpower:["3M","4M","5M"],horndrill:["3E","4E","5E"],icebeam:["3M","3L41","4M","4L47","5M","5L47","3S0"],iceshard:["4L17","5L17"],iciclespear:["3E","4E","5E","5D"],icywind:["3L17","3T","4L11","4T","5L11","5T"],irontail:["5E","5T"],lick:["3E","4E","5E"],mimic:["3T"],naturalgift:["4M"],perishsong:["3E","4E","5E"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","3L29","4M","4L21","5M","5L21"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","3L49","4M","4L51","5M","5L51","3S0"],secretpower:["3M","4M"],signalbeam:["4E","4T","5E","5T"],slam:["3E","4E","5E"],sleeptalk:["3T","4M","5E","5D","5T"],snore:["3T","4T","5T"],spitup:["4E","5E"],stockpile:["4E","5E"],substitute:["3T","4M","5M"],surf:["3M","4M","5M","3S0"],swagger:["3T","4M","5M"],swallow:["4E","5E"],takedown:["3L37","4L37","5L37"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M","5E"],watersport:["4L7","5L7"],whirlpool:["4M"],drillrun:["5T"]}}, - dewgong:{learnset:{aquajet:["4L31","5L31"],aquaring:["4L23","5L23"],aquatail:["4L43","4T","5L49","5T"],attract:["3M","4M","5M"],aurorabeam:["3L1","3L21","4L27","5L27"],avalanche:["4M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brine:["4M","4L33","5L33"],captivate:["4M"],dive:["3M","4L41","4T","5M","5L45"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],encore:["4L13","5L13"],endure:["3T","4M"],facade:["3M","4M","5M"],fling:["4M","5M"],frostbreath:["5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],growl:["3L1","3L9","4L1","4L3","5L1","5L3"],hail:["3M","4M","5M","5L65"],headbutt:["3L1","4L1","4T","5L1"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","3L51","4M","4L47","5M","5L55"],iceshard:["4L17","5L17"],icywind:["3L1","3L17","3T","4L1","4L11","4T","5L1","5L11","5T"],mimic:["3T"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","3L29","4M","4L21","5M","5L21"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","3L64","4M","4L51","5M","5L61"],secretpower:["3M","4M"],sheercold:["3L34","4L34","5L34"],signalbeam:["3L1","4L1","4L7","4T","5L1","5L7","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],takedown:["3L42","4L37","5L39"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],drillrun:["5T"],irontail:["5T"]}}, - grimer:{learnset:{acidarmor:["3L34","4L39","5L39"],acidspray:["5E"],attract:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M"],curse:["3E","4E","5E"],dig:["3M","4M","5M"],disable:["3L8","4L12","5L12"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],endure:["3T","4M"],explosion:["3E","3T","4E","4M","5M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","4L28","5M","5L28"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],gunkshot:["4L44","4T","5L49","5T"],harden:["3L4","4L4","5L4"],haze:["3E","4E","5E","5D"],helpinghand:["3S0"],hiddenpower:["3M","4M","5M"],icepunch:["3T","4T","5T"],imprison:["3E","4E","5E"],incinerate:["5M"],lick:["3E","4E","5E"],meanlook:["3E","4E","5E"],memento:["3L53","4L49","5L52"],mimic:["3T"],minimize:["3L19","4L17","5L17","3S0"],mudbomb:["4L23","5L23"],mudslap:["3T","4L7","4T","5L7"],naturalgift:["4M"],painsplit:["4T","5T"],payback:["4M","5M"],poisongas:["3L1","4L1","5L1","5D"],poisonjab:["4M","5M"],pound:["3L1","4L1","5L1"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],scaryface:["5E"],screech:["3L26","4L33","5L33"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["4M","5M"],shadowpunch:["3E","4E","5E","3S0"],shadowsneak:["4E","5E","5D"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],sludge:["3L13","4L20","5L20"],sludgebomb:["3M","3L43","4M","4L36","5M","5L36","3S0"],sludgewave:["5M","5L44"],snore:["3T","4T","5T"],spitup:["4E","5E"],stockpile:["4E","5E"],strength:["4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["4E","5E"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],venoshock:["5M"]}}, - muk:{learnset:{acidarmor:["3L34","4L44","5L42"],attract:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],darkpulse:["4M","5T"],dig:["3M","4M","5M"],disable:["3L8","4L12","5L12"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],endure:["3T","4M"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","4L28","5M","5L28"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],gunkshot:["4L54","4T","5L58","5T"],harden:["3L1","3L4","4L1","4L4","5L1","5L4"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],incinerate:["5M"],memento:["3L61","4L65","5L64"],mimic:["3T"],minimize:["3L19","4L17","5L17"],mudbomb:["4L23","5L23"],mudslap:["3T","4L1","4L7","4T","5L1","5L7"],naturalgift:["4M"],painsplit:["4T","5T"],payback:["4M","5M"],poisongas:["3L1","4L1","5L1"],poisonjab:["4M","5M"],pound:["3L1","4L1","5L1"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],screech:["3L26","4L33","5L33"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],sludge:["3L13","4L20","5L20"],sludgebomb:["3M","3L47","4M","4L36","5M","5L36"],sludgewave:["5M","5L50"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],venoshock:["5M"]}}, - shellder:{learnset:{aquaring:["5E"],attract:["3M","4M","5M"],aurorabeam:["3L17","3L22","4L32","5L37","3S0","3S2"],avalanche:["5E"],barrier:["3E","4E","5E","5D"],blizzard:["3M","4M","5M"],brine:["4M","4L44","5L44"],bubblebeam:["3E","4E","5E"],captivate:["4M"],clamp:["3L41","3L43","4L25","5L25"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],hiddenpower:["3M","4M","5M"],hydropump:["5L61"],icebeam:["3M","3L49","3L50","4M","4L49","5M","5L52"],iceshard:["4L28","5L28"],iciclespear:["3E","3L8","4E","4L13","5E","5L13","3S0","3S1"],icywind:["3T","4T","5D","5T"],irondefense:["4L40","4T","5L49","5T"],leer:["3L33","3L36","4L20","5L20"],mimic:["3T"],mudshot:["4E","5E"],naturalgift:["4M"],payback:["4M","5M"],protect:["3M","3L25","3L29","4M","4L16","5M","5L16"],raindance:["3M","4M","5M"],rapidspin:["3E","4E","5E"],razorshell:["5L32"],refresh:["3S2"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockblast:["4E","5E"],round:["5M"],screech:["3E","4E","5E"],secretpower:["3M","4M"],selfdestruct:["3T"],shellsmash:["5L56"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],supersonic:["3L9","3L15","4L8","5L8","3S0"],surf:["3M","4M","5M","3S2"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S1"],takedown:["3E","4E","5E","3S2"],toxic:["3M","4M","5M"],twineedle:["5E"],waterpulse:["3M","4M","5E"],whirlpool:["4L37","4M","5L40"],withdraw:["3L1","4L4","5L4","5D","3S0","3S1"]}}, - cloyster:{learnset:{attract:["3M","4M","5M"],aurorabeam:["3L1","4L1","5L1"],avalanche:["4M"],blizzard:["3M","4M","5M"],brine:["4M"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],frostbreath:["5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],hiddenpower:["3M","4M","5M","5S0"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],iciclecrash:["5L52"],iciclespear:["5S0"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],mimic:["3T"],naturalgift:["4M"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["3M","3L1","4M","4L1","5M","5L1"],raindance:["3M","4M","5M"],rapidspin:["3C"],razorshell:["5S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockblast:["5S0"],round:["5M"],secretpower:["3M","4M"],selfdestruct:["3T"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spikecannon:["3L41","3L43","4L40","5L13"],spikes:["3L33","3L36","4L28","5L28"],substitute:["3T","4M","5M"],supersonic:["3L1","4L1","5L1"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],toxicspikes:["4L1","5L1"],waterpulse:["3M","4M"],whirlpool:["4M"],withdraw:["3L1","4L1","5L1"]}}, - gastly:{learnset:{astonish:["3E","4E","5E"],attract:["3M","4M","5M"],captivate:["4M"],clearsmog:["5E"],confuseray:["3L28","3L21","4L19","5L19"],curse:["3L16","3L13","4L12","5L12"],darkpulse:["4M","4L36","5L36","5T"],destinybond:["3L36","3L33","4L40","5L40"],disable:["4E","5E","5D"],doubleteam:["3M","4M","5M"],dreameater:["3L33","3T","3L28","4M","4L33","5M","5L33"],embargo:["4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],explosion:["3E","3T","4E","4M","5M"],facade:["3M","4M","5M"],firepunch:["4E","4T","5E","5T"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],grudge:["3E","4E","5E"],haze:["3E","4E","5E"],hex:["5L43"],hiddenpower:["3M","4M","5M"],hypnosis:["3L1","4L1","5L1","5D"],icepunch:["4E","4T","5E","5T"],icywind:["4T","5T"],knockoff:["4T","5T"],lick:["3L1","4L1","5L1"],meanlook:["3L13","3L48","4L8","5L8"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T","3L41","4L43","5L47"],nightshade:["3L21","3L16","4L15","5L15"],ominouswind:["4T"],painsplit:["4T","5T"],payback:["4M","4L26","5M","5L26"],perishsong:["3E","4E","5E"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],psywave:["3E","4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scaryface:["5E"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","3L36","4M","4L29","5M","5L29"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5D"],smog:["5E"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["3L8","4L5","4T","5L5","5T"],substitute:["3T","4M","5M"],suckerpunch:["4L22","4T","5L22"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],telekinesis:["5M"],thief:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["4E","4T","5E","5T"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],uproar:["4T","5T"],venoshock:["5M"],willowisp:["3E","4E","4M","5M"],foulplay:["5T"],wonderroom:["5T"]}}, - haunter:{learnset:{attract:["3M","4M","5M"],captivate:["4M"],confuseray:["3L31","3L21","4L19","5L19","3S0","5S1"],curse:["3L16","3L13","4L12","5L12","3S0"],darkpulse:["4M","4L44","5L44","5T"],destinybond:["3L48","3L39","4L50","5L50"],doubleteam:["3M","4M","5M"],dreameater:["3L39","3T","3L31","4M","4L39","5M","5L39"],embargo:["4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],firepunch:["4T","5T"],fling:["4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],hex:["5L55"],hiddenpower:["3M","4M","5M"],hypnosis:["3L1","4L1","5L1"],icepunch:["4T","5T"],icywind:["4T","5T"],knockoff:["4T","5T"],lick:["3L1","4L1","5L1"],meanlook:["3L13","3L64","4L8","5L8"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T","3L53","4L55","5L61"],nightshade:["3L21","3L16","4L15","5L15","3S0"],ominouswind:["4T"],painsplit:["4T","5T"],payback:["4M","4L28","5M","5L28","5S1"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","3L45","4M","4L33","5M","5L33"],shadowclaw:["4M","5M"],shadowpunch:["3L25","4L25","5L25","5S1"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["3L1","3L8","4L1","4L5","4T","5L1","5L5","3S0","5T"],substitute:["3T","4M","5M"],suckerpunch:["4L22","4T","5L22","5S1"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],telekinesis:["5M"],thief:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["4T","5T"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],uproar:["4T","5T"],venoshock:["5M"],willowisp:["4M","5M"],foulplay:["5T"],wonderroom:["5T"]}}, - gengar:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],confuseray:["3L31","3L21","4L19","5L19"],counter:["3T"],curse:["3L16","3L13","4L12","5L12"],darkpulse:["4M","4L44","5L44","5T"],destinybond:["3L48","3L39","4L50","5L50"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3L39","3T","3L31","4M","4L39","5M","5L39"],dynamicpunch:["3T"],embargo:["4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],headbutt:["4T"],hex:["5L55"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],hypnosis:["3L1","4L1","5L1"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],knockoff:["4T","5T"],lick:["3L1","4L1","5L1"],meanlook:["3L13","3L64","4L8","5L8"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T","3L53","4L55","5L61"],nightshade:["3L21","3L16","4L15","5L15"],ominouswind:["4T"],painsplit:["4T","5T"],payback:["4M","4L28","5M","5L28"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3T"],shadowball:["3M","3L45","4M","4L33","5M","5L33"],shadowclaw:["4M","5M"],shadowpunch:["3L25","4L25","5L25"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["3L1","3L8","4L1","4L5","4T","5L1","5L5","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4L22","4T","5L22"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],telekinesis:["5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],uproar:["4T","5T"],venoshock:["5M"],willowisp:["4M","5M"],foulplay:["5T"],wonderroom:["5T"]}}, - onix:{learnset:{ancientpower:["4T"],attract:["3M","4M","5M"],bind:["3L9","3L8","4L1","5L1","5T","5D"],block:["3E","4E","4T","5E","5T"],bodyslam:["3T"],bulldoze:["5M"],captivate:["4M"],curse:["4L38","5L46"],defensecurl:["4E","5E"],dig:["3M","4M","5M","5L43"],doubleedge:["3L57","3T","3L56","4L46","4L49","5L57"],doubleteam:["3M","4M","5M"],dragonbreath:["3L30","4L33","5L41"],dragonpulse:["4M","5T"],dragontail:["5M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],explosion:["3E","3T","4E","4M","5M"],facade:["3M","4M","5M"],flail:["3E","4E","5E"],flashcannon:["4M","5M"],frustration:["3M","4M","5M"],gyroball:["4M","5M"],harden:["3L21","3L19","4L1","5L1"],headbutt:["4T"],heavyslam:["5E"],hiddenpower:["3M","4M","5M"],ironhead:["4T","5T"],irontail:["3M","3L45","4M","4L38","4L41","5L49","5T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["4L1","5L1"],naturalgift:["4M"],payback:["4M","5M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],rage:["3L25","3L23","4L14","5L14"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockblast:["4E","5E"],rockclimb:["4M","5E","5D"],rockpolish:["4M","4L30","5M","5L30"],rockslide:["3E","3T","4E","4M","5M","5L34"],rocksmash:["3M","4M","5M"],rockthrow:["3L13","3L12","4L9","5L9"],rocktomb:["3M","4M","4L17","5M","5L17"],rollout:["4E","4T","5E"],round:["5M"],sandstorm:["3M","3L33","3L34","4M","4L22","5M","5L25"],sandtomb:["3L49","3L52","4L41","4L46","5L54"],screech:["3L1","4L6","5L6"],secretpower:["3M","4M"],selfdestruct:["3T"],slam:["3L37","3L41","4L25","5L33"],sleeptalk:["3T","4M","5T"],smackdown:["5M","5L22"],snore:["3T","4T","5T"],stealthrock:["4M","5E","5L38","5T","5D"],stoneedge:["4M","4L49","4L54","5M","5L62"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],taunt:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"]}}, - steelix:{learnset:{ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M"],autotomize:["5L30"],bind:["3L9","3L8","4L1","5L1","5T"],block:["4T","5T"],bodyslam:["3T"],bulldoze:["5M"],captivate:["4M"],crunch:["3L49","3L52","4L41","4L46","5L54"],curse:["4L38","5L46"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],defensecurl:["3T"],dig:["3M","4M","5M","5L43"],doubleedge:["3L57","3T","3L56","4L46","4L49","5L57"],doubleteam:["3M","4M","5M"],dragonbreath:["3L30","4L33","5L41"],dragonpulse:["4M","5T"],dragontail:["5M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],firefang:["4L1","5L1"],flashcannon:["4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gyroball:["4M","5M"],harden:["3L21","3L19","4L1","5L1"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icefang:["4L1","5L1"],ironhead:["4T","5T"],irontail:["3M","3L45","4M","4L38","4L41","5L49","5T"],magnetrise:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["4L1","5L1"],naturalgift:["4M"],payback:["4M","5M"],protect:["3M","4M","5M"],psychup:["4M","5M"],rage:["3L25","3L23","4L14","5L14"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockclimb:["4M"],rockpolish:["4M","4L30","5M"],rockslide:["3T","4M","5M","5L34"],rocksmash:["3M","4M","5M"],rockthrow:["3L13","3L12","4L9","5L9"],rocktomb:["3M","4M","4L17","5M","5L17"],rollout:["3T","4T"],round:["5M"],sandstorm:["3M","3L33","3L34","4M","4L22","5M","5L25"],screech:["3L1","4L6","5L6"],secretpower:["3M","4M"],selfdestruct:["3T"],slam:["3L37","3L41","4L25","5L33"],sleeptalk:["3T","4M","5T"],smackdown:["5M","5L22"],snore:["3T","4T","5T"],stealthrock:["4M","5L38","5T"],stoneedge:["4M","4L49","4L54","5M","5L62"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],taunt:["3M","4M","5M"],thunderfang:["4L1","5L1"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"]}}, - drowzee:{learnset:{assist:["3E","4E","5E"],attract:["3M","4M","5M"],barrier:["3E","4E","5E"],bellydrum:["3S0"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],calmmind:["3M","4M","5M"],captivate:["4M"],confusion:["3L18","3L11","4L9","5L9"],counter:["3T"],disable:["3L10","3L7","4L7","5L5"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5D","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M"],firepunch:["3E","3T","4E","4T","5E","5T"],flash:["3M","4M","5M"],flatter:["4E","5E"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],futuresight:["3L45","3L47","4L53","5L61"],grassknot:["4M","5M"],guardswap:["4E","5E"],headbutt:["3L25","3L17","4L15","4L32","4T","5L13","5L29"],hiddenpower:["3M","4M","5M"],hypnosis:["3L1","4L1","5L1","5D"],icepunch:["3E","3T","4E","4T","5E","5T"],lightscreen:["3M","4M","5M"],lowkick:["4T","5T"],lowsweep:["5M"],magiccoat:["4T","5T"],meditate:["3L36","3L27","4L21","5L21"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],nastyplot:["4E","4L43","5E","5L53"],naturalgift:["4M"],nightmare:["3T"],poisongas:["3L31","3L21","4L18","5L17"],pound:["3L1","4L1","5L1"],protect:["3M","4M","5M"],psybeam:["4L26","5L25"],psychic:["3M","3L40","3L31","4M","4L40","5M","5L49"],psychocut:["4E","5E","5D"],psychup:["3L43","3T","3L37","4M","4L29","5M","5L33"],psyshock:["5M","5L57"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roleplay:["3E","4E","4T","5E","5T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M","5E"],seismictoss:["3T"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5E","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","3L41","4M","4L37","5M","5L45"],synchronoise:["5L37"],taunt:["3M","4M","5M"],telekinesis:["5M"],thief:["3M","4M","5M"],thunderpunch:["3E","3T","4E","4T","5E","5T"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],wish:["3S0"],zenheadbutt:["4L50","4T","5L41","5T"],foulplay:["5T"],magicroom:["5T"]}}, - hypno:{learnset:{attract:["3M","4M","5M"],batonpass:["3S0"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],calmmind:["3M","4M","5M"],captivate:["4M"],confusion:["3L1","3L18","3L11","4L1","4L9","5L1","5L9"],counter:["3T"],disable:["3L1","3L10","3L7","4L1","4L7","5L1","5L5"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],futuresight:["3L60","3L57","4L69","5L61"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["3L25","3L17","4L15","4L38","4T","5L13","5L29"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],hypnosis:["3L1","4L1","5L1"],icepunch:["3T","4T","5T"],lightscreen:["3M","4M","5M"],lowkick:["4T","5T"],lowsweep:["5M"],magiccoat:["4T","5T"],meditate:["3L40","3L29","4L21","5L21","3S0"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],nastyplot:["4L55","5L53"],naturalgift:["4M"],nightmare:["3T","3L1","4L1","5L1"],poisongas:["3L33","3L21","4L18","5L17"],pound:["3L1","4L1","5L1"],protect:["3M","4M","5M"],psybeam:["4L28","5L25"],psychic:["3M","3L49","3L35","4M","4L50","5M","5L49","3S0"],psychup:["3L55","3T","3L43","4M","4L33","5M","5L33"],psyshock:["5M","5L57"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","3S0"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","3L49","4M","4L45","5M","5L45"],switcheroo:["4L1","5L1"],synchronoise:["5L37"],taunt:["3M","4M","5M"],telekinesis:["5M"],thief:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],zenheadbutt:["4L64","4T","5L41","5T"],foulplay:["5T"],magicroom:["5T"]}}, - krabby:{learnset:{agility:["4E","5E"],amnesia:["3E","4E","5E","5D"],ancientpower:["4E","4T","5E"],attract:["3M","4M","5M"],bide:["5E"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["4M","5M"],brine:["4M","4L39","5L39"],bubble:["3L1","4L1","5L1"],bubblebeam:["4L15","5L15"],captivate:["4M"],chipaway:["5E"],crabhammer:["3L45","4L41","5L41"],cut:["3M","4M","5M"],dig:["3E","3M","4E","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],falseswipe:["4M","5M"],flail:["3E","3L49","4E","4L45","5E","5L45"],fling:["4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],guillotine:["3L34","4L31","5L31"],hail:["3M","4M","5M"],harden:["3L16","4L11","5L11"],haze:["3E","4E","5E"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],knockoff:["3E","4E","4T","5E","5T"],leer:["3L5","4L9","5L9"],metalclaw:["4L21","5L21"],mimic:["3T"],mudshot:["3L23","4L19","5L19"],mudslap:["3T","4T"],mudsport:["4L1","5L1"],naturalgift:["4M"],protect:["3M","3L41","3L38","4M","4L29","5M","5L29"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M","5D"],slam:["3E","4E","4L35","5E","5L35"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],stomp:["3L27","4L25","5L25"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3E","3T","4E","4M","5M"],thief:["3M","4M","5M"],tickle:["4E","5E"],toxic:["3M","4M","5M"],vicegrip:["3L12","4L5","5L5","5D"],waterpulse:["3M","4M"],whirlpool:["4M"],xscissor:["4M","5M"]}}, - kingler:{learnset:{ancientpower:["4T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["4M","5M"],brine:["4M","4L51","5L51"],bubble:["3L1","4L1","5L1"],bubblebeam:["4L15","5L15"],captivate:["4M"],crabhammer:["3L57","4L56","5L56"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["4M","5M"],flail:["3L65","4L63","5L63"],fling:["4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],guillotine:["3L38","4L37","5L37"],hail:["3M","4M","5M"],harden:["3L16","3L1","4L11","5L11"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],knockoff:["4T","5T"],leer:["3L1","3L5","4L9","5L1","5L9"],metalclaw:["3L1","4L21","5L21"],mimic:["3T"],mudshot:["3L23","4L19","5L19"],mudslap:["3T","4T"],mudsport:["4L1","5L1"],naturalgift:["4M"],protect:["3M","3L49","3L42","4M","4L32","5M","5L32"],quash:["5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],slam:["4L44","5L44"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],stomp:["3L27","4L25","5L25"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],vicegrip:["3L1","3L12","4L1","4L5","5L1","5L5"],waterpulse:["3M","4M"],whirlpool:["4M"],wideguard:["5L1"],xscissor:["4M","5M"]}}, - voltorb:{learnset:{charge:["3L1","4L1","5L1","5D"],chargebeam:["4M","4L26","5M","5L22"],doubleteam:["3M","4M","5M"],electroball:["5L29"],endure:["3T","4M"],explosion:["3L46","3T","4M","4L43","5M","5L47"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gyroball:["4M","4L40","5M","5L43"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],lightscreen:["3M","3L37","4M","4L22","5M","5L26"],magiccoat:["4T","5T"],magnetrise:["4L36","4T","5L40","5T"],mimic:["3T"],mirrorcoat:["3L49","4L47","5L50","3S0"],naturalgift:["4M","5D"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["3L32","3T","4L15","4T","5L15"],round:["5M"],screech:["3L8","4L19","5L19"],secretpower:["3M","4M"],selfdestruct:["3L27","3T","4L29","5L33"],shockwave:["3M","4M"],signalbeam:["4T","5T","5D"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],sonicboom:["3L15","4L8","5L8"],spark:["3L21","4L12","5L12","3S0"],substitute:["3T","4M","5M"],suckerpunch:["4T"],swagger:["3T","4M","5M"],swift:["3L42","3T","4L33","4T","5L36","3S0"],tackle:["3L1","4L5","5L5"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],voltswitch:["5M"],wildcharge:["5M"],foulplay:["5T"]}}, - electrode:{learnset:{charge:["3L1","4L1","5L1"],chargebeam:["4M","4L26","5M","5L22"],doubleteam:["3M","4M","5M"],electroball:["5L29"],endure:["3T","4M"],explosion:["3L54","3T","4M","4L51","5M","5L57"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gyroball:["4M","4L46","5M","5L51"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],lightscreen:["3M","3L41","4M","4L22","5M","5L26"],magiccoat:["4T","5T"],magnetrise:["4L40","4T","5L46","5T"],mimic:["3T"],mirrorcoat:["3L59","4L57","5L62"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["3L34","3T","4L15","4T","5L15"],round:["5M"],screech:["3L1","3L8","4L19","5L19"],secretpower:["3M","4M"],selfdestruct:["3L27","3T","4L29","5L35"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],sonicboom:["3L1","3L15","4L1","4L8","5L1","5L8"],spark:["3L21","4L1","4L12","5L1","5L12"],substitute:["3T","4M","5M"],suckerpunch:["4T"],swagger:["3T","4M","5M"],swift:["3L48","3T","4L35","4T","5L40"],tackle:["3L1","4L1","4L5","5L1","5L5"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],voltswitch:["5M"],wildcharge:["5M"],foulplay:["5T"]}}, - exeggcute:{learnset:{ancientpower:["3E","4E","4T","5E"],attract:["3M","4M","5M"],barrage:["3L1","4L1","5L1","5D"],bestow:["5L53"],block:["5E","5T"],bulletseed:["3M","4M","4L17","5L17"],captivate:["4M"],confusion:["3L19","4L27","5L27"],curse:["3E","4E","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],explosion:["3T","4M","5M"],extrasensory:["5L47"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5E","5D","5T"],grassknot:["4M","5M"],gravity:["4T","5T"],hiddenpower:["3M","4M","5M"],hypnosis:["3L1","4L1","5L1"],ingrain:["3E","4E","5E"],leafstorm:["4E","5E"],leechseed:["3L13","4L11","5L11"],lightscreen:["3M","4M","5M"],luckychant:["4E","5E"],mimic:["3T"],moonlight:["3E","4E","5E"],naturalgift:["4M","4L37","5E","5L37"],naturepower:["4E","5E"],nightmare:["3T"],poisonpowder:["3L31","4L21","5L21"],powerswap:["4E","5E"],protect:["3M","4M","5M"],psychic:["3M","4M","4L47","5M","5L47"],psychup:["3E","3T","4E","4M","5M"],reflect:["3E","3M","3L7","4E","4M","4L7","5M","5L7"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],selfdestruct:["3T"],skillswap:["3M","4M","5E","5T"],sleeppowder:["3L37","4L23","5L23"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","3L43","4M","4L43","5M","5L43"],strength:["3M","4M","5M"],stunspore:["3L25","4L19","5L19"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["3S0"],swordsdance:["4M","5M"],synthesis:["3E","4E","4T","5E","5D","5T"],telekinesis:["5M"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],trickroom:["4M","5M"],uproar:["3L1","4L1","5L1","5T"],wish:["3S0"],worryseed:["4L33","4T","5L33","5T"]}}, - exeggutor:{learnset:{ancientpower:["4T","3S0"],attract:["3M","4M","5M"],barrage:["3L1","4L1","5L1"],bulletseed:["3M","4M"],captivate:["4M"],confusion:["3L1","4L1","5L1"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],eggbomb:["3L31","4L27","5L27"],endure:["3T","4M"],energyball:["4M","5M"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],hypnosis:["3L1","4L1","5L1","3S0"],leafstorm:["4L47","5L47"],lightscreen:["3M","4M","5M"],lowkick:["4T","5T"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M"],psychic:["3M","4M","5M","3S0"],psychup:["3T","4M","5M"],psyshock:["5M","5L17"],reflect:["3M","4M","5M"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4L1","4T","5L1","5T"],selfdestruct:["3T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stomp:["3L19","4L1","4L17","5L1"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["4M","5M"],synthesis:["4T","5T"],telekinesis:["5M"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],trickroom:["4M","5M"],woodhammer:["4L37","5L37"],worryseed:["4T","5T"],zenheadbutt:["4T","5T"],block:["5T"]}}, - cubone:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["3E","4E","5E"],attract:["3M","4M","5M"],bellydrum:["3E","4E","5E"],blizzard:["3M","4M","5M"],bodyslam:["3T"],boneclub:["3L9","4L7","5L7","5D"],bonemerang:["3L25","4L21","5L21"],bonerush:["3L41","4L37","5L37"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5E"],counter:["3T"],detect:["4E","5E"],dig:["3M","4M","5M"],doubleedge:["3L45","3T","4L43","5L43"],doublekick:["4E","5E"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endeavor:["4L41","4T","5L41","5T"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],falseswipe:["3L33","4M","4L27","5M","5L27"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","4L33","5M","5L33"],focusenergy:["3L21","4L17","5L17"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["4T"],growl:["3L1","4L1","5L1"],headbutt:["3L13","4L11","4T","5L11"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],incinerate:["5M"],irondefense:["4T","5T"],ironhead:["4E","5E","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],leer:["3L17","4L13","5L13"],lowkick:["4T","5T","5D"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],perishsong:["3E","4E","5E","5D"],protect:["3M","4M","5M"],rage:["3L29","4L23","5L23"],rest:["3M","4M","5M"],retaliate:["5M","5L47"],"return":["3M","4M","5M"],rockclimb:["4M"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],screech:["3E","4E","5E"],secretpower:["3M","4M"],seismictoss:["3T"],skullbash:["3E","4E","5E"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3E","3T","4E","4M","5M"],tailwhip:["3L5","4L3","5L3"],thief:["3M","4M","5M"],thrash:["3L37","4L31","5L31"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],uproar:["4T","5T"]}}, - marowak:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],boneclub:["3L1","3L9","4L1","4L7","5L1","5L7"],bonemerang:["3L25","4L21","5L21"],bonerush:["3L53","4L43","5L43"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],dig:["3M","4M","5M"],doubleedge:["3L61","3T","4L53","5L53"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","3S0"],echoedvoice:["5M"],endeavor:["4L49","4T","5L49","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["3L39","4M","4L27","5M","5L27"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","4L37","5M","5L37"],focusblast:["4M","5M"],focusenergy:["3L21","4L17","5L17"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["4T"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1"],headbutt:["3L1","3L13","4L1","4L11","4T","5L1","5L11"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],incinerate:["5M"],irondefense:["4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],leer:["3L17","4L13","5L13"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","4M","5M"],rage:["3L32","4L23","5L23"],rest:["3M","4M","5M"],retaliate:["5M","5L59"],"return":["3M","4M","5M"],rockclimb:["4M"],rockslide:["3T","4M","5M","3S0"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],sing:["3S0"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M","3S0"],tailwhip:["3L1","3L5","4L1","4L3","5L1","5L3"],thief:["3M","4M","5M"],thrash:["3L46","4L33","5L33"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],uproar:["4T","5T"],ironhead:["5T"]}}, - tyrogue:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],bulletpunch:["4E","5E"],captivate:["4M"],counter:["3T","4E","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],fakeout:["4L1","5L1","5D"],feint:["5E","5D"],foresight:["4L1","5L1"],frustration:["3M","4M","5M"],headbutt:["4T"],helpinghand:["3E","4E","4L1","4T","5E","5L1","5T"],hiddenpower:["3M","4M","5M"],hijumpkick:["3E","4E","5E"],lowkick:["4T","5T"],lowsweep:["5M"],machpunch:["3E","4E","5E","5D"],megakick:["3T"],mimic:["3T"],mindreader:["3E","4E","5E"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],pursuit:["5E"],raindance:["3M","4M","5M"],rapidspin:["3E","4E","5E"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],vacuumwave:["4E","4T","5E"],workup:["5M"],covet:["5T"]}}, - hitmonlee:{learnset:{attract:["3M","4M","5M"],blazekick:["4L41","5L45"],bodyslam:["3T"],bounce:["4T","5T"],brickbreak:["3M","3L20","4M","4L17","5M","5L17"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],closecombat:["4L53","5L57"],counter:["3T"],doubleedge:["3T"],doublekick:["3L1","4L1","5L1"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endure:["3L41","3T","4M","4L45","5L49"],facade:["3M","4M","5M"],feint:["4L25","5L25"],fling:["4M","5M"],focusblast:["4M","5M"],focusenergy:["3L21","4L21","5L21"],focuspunch:["3M","4M"],foresight:["3L36","4L37","5L37"],frustration:["3M","4M","5M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hijumpkick:["3L26","4L29","5L29","3S0"],jumpkick:["3L16","4L13","5L13"],knockoff:["4T","5T"],lowkick:["4T","5T"],lowsweep:["5M"],meditate:["3L6","4L5","5L5"],megakick:["3L46","3T","4L49","5L53","3S0"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mindreader:["3L31","4L33","5L33","3S0"],mudslap:["3T","4T"],naturalgift:["4M"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],refresh:["3S0"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],revenge:["3L1","4L1","5L1"],reversal:["3L51","4L57","5L61"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4T","5T"],rollingkick:["3L11","4L9","5L9"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],swift:["3T","4T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],vacuumwave:["4T"],wideguard:["5L41"],workup:["5M"],covet:["5T"]}}, - hitmonchan:{learnset:{agility:["3L7","4L6","5L6"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],bulletpunch:["4L16","5L16"],captivate:["4M"],closecombat:["4L56","5L66"],cometpunch:["3L1","4L1","5L1"],counter:["3L50","3T","4L51","5L61"],detect:["3L44","4L46","5L51"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],feint:["4L21","5L21"],firepunch:["3L26","3T","4L31","4T","5L36","5T"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M","5L56"],frustration:["3M","4M","5M"],headbutt:["4T"],helpinghand:["4T","5T","3S0"],hiddenpower:["3M","4M","5M"],icepunch:["3L26","3T","4L31","4T","5L36","5T"],lowkick:["4T","5T"],lowsweep:["5M"],machpunch:["3L20","4L16","5L16"],megakick:["3T"],megapunch:["3L38","3T","4L41","5L46","3S0"],metronome:["3T"],mimic:["3T"],mindreader:["3S0"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],pursuit:["3L13","4L11","5L11"],quickguard:["5L31"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],revenge:["3L1","4L1","5L1"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],skyuppercut:["3L32","4L36","5L41","3S0"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],thief:["3M","4M","5M"],thunderpunch:["3L26","3T","4L31","4T","5L36","5T"],toxic:["3M","4M","5M"],vacuumwave:["4L26","4T","5L26"],workup:["5M"],covet:["5T"]}}, - hitmontop:{learnset:{aerialace:["4M","5M"],agility:["3L37","4L37","5L37"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],closecombat:["4L51","5L55","5S0"],counter:["3L31","3T","4L28","5L28"],detect:["3L43","4L46","5L51"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],endeavor:["3L49","4L55","4T","5L60","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],fakeout:["5S0"],feint:["4L33","5L33"],focusenergy:["3L7","4L6","5L6"],foresight:["4C"],frustration:["3M","4M","5M"],gyroball:["4M","4L42","5M","5L42"],headbutt:["4T"],helpinghand:["4T","5T","5S0"],hiddenpower:["3M","4M","5M"],lowkick:["4T","5T"],lowsweep:["5M"],machpunch:["3C"],megakick:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],pursuit:["3L13","4L10","5L10"],quickattack:["3L19","4L15","5L15"],quickguard:["5L46"],raindance:["3M","4M","5M"],rapidspin:["3L25","4L24","5L24"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],revenge:["3L1","4L1","5L1"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],roleplay:["4T","5T"],rollingkick:["3L1","4L1","5L1"],rollout:["4T"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T","5S0"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],triplekick:["3L20","4L19","5L19"],twister:["4T"],vacuumwave:["4T"],wideguard:["5L46"],workup:["5M"],covet:["5T"],drillrun:["5T"]}}, - lickitung:{learnset:{amnesia:["4E","5E"],aquatail:["4T","5T"],attract:["3M","4M","5M"],bellydrum:["3E","4E","5E"],blizzard:["3M","4M","5M"],bodyslam:["3E","3T","4E","5E"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L37"],counter:["3T"],curse:["3E","4E","5E"],cut:["3M","4M","5M"],defensecurl:["3L12","3T","4L9","5L9","3S1"],dig:["3M","4M","5M"],disable:["3L34","4L25","5L25"],doubleedge:["3T","3S1"],doubleteam:["3M","4M","5M"],dragontail:["5M"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hammerarm:["4E","5E"],headbutt:["4T"],healbell:["3S0"],helpinghand:["3S1"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],knockoff:["3L18","4L13","5L13","5T"],lick:["3L1","4L1","5L1","5D"],magnitude:["3E","4E","5E"],mefirst:["4L37","5L41"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],muddywater:["4E","5E"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],powerwhip:["4L49","5L53"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],refresh:["3L51","4L41","5L45"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockclimb:["4M","5D"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4L33","4T","5L33","3S1"],round:["5M"],sandstorm:["3M","4M","5M"],screech:["3L45","4L45","5L49"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],slam:["3L40","4L29","5L29"],sleeptalk:["3E","3T","4E","4M","5E","5D","5T"],smellingsalt:["3E","4E","5E"],snore:["3E","3T","4E","4T","5E","5T"],solarbeam:["3M","4M","5M"],stomp:["3L23","4L21","5L21"],strength:["3M","4M","5M"],substitute:["3E","3T","4E","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3L7","4L5","5L5"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],wish:["3S0"],workup:["5M"],wrap:["3L29","4L17","5L17"],wringout:["4L53","5L57"],zenheadbutt:["4T","5E","5T"],bind:["5T"]}}, - lickilicky:{learnset:{aquatail:["4T","5T"],attract:["4M","5M"],blizzard:["4M","5M"],block:["4T","5T"],brickbreak:["4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L37"],cut:["4M","5M"],defensecurl:["4L9","5L9"],dig:["4M","5M"],disable:["4L25","5L25"],doubleteam:["4M","5M"],dragontail:["5M"],dreameater:["4M","5M"],earthquake:["4M","5M"],endure:["4M"],explosion:["4M","5M"],facade:["4M","5M"],fireblast:["4M","5M"],firepunch:["4T","5T"],flamethrower:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],gyroball:["4M","4L57","5M","5L61"],headbutt:["4T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],icepunch:["4T","5T"],icywind:["4T","5T"],incinerate:["5M"],irontail:["4M","5T"],knockoff:["4L13","4T","5L13","5T"],lick:["4L1","5L1"],mefirst:["4L37","5L41"],mudslap:["4T"],naturalgift:["4M"],powerwhip:["4L49","5L53"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],refresh:["4L41","5L45"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],rollout:["4L33","4T","5L33"],round:["5M"],sandstorm:["4M","5M"],screech:["4L45","5L49"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],slam:["4L29","5L29"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],stomp:["4L21","5L21"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],supersonic:["4L5","5L5"],surf:["4M","5M"],swagger:["4M","5M"],swordsdance:["4M","5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4T","5T"],toxic:["4M","5M"],waterpulse:["4M"],whirlpool:["4M"],workup:["5M"],wrap:["4L17","5L17"],wringout:["4L53","5L57"],zenheadbutt:["4T","5T"],bind:["5T"]}}, - koffing:{learnset:{assurance:["4L15","5L15"],attract:["3M","4M","5M"],captivate:["4M"],clearsmog:["5L19"],curse:["4E","5E"],darkpulse:["4M","5D","5T"],destinybond:["3E","3L45","4E","4L46","5E","5L51"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],explosion:["3L41","3T","4M","4L37","5M","5L42"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],grudge:["4E","5E"],gyroball:["4M","4L33","5M","5L37"],haze:["3L33","4L28","5L33"],hiddenpower:["3M","4M","5M"],incinerate:["5M"],memento:["3L49","4L51","5L55"],mimic:["3T"],naturalgift:["4M"],painsplit:["3E","4E","4T","5E","5T"],payback:["4M","5M"],poisongas:["3L1","4L1","5L1"],protect:["3M","4M","5M"],psybeam:["3E","4E","5E"],psywave:["3E","4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],screech:["3E","4E","5E"],secretpower:["3M","4M"],selfdestruct:["3L17","3T","4L19","5L24"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],sludge:["3L21","4L24","5L28"],sludgebomb:["3M","4M","4L42","5M","5L46"],sludgewave:["5D"],smog:["3L9","4L6","5L6","5D"],smokescreen:["3L25","4L10","5L10"],snore:["3T","4T","5T"],spite:["4E","4T","5E","5T"],spitup:["5E"],stockpile:["5E"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["5E"],tackle:["3L1","4L1","5L1"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],venoshock:["5M"],willowisp:["3E","4E","4M","5M"]}}, - weezing:{learnset:{assurance:["4L15","5L15"],attract:["3M","4M","5M"],captivate:["4M"],clearsmog:["5L19"],darkpulse:["4M","5T"],destinybond:["3L51","4L55","5L59"],doublehit:["4L33","5L39"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],explosion:["3L44","3T","4M","4L40","5M","5L46"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gyroball:["4M","5M"],haze:["3L33","4L28","5L33"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],memento:["3L58","4L63","5L65"],mimic:["3T"],mudslap:["4T"],naturalgift:["4M"],painsplit:["4T","5T"],payback:["4M","5M"],poisongas:["3L1","4L1","5L1"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M"],selfdestruct:["3L1","3L17","3T","4L19","5L24"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],sludge:["3L21","4L24","5L28"],sludgebomb:["3M","4M","4L48","5M","5L52"],smog:["3L1","3L9","4L1","4L6","5L1","5L6"],smokescreen:["3L25","4L1","4L10","5L1","5L10"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],venoshock:["5M"],willowisp:["4M","5M"]}}, - rhyhorn:{learnset:{ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bulldoze:["5M","5L30"],captivate:["4M"],chipaway:["5L34"],counter:["3E","3T","4E","5E","5D"],crunch:["3E","4E","5E"],crushclaw:["3E","4E","5E"],curse:["3E","4E","5E"],dig:["3M","4M","5M"],doubleedge:["3T","5D"],doubleteam:["3M","4M","5M"],dragonpulse:["4M","5T"],dragonrush:["4E","5E"],drillrun:["5L45","5T"],earthpower:["4T","5T"],earthquake:["3M","3L52","4M","4L49","5M","5L56"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firefang:["4E","5E"],flamethrower:["3M","4M","5M"],frustration:["3M","4M","5M"],furyattack:["3L15","4L13","5L12"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hornattack:["3L1","4L1","5L1","5D"],horndrill:["3L38","4L37","5L63"],icebeam:["3M","4M","5M"],icefang:["4E","5E"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5E","5T"],magnitude:["3E","4E","5E"],megahorn:["3L57","4L57","5L67"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],reversal:["3E","4E","5E"],roar:["3M","4M","5M"],rockblast:["3L29","4L25","5L23"],rockclimb:["4M","5E"],rockpolish:["4M","5M"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],sandstorm:["3M","4M","5M"],scaryface:["3L24","4L21","5L19"],secretpower:["3M","4M"],shockwave:["3M","4M"],skullbash:["4E","5E"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stomp:["3L10","4L9","5L8"],stoneedge:["4M","4L45","5M","5L52"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],swordsdance:["3E","3T","4E","4M","5M"],tailwhip:["3L1","4L1","5L1"],takedown:["3L43","4L33","5L41"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderfang:["4E","5E"],toxic:["3M","4M","5M"],uproar:["4T","5T"]}}, - rhydon:{learnset:{ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M"],avalanche:["4M"],blizzard:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M","5L30"],captivate:["4M"],chipaway:["5L34"],counter:["3T"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonpulse:["4M","5T"],dragontail:["5M"],drillrun:["5L47","5T"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L58","4M","4L49","5M","5L62","3S0"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furyattack:["3L1","3L15","4L1","4L13","5L1","5L12"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],hammerarm:["4L42","5L42"],headbutt:["4T"],helpinghand:["3S0"],hiddenpower:["3M","4M","5M"],hornattack:["3L1","4L1","5L1"],horndrill:["3L38","4L37","5L71"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],megahorn:["3L66","4L57","5L77","3S0"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockblast:["3L29","4L25","5L23"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],sandstorm:["3M","4M","5M"],scaryface:["3L24","4L21","5L19","3S0"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stomp:["3L1","3L10","4L1","4L9","5L1","5L9"],stoneedge:["4M","4L45","5M","5L56"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],tailwhip:["3L1","4L1","5L1"],takedown:["3L46","4L33","5L41"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],uproar:["4T","5T"],whirlpool:["4M"]}}, - rhyperior:{learnset:{ancientpower:["4T"],aquatail:["4T","5T"],attract:["4M","5M"],avalanche:["4M"],blizzard:["4M","5M"],block:["4T","5T"],brickbreak:["4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L30"],cut:["4M","5M"],dig:["4M","5M"],doubleteam:["4M","5M"],dragonpulse:["4M","5T"],dragontail:["5M"],drillrun:["5L47","5T"],earthpower:["4T","5T"],earthquake:["4M","4L49","5M","5L62"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M"],fireblast:["4M","5M"],firepunch:["4T","5T"],flamethrower:["4M","5M"],flashcannon:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],furyattack:["4L1","4L13","5L1","5L19"],furycutter:["4T"],gigaimpact:["4M","5M"],hammerarm:["4L42","5L42"],headbutt:["4T"],hiddenpower:["4M","5M"],hornattack:["4L1","5L1"],horndrill:["4L37","5L71"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],icepunch:["4T","5T"],icywind:["4T","5T"],incinerate:["5M"],ironhead:["4T","5T"],irontail:["4M","5T"],megahorn:["4L57","5L77"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T"],payback:["4M","5M"],poisonjab:["4M","4L1","5M","5L1"],protect:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockblast:["4L25","5L23"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],rockwrecker:["4L61","5L86"],rollout:["4T"],round:["5M"],sandstorm:["4M","5M"],scaryface:["4L21","5L19"],secretpower:["4M"],shadowclaw:["4M","5M"],shockwave:["4M"],sleeptalk:["4M","5T"],smackdown:["5M"],snore:["4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stomp:["4L1","4L9","5L1","5L9"],stoneedge:["4M","4L45","5M","5L56"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],superpower:["4T","5T"],surf:["4M","5M"],swagger:["4M","5M"],swordsdance:["4M","5M"],tailwhip:["4L1","5L1"],takedown:["4L33","5L41"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4T","5T"],toxic:["4M","5M"],uproar:["4T","5T"],whirlpool:["4M"]}}, - happiny:{learnset:{aromatherapy:["4E","5E"],attract:["4M","5M"],captivate:["4M"],charm:["4L1","5L1"],copycat:["4L5","5L5"],counter:["4E","5E"],doubleteam:["4M","5M"],drainpunch:["4M","5T"],dreameater:["4M","5M"],echoedvoice:["5M"],endeavor:["4T","5T"],endure:["4M","5E"],facade:["4M","5M"],fireblast:["4M","5M"],flamethrower:["4M","5M"],flash:["4M","5M"],fling:["4M","5M"],frustration:["4M","5M"],grassknot:["4M","5M"],gravity:["4E","4T","5E","5T"],hail:["4M","5M"],headbutt:["4T"],healbell:["4E","4T","5E","5T"],helpinghand:["4E","4T","5E","5T"],hiddenpower:["4M","5M"],icywind:["4T","5T"],incinerate:["5M"],lastresort:["4E","4T","5E","5T"],lightscreen:["4M","5M"],metronome:["4E","5E"],mudbomb:["4E","5E"],mudslap:["4T"],naturalgift:["4M","5E"],pound:["4L1","5L1"],present:["4E","5E"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],recycle:["4M","5T"],refresh:["4L9","5L9"],rest:["4M","5M"],"return":["4M","5M"],rollout:["4T"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],substitute:["4E","4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],sweetkiss:["4L12","5L12"],thunderwave:["4M","5M"],toxic:["4M","5M"],uproar:["4T","5T"],waterpulse:["4M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"]}}, - chansey:{learnset:{aromatherapy:["3E","4E","5E"],attract:["3M","4M","5M"],bestow:["5L20"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],counter:["3T","4E","5E","5D"],defensecurl:["3L41","3T","4L31","5L1"],doubleedge:["3L57","3T","4L46","5L54"],doubleslap:["3L17","4L16","5L12"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],eggbomb:["3L35","4L38","5L42"],endeavor:["4T","5T"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["4T","5T"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","4L27","5M","5L34"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4E","4T","5E","5T"],growl:["3L1","4L1","5L1","3S1","5D"],hail:["3M","4M","5M"],headbutt:["4T"],healbell:["3E","4E","4T","5E","5T"],healingwish:["4L42","5L50"],healpulse:["5L38"],helpinghand:["4E","4T","5E","5T","5D"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],lightscreen:["3M","3L49","4M","4L34","5M","5L46"],megakick:["3T"],megapunch:["3T"],metronome:["3E","3T","4E","5E"],mimic:["3T"],minimize:["3L23","4L20","5L23"],mudbomb:["4E","5E"],mudslap:["3T","4T"],naturalgift:["4M","5E"],pound:["3L1","4L1","5L1","3S1"],present:["3E","4E","5E"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],refresh:["3L9","4L9","5L9","3S1"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sing:["3L29","4L23","5L31"],skillswap:["3M","4M","5T","3S2"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],softboiled:["3L13","3T","4L12","5L16","3S2"],solarbeam:["3M","4M","5M"],stealthrock:["4M","5T"],strength:["3M","4M","5M"],substitute:["3E","3T","4E","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetkiss:["3S2"],sweetscent:["3S0"],tailwhip:["3L5","4L5","5L5","3S1"],takedown:["5L27"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M","3S2"],thunderpunch:["4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"],wildcharge:["5M"],wish:["3S0"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"]}}, - blissey:{learnset:{attract:["3M","4M","5M"],avalanche:["4M"],bestow:["5L20"],blizzard:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],counter:["3T"],defensecurl:["3L33","3T","4L31","5L1"],doubleedge:["3L47","3T","4L46","5L54"],doubleslap:["3L13","4L16","5L12"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],eggbomb:["3L28","4L38","5L42"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["4T","5T"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","4L27","5M","5L34"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],growl:["3L1","4L1","5L1","5S0"],hail:["3M","4M","5M"],headbutt:["4T"],healbell:["4T","5T"],healingwish:["4L42","5L50"],healpulse:["5L38"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],lightscreen:["3M","3L40","4M","4L34","5M","5L46"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],minimize:["3L18","4L20","5L23"],mudslap:["3T","4T"],naturalgift:["4M"],pound:["3L1","4L1","5L1","5S0"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["4M","5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],refresh:["3L7","4L9","5L9","5S0"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sing:["3L23","4L23","5L31"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],softboiled:["3L10","3T","4L12","5L16"],solarbeam:["3M","4M","5M"],stealthrock:["4M","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],tailwhip:["3L4","4L5","5L5","5S0"],takedown:["5L27"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"],wildcharge:["5M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"]}}, - tangela:{learnset:{absorb:["3L10","4L8","5L8"],amnesia:["3E","4E","5E"],ancientpower:["4L33","4T","5L36"],attract:["3M","4M","5M"],bind:["3L28","4L22","5L22","5T"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],confusion:["3E","4E","5E"],constrict:["3L1","4L1","5L1"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endeavor:["4E","5E","5T"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flail:["3E","4E","5E"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5E","5T","5L36"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growth:["3L13","4L12","5L12"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],ingrain:["3L1","4L1","5L1","3S0"],knockoff:["4L36","4T","5L33","5T"],leafstorm:["4E","5E"],leechseed:["3E","4E","5E","5D"],megadrain:["3E","3L31","4E","4L26","5E","5L26"],mimic:["3T"],morningsun:["3S0"],naturalgift:["4M","4L40","5E","5L40"],naturepower:["3E","4E","5E"],painsplit:["4T","5T"],poisonpowder:["3L19","4L15","5L15"],powerswap:["4E","5E"],powerwhip:["4L54","5L54"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],ragepowder:["5E"],reflect:["3E","4E","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5D","5T"],shockwave:["4M"],slam:["3L40","4L43","5L43"],sleeppowder:["3L4","4L5","5L5","5D"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","3S0"],stunspore:["3L37","4L29","5L29"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M","3S0"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],thief:["3M","4M","5M"],tickle:["3L46","4L47","5L47"],toxic:["3M","4M","5M"],vinewhip:["3L22","4L19","5L19"],worryseed:["4T","5T"],wringout:["4L50","5L50"]}}, - tangrowth:{learnset:{absorb:["4L8","5L8"],aerialace:["4M","5M"],ancientpower:["4L33","4T","5L36"],attract:["4M","5M"],bind:["4L22","5L22","5T"],block:["4L57","4T","5L57","5T"],brickbreak:["4M","5M"],bulldoze:["5M"],bulletseed:["4M"],captivate:["4M"],constrict:["4L1","5L1"],cut:["4M","5M"],doubleteam:["4M","5M"],earthquake:["4M","5M"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],flash:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],frustration:["4M","5M"],gigadrain:["4M","5T","5L36"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growth:["4L12","5L12"],headbutt:["4T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],ingrain:["4L1","5L1"],knockoff:["4L36","4T","5L33","5T"],megadrain:["4L26","5L26"],mudslap:["4T"],naturalgift:["4M","4L40","5L40"],painsplit:["4T","5T"],payback:["4M","5M"],poisonjab:["4M","5M"],poisonpowder:["4L15","5L15"],powerwhip:["4L54","5L54"],protect:["4M","5M"],psychup:["4M","5M"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],secretpower:["4M"],seedbomb:["4T","5T"],shockwave:["4M"],slam:["4L43","5L43"],sleeppowder:["4L5","5L5"],sleeptalk:["4M","5T"],sludgebomb:["4M","5M"],snore:["4T","5T"],solarbeam:["4M","5M"],strength:["4M","5M"],stunspore:["4L29","5L29"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swordsdance:["4M","5M"],synthesis:["4T","5T"],thief:["4M","5M"],tickle:["4L47","5L47"],toxic:["4M","5M"],vinewhip:["4L19","5L19"],worryseed:["4T","5T"],wringout:["4L50","5L50"],endeavor:["5T"]}}, - kangaskhan:{learnset:{aerialace:["3M","4M","5M"],aquatail:["4T","5T"],attract:["3M","4M","5M"],avalanche:["4M"],bite:["3L7","4L13","5L13","3S1"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L31"],circlethrow:["5E"],cometpunch:["3L1","4L1","5L1","3S1"],counter:["3E","3T","4E","5E","5D"],crunch:["4L31","5L37"],crushclaw:["3E","4E","5E"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],disable:["3E","4E","5E"],dizzypunch:["3L43","4L25","5L34","3S2"],doubleedge:["3T","4E","5E"],doublehit:["4L43","5L19"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5D","5T"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","3S2"],endeavor:["4E","4T","5E","5T"],endure:["3L37","3T","4M","4L34","5L43"],facade:["3M","4M","5M"],fakeout:["3L19","4L7","5L7","5D"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focusenergy:["3E","4E","5E"],focuspunch:["3M","4M","5E"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],hammerarm:["4E","5E"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],knockoff:["4T"],leer:["3L1","4L1","5L1","3S1"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3L25","3T","4L19","5L25"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4L37","4T","5L46","5T"],protect:["3M","4M","5M"],rage:["3L31","4L22","5L22"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],reversal:["3L49","4L49","5L55"],roar:["3M","4M","5M"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],safeguard:["3E","4E","5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sing:["3S2"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spite:["4T","5T"],stomp:["3E","4E","5E"],strength:["3M","4M","5M"],substitute:["3E","3T","4E","4M","5M"],suckerpunch:["4L46","5L49"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tailwhip:["3L13","4L10","5L10","3S2"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],trumpcard:["5E"],uproar:["4T","5E","5T"],waterpulse:["3M","4M"],whirlpool:["4M"],wish:["3S0"],workup:["5M"],yawn:["3S0"],covet:["5T"]}}, - horsea:{learnset:{agility:["3L36","4L23","5L23"],attract:["3M","4M","5M"],aurorabeam:["3E","4E","5E"],blizzard:["3M","4M","5M"],bounce:["4T","5T"],brine:["4M","4L30","5L30","5D"],bubble:["3L1","4L1","5L1","5D","5S0"],bubblebeam:["4L18","5L18"],captivate:["4M"],clearsmog:["5E"],disable:["3E","4E","5E"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonbreath:["3E","4E","5E"],dragondance:["3L50","4L38","5L38"],dragonpulse:["4M","4L42","5L42","5T"],dragonrage:["3E","4E","5E"],endure:["3T","4M"],facade:["3M","4M","5M"],flail:["3E","4E","5E"],flashcannon:["4M","5M"],focusenergy:["4L14","5L14"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["3L43","4L35","5L35"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],leer:["3L15","4L8","5L8"],mimic:["3T"],muddywater:["4E","5E"],naturalgift:["4M"],octazooka:["3E","4E","5E","5D"],outrage:["4T","5E","5T"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],razorwind:["4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],signalbeam:["4E","4T","5E","5T"],sleeptalk:["3T","4M","5T"],smokescreen:["3L8","4L4","5L4"],snore:["3T","4T","5T"],splash:["3E","4E","5E"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],toxic:["3M","4M","5M"],twister:["3L29","4L26","4T","5L26"],waterfall:["3M","4M","5M"],watergun:["3L22","4L11","5L11"],waterpulse:["3M","4M","5E"],whirlpool:["4M"]}}, - seadra:{learnset:{agility:["3L40","4L23","5L23","3S0"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bounce:["4T","5T"],brine:["4M","4L30","5L30"],bubble:["3L1","4L1","5L1"],bubblebeam:["4L18","5L18"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragondance:["3L62","4L48","5L48"],dragonpulse:["4M","4L57","5L57","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],flashcannon:["4M","5M"],focusenergy:["4L14","5L14"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["3L51","4L40","5L40"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],leer:["3L1","3L15","4L1","4L8","5L1","5L8","3S0"],mimic:["3T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],smokescreen:["3L1","3L8","4L1","4L4","5L1","5L4"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],toxic:["3M","4M","5M"],twister:["3L29","4L26","4T","5L26","3S0"],waterfall:["3M","4M","5M"],watergun:["3L1","3L22","4L1","4L11","5L1","5L11","3S0"],waterpulse:["3M","4M"],whirlpool:["4M"]}}, - kingdra:{learnset:{agility:["3L40","4L23","5L23","3S0"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bounce:["4T","5T"],brine:["4M","4L30","5L30"],bubble:["3L1","4L1","5L1"],bubblebeam:["4L18","5L18"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dracometeor:["4T","5T"],dragondance:["3L62","4L48","5L48"],dragonpulse:["4M","4L57","5L57","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],flashcannon:["4M","5M"],focusenergy:["4L14","5L14"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["3L51","4L40","5L40"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],leer:["3L1","3L15","4L1","4L8","5L1","5L8","3S0"],mimic:["3T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","4M","5M"],quash:["5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],smokescreen:["3L1","3L8","4L1","4L4","5L1","5L4"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],toxic:["3M","4M","5M"],twister:["3L29","4L26","4T","5L26","3S0"],waterfall:["3M","4M","5M"],watergun:["3L1","3L22","4L1","4L11","5L1","5L11","3S0"],waterpulse:["3M","4M"],whirlpool:["4M"],yawn:["4L1","5L1"]}}, - goldeen:{learnset:{agility:["3L52","4L47","5L47"],aquaring:["4L27","5L27"],aquatail:["4E","4T","5E","5T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["4E","5E"],bounce:["4T","5T"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flail:["3L24","4L21","5L21"],frustration:["3M","4M","5M"],furyattack:["3L29","4L31","5L31"],furycutter:["4T"],hail:["3M","4M","5M"],haze:["3E","4E","5E"],hiddenpower:["3M","4M","5M"],hornattack:["3L15","4L11","5L11"],horndrill:["3L43","4L41","5L41"],hydropump:["3E","4E","5E"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],knockoff:["4T","5T"],megahorn:["3L57","4L51","5L57"],mimic:["3T"],mudshot:["5E"],mudslap:["4E","4T","5E"],mudsport:["3E","4E","5E"],naturalgift:["4M"],peck:["3L1","4L1","5L1","5D"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],psybeam:["3E","4E","5E","5D"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],signalbeam:["5E","5T"],skullbash:["5E"],sleeptalk:["3E","3T","4E","4M","5E","5T"],snore:["3T","4T","5T"],soak:["5L51"],substitute:["3T","4M","5M"],supersonic:["3L10","4L7","5L7"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwhip:["3L1","4L1","5L1"],toxic:["3M","4M","5M"],waterfall:["3M","3L38","4M","4L37","5M","5L37"],waterpulse:["3M","4M","4L17","5L17","5D"],watersport:["3L1","4L1","5L1"],whirlpool:["4M"],drillrun:["5T"]}}, - seaking:{learnset:{agility:["3L61","4L56","5L56"],aquaring:["4L27","5L27"],aquatail:["4T","5T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bounce:["4T","5T"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M","5D"],facade:["3M","4M","5M"],flail:["3L24","4L21","5L21"],frustration:["3M","4M","5M"],furyattack:["3L29","4L31","5L31"],furycutter:["4T"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],hiddenpower:["3M","4M","5M"],hornattack:["3L15","4L11","5L11"],horndrill:["3L49","4L47","5L47"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],knockoff:["4T","5T"],megahorn:["3L69","4L63","5L72"],mimic:["3T"],mudslap:["4T"],naturalgift:["4M"],peck:["3L1","4L1","5L1"],poisonjab:["4M","4L1","5M","5L1"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5D","5T"],snore:["3T","4T","5T"],soak:["5L63"],substitute:["3T","4M","5M"],supersonic:["3L1","3L10","4L1","4L7","5L1","5L7"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwhip:["3L1","4L1","5L1"],toxic:["3M","4M","5M"],waterfall:["3M","3L41","4M","4L40","5M","5L40"],waterpulse:["3M","4M","4L17","5L17","5D"],watersport:["3L1","4L1","5L1"],whirlpool:["4M"],signalbeam:["5T"],drillrun:["5T"]}}, - staryu:{learnset:{blizzard:["3M","4M","5M"],brine:["4M","5L36"],bubblebeam:["3L28","4L28","5L28"],camouflage:["3L19","4L19","5L19"],cosmicpower:["3L42","4L51","5L55","3S0"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],flashcannon:["4M","5M"],frustration:["3M","4M","5M"],gravity:["4T","5T"],gyroball:["4M","4L37","5M","5L37"],hail:["3M","4M","5M"],harden:["3L1","4L1","5L1"],hiddenpower:["3M","4M","5M"],hydropump:["3L46","4L55","5L60","3S0"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5D","5T"],lightscreen:["3M","3L37","4M","4L42","5M","5L42","3S0"],magiccoat:["4T","5T"],mimic:["3T"],minimize:["3L33","4L33","5L33","3S0"],naturalgift:["4M"],painsplit:["4T","5T"],powergem:["4L46","5L51"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],rapidspin:["3L10","4L10","5L10","3S1"],recover:["3L15","4L15","5L15","3S1"],recycle:["4M","5D","5T"],reflect:["3M","4M","5M"],reflecttype:["5L46"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["4T"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3L24","3T","4L24","4T","5L24"],tackle:["3L1","4L1","5L1","3S1"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],waterfall:["3M","4M","5M"],watergun:["3L6","4L6","5L6","5D","3S1"],waterpulse:["3M","4M"],whirlpool:["4M"]}}, - starmie:{learnset:{avalanche:["4M"],blizzard:["3M","4M","5M"],brine:["4M"],confuseray:["3L33","4L28","5L28"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],flashcannon:["4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],gyroball:["4M","5M"],hail:["3M","4M","5M"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M","3S0"],icywind:["3T","4T","5T"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],rapidspin:["3L1","4L1","5L1"],recover:["3L1","4L1","5L1","3S0"],recycle:["4M","5T"],reflect:["3M","4M","5M"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["4T"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3L1","3T","4L1","4T","5L1"],telekinesis:["5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],twister:["4T"],waterfall:["3M","4M","5M","3S0"],watergun:["3L1","4L1","5L1"],waterpulse:["3M","4M"],whirlpool:["4M"],wonderroom:["5T"]}}, - mimejr:{learnset:{attract:["4M","5M"],barrier:["4L1","5L1"],batonpass:["4L46","5L46"],brickbreak:["4M","5M"],calmmind:["4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],charm:["4E","5E"],confuseray:["4E","5E"],confusion:["4L1","5L1"],copycat:["4L4","5L4"],doubleslap:["4L15","5L15"],doubleteam:["4M","5M"],drainpunch:["4M","5T"],dreameater:["4M","5M"],encore:["4L11","5L11"],endure:["4M"],facade:["4M","5M"],fakeout:["4E","5E"],flash:["4M","5M"],fling:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],futuresight:["4E","5E"],grassknot:["4M","5M"],headbutt:["4T"],healingwish:["4E","5E"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],hypnosis:["4E","5E"],icywind:["5E","5T"],lightscreen:["4M","4L22","5M","5L22"],magiccoat:["4T","5T"],magicroom:["5E","5T"],meditate:["4L8","5L8"],mimic:["4E","4L18","5E","5L18"],mudslap:["4T"],nastyplot:["4E","5E"],naturalgift:["4M"],powersplit:["5E"],protect:["4M","5M"],psybeam:["4L25","5L25"],psychic:["4M","4L39","5M","5L39"],psychup:["4E","4M","5M"],psyshock:["5M"],raindance:["4M","5M"],recycle:["4M","4L32","5L32","5T"],reflect:["4M","4L22","5M","5L22"],rest:["4M","5M"],"return":["4M","5M"],roleplay:["4L43","4T","5L43","5T"],round:["5M"],safeguard:["4M","4L50","5M","5L50"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T"],snatch:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],substitute:["4M","4L29","5M","5L29"],sunnyday:["4M","5M"],swagger:["4M","5M"],taunt:["4M","5M"],teeterdance:["4E","5E"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderwave:["4M","5M"],tickle:["4L1","5L1"],torment:["4M","5M"],toxic:["4M","5M"],trick:["4E","4L36","4T","5E","5L36","5T"],trickroom:["4M","5M"],uproar:["4T","5T"],wakeupslap:["4E","5E"],covet:["5T"],wonderroom:["5T"]}}, - mrmime:{learnset:{aerialace:["4M","5M"],attract:["3M","4M","5M"],barrier:["3L1","4L1","5L1","5D"],batonpass:["3L49","3L47","4L46","5L46"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],confuseray:["4E","5E"],confusion:["3L5","4L1","5L1"],copycat:["4L4","5L4"],counter:["3T"],doubleedge:["3T"],doubleslap:["3L17","3L15","4L15","5L15"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],encore:["3L25","3L26","4L11","5L11","3S0"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],fakeout:["3E","4E","5E"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],followme:["3S0"],frustration:["3M","4M","5M"],futuresight:["3E","4E","5E"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],guardswap:["4L1","5L1"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],hypnosis:["3E","4E","5E"],icepunch:["3T","4T","5T"],icywind:["5E","5T"],irondefense:["4T","5T"],lightscreen:["3M","3L21","3L19","4M","4L22","5M","5L22"],magicalleaf:["3L22","4L1","5L1"],magiccoat:["4T","5T"],magicroom:["5E","5T"],meditate:["3L13","3L12","4L8","5L8"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3E","3T","4E","4L18","5E","5L18"],mudslap:["3T","4T"],nastyplot:["4E","5E"],naturalgift:["4M"],nightmare:["3T"],payback:["4M","5M"],powersplit:["5E"],powerswap:["4L1","5L1"],protect:["3M","4M","5M"],psybeam:["3L29","4L25","5L25"],psychic:["3M","3L45","3L43","4M","4L39","5M","5L39","3S0"],psychup:["3E","3T","4E","4M","5M"],psyshock:["5M"],psywave:["5L15"],quickguard:["5L1"],raindance:["3M","4M","5M"],recycle:["3L33","4M","4L32","5L32","5T"],reflect:["3M","3L21","3L19","4M","4L22","5M","5L22"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roleplay:["3L41","3L40","4L43","4T","5L43","5T"],round:["5M"],safeguard:["3M","3L53","3L50","4M","4L50","5M","5L50"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5D","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],substitute:["3L9","3T","3L8","4M","4L29","5M","5L29"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],teeterdance:["4E","5E","5D"],telekinesis:["5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T","3S0"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["3E","3L37","3L36","4E","4L36","4T","5E","5L36","5T"],trickroom:["4M","5M"],wakeupslap:["4E","5E"],wideguard:["5L1"],zenheadbutt:["4T","5T"],covet:["5T"],foulplay:["5T"],wonderroom:["5T"]}}, - scyther:{learnset:{aerialace:["3M","4M","5M"],agility:["3L21","4L17","5L17","5S2"],airslash:["4L53","5L53"],attract:["3M","4M","5M"],batonpass:["3E","4E","5E","5D"],brickbreak:["4M","5M"],bugbite:["4T","5T"],bugbuzz:["4E","5E"],captivate:["4M"],counter:["3E","3T","4E","5E"],cut:["3M","4M","5M"],defog:["4M","5E"],doubleedge:["3T"],doublehit:["4L49","5L49"],doubleteam:["3M","3L41","4M","4L37","5M","5L37"],endure:["3E","3T","4E","4M","5E"],facade:["3M","4M","5M"],falseswipe:["3L16","4M","4L13","5M","5L13"],feint:["4L61","5L61"],focusenergy:["3L6","4L5","5L5","3S0"],frustration:["3M","4M","5M"],furycutter:["3L46","3T","4L25","4T","5L25","5S2"],gigaimpact:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],knockoff:["4T","5T"],leer:["3L1","4L1","5L1","3S0"],lightscreen:["3E","4E","5M"],mimic:["3T"],morningsun:["3S1"],naturalgift:["4M"],nightslash:["4E","4L45","5E","5L45"],ominouswind:["4T"],protect:["3M","4M","5M"],pursuit:["3L11","4L9","5L9"],quickattack:["3L1","4L1","5L1","5D","3S0"],raindance:["3M","4M","5M"],razorwind:["3E","4E","4L33","5E","5L33","3S1"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],reversal:["3E","4E","5E"],rocksmash:["3M","4M","5M"],roost:["4M","5T"],round:["5M"],safeguard:["3E","4E","5M"],secretpower:["3M","4M"],silverwind:["3E","4E","4M","5E","3S1"],slash:["3L31","4L29","5L29","3S1","5S2"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M","5E"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3L36","3T","4M","4L57","5M","5L57"],tailwind:["4T","5D","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],uturn:["4M","5M"],vacuumwave:["4L1","5L1"],wingattack:["3L26","4L21","5L21","5S2"],xscissor:["4M","4L41","5M","5L41"]}}, - scizor:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M"],agility:["3L21","4L17","5L17","4S1"],attract:["3M","4M","5M"],brickbreak:["4M","5M"],bugbite:["4T","5T","5S2"],bulletpunch:["4L1","5L1","5S2"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M"],defog:["4M"],doubleedge:["3T"],doublehit:["4L49","5L49"],doubleteam:["3M","3L41","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["3L16","4M","4L13","5M","5L13"],feint:["4L61","5L61"],flashcannon:["4M","5M"],fling:["4M","5M"],focusenergy:["3L6","4L5","5L5","5S3"],frustration:["3M","4M","5M"],furycutter:["3L46","3T","4L25","4T","5L25","3S0"],gigaimpact:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],irondefense:["3L41","4L37","4T","5L37","4S1","5T"],ironhead:["4L53","4T","5L53","5T"],knockoff:["4T","5T"],leer:["3L1","4L1","5L1","5S3"],lightscreen:["5M"],metalclaw:["3L26","4L21","5L21","3S0"],mimic:["3T"],naturalgift:["4M"],nightslash:["4L45","5L45"],ominouswind:["4T"],protect:["3M","4M","5M"],pursuit:["3L11","4L9","5L9","5S3"],quickattack:["3L1","4L1","5L1"],raindance:["3M","4M","5M"],razorwind:["4L33","5L33"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],roost:["4M","5T","5S2"],round:["5M"],safeguard:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],silverwind:["4M"],slash:["3L31","4L29","5L29","3S0"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M","5S3"],strength:["3M","4M","5M"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3L36","3T","4M","4L57","5M","5L57","3S0","4S1","5S2"],tailwind:["4T","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],uturn:["4M","5M"],venoshock:["5M"],xscissor:["4M","4L41","5M","5L41","4S1"]}}, - smoochum:{learnset:{attract:["3M","4M","5M"],avalanche:["4M","4L31","5L35"],blizzard:["3M","3L57","4M","4L45","5M","5L48"],bodyslam:["3T"],calmmind:["3M","4M","5M"],captivate:["4M","5E","5D"],confusion:["3L21","4L15","5L15"],copycat:["4L38","5L41"],counter:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fakeout:["3E","4E","5E"],faketears:["3L37","4L25","5L28"],flash:["3M","4M","5M"],fling:["4M","5M"],frostbreath:["5M"],frustration:["3M","4M","5M"],grassknot:["4M","5M"],hail:["3M","4M","5M"],healbell:["4T","5T"],heartstamp:["5L21"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3E","3T","4E","4T","5E","5T"],icywind:["3T","4T","5T"],lick:["3L1","4L5","5L5"],lightscreen:["3M","4M","5M"],luckychant:["4L28","5L31"],magiccoat:["4T","5T"],meanlook:["3L33","4L21","5L25"],meditate:["3E","4E","5E"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],miracleeye:["4E","5E"],mudslap:["3T","4T"],nastyplot:["4E","5E"],naturalgift:["4M"],nightmare:["3T"],payback:["4M","5M"],perishsong:["3L49","4L41","5L45"],pound:["3L1","4L1","5L1"],powdersnow:["3L13","4L11","5L11"],protect:["3M","4M","5M"],psychic:["3M","3L45","4M","4L35","5M","5L38"],psychup:["3E","3T","4E","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],sing:["3L25","4L18","5L18"],skillswap:["3M","4M","5D","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],swagger:["3T","4M","5M"],sweetkiss:["3L9","4L8","5L8","5D"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],uproar:["4T","5T"],wakeupslap:["5E"],waterpulse:["3M","4M"],wish:["3E","4E","5E"],zenheadbutt:["4T","5T"],covet:["5T"],magicroom:["5T"]}}, - jynx:{learnset:{attract:["3M","4M","5M"],avalanche:["4M","4L33","5L39"],blizzard:["3M","3L67","4M","4L55","5M","5L60"],bodyslam:["3L51","3T","4L39","5L44"],brickbreak:["3M","4M","5M"],calmmind:["3M","4M","5M"],captivate:["4M"],counter:["3T"],doubleedge:["3T"],doubleslap:["3L21","4L15","5L15"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],faketears:["3L41","4L25","5L28"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frostbreath:["5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],healbell:["4T","5T"],heartstamp:["5L21"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3L25","3T","4L18","4T","5L18","5T"],icywind:["3T","4T","5T"],lick:["3L1","4L1","4L5","5L1","5L5"],lightscreen:["3M","4M","5M"],lovelykiss:["3L1","3L9","4L1","4L8","5L1","5L8"],magiccoat:["4T","5T"],meanlook:["3L35","4L21","5L25"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],payback:["4M","5M"],perishsong:["3L57","4L49","5L55"],pound:["3L1","4L1","5L1"],powdersnow:["3L1","3L13","4L1","4L11","5L1","5L11"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],telekinesis:["5M"],thief:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],wakeupslap:["4L28","5L33"],waterpulse:["3M","4M"],wringout:["4L44","5L49"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],magicroom:["5T"]}}, - elekid:{learnset:{attract:["3M","4M","5M"],barrier:["3E","4E","5E"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],counter:["3T"],crosschop:["3E","4E","5E","5D","3S0"],discharge:["4L34","5L41"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T","4E","5E"],electroball:["5L31"],endure:["3T","4M"],facade:["3M","4M","5M"],feint:["4E","5E"],firepunch:["3E","3T","4E","4T","5E","5T","3S0"],flash:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M","5E"],frustration:["3M","4M","5M"],hammerarm:["5E"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],icepunch:["3E","3T","4E","4T","5E","5T","3S0"],karatechop:["3E","4E","5E"],leer:["3L1","4L1","5L1"],lightscreen:["3M","3L17","4M","4L25","5M","5L26"],lowkick:["4L10","4T","5L11","5T"],magnetrise:["4T","5D","5T"],meditate:["3E","4E","5E"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],quickattack:["3L1","4L1","5L1"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollingkick:["3E","4E","5E"],round:["5M"],screech:["3L33","4L43","5L51"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M","4L19","5L21"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],swagger:["3T","4M","5M"],swift:["3L25","3T","4L16","4T","5L16"],thief:["3M","4M","5M"],thunder:["3M","3L49","4M","4L46","5M","5L56"],thunderbolt:["3M","3L41","4M","4L37","5M","5L46"],thunderpunch:["3L9","3T","4L28","4T","5L36","5T","3S0"],thundershock:["4L7","5L6","5D"],thunderwave:["3T","4M","5M","5L19"],toxic:["3M","4M","5M"],uproar:["4T","5T"],voltswitch:["5M"],wildcharge:["5M"],covet:["5T"],dualchop:["5T"],electroweb:["5T"]}}, - electabuzz:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],crosschop:["3S1"],counter:["3T"],discharge:["4L37","5L44"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],electroball:["5L32"],endure:["3T","4M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],followme:["3S1"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","3S0"],lightscreen:["3M","3L17","4M","4L25","5M","5L26","4S2","5S3"],lowkick:["4L10","4T","5L11","4S2","5S3","5T"],lowsweep:["5M"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],quickattack:["3L1","4L1","5L1","3S0"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rocksmash:["3M","4M","5M"],round:["5M"],screech:["3L36","4L52","5L56"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M","4L19","5L21","4S2","5S3"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],swagger:["3T","4M","5M"],swift:["3L25","3T","4L16","4T","5L16","5S3"],thief:["3M","4M","5M"],thunder:["3M","3L58","4M","4L58","5M","5L62"],thunderbolt:["3M","3L47","4M","4L43","5M","5L50","3S1"],thunderpunch:["3L1","3L9","3T","4L28","4T","5L38","4S2","3S0","5T"],thundershock:["4L1","4L7","5L1","5L6"],thunderwave:["3T","4M","5M","5L19","3S1"],toxic:["3M","4M","5M"],voltswitch:["5M"],wildcharge:["5M"],covet:["5T"],dualchop:["5T"],electroweb:["5T"]}}, - electivire:{learnset:{attract:["4M","5M"],brickbreak:["4M","5M"],bulldoze:["5M"],captivate:["4M"],chargebeam:["4M","5M"],crosschop:["4S0"],dig:["4M","5M"],discharge:["4L37","5L44","4S1"],doubleteam:["4M","5M"],earthquake:["4M","5M","4S0"],electroball:["5L32"],endure:["4M"],facade:["4M","5M"],firepunch:["4L1","4T","5L1","5T"],flamethrower:["4M","5M"],flash:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],gigaimpact:["4M","4L67","5M","5L68"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icepunch:["4T","4S0","5T"],irontail:["4M","5T"],leer:["4L1","5L1"],lightscreen:["4M","4L25","5M","5L26","4S1"],lowkick:["4L1","4L10","4T","5L1","5L11","5T"],lowsweep:["5M"],magnetrise:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M"],psychic:["4M","5M"],quickattack:["4L1","5L1"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],screech:["4L52","5L56"],secretpower:["4M"],shockwave:["4M","4L19","5L21"],signalbeam:["4T","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],strength:["4M","5M"],substitute:["4M","5M"],swagger:["4M","5M"],swift:["4L16","4T","5L16"],taunt:["4M","5M"],thief:["4M","5M"],thunder:["4M","4L58","5M","5L62"],thunderbolt:["4M","4L43","5M","5L50","4S1"],thunderpunch:["4L28","4T","5L38","4S0","4S1","5T"],thundershock:["4L1","4L7","5L1","5L6"],thunderwave:["4M","5M","5L19"],torment:["4M","5M"],toxic:["4M","5M"],voltswitch:["5M"],wildcharge:["5M"],covet:["5T"],dualchop:["5T"],electroweb:["5T"]}}, - magby:{learnset:{attract:["3M","4M","5M"],barrier:["3E","4E","5E"],bellydrum:["4E","5E"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],clearsmog:["5L19"],confuseray:["3L43","4L25","5L25"],counter:["3T"],crosschop:["3E","4E","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T","4E","5E"],ember:["3L1","4L7","5L7","5D"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["4L16","5L16"],fireblast:["3M","3L49","4M","4L46","5M","5L49"],firepunch:["3L19","3T","4L28","4T","5L34","5T"],firespin:["4L19","5L19"],flameburst:["5L28"],flamecharge:["5M"],flamethrower:["3M","3L37","4M","4L37","5M","5L43"],flareblitz:["4E","5E"],fling:["4M","5M"],focusenergy:["5E"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],headbutt:["4T"],heatwave:["4T","5D","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],incinerate:["5M"],irontail:["3M","4M","5E","5T"],karatechop:["3E","4E","5E"],lavaplume:["4L34","5L37"],leer:["3L7","4L1","5L1"],machpunch:["4E","5E"],megakick:["3T"],megapunch:["3E","3T","4E","5E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["4M","5M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],screech:["3E","4E","5E"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],smog:["3L13","4L1","5L1"],smokescreen:["3L25","4L10","5L10"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","3L31","4M","4L43","5M","5L46"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],thunderpunch:["3E","3T","4E","4T","5E","5D","5T"],toxic:["3M","4M","5M"],uproar:["4T","5T"],willowisp:["4M","5M"],covet:["5T"],dualchop:["5T"]}}, - magmar:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],clearsmog:["5L19"],crosschop:["3S1"],confuseray:["3L49","4L25","5L26","4S2","5S3"],counter:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],ember:["3L1","4L1","4L7","5L1","5L6"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["4L16","5L16","5S3"],fireblast:["3M","3L57","4M","4L54","5M","5L62","3S1"],firepunch:["3L1","3L19","3T","4L28","4T","5L38","4S2","3S0","5T"],firespin:["4L19","5L21","4S2","5S3"],flameburst:["5L32"],flamecharge:["5M"],flamethrower:["3M","3L41","4M","4L41","5M","5L50"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],followme:["3S1"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],irontail:["3M","4M","5T"],lavaplume:["4L36","5L44"],leer:["3L1","3L7","4L1","5L1","3S0"],lowkick:["4T","5T"],lowsweep:["5M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["4M","5M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rocksmash:["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],smog:["3L1","3L13","4L1","5L1","3S0"],smokescreen:["3L25","4L10","5L11","4S2","5S3"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","3L33","4M","4L49","5M","5L56"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],thunderpunch:["3T","4T","5T","3S1"],toxic:["3M","4M","5M"],willowisp:["4M","5M"],covet:["5T"],dualchop:["5T"]}}, - magmortar:{learnset:{attract:["4M","5M"],brickbreak:["4M","5M"],bulldoze:["5M"],captivate:["4M"],clearsmog:["5L19"],confuseray:["4L25","5L26","4S1"],doubleteam:["4M","5M"],earthquake:["4M","5M"],ember:["4L1","4L7","5L1","5L6"],endure:["4M"],facade:["4M","5M"],faintattack:["4L16","5L16"],fireblast:["4M","4L58","5M","5L62"],firepunch:["4L28","4T","5L38","4S1","5T"],firespin:["4L19","5L21"],flameburst:["5L32"],flamecharge:["5M"],flamethrower:["4M","4L43","5M","5L50","4S0","4S1"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","4L67","5M","5L68","4S0"],incinerate:["5M"],irontail:["4M","5T"],lavaplume:["4L37","5L44","4S1"],leer:["4L1","5L1"],lowkick:["4T","5T"],lowsweep:["5M"],mudslap:["4T"],naturalgift:["4M"],overheat:["4M","5M"],protect:["4M","5M"],psychic:["4M","5M","4S0"],rest:["4M","5M"],"return":["4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],secretpower:["4M"],sleeptalk:["4M","5T"],smog:["4L1","5L1"],smokescreen:["4L1","4L10","5L1","5L11"],snore:["4T","5T"],solarbeam:["4M","5M","4S0"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","4L52","5M","5L56"],swagger:["4M","5M"],taunt:["4M","5M"],thief:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4L1","4T","5L1","5T"],torment:["4M","5M"],toxic:["4M","5M"],willowisp:["4M","5M"],covet:["5T"],dualchop:["5T"]}}, - pinsir:{learnset:{attract:["3M","4M","5M"],bind:["3L7","4L4","5L4","5T"],bodyslam:["3T"],brickbreak:["3M","3L31","4M","4L21","5M","5L21"],bugbite:["5E","5T"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],closecombat:["4E","5E","5D"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E"],falseswipe:["3E","4E","4M","5M","3S0"],feint:["4E","5E"],flail:["3E","4E","5E"],fling:["4M","5M"],focusblast:["4M","5M"],focusenergy:["3L1","4L1","5L1"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furyattack:["3E","4E","5E"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],guillotine:["3L37","4L47","5L47","3S0"],harden:["3L19","4L13","5L13"],headbutt:["4T"],helpinghand:["3S0"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],irondefense:["4T","5T"],knockoff:["4T","5T"],mefirst:["5E","5D"],mimic:["3T"],naturalgift:["4M"],protect:["3M","4M","5M"],quickattack:["4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],revenge:["3L25","4L18","5L18"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3L13","3T","4L8","5L8"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],stormthrow:["5L33"],strength:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],submission:["3L43","4L42","5L42","3S0"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4L52","4T","5E","5L52","5T"],swagger:["3T","4M","5M"],swordsdance:["3L49","3T","4M","4L38","5M","5L38"],thief:["3M","4M","5M"],thrash:["4L35","5L35"],toxic:["3M","4M","5M"],vicegrip:["3L1","4L1","5L1","5D"],vitalthrow:["4L25","5L25"],xscissor:["4M","4L30","5M","5L30"]}}, - tauros:{learnset:{attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T","3S2"],bulldoze:["5M"],captivate:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M","3S2"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","4L55","5M","5L63"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hornattack:["3L13","3L8","4L8","5L8","3S0","3S1"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],incinerate:["5M"],ironhead:["4T","5T"],irontail:["3M","4M","5D","5T"],mimic:["3T"],naturalgift:["4M"],outrage:["4T","5T"],payback:["4M","4L24","5M","5L24"],protect:["3M","4M","5M"],pursuit:["3L26","3L19","4L15","5L15","3S0"],rage:["3L8","3L4","4L5","5L5","5D","3S0","3S1"],raindance:["3M","4M","5M"],refresh:["3S2"],rest:["3M","3L34","4M","4L19","5M","5L19"],retaliate:["5M"],"return":["3M","4M","5M"],rockclimb:["4M","5D"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],sandstorm:["3M","4M","5M"],scaryface:["3L19","3L13","4L11","5L11","3S0"],secretpower:["3M","4M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spite:["4T","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","3L26","4M","4L41","5M","5L48"],tackle:["3L1","4L1","5L1","3S1"],tailwhip:["3L4","3L1","4L3","5L3","3S1","3S2"],takedown:["3L53","4L35","5L41"],thrash:["3L43","4L48","5L55"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],wildcharge:["5M"],workup:["5M","5L29"],zenheadbutt:["4L29","4T","5L35","5T"],uproar:["5T"]}}, - magikarp:{learnset:{bounce:["4T","5D","5T","5S5"],flail:["3L30","4L30","5L30","5S5"],hydropump:["5S5"],splash:["3L1","4L1","5L1","5D","4S0","4S1","4S2","4S3","4S4","5S5"],tackle:["3L15","4L15","5L15"]}}, - gyarados:{learnset:{aquatail:["4L35","4T","5L35","5T"],attract:["3M","4M","5M"],avalanche:["4M"],bite:["3L20","4L20","5L20"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bounce:["4T","5T"],brine:["4M"],bulldoze:["5M"],captivate:["4M"],darkpulse:["4M","5T"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragondance:["3L50","4L44","5L44"],dragonpulse:["4M","5T"],dragonrage:["3L25","4L23","5L23"],dragontail:["5M"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["3L40","4L41","5L41"],hyperbeam:["3M","3L55","4M","4L47","5M","5L47"],icebeam:["3M","4M","5M"],icefang:["4L32","5L32"],icywind:["3T","4T","5T"],incinerate:["5M"],ironhead:["4T","5T"],leer:["3L30","4L26","5L26"],mimic:["3T"],naturalgift:["4M"],outrage:["4T","5T"],payback:["4M","5M"],protect:["3M","4M","5M"],raindance:["3M","3L45","4M","4L38","5M","5L38"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],scald:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],thrash:["3L1","4L1","5L1"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["3L35","4L29","4T","5L29"],uproar:["4T","5T"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],irontail:["5T"]}}, - lapras:{learnset:{ancientpower:["4E","4T","5E"],aquatail:["4T","5T"],attract:["3M","4M","5M"],avalanche:["4M","5E"],blizzard:["3M","4M","5M","3S0"],block:["4T","5T"],bodyslam:["3L13","3T","4L18","5L18"],brine:["4M","4L37","5L37"],bulldoze:["5M"],captivate:["4M"],confuseray:["3L19","4L7","5L7","5D"],curse:["3E","4E","5E"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragondance:["3E","4E","5E"],dragonpulse:["4M","5E","5T"],dreameater:["3T","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fissure:["4E","5E"],foresight:["3E","4E","5E"],frostbreath:["5M"],frustration:["3M","4M","5M"],futuresight:["5E"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1"],hail:["3M","4M","5M"],headbutt:["4T"],healbell:["4T","5T","3S0"],hiddenpower:["3M","4M","5M"],horndrill:["3E","4E","5E","5D"],hydropump:["3L49","4L49","5L49","3S0"],hyperbeam:["3M","4M","5M"],icebeam:["3M","3L31","4M","4L32","5M","5L32"],iceshard:["4L10","5L10"],icywind:["3T","4T","5D","5T"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],mimic:["3T"],mist:["3L7","4L4","5L4"],naturalgift:["4M"],nightmare:["3T"],outrage:["4T","5T"],perishsong:["3L25","4L27","5L27"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],raindance:["3M","3L37","4M","4L22","5M","5L22","3S0"],refresh:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],safeguard:["3M","3L43","4M","4L43","5M","5L43"],secretpower:["3M","4M"],sheercold:["3L55","4L55","5L55"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sing:["3L1","4L1","5L1"],sleeptalk:["3E","3T","4E","4M","5E","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3E","3T","4E","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],tickle:["3E","4E","5E"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L1","4L1","5L1"],waterpulse:["3M","4M","4L14","5L14"],whirlpool:["4E","4M","5E"],zenheadbutt:["4T","5T"],drillrun:["5T"],hypervoice:["5T"]}}, - ditto:{learnset:{transform:["3L1","4L1","5L1"]}}, - eevee:{learnset:{attract:["3M","4M","5M","4S0","5S2"],batonpass:["3L36","4L36","5L36"],bite:["3L30","4L29","5L29","4S0"],bodyslam:["3T"],captivate:["4M"],charm:["3E","4E","5E","5L29","5D"],covet:["4E","5E","4S0","5T","5L21"],curse:["3E","4E","5E"],detect:["4E","5E"],dig:["3M","4M","5M"],doubleedge:["3T","5L37"],doubleteam:["3M","4M","5M"],echoedvoice:["5M","5S2"],endure:["3E","3T","4E","4M","5E"],facade:["3M","4M","5M"],faketears:["4E","5E"],flail:["3E","4E","5E","4S1"],frustration:["3M","4M","5M"],growl:["3L16","4L15","5L15"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["3L1","4L1","5L1","4S0","5T"],hiddenpower:["3M","4M","5M"],hypervoice:["5T"],irontail:["3M","4M","4S1","5T"],lastresort:["4L50","4T","5L50","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","5E"],protect:["3M","4M","5M"],quickattack:["3L23","4L22","5L22","4S1"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M","5S2"],round:["5M"],sandattack:["3L8","4L8","5L8","5D"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],sing:["5S2"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],storedpower:["5E"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T","5D"],synchronoise:["5E"],tackle:["3L1","4L1","5L1"],tailwhip:["3L1","4L1","5L1"],takedown:["3L42","4L43","5L43"],tickle:["3E","4E","5E"],toxic:["3M","4M","5M"],trumpcard:["4L57","5L57","4S1"],wish:["3E","4E","5E"],workup:["5M"],yawn:["4E","5E"]}}, - vaporeon:{learnset:{acidarmor:["3L47","4L64","5L64"],aquaring:["4L43","5L43"],aquatail:["4T","5T"],attract:["3M","4M","5M"],aurorabeam:["3L36","4L36","5L36"],bite:["3L30","4L29","5L29"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brine:["4M"],captivate:["4M"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],haze:["3L42","4L57","5L57"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["3L1","4L1","4T","5L1","5S0","5T"],hiddenpower:["3M","4M","5M"],hydropump:["3L52","4L71","5L71"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4L50","4T","5L50","5T"],mimic:["3T"],muddywater:["4L78","5L78"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],quickattack:["3L23","4L22","5L22"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["4M","5M"],round:["5M"],sandattack:["3L8","4L8","5L8","5S0"],scald:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5S0"],tailwhip:["3L1","4L1","5L1","5S0"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L16","4L15","5L15"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"],covet:["5T"],hypervoice:["5T"]}}, - jolteon:{learnset:{agility:["3L47","4L64","5L64"],attract:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M"],chargebeam:["4M","5M"],dig:["3M","4M","5M"],discharge:["4L78","5L78"],doubleedge:["3T"],doublekick:["3L30","4L29","5L29"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["3L1","4L1","4T","5L1","5S0","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],irontail:["3M","4M","5T"],lastresort:["4L50","4T","5L50","5T"],lightscreen:["4M","5M"],magnetrise:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],pinmissile:["3L36","4L36","5L36"],protect:["3M","4M","5M"],quickattack:["3L23","4L22","5L22"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["4M","5M"],round:["5M"],sandattack:["3L8","4L8","5L8","5S0"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5S0"],tailwhip:["3L1","4L1","5L1","5S0"],thunder:["3M","3L52","4M","4L71","5M","5L71"],thunderbolt:["3M","4M","5M"],thunderfang:["4L43","5L43"],thundershock:["3L16","4L15","5L15"],thunderwave:["3L42","3T","4M","4L57","5M","5L57"],toxic:["3M","4M","5M"],voltswitch:["5M"],wildcharge:["5M"],workup:["5M"],covet:["5T"],hypervoice:["5T"]}}, - flareon:{learnset:{attract:["3M","4M","5M"],bite:["3L30","4L29","5L29"],bodyslam:["3T"],captivate:["4M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],ember:["3L16","4L15","5L15"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","4L71","5M","5L71"],firefang:["4L43","5L43"],firespin:["3L36","4L36","5L36"],flamecharge:["5M"],flamethrower:["3M","3L52","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],healbell:["4T","5T"],heatwave:["4T","5T"],helpinghand:["3L1","4L1","4T","5L1","5S0","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],irontail:["3M","4M","5T"],lastresort:["4L50","4T","5L50","5T"],lavaplume:["4L78","5L78"],leer:["3L47"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M"],protect:["3M","4M","5M"],quickattack:["3L23","4L22","5L22"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["4M","5M"],round:["5M"],sandattack:["3L8","4L8","5L8","5S0"],scaryface:["4L64","5L64"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],sleeptalk:["3T","4M","5T"],smog:["3L42","4L57","5L57"],snore:["3T","4T","5T"],strength:["4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5S0"],tailwhip:["3L1","4L1","5L1","5S0"],toxic:["3M","4M","5M"],willowisp:["4M","5M"],workup:["5M"],covet:["5T"],hypervoice:["5T"]}}, - espeon:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],calmmind:["3M","4M","5M"],captivate:["4M"],confusion:["3L16","4L15","5L15"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],futuresight:["4L43","5L43"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["3L1","4L1","4T","5L1","5S1","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],irontail:["3M","4M","5T"],lastresort:["4L50","4T","5L50","5T"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],mimic:["3T"],morningsun:["3L52","4L71","5L71","3S0"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],powerswap:["4L78","5L78"],protect:["3M","4M","5M"],psybeam:["3L36","4L36","5L36","3S0"],psychic:["3M","3L47","4M","4L64","5M","5L64","3S0"],psychup:["3L42","3T","4M","4L57","5M","5L57","3S0"],psyshock:["5M"],quickattack:["3L23","4L22","5L22"],raindance:["3M","4M","5M"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],round:["5M"],sandattack:["3L8","4L8","5L8","5S1"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3L30","3T","4L29","4T","5L29"],tackle:["3L1","4L1","5L1","5S1"],tailwhip:["3L1","4L1","5L1","5S1"],telekinesis:["5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],magicroom:["5T"]}}, - umbreon:{learnset:{assurance:["4L43","5L43"],attract:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M"],confuseray:["3L30","4L29","5L29"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L36","4L36","5L36","3S0"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],guardswap:["4L78","5L78"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["3L1","4L1","4T","5L1","5S1","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],irontail:["3M","4M","5T"],lastresort:["4L50","4T","5L50","5T"],meanlook:["3L42","4L57","5L57","3S0"],mimic:["3T"],moonlight:["3L52","4L71","5L71","3S0"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],payback:["4M","5M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],pursuit:["3L16","4L15","5L15"],quickattack:["3L23","4L22","5L22"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],round:["5M"],sandattack:["3L8","4L8","5L8","5S1"],screech:["3L47","4L64","5L64","3S0"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5S1"],tailwhip:["3L1","4L1","5L1","5S1"],taunt:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],workup:["5M"],covet:["5T"],foulplay:["5T"],hypervoice:["5T"],wonderroom:["5T"]}}, - leafeon:{learnset:{aerialace:["4M","5M"],attract:["4M","5M"],bulletseed:["4M"],captivate:["4M"],dig:["4M","5M"],doubleteam:["4M","5M"],echoedvoice:["5M"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],gigadrain:["4M","4L43","5L43","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],grasswhistle:["4L57","5L57"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4L1","4T","5L1","5S0","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],irontail:["4M","5T"],knockoff:["4T","5T"],lastresort:["4L50","4T","5L50","5T"],leafblade:["4L71","5L71"],magicalleaf:["4L36","5L36"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M"],quickattack:["4L22","5L22"],raindance:["4M","5M"],razorleaf:["4L15","5L15"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],roar:["4M","5M"],rocksmash:["4M","5M"],round:["5M"],sandattack:["4L8","5L8","5S0"],secretpower:["4M"],seedbomb:["4T","5T"],shadowball:["4M","5M"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","4L64","5M","5L64"],swagger:["4M","5M"],swift:["4T"],swordsdance:["4M","4L78","5M","5L78"],synthesis:["4L29","4T","5L29","5T"],tackle:["4L1","5L1","5S0"],tailwhip:["4L1","5L1","5S0"],toxic:["4M","5M"],workup:["5M"],worryseed:["4T","5T"],xscissor:["4M","5M"],covet:["5T"],hypervoice:["5T"]}}, - glaceon:{learnset:{aquatail:["4T","5T"],attract:["4M","5M"],avalanche:["4M"],barrier:["4L78","5L78"],bite:["4L29","5L29"],blizzard:["4M","4L71","5M","5L71"],captivate:["4M"],dig:["4M","5M"],doubleteam:["4M","5M"],echoedvoice:["5M"],endure:["4M"],facade:["4M","5M"],frostbreath:["5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],hail:["4M","4L64","5M","5L64"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4L1","4T","5L1","5S0","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],icefang:["4L43","5L43"],iceshard:["4L36","5L36"],icywind:["4L15","4T","5L15","5T"],irontail:["4M","5T"],lastresort:["4L50","4T","5L50","5T"],mirrorcoat:["4L57","5L57"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M"],quickattack:["4L22","5L22"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],roar:["4M","5M"],rocksmash:["4M","5M"],round:["5M"],sandattack:["4L8","5L8","5S0"],secretpower:["4M"],shadowball:["4M","5M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],tackle:["4L1","5L1","5S0"],tailwhip:["4L1","5L1","5S0"],toxic:["4M","5M"],waterpulse:["4M"],workup:["5M"],covet:["5T"],hypervoice:["5T"]}}, - porygon:{learnset:{aerialace:["3M","4M","5M"],agility:["3L9","4L12","5L12"],blizzard:["3M","4M","5M"],chargebeam:["4M","5M"],conversion:["3L1","4L1","5L1","5S0"],conversion2:["3L1","4L1","5L1"],discharge:["4L40","5L40"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gravity:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],lockon:["3L32","4L45","5L45"],magiccoat:["4L56","4T","5L56","5T"],magnetrise:["4L23","5L23","5T"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],protect:["3M","4M","5M"],psybeam:["3L12","4L7","5L7","5S0"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],recover:["3L20","4L18","5L18"],recycle:["3L44","4M","4L34","5L34","5T"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],sharpen:["3L24","4L1","5L1","5S0"],shockwave:["3M","4M"],signalbeam:["4L29","4T","5L29","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5S0"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],triattack:["3L36","4L51","5L51"],trick:["4T","5T"],trickroom:["4M","5M"],zapcannon:["3L48","4L62","5L62"],zenheadbutt:["4T","5T"],foulplay:["5T"],electroweb:["5T"],wonderroom:["5T"]}}, - porygon2:{learnset:{aerialace:["3M","4M","5M"],agility:["3L9","4L12","5L12"],blizzard:["3M","4M","5M"],chargebeam:["4M","5M"],conversion:["3L1","4L1","5L1"],conversion2:["3L1","4L1","5L1"],defensecurl:["3L24","3T","4L1","5L1"],discharge:["4L40","5L40"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gravity:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","4L67","5M","5L67"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],lockon:["3L32","4L45","5L45"],magiccoat:["4L56","4T","5L56","5T"],magnetrise:["4L23","5L23","5T"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],protect:["3M","4M","5M"],psybeam:["3L12","4L7","5L7"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],recover:["3L20","4L18","5L18"],recycle:["3L44","4M","4L34","5L34","5T"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4L29","4T","5L29","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],triattack:["3L36","4L51","5L51"],trick:["4T","5T"],trickroom:["4M","5M"],zapcannon:["3L48","4L62","5L62"],zenheadbutt:["4T","5T"],foulplay:["5T"],electroweb:["5T"],wonderroom:["5T"]}}, - porygonz:{learnset:{aerialace:["4M","5M"],agility:["4L12","5L12"],blizzard:["4M","5M"],chargebeam:["4M","5M"],conversion:["4L1","5L1"],conversion2:["4L1","5L1"],darkpulse:["4M","5T"],discharge:["4L40","5L40"],doubleteam:["4M","5M"],dreameater:["4M","5M"],embargo:["4M","4L34","5M","5L34"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],gravity:["4T","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","4L67","5M","5L67"],icebeam:["4M","5M"],icywind:["4T","5T"],irontail:["4M","5T"],lastresort:["4T","5T"],lockon:["4L45","5L45"],magiccoat:["4L56","4T","5L56","5T"],magnetrise:["4L23","5L23","5T"],nastyplot:["4L1","5L1"],naturalgift:["4M"],painsplit:["4T","5T"],protect:["4M","5M"],psybeam:["4L7","5L7"],psychic:["4M","5M"],psychup:["4M","5M"],psyshock:["5M"],raindance:["4M","5M"],recover:["4L18","5L18"],recycle:["4M","5T"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],signalbeam:["4L29","4T","5L29","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],tackle:["4L1","5L1"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderwave:["4M","5M"],toxic:["4M","5M"],triattack:["4L51","5L51"],trick:["4T","5T"],trickroom:["4M","4L1","5M","5L1"],uproar:["4T","5T"],zapcannon:["4L62","5L62"],zenheadbutt:["4T","5T"],foulplay:["5T"],electroweb:["5T"],wonderroom:["5T"]}}, - omanyte:{learnset:{ancientpower:["3L49","4L37","4T","5L37"],attract:["3M","4M","5M"],aurorabeam:["3E","4E","5E"],bide:["5E"],bite:["3L13","4L7","5L7","5D","5S0"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brine:["4M","4L28","5L28"],bubblebeam:["3E","4E","5E","5S0"],captivate:["4M"],constrict:["3L1","4L1","5L1"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gyroball:["4M","5M"],hail:["3M","4M","5M"],haze:["3E","4E","5E"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["3L55","4L52","5L55"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5D","5T"],irondefense:["4T","5T"],knockoff:["4E","4T","5E","5T"],leer:["3L31","4L19","5L19"],mimic:["3T"],muddywater:["4E","5E","5D"],mudshot:["3L25","4L25","5L25"],naturalgift:["4M"],protect:["3M","3L37","4M","4L34","5M","5L34"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockblast:["4L46","5L46"],rockpolish:["4M","5M"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4L16","5L16"],round:["5M"],sandstorm:["3M","4M","5M"],scald:["5M"],secretpower:["3M","4M"],shellsmash:["5L52"],slam:["3E","4E","5E"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],spikes:["3E","4E","5E"],stealthrock:["4M","5T"],substitute:["3T","4M","5M"],supersonic:["3E","4E","5E","5S0"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],tickle:["3L43","4L43","5L43"],toxic:["3M","4M","5M"],toxicspikes:["4E","5E"],waterfall:["3M","4M","5M"],watergun:["3L19","4L10","5L10"],waterpulse:["3M","4M","5E"],whirlpool:["4M","5E"],withdraw:["3L1","4L1","5L1","5S0"],wringout:["4E","5E"],bind:["5T"]}}, - omastar:{learnset:{ancientpower:["3L55","4L37","4T","5L37"],attract:["3M","4M","5M"],bite:["3L1","3L13","4L1","4L7","5L1","5L7"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brine:["4M","4L28","5L28"],captivate:["4M"],constrict:["3L1","4L1","5L1"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gyroball:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["3L65","4L67","5L75"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],knockoff:["4T","5T"],leer:["3L31","4L19","5L19"],mimic:["3T"],mudshot:["3L25","4L25","5L25"],mudslap:["4T"],naturalgift:["4M"],protect:["3M","3L37","4M","4L34","5M","5L34"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockblast:["4L56","5L56"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4L16","5L16"],round:["5M"],sandstorm:["3M","4M","5M"],scald:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shellsmash:["5L67"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],spikecannon:["3L40","4L40","5L40"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],tickle:["3L46","4L48","5L48"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L19","3L1","4L10","5L10"],waterpulse:["3M","4M"],whirlpool:["4M"],withdraw:["3L1","4L1","5L1"],bind:["5T"]}}, - kabuto:{learnset:{absorb:["3L13","4L6","5L6","5D"],aerialace:["3M"],ancientpower:["3L55","4L46","4T","5L46"],aquajet:["4L31","5L31"],attract:["3M","4M","5M"],aurorabeam:["3E","4E","5E"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brine:["4M"],bubblebeam:["3E","4E","5E"],captivate:["4M"],confuseray:["3E","4E","5E","5S0"],dig:["3E","3M","4E","4M","5M","5S0"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],endure:["3L37","3T","4M","4L26","5L26"],facade:["3M","4M","5M"],flail:["3E","4E","5E","5D"],foresight:["5E"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5E","5T"],hail:["3M","4M","5M"],harden:["3L1","4L1","5L1","5S0"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],icebeam:["3M","4M","5M"],icywind:["3T","4E","4T","5E","5T"],irondefense:["4T","5T"],knockoff:["3E","4E","4T","5E","5T"],leer:["3L19","4L11","5L11"],megadrain:["3L49","4L36","5L36"],metalsound:["3L43","4L41","5L41"],mimic:["3T"],mudshot:["3L25","4E","4L16","5E","5L16"],mudslap:["4T"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rapidspin:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],sandattack:["3L31","4L21","5L21"],sandstorm:["3M","4M","5M"],scald:["5M"],scratch:["3L1","4L1","5L1","5S0"],screech:["4E","5E"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5D","5T"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],wringout:["4L51","5L51"]}}, - kabutops:{learnset:{absorb:["3L1","3L13","4L1","4L6","5L1","5L6"],aerialace:["3M","4M","5M"],ancientpower:["3L65","4L54","4T","5L54"],aquajet:["4L31","5L31"],aquatail:["4T","5T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],brine:["4M"],captivate:["4M"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],endure:["3L37","3T","4M","4L26","5L26"],facade:["3M","4M","5M"],feint:["4L1","5L1"],frustration:["3M","4M","5M"],furycutter:["3T","3L1","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],harden:["3L1","4L1","5L1"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],knockoff:["4T","5T"],leer:["3L19","3L1","4L11","4L1","5L1","5L11"],lowkick:["4T","5T"],megadrain:["3L55","4L36","5L36"],megakick:["3T"],metalsound:["3L46","4L45","5L45"],mimic:["3T"],mudshot:["3L25","4L16","5L16"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4L72","5L72"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],sandattack:["3L31","4L21","5L21"],sandstorm:["3M","4M","5M"],scald:["5M"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],seismictoss:["3T"],slash:["3L40","4L40","5L40"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],substitute:["3T","4M","5M"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],wringout:["4L63","5L63"],xscissor:["4M","5M"]}}, - aerodactyl:{learnset:{aerialace:["3M","4M","5M"],agility:["3L8","4L17","5L17"],aircutter:["4T"],ancientpower:["3L29","4L25","4T","5L25"],aquatail:["4T","5T"],assurance:["4E","5E","5D"],attract:["3M","4M","5M"],bite:["3L15","4L1","5L1","5D"],bulldoze:["5M"],captivate:["4M"],crunch:["4L33","5L33"],curse:["3E","4E","5E"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonbreath:["3E","4E","5E"],dragonclaw:["3M","4M","5M"],dragonpulse:["4M","5T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firefang:["4L1","5L1","5S0"],flamethrower:["3M","4M","5M"],fly:["3M","4M","5M"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],gigaimpact:["4M","4L73","5M","5L81"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","3L50","4M","4L57","5M","5L65"],icefang:["4L1","5L1","5S0"],incinerate:["5M"],ironhead:["4L49","4T","5L57","5T"],irontail:["3M","4M","5T"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","5M"],protect:["3M","4M","5M"],pursuit:["3E","4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","4L9","5M","5L9"],rockpolish:["4M","5M"],rockslide:["3T","4M","4L65","5M","5L73"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roost:["4M","5E","5T"],round:["5M"],sandstorm:["3M","4M","5M"],scaryface:["3L36","4L1","5L1"],secretpower:["3M","4M"],skyattack:["3T","4T","5T"],skydrop:["5M","5L49"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","5T"],stealthrock:["4M","5D","5T"],steelwing:["3E","3M","4E","4M","5E","5S0"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3L22","4L1","5L1"],swagger:["3T","4M","5M"],swift:["3T"],tailwind:["4T","5E","5T"],takedown:["3L43","4L41","5L41"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunderfang:["4L1","5L1","5S0"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],whirlwind:["3E","4E","5E"],wingattack:["3L1","4L1","5L1"]}}, - munchlax:{learnset:{afteryou:["5E","5T"],amnesia:["4L9","5L9"],attract:["4M","5M"],blizzard:["4M","5M"],bodyslam:["4L33","5L36"],brickbreak:["4M","5M"],bulldoze:["5M"],captivate:["4M"],charm:["4E","5E"],chipaway:["5L25"],counter:["4E","5E"],curse:["4E","5E"],defensecurl:["4L4","5L4"],doubleedge:["4E","5E"],doubleteam:["4M","5M"],earthquake:["4M","5M"],endure:["4M"],facade:["4M","5M"],fireblast:["4M","5M"],firepunch:["4T","5T"],flamethrower:["4M","5M"],fling:["4M","4L36","5M","5L41"],focuspunch:["4M"],frustration:["4M","5M"],gunkshot:["4T","5T"],headbutt:["4T"],hiddenpower:["4M","5M"],icebeam:["4M","5M"],icepunch:["4T","5T"],icywind:["4T","5T"],incinerate:["5M"],lastresort:["4L49","4T","5L57","5T"],lick:["4E","4L12","5E","5L12"],metronome:["4L1","5L1"],mudslap:["4T"],naturalgift:["4M","4L44","5E","5L49"],odorsleuth:["4L1","5L1"],outrage:["4T"],protect:["4M","5M"],psychic:["4M","5M"],pursuit:["4E","5E"],raindance:["4M","5M"],recycle:["4M","4L17","5L17","5T"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],rollout:["4L41","4T","5L44"],round:["5M"],sandstorm:["4M","5M"],screech:["4L20","5L20"],secretpower:["4M"],seedbomb:["4T","5T"],selfdestruct:["5E"],shadowball:["4M","5M"],shockwave:["4M"],sleeptalk:["4M","5T"],snatch:["5L52","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],stockpile:["4L25","5L28"],strength:["4M","5M"],substitute:["4E","4M","5M"],sunnyday:["4M","5M"],surf:["4M","5M"],swagger:["4M","5M"],swallow:["4L28","5L33"],tackle:["4L1","5L1"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4T","5T"],toxic:["4M","5M"],uproar:["4T","5T"],waterpulse:["4M"],whirlpool:["4M"],whirlwind:["4E","5E"],workup:["5M"],zenheadbutt:["4E","4T","5E","5T"],covet:["5T"],superpower:["5T"],hypervoice:["5T"]}}, - snorlax:{learnset:{afteryou:["5E","5T"],amnesia:["3L6","3L5","4L9","5L9","5D"],attract:["3M","4M","5M"],bellydrum:["3L15","3L13","4L17","5L17"],blizzard:["3M","4M","5M"],block:["3L37","3L41","4L36","4T","5L41","5T"],bodyslam:["3L33","3T","4L33","5L36","3S0"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],charm:["3E","4E","5E"],chipaway:["5L25"],counter:["3T","4E","5E"],covet:["3L42","3L45","5T"],crunch:["4L44","5L49"],curse:["3E","4E","5E","3S0"],defensecurl:["3L10","3T","3L9","4L4","5L4"],doubleedge:["3E","3T","4E","5E"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T","5D"],fissure:["3E","4E","5E","3S0"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","4L49","5M","5L57"],gunkshot:["4T","5T"],headbutt:["3L19","3L17","4T"],heavyslam:["5L52"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","3L51","3L53","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],ironhead:["4T","5T"],lastresort:["4T","5T"],lick:["3E","4E","4L12","5E","5L12"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","5E"],outrage:["4T","5T"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T"],pursuit:["4E","5E"],raindance:["3M","4M","5M"],recycle:["4M","5T","5D"],refresh:["3S0"],rest:["3M","3L28","3L25","4M","4L25","5M","5L28"],retaliate:["5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3L46","3T","3L49","4L41","4T","5L44"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],selfdestruct:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","3L37","4M","4L28","5L33","5T"],smackdown:["5M"],snore:["3L28","3T","3L29","4L28","4T","5L28","5T"],solarbeam:["3M","4M","5M"],strength:["3M","4M","5M"],substitute:["3E","3T","4E","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],whirlwind:["4E","5E"],wildcharge:["5M"],workup:["5M"],yawn:["3L24","3L21","4L20","5L20"],zenheadbutt:["4T","5T"],hypervoice:["5T"]}}, - articuno:{learnset:{aerialace:["3M","4M","5M"],agility:["3L25","4L36","5L36","3S0"],aircutter:["4T"],ancientpower:["4L29","4T","5L29"],avalanche:["4M"],blizzard:["3M","3L73","4M","4L71","5M","5L71"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],extrasensory:["3S1"],facade:["3M","4M","5M"],fly:["3M","4M","5M"],frostbreath:["5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gust:["3L1","4L1","5L1"],hail:["3M","4M","4L85","5M","5L85"],haze:["3S1"],healbell:["3S1"],hiddenpower:["3M","4M","5M"],hurricane:["5L92"],hyperbeam:["3M","4M","5M"],icebeam:["3M","3L49","4M","4L43","5M","5L43","3S0","3S1"],iceshard:["4L15","5L15"],icywind:["3T","4T","5T"],mimic:["3T"],mindreader:["3L37","4L22","5L22","3S0"],mist:["3L13","4L8","5L8"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],powdersnow:["3L1","4L1","5L1"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],reflect:["3M","3L61","4M","4L50","5M","5L50","3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],roost:["4M","4L57","5L57","5T"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],sheercold:["3L85","4L78","5L78"],signalbeam:["4T","5T"],skyattack:["3T","4T","5T"],skydrop:["5M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4L64","4T","5L64","5T"],toxic:["3M","4M","5M"],twister:["4T"],uturn:["4M","5M"],waterpulse:["3M","4M"]}}, - zapdos:{learnset:{aerialace:["3M","4M","5M"],agility:["3L25","4L43","5L43","3S0"],aircutter:["4T"],ancientpower:["4L29","4T","5L29"],batonpass:["3S1"],charge:["3L61","4L36","5L36","3S0"],chargebeam:["4M","5M"],defog:["4M"],detect:["3L37","4L15","5L15","3S0"],discharge:["4L50","5L50"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drillpeck:["3L49","4L71","5L71","3S0"],endure:["3T","4M"],extrasensory:["3S1"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],lightscreen:["3M","3L73","4M","4L64","5M","5L64"],metalsound:["3S1"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],peck:["3L1","4L1","5L1"],pluck:["4M","4L22","5M","5L22"],protect:["3M","4M","5M"],raindance:["3M","4M","4L85","5M","5L85"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],roost:["4M","4L57","5L57","5T"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skyattack:["3T","4T","5T"],skydrop:["5M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],thunder:["3M","3L85","4M","4L78","5M","5L78"],thunderbolt:["3M","4M","5M","3S1"],thundershock:["3L1","4L1","5L1"],thunderwave:["3L13","3T","4M","4L8","5M","5L8"],toxic:["3M","4M","5M"],twister:["4T"],uturn:["4M","5M"],voltswitch:["5M"],wildcharge:["5M"],zapcannon:["5L92"]}}, - moltres:{learnset:{aerialace:["3M","4M","5M"],agility:["3L25","4L15","5L15","3S0"],aircutter:["4T"],airslash:["4L50","5L50"],ancientpower:["4L29","4T","5L29"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],ember:["3L1","4L1","5L1"],endure:["3L37","3T","4M","4L22","5L22","3S0"],extrasensory:["3S1"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firespin:["3L13","4L8","5L8"],flamecharge:["5M"],flamethrower:["3M","3L49","4M","4L36","5M","5L36","3S0","3S1"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],heatwave:["3L73","4L64","4T","5L64","5T"],hiddenpower:["3M","4M","5M"],hurricane:["5L92"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],mimic:["3T"],morningsun:["3S1"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],overheat:["3M","4M","5M"],pluck:["4M","5M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],roost:["4M","4L57","5L57","5T"],round:["5M"],safeguard:["3M","3L61","4M","4L43","5M","5L43","3S0"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],skyattack:["3L85","3T","4L78","4T","5L78","5T"],skydrop:["5M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["4M","4L71","5M","5L71"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","4L85","5M","5L85"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],toxic:["3M","4M","5M"],twister:["4T"],uturn:["4M","5M"],willowisp:["4M","5M","3S1"],wingattack:["3L1","4L1","5L1"]}}, - dratini:{learnset:{agility:["3L36","4L25","5L25"],aquajet:["5E"],aquatail:["4L31","4T","5L35","5T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dracometeor:["4T","5T"],dragonbreath:["3E","4E","5E","5D"],dragondance:["3E","4E","4L45","5E","5L51"],dragonpulse:["4M","5E","5T"],dragonrage:["3L22","4L15","5L15"],dragonrush:["4E","4L35","5E","5L41"],dragontail:["5M","5L31"],endure:["3T","4M"],extremespeed:["4E","5E"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],haze:["3E","4E","5E"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","3L57","4M","4L55","5M","5L61"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5E","5T"],leer:["3L1","4L1","5L1"],lightscreen:["3E","4E","5M"],mimic:["3T"],mist:["3E","4E","5E"],naturalgift:["4M"],outrage:["3L50","4L51","4T","5L55","5T"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","3L43","4M","4L41","5M","5L45"],secretpower:["3M","4M"],shockwave:["3M","4M"],slam:["3L29","4L21","5L21"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3E","4E","5E"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3L8","3T","4M","4L5","5M","5L5","5D"],toxic:["3M","4M","5M"],twister:["3L15","4L11","4T","5L11"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M","5E","5D"],whirlpool:["4M"],wrap:["3L1","4L1","5L1"],bind:["5T"]}}, - dragonair:{learnset:{agility:["3L38","4L25","5L25"],aquatail:["4L33","4T","5L39","5T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dracometeor:["4T","5T"],dragondance:["4L53","5L61"],dragonpulse:["4M","5T"],dragonrage:["3L22","4L15","5L15"],dragonrush:["4L39","5L47"],dragontail:["5M","5L33"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","3L65","4M","4L67","5M","5L75"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1"],lightscreen:["5M"],mimic:["3T"],naturalgift:["4M"],outrage:["3L56","4L61","4T","5L67","5T"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","3L47","4M","4L47","5M","5L53"],secretpower:["3M","4M"],shockwave:["3M","4M"],slam:["3L29","4L21","5L21"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3L1","3L8","3T","4M","4L1","4L5","5M","5L1","5L5"],toxic:["3M","4M","5M"],twister:["3L1","3L15","4L1","4L11","4T","5L1","5L11"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],wrap:["3L1","4L1","5L1"],bind:["5T"]}}, - dragonite:{learnset:{aerialace:["3M","4M","5M"],agility:["3L38","4L25","5L25","3S0"],aircutter:["4T"],aquatail:["4L33","4T","5L39","5T"],attract:["3M","4M","5M"],bind:["5T"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],cut:["3M","4M","5M"],defog:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dracometeor:["4T","5T","4S2"],dragonclaw:["3M","4M","5M"],dragondance:["4L53","5L61","3S1","4S2","5S3"],dragonpulse:["4M","5T"],dragonrage:["3L22","4L15","5L15"],dragonrush:["4L39","5L47","5S4","5S5"],dragontail:["5M","5L33"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","3S1"],endure:["3T","4M"],extremespeed:["5S3","5S5"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M","5S6"],firepunch:["3T","4L1","4T","5L1","5T","5S3"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],fly:["3M","4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],healbell:["3S1"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hurricane:["5L81"],hyperbeam:["3M","3L75","4M","4L73","5M","5L75","3S1","5S6"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1"],lightscreen:["5M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],outrage:["3L61","4L64","4T","5L67","3S0","4S2","5T","5S3","5S6"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roost:["4M","4L1","5L1","5T"],round:["5M"],safeguard:["3M","3L47","4M","4L47","5M","5L53","3S0","5S4","5S5","5S6"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],shockwave:["3M","4M"],skydrop:["5M"],slam:["3L29","4L21","5L21"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M","4S2"],thunderpunch:["3T","4L1","4T","5L1","5T","5S4"],thunderwave:["3L1","3L8","3T","4M","4L1","4L5","5M","5L1","5L5"],toxic:["3M","4M","5M"],twister:["3L1","3L15","4L1","4L11","4T","5L1","5L11"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],wingattack:["3L55","4L55","5L55","3S0","5S4","5S5"],wrap:["3L1","4L1","5L1"]}}, - mewtwo:{learnset:{aerialace:["3M","4M","5M"],amnesia:["3L77","3L99","4L57","5L50"],aquatail:["4T","5T"],aurasphere:["4L100","5L93","5S0"],avalanche:["4M"],barrier:["3L11","4L8","5L1"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],calmmind:["3M","4M","5M"],chargebeam:["4M","5M"],confusion:["3L1","4L1","5L1"],counter:["3T"],disable:["3L1","4L1","5L1"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],electroball:["5S0"],embargo:["4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],futuresight:["3L44","3L88","4L22","5L15"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],guardswap:["4L64","5L57"],hail:["3M","4M","5M"],headbutt:["4T"],healpulse:["5S1"],hiddenpower:["3M","4M","5M"],hurricane:["5S1"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M","5S1"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],lightscreen:["3M","4M","5M"],lowkick:["4T","5T"],lowsweep:["5M"],magiccoat:["4T","5T"],mefirst:["4L79","5L71"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],miracleeye:["4L36","5L29"],mist:["3L55","3L22","4L43","5L36"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],poisonjab:["4M","5M"],powerswap:["4L64","5L57"],protect:["3M","4M","5M"],psychic:["3M","3L66","4M","4L71","5M","5L64"],psychocut:["4L50","5L43"],psychup:["3L33","3T","3L77","4M","4L29","5M","5L22"],psyshock:["5M"],psystrike:["5L100","5S0","5S1"],raindance:["3M","4M","5M"],recover:["3L88","3L44","4L86","5L79"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],safeguard:["3M","3L99","3L55","4M","4L93","5M","5L86"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3T"],shadowball:["3M","4M","5M","5S0"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3L22","3T","3L33","4L15","4T","5L8"],taunt:["3M","4M","5M"],telekinesis:["5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],waterpulse:["3M","4M"],willowisp:["4M","5M"],zenheadbutt:["4T","5T"],foulplay:["5T"],magicroom:["5T"],wonderroom:["5T"]}}, - mew:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M"],aircutter:["4T"],allyswitch:["5M"],amnesia:["4L60","5L60","4S5"],ancientpower:["3L50","4L50","4T","5L50","4S2"],aquatail:["4T","5T"],attract:["3M","4M","5M"],aurasphere:["4L100","5L100","4S2","4S3","4S4","4S5","4S6","4S7"],avalanche:["4M"],barrier:["4L40","5L40","4S3"],batonpass:["4L80","5L80"],blizzard:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],bounce:["4T","5T"],brickbreak:["3M","4M","5M"],brine:["4M"],bugbite:["4T","5T"],bulkup:["3M","4M","5M"],bulldoze:["5M"],bulletseed:["3M","4M"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],counter:["3T"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],defensecurl:["3T"],defog:["4M"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonclaw:["3M","4M","5M"],dragonpulse:["4M","5T"],dragontail:["5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],embargo:["4M","5M"],endeavor:["4T","5T"],endure:["3T","4M"],energyball:["4M","5M"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],faintattack:["3T"],fakeout:["3T"],falseswipe:["4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamecharge:["5M"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],flashcannon:["4M","5M"],fling:["4M","5M"],fly:["3M","4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frostbreath:["5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gastroacid:["4T","5T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],gunkshot:["4T","5T"],gyroball:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],healbell:["4T","5T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],hypnosis:["3T","4S8"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irondefense:["4T","5T"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M"],lowkick:["4T","5T"],lowsweep:["5M"],magiccoat:["4T","5T"],magnetrise:["4T","5T"],mefirst:["4L70","5L70"],megakick:["3T"],megapunch:["3L20","3T","4L10","5L10","3S0","4S4"],metronome:["3L30","3T","4L20","5L20","3S0","4S2","4S3","4S4","4S5","4S6","4S7"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L90","5L90"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3T"],ominouswind:["4T"],outrage:["4T","5T"],overheat:["3M","4M","5M"],painsplit:["4T","5T"],payback:["4M","5M"],pluck:["4M","5M"],poisonjab:["4M","5M"],pound:["3L1","4L1","5L1","3S0","3S1","4S9"],protect:["3M","4M","5M"],psychic:["3M","3L40","4M","4L30","5M","5L30","4S7"],psychup:["3T","4M","5M"],psyshock:["5M"],quash:["5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],reflecttype:["5L1"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M","4S8"],roar:["3M","4M","5M"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["3T","4T","5T"],rollout:["3T","4T"],roost:["4M","5T"],round:["5M"],safeguard:["3M","4M","5M"],sandstorm:["3M","4M","5M"],scald:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],selfdestruct:["3T"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],silverwind:["4M"],skillswap:["3M","4M","5T"],skyattack:["3T","4T","5T"],skydrop:["5M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5M"],smackdown:["5M"],snarl:["5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],softboiled:["3T"],solarbeam:["3M","4M","5M"],spite:["4T","5T"],stealthrock:["4M","5T"],steelwing:["3M","4M"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],synthesis:["4T","4S8","5T"],tailwind:["4T","5T"],taunt:["3M","4M","5M"],telekinesis:["5M"],teleport:["4S2","4S3","4S4","4S5","4S6","4S7","4S8"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],transform:["3L10","4L1","5L1","3S0","3S1","4S6"],trick:["4T","5T"],trickroom:["4M","5M"],twister:["4T"],uproar:["4T","5T"],uturn:["4M","5M"],vacuumwave:["4T"],venoshock:["5M"],voltswitch:["5M"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],wildcharge:["5M"],willowisp:["4M","5M"],workup:["5M"],worryseed:["4T","5T"],xscissor:["4M","5M"],zapcannon:["3T"],zenheadbutt:["4T","5T"],covet:["5T"],dualchop:["5T"],drillrun:["5T"],foulplay:["5T"],electroweb:["5T"],hypervoice:["5T"],bind:["5T"],afteryou:["5T"],magicroom:["5T"],wonderroom:["5T"]}}, - chikorita:{learnset:{ancientpower:["3E","4E","4T","5E"],aromatherapy:["4E","4L42","5E","5L42"],attract:["3M","4M","5M"],bodyslam:["3L29","3T","4L34","4E","5E","5L34"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3E","3T","4E","5E"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flail:["3E","4E","5E"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["4T"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M"],grasspledge:["5T"],grasswhistle:["3E","4E","5E"],growl:["3L1","4L1","5L1","3S0"],headbutt:["4T"],healpulse:["5E"],hiddenpower:["3M","4M","5M"],ingrain:["3E","4E","5E"],irontail:["3M","4M","5T"],leafstorm:["4E","5E"],leechseed:["3E","4E","5E"],lightscreen:["3M","3L36","4M","4L31","5M","5L31"],magicalleaf:["4L20","5L20"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","4L23","5L23"],naturepower:["3E","4E","5E"],poisonpowder:["3L15","4L9","5L9"],protect:["3M","4M","5M"],razorleaf:["3L8","4L6","5L6","3S0"],reflect:["3M","3L12","4M","4L17","5M","5L17"],refresh:["5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","3L43","4M","4L39","5M","5L39"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","3L50","4M","4L45","5M","5L45"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["4L28","5L28"],swordsdance:["3T","4M","5M"],synthesis:["3L22","4L12","4T","5L12","5T"],tackle:["3L1","4L1","5L1","3S0"],toxic:["3M","4M","5M"],vinewhip:["3E","4E","5E"],worryseed:["4T","5T"],wringout:["4E","5E"]}}, - bayleef:{learnset:{ancientpower:["4T"],aromatherapy:["4L50","5L50"],attract:["3M","4M","5M"],bodyslam:["3L31","3T","4L40","5L40"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M"],grasspledge:["5T"],growl:["3L1","4L1","5L1"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],irontail:["3M","4M","5T"],lightscreen:["3M","3L39","4M","4L36","5M","5L36"],magicalleaf:["4L22","5L22"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","4L26","5L26"],poisonpowder:["3L15","4L1","4L9","5L1","5L9"],protect:["3M","4M","5M"],razorleaf:["3L1","3L8","4L1","4L6","5L1","5L6"],reflect:["3M","3L1","3L12","4M","4L18","5M","5L18"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],safeguard:["3M","3L47","4M","4L46","5M","5L46"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","3L55","4M","4L54","5M","5L54"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["4L32","5L32"],swordsdance:["3T","4M","5M"],synthesis:["3L23","4L12","4T","5L12","5T"],tackle:["3L1","4L1","5L1"],toxic:["3M","4M","5M"],worryseed:["4T","5T"]}}, - meganium:{learnset:{ancientpower:["4T"],aromatherapy:["4L60","5L60"],attract:["3M","4M","5M"],bodyslam:["3L31","3T","4L46","5L46"],bulldoze:["5M"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragontail:["5M"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frenzyplant:["4T","5T"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],grasspledge:["5T"],growl:["3L1","4L1","5L1"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],irontail:["3M","4M","5T"],lightscreen:["3M","3L41","4M","4L40","5M","5L40"],magicalleaf:["4L22","5L22"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","4L26","5L26"],outrage:["4T","5T"],petaldance:["4L32","5L32"],poisonpowder:["3L15","4L1","4L9","5L1","5L9"],protect:["3M","4M","5M"],razorleaf:["3L1","3L8","4L1","4L6","5L1","5L6"],reflect:["3M","3L1","3L12","4M","4L18","5M","5L18"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rocksmash:["3M","4M","5M"],round:["5M"],safeguard:["3M","3L51","4M","4L54","5M","5L54"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","3L61","4M","4L66","5M","5L66"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["4L34","5L34"],swordsdance:["3T","4M","5M"],synthesis:["3L23","4L12","4T","5L12","5T"],tackle:["3L1","4L1","5L1"],toxic:["3M","4M","5M"],worryseed:["4T","5T"]}}, - cyndaquil:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M"],covet:["3E","4E","5E","5T"],crushclaw:["3E","4E","5E"],cut:["3M","4M","5M"],defensecurl:["3T","4L22","5L22"],dig:["3M","4M","5M"],doubleedge:["3T","4E","4L46","5E","5L55"],doublekick:["4E","5E"],doubleteam:["3M","4M","5M"],ember:["3L12","4L10","5L10"],endure:["3T","4M"],eruption:["4L49","5L58"],extrasensory:["4E","5E"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepledge:["5T"],flameburst:["5E"],flamecharge:["5M","5L28"],flamethrower:["3M","3L46","4M","4L37","5M","5L40"],flamewheel:["3L27","4L19","5L19"],flareblitz:["4E","5E"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],furyswipes:["3E","4E","5E"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],howl:["3E","4E","5E"],incinerate:["5M"],inferno:["5L46"],lavaplume:["4L31","5L37"],leer:["3L1","4L1","5L1","3S0"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],naturepower:["5E"],overheat:["3M","4M","5M"],protect:["3M","4M","5M"],quickattack:["3E","3L19","4E","4L13","5E","5L13"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],reversal:["3E","4E","5E"],rollout:["3T","4L40","4T","5L49"],round:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],smokescreen:["3L6","4L4","4L6","5L6","3S0"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3L36","3T","4L28","5L31"],tackle:["3L1","4L1","5L1","3S0"],thrash:["3E","4E","5E"],toxic:["3M","4M","5M"],wildcharge:["5M"],willowisp:["4M","5M"]}}, - quilava:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],cut:["3M","4M","5M"],defensecurl:["3T","4L24","5L24"],dig:["3M","4M","5M"],doubleedge:["3T","4L53","5L64"],doubleteam:["3M","4M","5M"],ember:["3L12","4L10","5L10"],endure:["3T","4M"],eruption:["4L57","5L68"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepledge:["5T"],flamecharge:["5M","5L35"],flamethrower:["3M","3L54","4M","4L42","5M","5L46"],flamewheel:["3L31","4L20","5L20"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],incinerate:["5M"],inferno:["5L53"],lavaplume:["4L35","5L42"],leer:["3L1","4L1","5L1"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M"],protect:["3M","4M","5M"],quickattack:["3L21","4L13","5L13"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollout:["3T","4L46","4T","5L57"],round:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],smokescreen:["3L1","3L6","4L1","4L4","4L6","5L1","5L6"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3L42","3T","4L31","5L31"],tackle:["3L1","4L1","5L1"],toxic:["3M","4M","5M"],wildcharge:["5M"],willowisp:["4M","5M"],covet:["5T"]}}, - typhlosion:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],blastburn:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M"],defensecurl:["3T","4L24","5L24"],dig:["3M","4M","5M"],doubleedge:["3T","4L53","5L69"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],ember:["3L1","3L12","4L1","4L10","5L1","5L10"],endure:["3T","4M"],eruption:["4L57","5L74"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepledge:["5T"],firepunch:["3T","4T","5T"],flamecharge:["5M","5L35"],flamethrower:["3M","3L60","4M","4L42","5M","5L48","3S0"],flamewheel:["3L31","4L20","5L20","3S0"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],gyroball:["4M","4L1","5M","5L1"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],inferno:["5L56"],lavaplume:["4L35","5L43"],leer:["3L1","4L1","5L1"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M"],protect:["3M","4M","5M"],quickattack:["3L21","4L13","5L13","3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],rollout:["3T","4L46","4T","5L61"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],sleeptalk:["3T","4M","5T"],smokescreen:["3L1","3L6","4L1","4L4","4L6","5L1","5L6"],snore:["3T","4T","5T"],solarbeam:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3L45","3T","4L31","4T","5L31","3S0"],tackle:["3L1","4L1","5L1"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],wildcharge:["5M"],willowisp:["4M","5M"],covet:["5T"]}}, - totodile:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["3E","4E","4T","5E"],aquajet:["4E","5E"],aquatail:["4L36","4T","4L41","5L43","5T"],attract:["3M","4M","5M"],bite:["3L20","4L13","5L13"],blizzard:["3M","4M","5M"],block:["5E","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],chipaway:["5L29"],counter:["3T"],crunch:["3E","4E","4L27","5E","5L27"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonclaw:["3E","4E","5M"],dragondance:["4E","5E"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M"],faketears:["5E"],flail:["4L22","5L22"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hydropump:["3E","3L52","4E","4L43","4L48","5E","5L50"],icebeam:["3M","4M","5M"],icefang:["4L20","5L20"],icepunch:["3T","4E","4T","5E","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","3S0"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],metalclaw:["4E","5E"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3E","4E","5E"],naturalgift:["4M"],protect:["3M","4M","5M"],rage:["3L7","4L8","5L8","3S0"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3E","3T","4E","4M","5M"],rocktomb:["4M","5M"],round:["5M"],scald:["5M"],scaryface:["3L27","4L15","5L15"],scratch:["3L1","4L1","5L1","3S0"],screech:["3L43","4L34","5L36"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],slash:["3L35","4L29","5L34"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M"],superpower:["4L41","4L43","5L48","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],thrash:["3E","4E","4L22","4L36","5E","5L41"],toxic:["3M","4M","5M"],uproar:["4T","5T"],waterfall:["3M","4M","5M"],watergun:["3L13","4L6","5L6"],waterpledge:["5T"],waterpulse:["3M","4M","5E"],watersport:["3E","4E","5E"],whirlpool:["4M"]}}, - croconaw:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["4T"],aquatail:["4L42","4T","4L48","5L51","5T"],attract:["3M","4M","5M"],bite:["3L21","4L13","5L13"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],chipaway:["5L33"],counter:["3T"],crunch:["4L30","5L30"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonclaw:["5M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M"],flail:["4L24","5L24"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hydropump:["3L55","4L51","4L57","5L60"],icebeam:["3M","4M","5M"],icefang:["4L21","5L21"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],rage:["3L1","3L7","4L8","5L8"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],round:["5M"],scald:["5M"],scaryface:["3L28","4L15","5L15"],scratch:["3L1","4L1","5L1"],screech:["3L45","4L39","5L42"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],slash:["3L37","4L33","5L39"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superpower:["4L48","4L51","5L57","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],thrash:["4L24","4L42","5L48"],toxic:["3M","4M","5M"],uproar:["4T","5T"],waterfall:["3M","4M","5M"],watergun:["3L13","4L1","4L6","5L1","5L6"],waterpledge:["5T"],waterpulse:["3M","4M"],whirlpool:["4M"],block:["5T"]}}, - feraligatr:{learnset:{aerialace:["3M","4M","5M"],agility:["4L30","5L30"],ancientpower:["4T"],aquatail:["4L50","4T","4L58","5L63","5T"],attract:["3M","4M","5M"],avalanche:["4M"],bite:["3L21","4L13","5L13"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L37"],counter:["3T"],crunch:["4L32","5L32"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonclaw:["3M","4M","5M"],dragonpulse:["4M","5T"],dragontail:["5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flail:["4L24","5L24"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hydrocannon:["4T","5T"],hydropump:["3L58","4L63","4L71","5L76"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icefang:["4L21","5L21"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","4M","5M"],rage:["3L1","3L7","4L1","4L8","5L1","5L8"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],round:["5M"],scald:["5M"],scaryface:["3L28","4L15","5L15"],scratch:["3L1","4L1","5L1"],screech:["3L47","4L45","5L50"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],slash:["3L38","4L37","5L45"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superpower:["4L58","4T","4L63","5L71","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],thrash:["4L24","4L50","5L58"],toxic:["3M","4M","5M"],uproar:["4T","5T"],waterfall:["3M","4M","5M"],watergun:["3L1","3L13","4L1","4L6","5L1","5L6"],waterpledge:["5T"],waterpulse:["3M","4M"],whirlpool:["4M"],block:["5T"]}}, - sentret:{learnset:{amnesia:["3L49","4L36","5L36"],aquatail:["4T","5T"],assist:["3E","4E","5E"],attract:["3M","4M","5M"],batonpass:["4L39","5L39"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],charm:["4E","5E"],covet:["4E","5E","5D","5T"],cut:["3M","4M","5M"],defensecurl:["3L4","3T","4L4","5L4"],dig:["3M","4M","5M"],doubleedge:["3E","3T","4E","5E"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],endure:["3T","4M","5D"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusenergy:["3E","4E","5E"],focuspunch:["3M","4M"],followme:["3L31","4L19","5L19"],foresight:["4L1","5L1"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],furyswipes:["3L12","4L13","5L13"],grassknot:["4M","5M"],headbutt:["4T"],helpinghand:["3L17","4L16","4T","5L16","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hypervoice:["4L47","5L47","5T"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5E","5T"],knockoff:["4T","5T"],lastresort:["4E","4T","5E","5T"],mefirst:["4L42","5L42"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","5E"],protect:["3M","4M","5M"],pursuit:["3E","4E","5E"],quickattack:["3L7","4L7","5L7"],raindance:["3M","4M","5M"],rest:["3M","3L40","4M","4L28","5M","5L28"],retaliate:["5M"],"return":["3M","4M","5M"],reversal:["3E","4E","5E"],rollout:["3T","4T"],round:["5M"],scratch:["3L1","4L1","5L1","5D"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],slam:["3L24","4L25","5L25"],slash:["3E","4E","5E"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],substitute:["3E","3T","4E","4M","5M"],suckerpunch:["4L31","4T","5L31"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],thief:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],trick:["3E","4E","5E","5T"],uproar:["4T","5T"],uturn:["4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"]}}, - furret:{learnset:{amnesia:["3L59","4L42","5L42"],aquatail:["4T","5T"],attract:["3M","4M","5M"],batonpass:["4L46","5L46"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],cut:["3M","4M","5M"],defensecurl:["3L1","3L4","3T","4L1","4L4","5L1","5L4"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],followme:["3L37","4L21","5L21"],foresight:["4L1","5L1"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],furyswipes:["3L12","4L13","5L13"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["4T"],helpinghand:["3L19","4L17","4T","5L17","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],hypervoice:["4L56","5L56","5T"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],mefirst:["4L50","5L50"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],quickattack:["3L1","3L7","4L1","4L7","5L1","5L7"],raindance:["3M","4M","5M"],rest:["3M","3L48","4M","4L32","5M","5L32"],retaliate:["5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],slam:["3L28","4L28","5L28"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4L36","4T","5L36"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"],covet:["5T"],trick:["5T"]}}, - hoothoot:{learnset:{aerialace:["3M","4M","5M"],agility:["4E","5E"],aircutter:["4T"],airslash:["4L29","5L33"],attract:["3M","4M","5M"],captivate:["4M"],confusion:["3L34","4L21","5L21"],defog:["4M","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3L48","3T","4M","4L49","5M","5L57"],echoedvoice:["5M","5L25"],endure:["3T","4M"],extrasensory:["4L37","5L45"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E"],featherdance:["3E","4E","5E"],flash:["3M"],fly:["3M","4M","5M"],foresight:["3L6","4L5","4L1","5L1","5D","3S0"],frustration:["3M","4M","5M"],growl:["3L1","4L1","5L1","3S0"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hypnosis:["3L16","4L9","4L5","5L5"],magiccoat:["4T","5T"],mimic:["3T"],mirrormove:["3E","4E","5E"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],nightshade:["4E","5E","5D"],ominouswind:["4T"],peck:["3L11","4L13","4L9","5L9"],pluck:["4M","5M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychoshift:["4L41","5L49"],psychup:["4M","5M"],raindance:["3M","4M","5M"],recycle:["4M","5D","5T"],reflect:["3M","3L22","4M","4L17","5M","5L17"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","4L45","5L53","5T"],round:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],silverwind:["4M"],skyattack:["3E","3T","4E","5E","5T"],sleeptalk:["3T","4M","5T"],snore:["3T"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3E","4E","5E"],swagger:["3T","4M","5M"],swift:["3T","4T"],synchronoise:["5L41"],tackle:["3L1","4L1","5L1","3S0"],tailwind:["4T","5T"],takedown:["3L28","4L25","5L29"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uproar:["4L13","5L13","5T"],whirlwind:["3E","4E","5E"],wingattack:["3E","4E","5E"],workup:["5M"],zenheadbutt:["4L33","4T","5L37","5T"],hypervoice:["5T"]}}, - noctowl:{learnset:{aerialace:["3M","4M","5M"],aircutter:["4T"],airslash:["4L32","5L37"],attract:["3M","4M","5M"],captivate:["4M"],confusion:["3L41","4L22","5L22"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3L57","3T","4M","4L57","5M","5L67"],echoedvoice:["5M","5L27"],endure:["3T","4M"],extrasensory:["4L42","5L52"],facade:["3M","4M","5M"],flash:["3M"],fly:["3M","4M","5M"],foresight:["3L1","3L6","4L1","4L5","5L1"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],hypnosis:["3L16","4L1","4L9","4L5","5L1","5L5"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],ominouswind:["4T"],peck:["3L1","3L11","4L13","4L9","5L9"],pluck:["4M","5M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychoshift:["4L47","5L57"],psychup:["4M","5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","3L25","4M","4L17","5M","5L17"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","4L52","5L62","5T"],round:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],silverwind:["4M"],skyattack:["3T","4L1","4T","5L1","5T"],sleeptalk:["3T","4M","5T"],snore:["3T"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],synchronoise:["5L47"],tackle:["3L1","4L1","5L1"],tailwind:["4T","5T"],takedown:["3L33","4L27","5L32"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uproar:["4T","4L13","5L13","5T"],workup:["5M"],zenheadbutt:["4L37","4T","5L42","5T"],hypervoice:["5T"]}}, - ledyba:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M","3S0"],agility:["3L43","4L30","5L30"],aircutter:["4T"],attract:["3M","4M","5M"],batonpass:["3L29","4L22","5L22"],bide:["3E","4E","5E"],brickbreak:["3M","4M","5M"],bugbite:["4E","4T","5E","5D","5T"],bugbuzz:["4E","4L41","5E","5L41"],captivate:["4M"],cometpunch:["3L15","4L9","5L9","5D"],dig:["3M","4M","5M"],dizzypunch:["5E"],doubleedge:["3L50","3T","4L38","5L38"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5E","5T"],dynamicpunch:["3T"],encore:["4E","5E"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M","5E"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],icepunch:["3T","4T","5T"],knockoff:["4E","4T","5E","5T"],lightscreen:["3M","3L22","4M","4L14","5M","5L14"],machpunch:["4L17","5L17"],megapunch:["3T"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M"],psybeam:["3E","4E","5E","3S0"],reflect:["3M","3L22","4M","4L14","5M","5L14"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["3T","4T"],roost:["4M","5T"],round:["5M"],safeguard:["3M","3L22","4M","4L14","5M","5L14"],screech:["4E","5E"],secretpower:["3M","4M"],silverwind:["3E","4E","4M","4L25","5E","5L25"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3L8","4L6","5L6","3S0"],swagger:["3T","4M","5M"],swift:["3L36","3T","4L33","4T","5L33"],swordsdance:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],tailwind:["4T","5T"],thief:["3M","4M","5M"],thunderpunch:["3T","4T","5D","5T"],toxic:["3M","4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"]}}, - ledian:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M"],agility:["3L51","4L36","5L36"],aircutter:["4T"],attract:["3M","4M","5M"],batonpass:["3L33","4L24","5L24"],brickbreak:["3M","4M","5M"],bugbite:["4T","5T"],bugbuzz:["4L53","5L53"],captivate:["4M"],cometpunch:["3L15","4L1","4L9","5L1","5L9"],dig:["3M","4M","5M"],doubleedge:["3L60","3T","4L48","5L48"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],knockoff:["4T","5T"],lightscreen:["3M","3L24","4M","4L14","5M","5L14"],machpunch:["4L17","5L17"],megapunch:["3T"],mimic:["3T"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M"],reflect:["3M","3L24","4M","4L14","5M","5L14"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["4M","5M"],rollout:["3T"],roost:["4M","5T"],round:["5M"],safeguard:["3M","3L24","4M","4L14","5M","5L14"],secretpower:["3M","4M"],silverwind:["4M","4L29","5L29"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],strength:["4M","5M"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3L1","3L8","4L1","4L6","5L1","5L6"],swagger:["3T","4M","5M"],swift:["3L42","3T","4L41","4T","5L41"],swordsdance:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],tailwind:["4T","5T"],thief:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"]}}, - spinarak:{learnset:{agility:["3L45","4L33","5L33"],attract:["3M","4M","5M"],batonpass:["3E","4E","5E"],bodyslam:["3T"],bounce:["4T","5T"],bugbite:["4T","5D","5T"],captivate:["4M"],constrict:["3L11","4L8","5L8"],crosspoison:["5L47"],dig:["3M","4M","5M","3S0"],disable:["3E","4E","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],electroweb:["5E","5D","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],furyswipes:["3L30","4L22","5L22"],gigadrain:["3M","4M","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],leechlife:["3L23","4L12","5L12"],mimic:["3T"],naturalgift:["4M"],nightshade:["3L17","4L15","5L15","3S0"],nightslash:["5E"],pinmissile:["4L36","5L36"],poisonjab:["4E","4M","4L43","5M","5L43"],poisonsting:["3L1","4L1","5L1","5D"],protect:["3M","4M","5M"],psybeam:["3E","4E","5E"],psychic:["3M","3L53","4M","4L40","5M","5L40"],pursuit:["3E","4E","5E"],ragepowder:["5E"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scaryface:["3L6","4L5","5L5"],secretpower:["3M","4M"],shadowsneak:["4L19","5L19"],signalbeam:["3E","4E","4T","5E","5T","3S0"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T"],solarbeam:["3M","4M","5M"],sonicboom:["3E","4E","5E"],spiderweb:["3L37","4L29","5L29"],stringshot:["3L1","4L1","4T","5L1"],strugglebug:["5M"],substitute:["3T","4M","5M"],suckerpunch:["4L26","4T","5L26"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],toxicspikes:["4E","5E"],twineedle:["5E"],venoshock:["5M"],xscissor:["5M"],foulplay:["5T"]}}, - ariados:{learnset:{agility:["3L53","4L37","5L37"],attract:["3M","4M","5M"],bodyslam:["3T"],bounce:["4T","5T"],bugbite:["4L1","4T","5L1","5T"],captivate:["4M"],constrict:["3L1","3L11","4L1","4L8","5L1","5L8"],crosspoison:["5L55"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],furyswipes:["3L34","4L23","5L23"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],leechlife:["3L25","4L12","5L12"],mimic:["3T"],naturalgift:["4M"],nightshade:["3L17","4L15","5L15"],pinmissile:["4L41","5L41"],poisonjab:["4M","4L50","5M","5L50"],poisonsting:["3L1","4L1","5L1"],protect:["3M","4M","5M"],psychic:["3M","3L63","4M","4L46","5M","5L46"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scaryface:["3L1","3L6","4L1","4L5","5L1","5L5"],secretpower:["3M","4M"],shadowsneak:["4L19","5L19"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T"],solarbeam:["3M","4M","5M"],spiderweb:["3L43","4L32","5L32"],stringshot:["3L1","4L1","4T","5L1"],strugglebug:["5M"],substitute:["3T","4M","5M"],suckerpunch:["4L28","4T","5L28"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],venoshock:["5M"],xscissor:["5M"],foulplay:["5T"],electroweb:["5T"]}}, - chinchou:{learnset:{agility:["4E","5E"],amnesia:["3E","4E","5E","5D"],aquaring:["4L39","5L42"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bounce:["4T","5T"],brine:["4M","5E"],bubble:["3L1","4L1","5L1"],bubblebeam:["4L28","5L31"],captivate:["4M"],charge:["3L49","4L45","5L50"],chargebeam:["4M","5M"],confuseray:["3L29","4L17","5L12"],discharge:["4L34","5L39"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],electroball:["5L28"],endure:["3T","4M"],facade:["3M","4M","5M"],flail:["3E","3L13","4E","4L9","5E","5L9"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],healbell:["4T","5T"],hiddenpower:["3M","4M","5M"],hydropump:["3L41","4L42","5L45"],icebeam:["3M","4M","5M"],icywind:["4T","5T"],mimic:["3T"],mist:["4E","5E"],naturalgift:["4M"],protect:["3M","4M","5M"],psybeam:["4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scald:["5M"],screech:["3E","4E","5E"],secretpower:["3M","4M"],shockwave:["3M","4M","5E","5D"],signalbeam:["4L31","4T","5L34","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spark:["3L25","4L20","5L20"],substitute:["3T","4M","5M"],suckerpunch:["4T"],supersonic:["3L5","4L1","5L1"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],takedown:["3L37","4L23","5L23"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3L1","3T","4M","4L6","5M","5L6","5D"],toxic:["3M","4M","5M"],voltswitch:["5M"],waterfall:["3M","4M","5M"],watergun:["3L17","4L12","5L17"],waterpulse:["3M","4M","5E"],whirlpool:["4E","4M","5E"],wildcharge:["5M"]}}, - lanturn:{learnset:{aquaring:["4L47","5L52"],aquatail:["4T","5T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bounce:["4T","5T"],brine:["4M"],bubble:["3L1","4L1","5L1"],bubblebeam:["4L30","5L35"],captivate:["4M"],charge:["3L61","4L57","5L64"],chargebeam:["4M","5M"],confuseray:["3L32","4L17","5L17"],discharge:["4L40","5L47"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],electroball:["5L30"],endure:["3T","4M"],facade:["3M","4M","5M"],flail:["3L13","4L9","5L9"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],healbell:["4T","5T"],hiddenpower:["3M","4M","5M"],hydropump:["3L50","4L52","5L57"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["4T","5T"],mimic:["3T"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],shockwave:["3M","4M"],signalbeam:["4L35","4T","5L40","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spark:["3L25","4L20","5L20"],spitup:["4L27","5L27"],stockpile:["4L27","5L27"],substitute:["3T","4M","5M"],suckerpunch:["4T"],supersonic:["3L1","3L5","4L1","5L1"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["4L27","5L27"],takedown:["3L43","4L23","5L23"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3L1","3T","4M","4L1","4L6","5M","5L1","5L6"],toxic:["3M","4M","5M"],voltswitch:["5M"],waterfall:["3M","4M","5M"],watergun:["3L17","4L12","5L12"],waterpulse:["3M","4M"],whirlpool:["4M"],wildcharge:["5M"]}}, - togepi:{learnset:{afteryou:["5L53","5T"],ancientpower:["3L21","4L33","5L33","3S1"],attract:["3M","4M","5M"],batonpass:["3L41","4L42","5L41"],bestow:["5L25"],bodyslam:["3T"],captivate:["4M"],charm:["3L1","4L1","5L1","3S0"],counter:["3T"],defensecurl:["3T"],doubleedge:["3L41","3T","3L37","4L46","5L45"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],echoedvoice:["5M"],encore:["3L21","3L17","4L19","5L17"],endeavor:["4T","5T"],endure:["3T","4M"],extrasensory:["4E","5E"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],followme:["3L26","3L25","4L24","5L21","3S1"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],futuresight:["3E","4E","5E"],grassknot:["4M","5M"],growl:["3L1","4L1","5L1"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["3S1"],hiddenpower:["3M","4M","5M"],incinerate:["5M"],lastresort:["4L51","4T","5L49","5T"],lightscreen:["3M","4M","5M"],luckychant:["4E","5E","5D"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3L6","3T","3L4","4L6","5L5","3S0","5D"],mimic:["3T"],mirrormove:["3E","4E","5E"],morningsun:["5E"],mudslap:["3T","4T"],nastyplot:["4E","5E"],naturalgift:["4M"],peck:["3E","4E","5E"],present:["3E","4E","5E"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychoshift:["4E","5E"],psychup:["3E","3T","4E","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","3L36","3L33","4M","4L37","5M","5L37"],secretpower:["3M","4M","5E"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],softboiled:["3T"],solarbeam:["3M","4M","5M"],storedpower:["5E"],substitute:["3E","3T","4E","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetkiss:["3L11","3L9","4L10","5L9","3S0"],swift:["3T","4T"],telekinesis:["5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],triattack:["3S1"],trick:["4T","5T"],uproar:["4T","5T","5D"],waterpulse:["3M","4M"],wish:["3L31","3L29","4L28","5L29"],workup:["5M"],yawn:["3L16","3L13","4L15","5L13","3S0"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"]}}, - togetic:{learnset:{aerialace:["3M","4M","5M"],afteryou:["5L53","5T"],aircutter:["4T"],ancientpower:["3L21","4L33","4T","5L33"],attract:["3M","4M","5M"],batonpass:["3L41","4L42","5L41"],bestow:["5L25"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],charm:["3L1","4L1","5L1"],counter:["3T"],defensecurl:["3T"],defog:["4M"],doubleedge:["3L41","3T","3L37","4L46","5L45"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],echoedvoice:["5M"],encore:["3L21","3L17","4L19","5L17"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],fly:["3M","4M","5M"],focuspunch:["3M","4M"],followme:["3L26","3L25","4L24","5L21"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growl:["3L1","4L1","5L1"],headbutt:["4T"],healbell:["4T","5T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],lastresort:["4L51","4T","5L49","5T"],lightscreen:["3M","4M","5M"],magicalleaf:["3L1","4L1","5L1"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3L6","3T","3L1","3L4","4L1","4L6","5L1","5L5"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollout:["3T","4T"],roost:["4M","5T"],round:["5M"],safeguard:["3M","3L36","3L33","4M","4L37","5M","5L37"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],silverwind:["4M"],skyattack:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],softboiled:["3T"],solarbeam:["3M","4M","5M"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetkiss:["3L11","3L1","3L9","4L1","4L10","5L1","5L9"],swift:["3T","4T"],tailwind:["4T","5T"],telekinesis:["5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],twister:["4T"],waterpulse:["3M","4M"],wish:["3L31","3L29","4L28","5L29"],workup:["5M"],yawn:["3L16","3L13","4L15","5L13"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"]}}, - togekiss:{learnset:{aerialace:["4M","5M"],aircutter:["4T"],airslash:["4L1","5L1","5S0"],ancientpower:["4T"],attract:["4M","5M"],aurasphere:["4L1","5L1","5S0"],brickbreak:["4M","5M"],captivate:["4M"],defog:["4M"],doubleteam:["4M","5M"],drainpunch:["4M","5T"],dreameater:["4M","5M"],echoedvoice:["5M"],endeavor:["4T","5T"],endure:["4M"],extremespeed:["4L1","5L1","5S0"],facade:["4M","5M"],fireblast:["4M","5M"],flamethrower:["4M","5M"],flash:["4M","5M"],fling:["4M","5M"],fly:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["4T"],healbell:["4T","5T"],heatwave:["4T","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],incinerate:["5M"],lastresort:["4T","5T"],lightscreen:["4M","5M"],magiccoat:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],present:["5S0"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],psyshock:["5M"],raindance:["4M","5M"],reflect:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],rocksmash:["4M","5M"],rollout:["4T"],roost:["4M","5T"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],signalbeam:["4T","5T"],silverwind:["4M"],skyattack:["4L1","4T","5L1","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],steelwing:["4M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],tailwind:["4T","5T"],telekinesis:["5M"],thunderwave:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],twister:["4T"],waterpulse:["4M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"]}}, - natu:{learnset:{aerialace:["3M","4M","5M","3S0"],aircutter:["4T"],allyswitch:["5M"],attract:["3M","4M","5M"],batonpass:["3S0"],calmmind:["3M","4M","5M"],captivate:["4M"],confuseray:["3L40","4L23","5L23"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],drillpeck:["3E","4E","5E"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E"],featherdance:["3E","4E","5E","5D"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],futuresight:["3L30","4L36","5L36","3S0"],gigadrain:["3M","4M","5D","5T"],grassknot:["4M","5M"],guardswap:["4L44","5L47"],haze:["3E","4E","5E"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],leer:["3L1","4L1","5L1"],lightscreen:["3M","4M","5M"],luckychant:["4L12","5L12"],magiccoat:["4T","5T"],mefirst:["4L20","5L20"],mimic:["3T"],miracleeye:["4L17","5L17"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L10","4L6","5L6","5D","3S0"],ominouswind:["4L39","4T","5L44"],painsplit:["4T","5T"],peck:["3L1","4L1","5L1"],pluck:["4M","5M"],powerswap:["4L44","5L47"],protect:["3M","4M","5M"],psychic:["3M","3L50","4M","4L47","5M","5L50"],psychoshift:["4L33","5L33"],psychup:["3E","3T","4E","4M","5M"],psyshock:["5M"],quickattack:["3E","4E","5E"],raindance:["3M","4M","5M"],reflect:["3M","4M","5M"],refresh:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5E","5T"],round:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],silverwind:["4M"],skillswap:["3M","4M","5E","5T"],skyattack:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],steelwing:["3E","3M","4E","4M","5E"],storedpower:["5L39"],substitute:["3T","4M","5M"],suckerpunch:["4E","4T","5E"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],synchronoise:["5E"],tailwind:["4T","5T"],telekinesis:["5M"],teleport:["3L20","4L9","5L9"],thief:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],twister:["4T"],uturn:["4M","5M"],wish:["3L30","4L28","5L28"],zenheadbutt:["4E","4T","5E","5T"],magicroom:["5T"]}}, - xatu:{learnset:{aerialace:["3M","4M","5M"],aircutter:["4T"],allyswitch:["5M"],attract:["3M","4M","5M"],calmmind:["3M","4M","5M"],captivate:["4M"],confuseray:["3L50","4L23","5L23"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],futuresight:["3L35","4L42","5L42"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],guardswap:["4L54","5L59"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],leer:["3L1","4L1","5L1"],lightscreen:["3M","4M","5M"],luckychant:["4L12","5L12"],magiccoat:["4T","5T"],mefirst:["4L20","5L20"],mimic:["3T"],miracleeye:["4L17","5L17"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L10","4L6","5L6"],ominouswind:["4L47","4T","5L54"],painsplit:["4T","5T"],peck:["3L1","4L1","5L1"],pluck:["4M","5M"],powerswap:["4L54","5L54"],protect:["3M","4M","5M"],psychic:["3M","3L65","4M","4L59","5M","5L66"],psychoshift:["4L37","5L37"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5T"],round:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],silverwind:["4M"],skillswap:["3M","4M","5T"],skyattack:["3T","4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],steelwing:["3M","4M"],storedpower:["5L47"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4L27","4T","5L27","5T"],telekinesis:["5M"],teleport:["3L20","4L9","5L9"],thief:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],twister:["4T"],uturn:["4M","5M"],wish:["3L35","4L30","5L30"],zenheadbutt:["4T","5T"],foulplay:["5T"],magicroom:["5T"]}}, - mareep:{learnset:{afteryou:["5E","5T"],agility:["5E"],attract:["3M","4M","5M"],bodyslam:["3E","3T","4E","5E","3S2"],captivate:["4M"],charge:["3E","4E","4L23","5E","5L23"],chargebeam:["4M","5M"],confuseray:["5L25"],cottonguard:["5L32"],cottonspore:["3L23","4L19","5L19","3S0"],defensecurl:["3T"],discharge:["4L28","5L37"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],electroball:["5L28"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],flatter:["4E","5E"],frustration:["3M","4M","5M"],growl:["3L1","4L5","5L5","3S1"],headbutt:["4T"],healbell:["3S2","4T","5T"],hiddenpower:["3M","4M","5M"],irontail:["3M","4M","5E","5T"],lightscreen:["3M","3L30","4M","4L37","5M","5L46"],magnetrise:["4T","5T"],mimic:["3T"],naturalgift:["4M"],odorsleuth:["3E","4E","5E"],powergem:["4L41","5L50"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],reflect:["3E","4E","5D"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3E","4E","5M"],sandattack:["4E","5E"],screech:["3E","4E","5E"],secretpower:["3M","4M"],shockwave:["3M","4M","5D"],signalbeam:["4L32","4T","5L41","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S1"],takedown:["3E","4E","5E","5L18"],thunder:["3M","3L37","4M","4L46","5M","5L55","3S0"],thunderbolt:["3M","4M","5M"],thundershock:["3L9","4L10","5L10","5D","3S0","3S1","3S2"],thunderwave:["3L16","3T","4M","4L14","5M","5L14","3S0","3S2"],toxic:["3M","4M","5M"],wildcharge:["5M"]}}, - flaaffy:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],charge:["4L25","5L25"],chargebeam:["4M","5M"],confuseray:["5L29"],cottonguard:["5L36"],cottonspore:["3L27","4L20","5L20"],counter:["3T"],defensecurl:["3T"],discharge:["4L31","5L42"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],electroball:["5L31"],endure:["3T","4M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],growl:["3L1","4L1","4L5","5L1","5L5"],headbutt:["4T"],healbell:["4T","5T"],hiddenpower:["3M","4M","5M"],irontail:["3M","4M","5T"],lightscreen:["3M","3L36","4M","4L42","5M","5L53"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],naturalgift:["4M"],powergem:["4L47","5L59"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],safeguard:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M"],signalbeam:["4L36","4T","5L47","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],takedown:["5L20"],thunder:["3M","3L45","4M","4L53","5M","5L65"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thundershock:["3L1","3L9","4L1","4L10","5L1","5L10"],thunderwave:["3L18","3T","4M","4L14","5M","5L14"],toxic:["3M","4M","5M"],voltswitch:["5M"],wildcharge:["5M"],afteryou:["5T"]}}, - ampharos:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],charge:["4L25","5L25"],chargebeam:["4M","5M"],confuseray:["5L29"],cottonguard:["5L40"],cottonspore:["3L27","4L20","5L20"],counter:["3T"],defensecurl:["3T"],discharge:["4L34","5L48"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],electroball:["5L33"],endure:["3T","4M"],facade:["3M","4M","5M"],firepunch:["3T","4L1","4T","5L1","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],growl:["3L1","4L1","4L5","5L1","5L5"],headbutt:["4T"],healbell:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],irontail:["3M","4M","5T"],lightscreen:["3M","3L42","4M","4L51","5M","5L63"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],naturalgift:["4M"],outrage:["4T","5T"],powergem:["4L59","5L71"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rocksmash:["3M","4M","5M"],round:["5M"],safeguard:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M"],signalbeam:["4L42","4T","5L55","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],takedown:["5L20"],thunder:["3M","3L57","4M","4L68","5M","5L79"],thunderbolt:["3M","4M","5M"],thunderpunch:["3L30","3T","4L30","4T","5L30","5T"],thundershock:["3L1","3L9","4L1","4L10","5L1","5L10"],thunderwave:["3L1","3L18","3T","4M","4L1","4L14","5M","5L1","5L14"],toxic:["3M","4M","5M"],voltswitch:["5M"],wildcharge:["5M"],afteryou:["5T"]}}, - azurill:{learnset:{attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T","4E","5E"],bounce:["5L23","5T"],bubble:["3L10","4L10","5L10"],bubblebeam:["5L13"],captivate:["4M"],charm:["3L3","4L2","5L2"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],encore:["3E","4E","5E"],endure:["3T","4M"],facade:["3M","4M","5M"],faketears:["4E","5E"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],helpinghand:["4T","5T","5L16"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lightscreen:["5M"],mimic:["3T"],muddywater:["5E"],mudslap:["3T"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],refresh:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["3T"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],sing:["3E","4E","5E"],slam:["3E","3L15","4E","4L15","5E","5L15"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],soak:["5E"],splash:["3L1","4L1","5L1"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwhip:["3L6","4L7","5L7"],tickle:["3E","4E","5E"],toxic:["3M","4M","5M"],uproar:["4T","5T"],waterfall:["3M","4M","5M"],watergun:["3L21","4L18","5L18"],waterpulse:["3M","4M"],watersport:["5E","5L5"],whirlpool:["4M"],workup:["5M"],covet:["5T"],hypervoice:["5T"]}}, - marill:{learnset:{amnesia:["3E","4E","5E"],aquajet:["4E","5E","5D"],aquaring:["4L23","5L23"],aquatail:["4L37","4T","5L37","5T"],attract:["3M","4M","5M"],bellydrum:["3E","4E","5E"],blizzard:["3M","4M","5M"],bodyslam:["3T","4E","5E"],brickbreak:["3M","4M","5M"],bubble:["5L1"],bubblebeam:["3L21","4L18","5L18"],captivate:["4M"],defensecurl:["3L3","3T","4L2","5L2","5D"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3L28","3T","4L27","5L27"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],futuresight:["3E","4E","5E"],grassknot:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],helpinghand:["4T","5T","5L16"],hiddenpower:["3M","4M","5M"],hydropump:["3L45","4L42","5L42"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5D","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lightscreen:["3E","4E","5M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],muddywater:["5E"],mudslap:["3T","4T"],naturalgift:["4M"],perishsong:["3E","4E","5E"],present:["3E","4E","5E"],protect:["3M","4M","5M"],raindance:["3M","3L36","4M","4L32","5M","5L32"],refresh:["4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollout:["3L15","3T","4L15","4T","5L15"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3E","3T","4E","4M","5M"],superpower:["4E","4T","5E","5T","5L37"],supersonic:["3E","4E","5E"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],tailwhip:["3L6","4L7","5L7"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L10","4L10","5L10"],waterpulse:["3M","4M"],watersport:["5E","5L5"],whirlpool:["4M"],workup:["5M"],covet:["5T"],bounce:["5T"],hypervoice:["5T"]}}, - azumarill:{learnset:{aquaring:["4L27","5L27"],aquatail:["4L47","4T","5L47","5T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bubble:["5L1"],bubblebeam:["3L24","4L20","5L20"],bulldoze:["5M"],captivate:["4M"],defensecurl:["3L1","3L3","3T","4L1","4L2","5L1","5L2"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3L34","3T","4L33","5L33"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],helpinghand:["4T","5T","5L16"],hiddenpower:["3M","4M","5M"],hydropump:["3L57","4L54","5L54"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lightscreen:["5M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","3L45","4M","4L40","5M","5L40"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollout:["3L15","3T","4L15","4T","5L15"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superpower:["4T","5T","5L42"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],tailwhip:["3L1","3L6","4L1","4L7","5L1","5L7"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L1","3L10","4L1","4L10","5L1","5L10"],waterpulse:["3M","4M"],watersport:["5L1","5L5"],whirlpool:["4M"],workup:["5M"],covet:["5T"],bounce:["5T"],hypervoice:["5T"]}}, - bonsly:{learnset:{attract:["4M","5M"],block:["4L22","4T","5L22","5T"],brickbreak:["4M","5M"],calmmind:["4M","5M"],captivate:["4M"],copycat:["4L1","5L1"],curse:["5E"],defensecurl:["4E","5E"],dig:["4M","5M"],doubleedge:["4L46","5L46"],doubleteam:["4M","5M"],earthpower:["4T","5T"],endure:["4M","5E"],explosion:["4M","5M"],facade:["4M","5M"],faintattack:["4L25","5L25"],faketears:["4L1","5L1"],flail:["4L6","5L6"],frustration:["4M","5M"],harden:["4E","5E"],headbutt:["4E","4T","5E"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],lowkick:["4L9","4T","5L9","5T"],mimic:["4L17","5L17"],naturalgift:["4M"],protect:["4M","5M"],psychup:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rockpolish:["4M","5M"],rockslide:["4M","4L33","5M","5L33"],rockthrow:["4L14","5L14"],rocktomb:["4M","4L30","5M","5L30"],roleplay:["4T","5T"],rollout:["4E","4T","5E"],round:["5M"],sandstorm:["4M","5M"],sandtomb:["4E","5E"],secretpower:["4M"],selfdestruct:["4E","5E"],slam:["4L38","5L38"],sleeptalk:["4M","5T"],smackdown:["5M"],snore:["4T","5T"],stealthrock:["4M","5E","5T"],substitute:["4M","5M"],suckerpunch:["4L41","4T","5L41"],sunnyday:["4M","5M"],swagger:["4M","5M"],thief:["4M","5M"],toxic:["4M","5M"],uproar:["4T","5T"],covet:["5T"],foulplay:["5T"],afteryou:["5T"]}}, - sudowoodo:{learnset:{attract:["3M","4M","5M"],block:["3L33","4L22","4T","5L22","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],calmmind:["3M","4M","5M"],captivate:["4M"],copycat:["4L1","5L1"],counter:["3T","5L33"],curse:["5E"],defensecurl:["3T","4E","5E"],dig:["3M","4M","5M"],doubleedge:["3L57","3T","4L46","5L46"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],endure:["3T","4M","5E"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],faintattack:["3L41","4L25","5L25"],firepunch:["3T","4T","5T"],flail:["3L9","4L1","4L6","5L1","5L6","5D"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],hammerarm:["4L49","5L49"],harden:["4E","5E"],headbutt:["4E","4T","5E"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],icepunch:["3T","4T","5T"],lowkick:["3L17","4L1","4L9","4T","5L1","5L9","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3L1","3T","4L17","5L17"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3L25","3T","4M","4L33","5M","5L33"],rocksmash:["3M","4M","5M"],rockthrow:["3L1","4L1","4L14","5L1","5L14"],rocktomb:["3M","4M","4L30","5M","5L30"],roleplay:["4T","5D","5T"],rollout:["3T","4E","4T","5E","5D"],round:["5M"],sandstorm:["3M","4M","5M"],sandtomb:["4E","5E"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3E","3T","4E","5E"],slam:["3L49","4L38","5L38"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5E","5T"],stoneedge:["4M","5M","5L43"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4L41","4T","5L41"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],torment:["4M","5M"],toxic:["3M","4M","5M"],woodhammer:["4L1","5L1"],covet:["5T"],foulplay:["5T"],afteryou:["5T"]}}, - hoppip:{learnset:{acrobatics:["5M","5L28"],aerialace:["3M","4M","5M"],amnesia:["3E","4E","5E"],aromatherapy:["4E","5E"],attract:["3M","4M","5M"],bounce:["4L40","4T","5L46","5D","5T"],bulletseed:["3M","4M","4L19","5L19","5D"],captivate:["4M"],confusion:["3E","4E","5E"],cottonguard:["5E"],cottonspore:["3L25","4L28","5L34"],defensecurl:["3T"],doubleedge:["3E","3T","4E","5E"],doubleteam:["3M","4M","5M"],encore:["3E","4E","5E","5D"],endure:["3T","4M","5E"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","4L37","5L43","5T"],grassknot:["4M","5M"],headbutt:["4T"],helpinghand:["3E","4E","4T","5E","5D","5T"],hiddenpower:["3M","4M","5M"],leechseed:["3L20","4L22","5L22"],megadrain:["3L30","4L25","5L25"],memento:["4L43","5L49"],mimic:["3T"],naturalgift:["4M"],poisonpowder:["3L13","4L12","5L12"],protect:["3M","4M","5M"],psychup:["3E","4E","5M"],ragepowder:["5L31"],reflect:["3E","4E","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5E","5T"],silverwind:["4M"],sleeppowder:["3L17","4L16","5L16"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],splash:["3L1","4L1","5L1"],stunspore:["3L15","4L14","5L14"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],synthesis:["3L5","4L4","4T","5L4","5D","5T"],tackle:["3L10","4L10","5L10"],tailwhip:["3L5","4L7","5L7"],toxic:["3M","4M","5M"],uturn:["4M","4L31","5M","5L37"],worryseed:["4E","4L34","4T","5E","5L40","5T"]}}, - skiploom:{learnset:{acrobatics:["5M","5L32"],aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bounce:["4L48","4T","5L56","5T"],bulletseed:["3M","4M","4L20","5L20"],captivate:["4M"],cottonspore:["3L29","4L32","5L40"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","4L44","5L52","5T"],grassknot:["4M","5M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],leechseed:["3L22","4L24","5L24"],megadrain:["3L36","4L28","5L28"],memento:["4L52","5L60"],mimic:["3T"],naturalgift:["4M"],poisonpowder:["3L13","4L12","5L12"],protect:["3M","4M","5M"],psychup:["5M"],ragepowder:["5L36"],reflect:["5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],silverwind:["4M"],sleeppowder:["3L17","4L16","5L16"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],splash:["3L1","4L1","5L1"],stunspore:["3L15","4L14","5L14"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],synthesis:["3L1","3L5","4L1","4L4","4T","5L1","5L4","5T"],tackle:["3L1","3L10","4L1","4L10","5L1","5L10"],tailwhip:["3L1","3L5","4L1","4L7","5L1","5L7"],toxic:["3M","4M","5M"],uturn:["4M","4L36","5M","5L44"],worryseed:["4L40","4T","5L48","5T"]}}, - jumpluff:{learnset:{acrobatics:["5M","5L34"],aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bounce:["4L48","4T","5L64","5T"],bulletseed:["3M","4M","4L20","5L20","5S0"],captivate:["4M"],cottonspore:["3L33","4L32","5L44"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],falseswipe:["5S0"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","4L44","5L59","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],leechseed:["3L22","4L24","5L24","5S0"],megadrain:["3L44","4L28","5L29"],memento:["4L52","5L69"],mimic:["3T"],naturalgift:["4M"],poisonpowder:["3L13","4L12","5L12"],protect:["3M","4M","5M"],psychup:["5M"],ragepowder:["5L39"],reflect:["5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],silverwind:["4M"],sleeppowder:["3L17","4L16","5L16","5S0"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],splash:["3L1","4L1","5L1"],stunspore:["3L15","4L14","5L14"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],synthesis:["3L1","3L5","4L1","4L4","4T","5L1","5L4","5T"],tackle:["3L1","3L10","4L1","4L10","5L1","5L10"],tailwhip:["3L1","3L5","4L1","4L7","5L1","5L7"],toxic:["3M","4M","5M"],uturn:["4M","4L36","5M","5L49"],worryseed:["4L40","4T","5L54","5T"]}}, - aipom:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M"],agility:["3E","3L50","4E","4L29","5E","5L29"],astonish:["3L13","4L8","5L8"],attract:["3M","4M","5M"],batonpass:["3L18","4L11","5L11"],beatup:["3E","4E","5E"],bodyslam:["3T"],bounce:["4E","4T","5E","5T"],brickbreak:["3M","4M","5M"],captivate:["4M"],counter:["3E","3T","4E","5E"],covet:["4E","5E","5T"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doublehit:["4L32","5L32"],doubleslap:["3E","4E","5E"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M"],fakeout:["4E","5E","5D"],firepunch:["3T","4T","5T","5D"],fling:["4M","4L36","5M","5L36"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],furyswipes:["3L31","4L18","5L18"],grassknot:["4M","5M"],gunkshot:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4L43","4T","5L43","5T"],lowkick:["4T","5T"],lowsweep:["5M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L39","5L39"],naturalgift:["4M"],nightmare:["3T"],payback:["4M","5M"],protect:["3M","4M","5M"],pursuit:["3E","4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],revenge:["5E"],rocksmash:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],sandattack:["3L6","4L4","5L4","3S0"],scratch:["3L1","4L1","5L1","3S0","5D"],screech:["3E","3L43","4E","4L25","5E","5L25"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],slam:["3E","4E","5E"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spite:["3E","4E","4T","5E","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3L38","3T","4L22","4T","5L22"],switcheroo:["5E"],tailwhip:["3L1","4L1","5L1","3S0"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],tickle:["3L25","4L15","5L15"],toxic:["3M","4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"],waterpulse:["3M","4M"],workup:["5M"],foulplay:["5T"]}}, - ambipom:{learnset:{acrobatics:["5M"],aerialace:["4M","5M"],agility:["4L29","5L29"],astonish:["4L1","4L8","5L1","5L8"],attract:["4M","5M"],batonpass:["4L11","5L11"],bounce:["4T","5T"],brickbreak:["4M","5M"],captivate:["4M"],cut:["4M","5M"],dig:["4M","5M"],doublehit:["4L32","5L32"],doubleteam:["4M","5M"],dreameater:["4M","5M"],endure:["4M"],facade:["4M","5M"],firepunch:["4T","5T"],fling:["4M","4L36","5M","5L36"],focuspunch:["4M"],frustration:["4M","5M"],furycutter:["4T"],furyswipes:["4L18","5L18"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gunkshot:["4T","5T"],headbutt:["4T"],hiddenpower:["4M","5M"],honeclaws:["5M"],hyperbeam:["4M","5M"],icepunch:["4T","5T"],irontail:["4M","5T"],knockoff:["4T","5T"],lastresort:["4L43","4T","5L43","5T"],lowkick:["4T","5T"],lowsweep:["5M"],mudslap:["4T"],nastyplot:["4L39","5L39"],naturalgift:["4M"],payback:["4M","5M"],protect:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],rocksmash:["4M","5M"],roleplay:["4T","5T"],round:["5M"],sandattack:["4L1","4L4","5L1","5L4"],scratch:["4L1","5L1"],screech:["4L25","5L25"],secretpower:["4M"],seedbomb:["4T","5T"],shadowball:["4M","5M"],shadowclaw:["4M","5M"],shockwave:["4M"],sleeptalk:["4M","5T"],snatch:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],spite:["4T","5T"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4L22","4T","5L22"],tailwhip:["4L1","5L1"],taunt:["4M","5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4T","5T"],thunderwave:["4M","5M"],tickle:["4L15","5L15"],toxic:["4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"],waterpulse:["4M"],workup:["5M"],covet:["5T"],foulplay:["5T"]}}, - sunkern:{learnset:{absorb:["3L1","4L1","5L1","3S0"],attract:["3M","4M","5M"],bide:["5E"],bulletseed:["3M","4M"],captivate:["4M"],curse:["3E","4E","5E"],cut:["3M","4M","5M"],doubleedge:["3T","5L37"],doubleteam:["3M","4M","5M"],earthpower:["5D","5T"],encore:["3E","4E","5E"],endeavor:["3L25","4L21","4T","5L21","5T"],endure:["3T","4M","5E"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","3L42","4M","4L41","5L41","5T"],grassknot:["4M","5M"],grasswhistle:["3E","4E","4L13","5E","5L13"],growth:["3L6","4L1","5L1","3S0"],helpinghand:["3E","4E","4T","5E","5T"],hiddenpower:["3M","4M","5M"],ingrain:["3L18","4E","4L9","5E","5L9"],leechseed:["3E","4E","4L17","5E","5L17"],lightscreen:["3M","4M","5M"],megadrain:["3L13","4L5","5L5","5D"],mimic:["3T"],morningsun:["5E"],naturalgift:["4M","5E","5L31"],naturepower:["3E","4E","5E"],protect:["3M","4M","5M"],razorleaf:["4L29","5L29"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seedbomb:["4L45","4T","5L45","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","5L34"],substitute:["3T","4M","5M"],sunnyday:["3M","3L30","4M","4L37","5M","5L37"],swagger:["3T","4M","5M"],sweetscent:["4E","5E","5D"],swordsdance:["3T","4M","5M"],synthesis:["3L37","4L33","4T","5L33","5T"],toxic:["3M","4M","5M"],uproar:["4T","5T"],worryseed:["4L25","4T","5L25","5T"],afteryou:["5T"]}}, - sunflora:{learnset:{absorb:["3L1","4L1","5L1"],attract:["3M","4M","5M"],bulletseed:["3M","3L25","4M","4L21","5L21"],captivate:["4M"],cut:["3M","4M","5M"],doubleedge:["3T","5L37"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],endeavor:["4T","5T"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T","5L22"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],grasswhistle:["4L13","5L13"],growth:["3L6","4L1","5L1"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],ingrain:["3L18","4L9","5L9"],leafstorm:["4L43","5L45"],leechseed:["4L17","5L17"],lightscreen:["3M","4M","5M"],megadrain:["4L5","5L5"],mimic:["3T"],naturalgift:["4M","5L31"],petaldance:["3L37","4L33","5L33"],pound:["3L1","4L1","5L1"],protect:["3M","4M","5M"],razorleaf:["3L13","4L29","5L29"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","3L42","4M","4L41","5M","5L41"],substitute:["3T","4M","5M"],sunnyday:["3M","3L30","4M","4L37","5M","5L37"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],toxic:["3M","4M","5M"],uproar:["4T","5T"],worryseed:["4L25","4T","5L25","5T"],afteryou:["5T"]}}, - yanma:{learnset:{aerialace:["3M","4M","5M"],aircutter:["4T"],airslash:["4L54","5L54"],ancientpower:["4L33","4T","5L33"],attract:["3M","4M","5M"],bugbite:["4T","5T"],bugbuzz:["4L57","5L57"],captivate:["4M"],defog:["4M"],detect:["3L25","3L28","4L17","5L17"],doubleedge:["3T","5E"],doubleteam:["3M","3L13","3L12","4M","4L11","5M","5L11"],dreameater:["3T","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["4E","5E"],feint:["4E","5E","5D"],flash:["3M","4M","5M"],foresight:["3L1","4L1","5L1"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5D","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hypnosis:["3L23","4L38","5L38"],leechlife:["3E","4E","5E"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],pursuit:["4E","4L30","5E","5L30"],quickattack:["3L7","3L6","4L6","5L6","5D"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],reversal:["3E","4E","5E"],roost:["4M","5T"],round:["5M"],screech:["3L49","3L50","4L46","5L46"],secretpower:["3M","4M","5E"],shadowball:["3M","4M","5M"],signalbeam:["3E","4E","4T","5E","5T"],silverwind:["3E","4E","4M","5E"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],sonicboom:["3L19","3L17","4L14","5L14"],steelwing:["3M","4M"],stringshot:["4T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3L31","3L45","4L22","5L22"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],tailwind:["4T","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["3L37","3L34","4L27","5L27","5T"],uturn:["4M","4L49","5M","5L49"],whirlwind:["3E","4E","5E"],wingattack:["3L43","3L39","4L43","5L43"]}}, - yanmega:{learnset:{aerialace:["4M","5M"],aircutter:["4T"],airslash:["4L49","4L54","5L54"],ancientpower:["4L33","4T","5L33"],attract:["4M","5M"],bugbite:["4L1","4T","5L1","5T"],bugbuzz:["4L54","4L57","5L57"],captivate:["4M"],defog:["4M"],detect:["4L17","5L17"],doubleteam:["4M","4L1","4L11","5M","5L1","5L11"],dreameater:["4M","5M"],endure:["4M"],facade:["4M","5M"],feint:["4L38","5L38"],flash:["4M","5M"],foresight:["4L1","5L1"],frustration:["4M","5M"],gigadrain:["4M","5T"],gigaimpact:["4M","5M"],headbutt:["4T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4L1","5L1"],ominouswind:["4T"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],pursuit:["4L30","5L30"],quickattack:["4L1","4L6","5L1","5L6"],rest:["4M","5M"],"return":["4M","5M"],roost:["4M","5T"],round:["5M"],screech:["4L43","4L46","5L46"],secretpower:["4M"],shadowball:["4M","5M"],signalbeam:["4T","5T"],silverwind:["4M"],slash:["4L38","4L43","5L43"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],sonicboom:["4L14","5L14"],steelwing:["4M"],stringshot:["4T"],strugglebug:["5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],supersonic:["4L22","5L22"],swagger:["4M","5M"],swift:["4T"],tackle:["4L1","5L1"],tailwind:["4T","5T"],thief:["4M","5M"],toxic:["4M","5M"],uproar:["4L27","4T","5L27","5T"],uturn:["4M","4L46","4L49","5M","5L49"]}}, - wooper:{learnset:{acidspray:["5E"],afteryou:["5E","5T"],amnesia:["3L21","4L23","5L23"],ancientpower:["3E","4E","4T","5E"],aquatail:["4T","5D","5T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3E","3T","4E","5E","5D"],bulldoze:["5M"],captivate:["4M"],counter:["4E","5E"],curse:["3E","4E","5E"],defensecurl:["3T"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doublekick:["4E","5E"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L36","4M","4L33","5M","5L33"],encore:["4E","5E"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],haze:["3L51","4L43","5L43"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],irontail:["3M","4M","5T"],mimic:["3T"],mist:["3L51","4L43","5L43"],mudbomb:["4L19","5L19"],muddywater:["4L47","5L47"],mudshot:["3L16","4L9","5L9"],mudslap:["3T","4T"],mudsport:["3E","4E","4L5","5E","5L5"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","3L41","4M","4L37","5M","5L37"],recover:["4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],safeguard:["3E","4E","5M"],sandstorm:["3M","4M","5M"],scald:["5M"],secretpower:["3M","4M"],slam:["3L11","4L15","5L15"],sleeptalk:["3T","4M","5E","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5M"],snore:["3T","4T","5T"],spitup:["3E","4E","5E"],stockpile:["3E","4E","5E"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["3E","4E","5E"],tailwhip:["3L1","4L1","5L1"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L1","4L1","5L1","5D"],waterpulse:["3M","4M"],whirlpool:["4M"],yawn:["3L31","4L29","5L29"]}}, - quagsire:{learnset:{amnesia:["3L23","4L24","5L24"],ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L42","4M","4L36","5M","5L36"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],haze:["3L61","4L48","5L48"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mist:["3L61","4L48","5L48"],mudbomb:["4L19","5L19"],muddywater:["4L53","5L53"],mudshot:["3L16","4L9","5L9"],mudslap:["3T","4T"],mudsport:["4L1","4L5","5L1","5L5"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","3L49","4M","4L41","5M","5L41"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],safeguard:["5M"],sandstorm:["3M","4M","5M"],scald:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],slam:["3L11","4L15","5L15"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5M"],snore:["3T","4T","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tailwhip:["3L1","4L1","5L1"],thief:["5M"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L1","4L1","5L1"],waterpulse:["3M","4M"],whirlpool:["4M"],yawn:["3L35","4L31","5L31"],afteryou:["5T"]}}, - murkrow:{learnset:{aerialace:["3M","4M","5M"],aircutter:["4T"],assurance:["4L25","5E","5L25"],astonish:["3L9","4L1","5L1","3S0"],attract:["3M","4M","5M"],bravebird:["4E","5E"],calmmind:["3M","4M","5M"],captivate:["4M"],confuseray:["3E","4E","5E","5D"],darkpulse:["4M","5T"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],drillpeck:["3E","4E","5E"],embargo:["4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L35","4E","4L35","5E","5L35"],featherdance:["3E","4E","5E"],fly:["3M","4M","5M"],foulplay:["5L45","5T"],frustration:["3M","4M","5M"],haze:["3L22","4L11","5L11"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],icywind:["3T","4T","5T"],meanlook:["3L48","4L41","5L41"],mimic:["3T"],mirrormove:["3E","4E","5E"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L27","4L21","5L21"],ominouswind:["4T"],payback:["4M","5M"],peck:["3L1","4L1","5L1","5D","3S0"],perishsong:["3E","4E","5E"],pluck:["4M","5M"],protect:["3M","4M","5M"],psychic:["4M","5M"],psychoshift:["4E","5E"],psychup:["3T","4M","5M"],pursuit:["3L14","4L5","5L5"],quash:["5M","5L65"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roost:["4M","5E","5D","5T"],round:["5M"],screech:["4E","5E"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],skyattack:["3E","3T","4E","5E","5T"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snatch:["3M","4M","5T"],snore:["3T"],spite:["4T","5T"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],suckerpunch:["4L45","4T","5L55"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5L51","5T"],taunt:["3M","3L40","4M","4L31","5M","5L31"],thief:["3M","4M","5M"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M","5L61"],toxic:["3M","4M","5M"],twister:["4T"],uproar:["4T","5T"],whirlwind:["3E","4E","5E"],wingattack:["3E","4E","4L15","5E","5L15"]}}, - honchkrow:{learnset:{aerialace:["4M","5M"],aircutter:["4T"],astonish:["4L1","5L1"],attract:["4M","5M"],calmmind:["4M","5M"],captivate:["4M"],darkpulse:["4M","4L55","5L75","5T"],defog:["4M"],doubleteam:["4M","5M"],dreameater:["4M","5M"],embargo:["4M","5M"],endure:["4M"],facade:["4M","5M"],fly:["4M","5M"],foulplay:["5L45","5T"],frustration:["4M","5M"],gigaimpact:["4M","5M"],haze:["4L1","5L1"],heatwave:["4T","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],incinerate:["5M"],mudslap:["4T"],nastyplot:["4L35","5L35"],naturalgift:["4M"],nightslash:["4L45","5L55"],ominouswind:["4T"],payback:["4M","5M"],pluck:["4M","5M"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],pursuit:["4L1","5L1"],quash:["5M","5L65"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],roost:["4M","5T"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],skyattack:["4T","5T"],sleeptalk:["4M","5T"],snarl:["5M"],snatch:["4M","5T"],spite:["4T","5T"],steelwing:["4M"],substitute:["4M","5M"],suckerpunch:["4T"],sunnyday:["4M","5M"],superpower:["4T","5T"],swagger:["4M","4L25","5M","5L25"],swift:["4T"],tailwind:["4T","5T"],taunt:["4M","5M"],thief:["4M","5M"],thunderwave:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],twister:["4T"],uproar:["4T","5T"],wingattack:["4L1","5L1"],icywind:["5T"]}}, - misdreavus:{learnset:{aerialace:["3M","4M","5M"],astonish:["3L11","4L10","5L10"],attract:["3M","4M","5M"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],confuseray:["3L17","4L14","5L14"],curse:["4E","5E"],darkpulse:["4M","5T"],defensecurl:["3T"],destinybond:["3E","4E","5E","5D"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],echoedvoice:["5M"],embargo:["4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],growl:["3L1","4L1","5L1","3S0"],grudge:["3L53","4L46","5L50"],headbutt:["4T"],healbell:["4T","5T"],hex:["5L23"],hiddenpower:["3M","4M","5M"],icywind:["4T","5T"],imprison:["3E","4E","5E"],inferno:["5D"],magiccoat:["4T","5T"],meanlook:["3L23","4L19","5L19"],memento:["4E","5E"],mimic:["3T"],nastyplot:["4E","5E"],naturalgift:["4M"],nightmare:["3T"],ominouswind:["4E","4T","5E"],painsplit:["3L37","4L28","4T","5L32","5T"],payback:["4M","4L32","5M","5L37"],perishsong:["3L45","4L41","5L46"],powergem:["4L50","5L55"],protect:["3M","4M","5M"],psybeam:["3L30","4L23","5L28"],psychic:["3M","4M","5M"],psychup:["3E","3T","4E","4M","5M"],psywave:["3L1","4L1","5L1","5D","3S0"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],screech:["3E","4E","5E"],secretpower:["3M","4M"],shadowball:["3M","4M","4L37","5M","5L41"],shadowsneak:["4E","5E"],shockwave:["3M","4M"],skillswap:["3M","4M","5E","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["3L6","4E","4L5","4T","5E","5L5","3S0","5T"],substitute:["3T","4M","5M"],suckerpunch:["4E","4T","5E"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],taunt:["3M","4M","5M"],telekinesis:["5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],uproar:["4T","5T"],willowisp:["4M","5M"],wonderroom:["5E","5T"],foulplay:["5T"],hypervoice:["5T"],magicroom:["5T"]}}, - mismagius:{learnset:{aerialace:["4M","5M"],astonish:["4L1","5L1"],attract:["4M","5M"],calmmind:["4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],darkpulse:["4M","5T"],doubleteam:["4M","5M"],dreameater:["4M","5M"],echoedvoice:["5M"],embargo:["4M","5M"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],growl:["4L1","5L1"],headbutt:["4T"],healbell:["4T","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icywind:["4T","5T"],luckychant:["4L1","5L1"],magicalleaf:["4L1","5L1"],magiccoat:["4T","5T"],naturalgift:["4M"],ominouswind:["4T"],painsplit:["4T","5T"],payback:["4M","5M"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],psywave:["4L1","5L1"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],skillswap:["4M","5T"],sleeptalk:["4M","5T"],snatch:["4M","5T"],snore:["4T","5T"],spite:["4L1","4T","5L1","5T"],substitute:["4M","5M"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],taunt:["4M","5M"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderwave:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],uproar:["4T","5T"],willowisp:["4M","5M"],foulplay:["5T"],hypervoice:["5T"],magicroom:["5T"],wonderroom:["5T"]}}, - unown:{learnset:{hiddenpower:["3L1","4L1","5L1"]}}, - wynaut:{learnset:{charm:["3L1","4L1","5L1","3S0"],counter:["3L15","4L15","5L15"],destinybond:["3L15","4L15","5L15"],encore:["3L1","4L1","5L1","3S0"],mirrorcoat:["3L15","4L15","5L15"],safeguard:["3L15","4L15","5L15"],splash:["3L1","4L1","5L1","3S0"],tickle:["3S0"]}}, - wobbuffet:{learnset:{charm:["5D"],counter:["3L1","4L1","5L1","3S0","3S1"],destinybond:["3L1","4L1","5L1","3S0","3S1"],encore:["5D"],mirrorcoat:["3L1","4L1","5L1","5D","3S0","3S1"],safeguard:["3L1","4L1","5L1","3S0","3S1"]}}, - girafarig:{learnset:{agility:["3L31","4L14","5L14"],amnesia:["3E","4E","5E"],assurance:["4L28","5L28"],astonish:["3L7","4L1","5L1"],attract:["3M","4M","5M"],batonpass:["3L37","4L23","5L23"],beatup:["3E","4E","5E"],bodyslam:["3T"],bulldoze:["5M"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],confusion:["3L13","4L1","5L1","5D"],crunch:["3L49","4L46","5L46"],doubleedge:["3T"],doublehit:["4L32","5L32"],doublekick:["4E","5E"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],futuresight:["3E","4E","5E"],grassknot:["4M","5M"],gravity:["4T","5T"],growl:["3L1","4L1","5L1"],guardswap:["4L1","5L1"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],irontail:["3M","4M","5T"],lightscreen:["3M","4M","5M"],magiccoat:["3E","4E","4T","5E","5T"],meanlook:["5E"],mimic:["3T"],mirrorcoat:["4E","5E","5D"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],odorsleuth:["3L25","4L5","5L5"],powerswap:["4L1","5L1"],protect:["3M","4M","5M"],psybeam:["3L43","4L19","5L19"],psychic:["3M","4M","4L37","5M","5L37"],psychup:["3E","3T","4E","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],razorwind:["4E","5E"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],secretpower:["3M","4M","5E"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5E","5D","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],stomp:["3L19","4L10","5L10"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],takedown:["3E","4E","5E"],telekinesis:["5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],uproar:["4T","5T"],wish:["3E","4E","5E"],workup:["5M"],zenheadbutt:["4L41","4T","5L41","5T"],foulplay:["5T"],hypervoice:["5T"]}}, - pineco:{learnset:{attract:["3M","4M","5M"],bide:["3L29","4L17","4L20","5L20"],bodyslam:["3T"],bugbite:["4L9","4T","5L9","5T"],bulldoze:["5M"],captivate:["4M"],counter:["3E","3T","4E","5E","3S1"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3L50","3T","4E","4L42","4L45","5E","5L45"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],endure:["3T","4M","5E"],explosion:["3L36","3T","4M","4L31","4L34","5M","5L34"],facade:["3M","4M","5M"],flail:["3E","4E","5E"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],gravity:["4T","5T","5D"],gyroball:["4M","4L39","4L42","5M","5L42"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],irondefense:["4L34","4T","4L39","5L39","5T"],lightscreen:["3M","4M","5M"],mimic:["3T"],naturalgift:["4M","4L20","4L23","5L23"],painsplit:["4T","5T"],payback:["4M","4L28","4L31","5M","5L31"],pinmissile:["3E","4E","5E","3S1"],powertrick:["4E","5E"],protect:["3M","3L1","4M","4L1","5M","5L1","3S0"],rapidspin:["3L22","4L12","4L17","5L17"],reflect:["3E","3M","4E","4M","5M"],refresh:["3S1"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],revenge:["4E","5E"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],rollout:["3T","4T"],round:["5M"],sandstorm:["3M","4M","5M"],sandtomb:["3E","4E","5E"],secretpower:["3M","4M"],selfdestruct:["3L8","3T","4L6","5L6","3S0","5D"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spikes:["3L43","4L23","4L28","5L28","3S1"],stealthrock:["4M","5E","5T"],strength:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3E","4E","5E"],tackle:["3L1","4L1","5L1","3S0"],takedown:["3L15","4L9","4L12","5L12"],toxic:["3M","4M","5M"],toxicspikes:["4E","5E","5D"],venoshock:["5M"],drillrun:["5T"]}}, - forretress:{learnset:{attract:["3M","4M","5M"],autotomize:["5L32"],bide:["3L29","4L17","4L20","5L20"],block:["4T","5T"],bodyslam:["3T"],bugbite:["4L1","4L9","4T","5L1","5L9","5T"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3L59","3T","4L50","4L55","5L56"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],endure:["3T","4M"],explosion:["3L39","3T","4M","4L33","4L38","5M","5L42"],facade:["3M","4M","5M"],flashcannon:["4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],gravity:["4T","5T"],gyroball:["4M","4L45","4L50","5M","5L50"],headbutt:["4T"],heavyslam:["5L70"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],irondefense:["4L38","4T","4L45","5L46","5T"],lightscreen:["3M","4M","5M"],magnetrise:["4L57","4T","4L62","5L60","5T"],mimic:["3T"],mirrorshot:["4L31","5L31"],naturalgift:["4M","4L20","4L23","5L23"],painsplit:["4T","5T"],payback:["4M","4L28","4L33","5M","5L36"],protect:["3M","3L1","4M","4L1","5M","5L1"],rapidspin:["3L22","4L12","4L17","5L17"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],rollout:["3T","4T"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],selfdestruct:["3L1","3L8","3T","4L1","4L6","5L1","5L6"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spikes:["3L49","4L23","4L28","5L28"],stealthrock:["4M","5T"],strength:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],takedown:["3L15","4L1","4L9","4L12","5L12"],toxic:["3M","4M","5M"],toxicspikes:["4L1","5L1"],venoshock:["5M"],voltswitch:["5M"],zapcannon:["3L31","4L62","4L67","5L64"],drillrun:["5T"]}}, - dunsparce:{learnset:{agility:["4E","5E"],ancientpower:["3E","4E","4L41","4T","5E","5L48"],aquatail:["4T","5T"],astonish:["3E","4E","5E"],attract:["3M","4M","5M"],bide:["3E","4E","5E"],bite:["3E","4E","5E"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bulldoze:["5M"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],coil:["5L43"],counter:["3T"],curse:["3E","4E","5E"],defensecurl:["3L4","3T","4L5","5L4","5D"],dig:["3M","4M","4L45","5M","5L53"],doubleedge:["3T","5L34"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],drillrun:["5L43","5T"],earthquake:["3M","4M","5M"],endeavor:["3L41","3L51","4L49","4T","5L58","5T"],endure:["3T","4M","5L40"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flail:["3L44","4L53","5L63"],flamethrower:["3M","4M","5M"],frustration:["3M","4M","5M"],glare:["3L14","4L13","5L12"],gyroball:["4M","5M"],headbutt:["3E","4E","4T","5E"],hex:["5E"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],incinerate:["5M"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],magiccoat:["4E","4T","5E","5T","5D"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],pursuit:["3L24","3L31","4L25","5L24"],rage:["3L1","4L1","5L1"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","3L21","4L17","4T","5L16"],roost:["4M","4L33","5L33","5T"],round:["5M"],screech:["3L31","3L34","4L29","5L28"],secretpower:["3M","4M","5E"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5E","5T"],snore:["3T","4E","4T","5E","5T"],solarbeam:["3M","4M","5M"],spite:["3L21","3L24","4L21","4T","5L20","5T"],stealthrock:["4M","5T","5D"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],takedown:["3L34","3L41","4L37","5L38"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trumpcard:["4E","5E"],waterpulse:["3M","4M"],wildcharge:["5M"],yawn:["3L11","4L9","5L8"],zenheadbutt:["4T","5T"],bind:["5T"]}}, - gligar:{learnset:{acrobatics:["5M","5L27"],aerialace:["3M","4M","5M"],agility:["4E","5E"],aquatail:["4T","5T"],attract:["3M","4M","5M"],batonpass:["4E","5E"],brickbreak:["4M","5M"],bulldoze:["5M"],captivate:["4M"],counter:["3E","3T","4E","5E"],crosspoison:["4E","5E"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],defog:["4M"],dig:["3M","4M","5M"],doubleedge:["3T","4E","5E"],doubleteam:["3M","4M","5M"],dreameater:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L28","4L23","5L23"],falseswipe:["4M","5M"],feint:["4E","5E","5D"],fling:["4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4L20","4T","5L20"],guillotine:["3L52","4L45","5L49"],harden:["3L13","4L9","5L9"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],irontail:["3M","4M","5T"],knockoff:["4L12","5L12","5T"],metalclaw:["3E","4E","5E"],mimic:["3T"],naturalgift:["4M"],nightslash:["4E","5E"],payback:["4M","5M"],poisonjab:["4M","5M"],poisonsting:["3L1","4L1","5L1","3S0"],poisontail:["5E"],powertrick:["4E","5E"],protect:["3M","4M","5M"],quickattack:["3L20","4L16","5L16"],raindance:["3M","4M","5M"],razorwind:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["5E"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roost:["4M","5T"],round:["5M"],sandattack:["3L6","4L5","5L5","5D","3S0"],sandstorm:["3M","4M","5M"],sandtomb:["3E","4E","5E"],screech:["3L44","4L27","5L31"],secretpower:["3M","4M"],skyuppercut:["5L45"],slash:["3L36","4L31","5L34"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],steelwing:["3M","4M"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","4L34","5M","5L38"],tailwind:["4T","5D","5T"],taunt:["4M","5M"],thief:["3M","4M","5M"],torment:["4M","5M"],toxic:["3M","4M","5M"],uturn:["4M","4L38","5M","5L42"],venoshock:["5M"],wingattack:["3E","4E","5E"],xscissor:["4M","4L42","5M","5L45"],bugbite:["5T"]}}, - gliscor:{learnset:{acrobatics:["5M","5L27"],aerialace:["4M","5M"],aquatail:["4T","5T"],attract:["4M","5M"],batonpass:["4C"],brickbreak:["4M","5M"],bulldoze:["5M"],captivate:["4M"],cut:["4M","5M"],darkpulse:["4M","5T"],defog:["4M"],dig:["4M","5M"],doubleteam:["4M","5M"],earthpower:["4T","5T"],earthquake:["4M","5M"],endure:["4M"],facade:["4M","5M"],faintattack:["4L23","5L23"],falseswipe:["4M","5M"],firefang:["4L1","5L1"],fling:["4M","5M"],frustration:["4M","5M"],furycutter:["4L20","4T","5L20"],gigaimpact:["4M","5M"],guillotine:["4L45","5L49"],harden:["4L1","4L9","5L1","5L9"],headbutt:["4T"],hiddenpower:["4M","5M"],honeclaws:["5M"],hyperbeam:["4M","5M"],icefang:["4L1","5L1"],irontail:["4M","5T"],knockoff:["4L1","4L12","4T","5L1","5L12","5T"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4L31","5L34"],payback:["4M","5M"],poisonjab:["4M","4L1","5M","5L1"],protect:["4M","5M"],quickattack:["4L16","5L16"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rockpolish:["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],roost:["4M","5T"],round:["5M"],sandattack:["4L1","4L5","5L1","5L5"],sandstorm:["4M","5M"],screech:["4L27","5L31"],secretpower:["4M"],skyattack:["4T","5T"],skyuppercut:["5L45"],sleeptalk:["4M","5T"],sludgebomb:["4M","5M"],snore:["4T","5T"],stealthrock:["4M","5T"],steelwing:["4M"],stoneedge:["4M","5M"],strength:["4M","5M"],strugglebug:["5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],swordsdance:["4M","4L34","5M","5L38"],tailwind:["4T","5T"],taunt:["4M","5M"],thief:["4M","5M"],thunderfang:["4L1","5L1"],torment:["4M","5M"],toxic:["4M","5M"],uturn:["4M","4L38","5M","5L42"],venoshock:["5M"],xscissor:["4M","4L42","5M","5L45"],bugbite:["5T"]}}, - snubbull:{learnset:{attract:["3M","4M","5M"],bite:["3L13","4L7","5L7"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],charm:["3L8","4L1","5L1","5D","3S0"],closecombat:["4E","5E","5D"],counter:["3T"],crunch:["3E","3L53","4E","4L49","5E","5L49"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T","5E","5D"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E"],fireblast:["3M","4M","5M"],firefang:["4E","4L1","5E","5L1"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M","5E"],frustration:["3M","4M","5M"],headbutt:["4L19","4T","5L19"],healbell:["3E","4E","4T","5E","5T"],hiddenpower:["3M","4M","5M"],icefang:["4E","4L1","5E","5L1"],icepunch:["3T","4T","5T"],incinerate:["5M"],lastresort:["4T","5T"],lick:["3L19","4L13","5L13"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3E","3T","4E","5E"],mimic:["3T","5E"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M"],payback:["4M","4L43","5M","5L43"],present:["3E","4E","5E"],protect:["3M","4M","5M"],rage:["3L34","4L31","5L31"],raindance:["3M","4M","5M"],reflect:["3E","4E","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","3L26","4M","4L25","5M","5L25"],rocksmash:["3M","4M","5M"],round:["5M"],scaryface:["3L1","4L1","5L1","3S0"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],smellingsalt:["3E","4E","5E"],snarl:["5M"],snore:["3E","3T","4E","4T","5E","5T"],solarbeam:["3M","4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],superpower:["4T","5T"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1","3S0"],tailwhip:["3L4","4L1","5L1","3S0"],takedown:["3L43","4L37","5L37"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderfang:["4E","4L1","5E","5L1"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"],wildcharge:["5M"],workup:["5M"],covet:["5T"],hypervoice:["5T"]}}, - granbull:{learnset:{attract:["3M","4M","5M"],bite:["3L13","4L7","5L7"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],charm:["3L8","4L1","5L1"],counter:["3T"],crunch:["3L61","4L59","5L59"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firefang:["4L1","5L1"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4L19","4T","5L19"],healbell:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icefang:["4L1","5L1"],icepunch:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],lick:["3L19","4L13","5L13"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["5L67","5T"],overheat:["3M","4M","5M"],payback:["4M","4L51","5M","5L51"],protect:["3M","4M","5M"],rage:["3L38","4L35","5L35"],raindance:["3M","4M","5M"],reflect:["5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","3L28","4M","4L27","5M","5L27"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],scaryface:["3L1","4L1","5L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snarl:["5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],superpower:["4T","5T"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],tailwhip:["3L4","4L1","5L1"],takedown:["3L49","4L43","5L43"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderfang:["4L1","5L1"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"],wildcharge:["5M"],workup:["5M"],covet:["5T"],hypervoice:["5T"]}}, - qwilfish:{learnset:{acidspray:["5E"],aquajet:["4E","5E","5D"],aquatail:["4L45","4T","5L45","5T"],astonish:["3E","4E","5E"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bounce:["4T","5T"],brine:["4M","4L33","5E","5L33"],bubblebeam:["3E","4E","5E"],captivate:["4M"],defensecurl:["3T"],destinybond:["3L45","4L53","5L53"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],explosion:["4M","5M"],facade:["3M","4M","5M"],flail:["3E","4E","5E"],frustration:["3M","4M","5M"],gyroball:["4M","5M"],hail:["3M","4M","5M"],harden:["3L10","3L9","4L9","5L9","3S0"],haze:["3E","4E","5E"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["3L46","3L37","4L57","5L57"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],mimic:["3T"],minimize:["3L10","3L9","4L9","5L9","3S0"],mudslap:["4T"],naturalgift:["4M"],painsplit:["4T","5T"],payback:["4M","5M"],pinmissile:["3L28","3L21","4L37","5L37"],poisonjab:["4E","4M","4L49","5M","5L49"],poisonsting:["3L1","4L1","5L1","5D","3S0"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],revenge:["3L25","4L29","5L29"],rollout:["3T","4L17","5L17"],round:["5M"],scald:["5M"],secretpower:["3M","4M","5D"],selfdestruct:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4E","4T","5E","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5M"],snore:["3T","4T","5T"],spikes:["3L1","4L1","5L1"],spitup:["4L25","5L25"],stockpile:["4L25","5L25"],substitute:["3T","4M","5M"],supersonic:["3E","4E","5E"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T"],tackle:["3L1","4L1","5L1","3S0"],takedown:["3L37","3L33","4L41","5L41"],taunt:["4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],toxicspikes:["4L21","5L21"],venoshock:["5M"],waterfall:["3M","4M","5M"],watergun:["3L19","3L13","4L13","5L13"],waterpulse:["3M","4M","5E"],whirlpool:["4M"]}}, - shuckle:{learnset:{acid:["5E"],acupressure:["4E","5E"],ancientpower:["4T"],attract:["3M","4M","5M"],bide:["3L28","4L9","4L1","5L1"],bodyslam:["3T"],bugbite:["4L40","4T","5L49","5T"],bulldoze:["5M"],captivate:["4M"],constrict:["3L1","4L1","5L1","3S0"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],encore:["3L14","4L14","4L9","5L7","5D","3S1"],endure:["3T","4M"],facade:["3M","4M","5M"],finalgambit:["5E"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gastroacid:["4L40","4T","4L35","5L31","5T"],guardsplit:["5L55"],gyroball:["4M","5M"],headbutt:["4T"],helpinghand:["4E","4T","5E","5T","5D"],hiddenpower:["3M","4M","5M"],knockoff:["4E","5E","5T"],mimic:["3T"],mudslap:["3T","4E","5E"],naturalgift:["4M"],powersplit:["5L55"],powertrick:["4L48","5L43"],protect:["3M","4M","5M"],rest:["3M","3L37","4M","4L35","4L27","5M","5L25"],"return":["3M","4M","5M"],rockblast:["5E"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M","5L38"],rocksmash:["3M","4M","5M"],rockthrow:["5L23"],rocktomb:["3M","4M","5M"],rollout:["3T","5L37"],round:["5M"],safeguard:["3M","3L23","4M","4L22","4L14","5M","5L19"],sandstorm:["3M","4M","5M"],sandtomb:["4E","5E"],secretpower:["3M","4M"],shellsmash:["5L34","5D"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M","3S1"],sludgewave:["5M"],smackdown:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","5L49"],strength:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M","5L1"],substitute:["3T","4M","5M","3S1"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["3E","4E","5E"],toxic:["3M","4M","5M","3S1"],venoshock:["5M"],withdraw:["3L1","4L1","5L1","3S0"],wrap:["3L9","4L27","4L22","5L13","3S0"],bind:["5T"],afteryou:["5T"]}}, - heracross:{learnset:{aerialace:["4M","4L13","5M","5L13"],attract:["3M","4M","5M"],bide:["3E","4E","5E"],bodyslam:["3T"],brickbreak:["3M","3L23","4M","4L19","5M","5L19"],bugbite:["4T","5T"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L16"],closecombat:["4L37","5L37"],counter:["3L30","3T","4L25","5L25"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],doubleedge:["3T","4E","5E"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],endure:["3L11","3T","4M","4L1","5L1"],facade:["3M","4M","5M"],falseswipe:["3E","4E","5M"],feint:["4L49","5L49"],flail:["3E","4E","5E","5D"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M","5E","5D"],frustration:["3M","4M","5M"],furyattack:["3L17","4L7","5L7"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],harden:["3E","4E","5E"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hornattack:["3L6","4L1","5L1","5D"],hyperbeam:["3M","4M","5M"],irondefense:["4T","5T"],knockoff:["4T","5T"],leer:["3L1","4L1","5L1"],lowkick:["4T","5T"],megahorn:["3L53","4L55","5E","5L55"],mimic:["3T"],naturalgift:["4M"],nightslash:["4L1","5L1"],protect:["3M","4M","5M"],pursuit:["4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],revenge:["4E","5E"],reversal:["3L45","4L43","5L43"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T","5E"],shadowclaw:["4M","5M"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],takedown:["3L37","4L31","5L31"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],vacuumwave:["4T"],venoshock:["5M"],workup:["5M"]}}, - sneasel:{learnset:{aerialace:["3M","4M","5M"],agility:["3L36","4L24","5L24"],assist:["4E","5E"],attract:["3M","4M","5M"],avalanche:["4M","5E"],beatup:["3L57","4L38","5L42"],bite:["3E","4E","5E"],blizzard:["3M","4M","5M"],brickbreak:["3M","4M","5M"],calmmind:["3M","4M","5M"],captivate:["4M"],counter:["3E","3T","4E","5E"],crushclaw:["3E","4E","5E"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doublehit:["4E","5E"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],embargo:["4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L22","4L14","5L14"],fakeout:["3E","4E","5E"],falseswipe:["4M","5M"],feint:["5E"],fling:["4M","5M"],focuspunch:["3M","4M"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],furyswipes:["3L29","4L21","5L21"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M","5L35"],icebeam:["3M","4M","5M"],icepunch:["3T","4E","4T","5E","5T","5D"],iceshard:["4E","4L49","5E","5L51"],icywind:["3L43","3T","4L28","5L28","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],leer:["3L1","4L1","5L1","3S0"],lowkick:["4T","5T","5D"],lowsweep:["5M"],metalclaw:["3L64","4L42","5L49"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],punishment:["4E","5E","5L44"],pursuit:["4E","5E"],quickattack:["3L8","4L8","5L8","3S0"],raindance:["3M","4M","5M"],reflect:["3E","4E","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],scratch:["3L1","4L1","5L1","3S0"],screech:["3L15","4L10","5L10"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],slash:["3L50","4L35","5L38"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snatch:["3M","4M","5T","5L40"],snore:["3T","4T","5T"],spite:["3E","4E","4T","5E","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],taunt:["3M","3L1","4M","4L1","5M","5L1","5D","3S0"],thief:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],whirlpool:["4M"],xscissor:["4M","5M"],foulplay:["5T"]}}, - weavile:{learnset:{aerialace:["4M","5M"],assurance:["4L1","5L1"],attract:["4M","5M"],avalanche:["4M"],blizzard:["4M","5M"],brickbreak:["4M","5M","4S0"],calmmind:["4M","5M"],captivate:["4M"],cut:["4M","5M"],darkpulse:["4M","4L49","5L51","5T"],dig:["4M","5M"],doubleteam:["4M","5M"],dreameater:["4M","5M"],embargo:["4M","4L1","5M","5L1"],endure:["4M"],facade:["4M","5M"],faintattack:["4L14","5L14"],fakeout:["4S0"],falseswipe:["4M","5M"],fling:["4M","4L38","5M","5L42"],focusblast:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],furycutter:["4T"],furyswipes:["4L21","5L21"],gigaimpact:["4M","5M"],hail:["4M","5M"],headbutt:["4T"],hiddenpower:["4M","5M"],honeclaws:["5M","5L35"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],iceshard:["4S0"],icywind:["4L28","4T","5L28","5T"],irontail:["4M","5T"],knockoff:["4T","5T"],leer:["4L1","5L1"],lowkick:["4T","5T"],lowsweep:["5M"],metalclaw:["4L42","5L49"],mudslap:["4T"],nastyplot:["4L24","5L24"],naturalgift:["4M"],nightslash:["4L35","5L35","5L38","4S0"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["4M","5M"],psychup:["4M","5M"],quickattack:["4L1","4L8","5L1","5L8"],raindance:["4M","5M"],reflect:["5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],revenge:["4L1","5L1"],rocksmash:["4M","5M"],round:["5M"],scratch:["4L1","5L1"],screech:["4L10","5L10"],secretpower:["4M"],shadowball:["4M","5M"],shadowclaw:["4M","5M"],sleeptalk:["4M","5T"],snarl:["5M"],snatch:["4M","5T","5L40"],snore:["4T","5T"],spite:["4T","5T"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],surf:["4M","5M"],swagger:["4M","5M"],swift:["4T"],swordsdance:["4M","5M"],taunt:["4M","4L1","5M","5L1"],thief:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],whirlpool:["4M"],xscissor:["4M","5M"],icepunch:["4T","5T"],foulplay:["5T"]}}, - teddiursa:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bellydrum:["4E","5E"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],charm:["4L36","5L36"],chipaway:["5E"],closecombat:["4E","5E"],counter:["3E","3T","4E","5E"],covet:["4L1","5L1","5T"],crosschop:["4E","5E"],crunch:["3E","4E","5E","5D"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T","4E","5E"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L25","4L15","5L15"],faketears:["3E","3L19","4E","4L1","5E","5L1","5D"],firepunch:["3T","4T","5T"],fling:["4M","4L57","5M","5L57"],focuspunch:["3M","4M","5D"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],furyswipes:["3L13","4L8","5L8"],gunkshot:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],icepunch:["3T","4T","5T"],lastresort:["4T","5T"],leer:["3L1","4L1","5L1","3S0","3S1"],lick:["3L7","4L1","5L1","3S0"],megakick:["3T"],megapunch:["3T"],metalclaw:["3E","4E","5E","3S1"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4E","5E"],payback:["4M","5M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],refresh:["3S1"],rest:["3M","3L31","4M","4L43","5M","5L43"],retaliate:["5M"],"return":["3M","4M","5M","3S1"],roar:["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],rollout:["3T","4T"],round:["5M"],scratch:["3L1","4L1","5L1","3S0"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3E","3T","4E","5E"],shadowclaw:["4M","5M"],slash:["3L37","4L29","5L29"],sleeptalk:["3E","3T","4E","4M","5E","5T"],snore:["3L43","3T","4L43","4T","5L43","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],sweetscent:["4L22","5L22"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],takedown:["3E","4E","5E"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thrash:["3L49","4L50","5L50"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],workup:["5M"],yawn:["3E","4E","5E"],hypervoice:["5T"]}}, - ursaring:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],avalanche:["4M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],covet:["4L1","5L1","5T"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L25","4L15","5L15"],faketears:["3L19","4L1","5L1"],firepunch:["3T","4T","5T"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],furyswipes:["3L1","3L13","4L8","5L8"],gigaimpact:["4M","5M"],gunkshot:["4T","5T"],hammerarm:["4L67","5L67"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],lastresort:["4T","5T"],leer:["3L1","4L1","5L1"],lick:["3L1","3L7","4L1","5L1"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","3L31","4M","4L47","5M","5L47"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],scaryface:["4L38","5L38"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],shadowclaw:["4M","5M"],slash:["3L37","4L29","5L29"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3L43","3T","4L49","4T","5L49","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],sweetscent:["4L22","5L22"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thrash:["3L49","4L58","5L58"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],workup:["5M"],hypervoice:["5T"]}}, - slugma:{learnset:{acidarmor:["3E","4E","5E"],amnesia:["3L29","4L31","5L32"],ancientpower:["4L26","4T","5L28"],attract:["3M","4M","5M"],bodyslam:["3L50","3T","4L46","5L46"],captivate:["4M"],curse:["4E","5E"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4L56","4T","5E","5L55","5T"],ember:["3L8","4L8","5L5","5D"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flameburst:["5L23"],flamecharge:["5M"],flamethrower:["3M","3L36","4M","4L53","5M","5L50"],frustration:["3M","4M","5M"],harden:["3L22","4L16","5L14"],heatwave:["3E","4E","4T","5E","5D","5T"],hiddenpower:["3M","4M","5M"],incinerate:["5M"],inferno:["5E","5D"],irondefense:["4T","5T"],lavaplume:["4L38","5L37"],lightscreen:["3M","4M","5M"],memento:["4E","5E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M"],painsplit:["4T","5T"],protect:["3M","4M","5M"],recover:["4L23","5L19"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3L43","3T","4M","4L41","5M","5L41"],rocksmash:["3M","4M","5M"],rockthrow:["3L15","4L11","5L10"],rocktomb:["4M","5M"],rollout:["3T","4T","5E"],round:["5M"],secretpower:["3M","4M"],selfdestruct:["3T"],sleeptalk:["3T","4M","5T"],smog:["3L1","4L1","5L1"],smokescreen:["4E","5E"],snore:["3T","4T","5T"],spitup:["4E","5E"],stockpile:["4E","5E"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["4E","5E"],toxic:["3M","4M","5M"],willowisp:["4M","5M"],yawn:["3L1","4L1","5L1"],afteryou:["5T"]}}, - magcargo:{learnset:{amnesia:["3L29","4L31","5L32"],ancientpower:["4L26","4T","5L28"],attract:["3M","4M","5M"],bodyslam:["3L60","3T","4L52","5L52"],bulldoze:["5M"],captivate:["4M"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4L66","4T","5L67","5T"],earthquake:["3M","4M","5M","3S0"],ember:["3L1","3L8","4L1","4L8","5L1","5L5"],endure:["3T","4M"],explosion:["4M","5M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flameburst:["5L23"],flamecharge:["5M"],flamethrower:["3M","3L36","4M","4L61","5M","5L59","3S0"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gyroball:["4M","5M"],harden:["3L22","4L16","5L14"],heatwave:["4T","5T","3S0"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],irondefense:["4T","5T"],lavaplume:["4L40","5L37"],lightscreen:["3M","4M","5M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M"],painsplit:["4T","5T"],protect:["3M","4M","5M"],recover:["4L23","5L19"],reflect:["3M","4M","5M"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3L48","3T","4M","4L45","5M","5L44"],rocksmash:["3M","4M","5M"],rockthrow:["3L1","3L15","4L1","4L11","5L1","5L10"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],selfdestruct:["3T"],shellsmash:["5L38"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],smog:["3L1","4L1","5L1"],snore:["3T","4T","5T"],solarbeam:["4M","5M"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],toxic:["3M","4M","5M"],willowisp:["4M","5M"],yawn:["3L1","4L1","5L1"],afteryou:["5T"]}}, - swinub:{learnset:{amnesia:["3L55","4L49","5L49"],ancientpower:["3E","4E","4T","5E","5D","3S0"],attract:["3M","4M","5M"],avalanche:["5E"],bite:["3E","4E","5E"],blizzard:["3M","3L46","4M","4L44","5M","5L44"],bodyslam:["3E","3T","4E","5E"],bulldoze:["5M"],captivate:["4M"],charm:["3S0"],curse:["4E","5E"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3E","3T","4E","5E"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],earthquake:["3M","4M","4L37","5M","5L37"],endeavor:["4T","5T"],endure:["3L19","3T","4M","4L16","5L16"],facade:["3M","4M","5M"],fissure:["4E","5E"],flail:["5L40"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],iceshard:["4L28","5L28"],iciclecrash:["5E"],iciclespear:["3E","4E","5E","5D"],icywind:["3T","4L25","5L25","5T"],lightscreen:["3M","4M","5M"],mimic:["3T"],mist:["3L37","4L40","5L40","3S0"],mudbomb:["4L20","5L20"],mudshot:["3E","4E","5E","3S0"],mudslap:["3T","4L13","4T","5L13"],mudsport:["4L4","5L4"],naturalgift:["4M"],odorsleuth:["3L1","4L1","5L1","5D"],powdersnow:["3L10","4L8","5L8"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],stealthrock:["4M","5E","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],takedown:["3E","3L28","4E","4L32","5E","5L32"],toxic:["3M","4M","5M"]}}, - piloswine:{learnset:{amnesia:["3L70","4L65","5L65"],ancientpower:["4L1","4T","5L1"],attract:["3M","4M","5M"],avalanche:["4M"],blizzard:["3M","3L56","4M","4L56","5M","5L56"],bodyslam:["3T"],bulldoze:["5M"],captivate:["4M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],earthquake:["3M","4M","4L40","5M","5L40"],endeavor:["4T","5T"],endure:["3L1","3L19","3T","4M","4L16","5L16"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],furyattack:["3L33","4L33","5L33"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hornattack:["3L1"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icefang:["4L28","5L28"],icywind:["3T","4L25","4T","5L25","5T"],lightscreen:["3M","4M","5M"],mimic:["3T"],mist:["3L42","4L48","5L48"],mudbomb:["4L20","5L20"],mudslap:["3T","4L13","4T","5L13"],mudsport:["4L1","4L4","5L1","5L4"],naturalgift:["4M"],odorsleuth:["3L1","4L1","5L1"],peck:["4L1","5L1"],powdersnow:["3L1","3L10","4L1","4L8","5L1","5L8"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],takedown:["3L28","4L32","5L32"],thrash:["5L41"],toxic:["3M","4M","5M"]}}, - mamoswine:{learnset:{ancientpower:["4L1","4T","5L1"],attract:["4M","5M"],avalanche:["4M"],blizzard:["4M","4L56","5M","5L56"],block:["4T","5T"],bulldoze:["5M"],captivate:["4M"],dig:["4M","5M"],doublehit:["4L33","5L33","5S0"],doubleteam:["4M","5M"],earthpower:["4T","5T"],earthquake:["4M","4L40","5M","5L40"],endeavor:["4T","5T"],endure:["4M","4L16","5L16"],facade:["4M","5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],hail:["4M","4L25","5M","5L25","5S0"],headbutt:["4T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],icefang:["4L28","5L28","5S0"],icywind:["4T","5T"],lightscreen:["4M","5M"],mist:["4L48","5L48"],mudbomb:["4L20","5L20"],mudslap:["4L13","4T","5L13"],mudsport:["4L1","4L4","5L1","5L4"],naturalgift:["4M"],odorsleuth:["4L1","5L1"],peck:["4L1","5L1"],powdersnow:["4L1","4L8","5L1","5L8"],protect:["4M","5M"],raindance:["4M","5M"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandstorm:["4M","5M"],scaryface:["4L65","5L65"],secretpower:["4M"],sleeptalk:["4M","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],superpower:["4T","5T"],swagger:["4M","5M"],takedown:["4L32","5L32","5S0"],thrash:["5L41"],toxic:["4M","5M"],ironhead:["5T"],knockoff:["5T"]}}, - corsola:{learnset:{amnesia:["3E","4E","5E"],ancientpower:["3L45","4L32","4T","5L32"],aquaring:["4E","4L37","5E","5L37"],attract:["3M","4M","5M"],barrier:["3E","4E","5E"],bide:["5E"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brine:["4M"],bubble:["3L12","4L8","5L8","5D"],bubblebeam:["3L23","4L25","5L25"],bulldoze:["5M"],calmmind:["3M","4M","5M"],captivate:["4M"],confuseray:["3E","4E","5E","5D"],curse:["4E","5E"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4L53","4T","5L53","5T"],earthquake:["3M","4M","5M"],endeavor:["4T","5T"],endure:["3T","4M","5L35"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],flail:["5L52"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],harden:["3L6","4L4","5L4"],headbutt:["4T"],headsmash:["5E"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],iciclespear:["3E","4E","5E"],icywind:["4T","5T"],ingrain:["3E","4E","5E"],irondefense:["5L29","5T"],lightscreen:["3M","4M","5M"],luckychant:["4L28","5L28"],magiccoat:["4T","5T"],mimic:["3T"],mirrorcoat:["3L39","4L48","5L48"],mist:["3E","4E","5E"],mudslap:["3T","4T"],mudsport:["3S0"],naturalgift:["4M"],naturepower:["4E","5E"],powergem:["4L44","5L44"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],raindance:["3M","4M","5M"],recover:["3L17","4L13","5L13"],reflect:["3M","4M","5M"],refresh:["3L17","4L16","5L16"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockblast:["3L34","4L20","5L20"],rockpolish:["4M","5M"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],sandstorm:["3M","4M","5M"],scald:["5M"],screech:["3E","4E","5E"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","4M","5M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spikecannon:["3L28","4L40","5L40"],stealthrock:["4M","5D","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1","3S0"],toxic:["3M","4M","5M"],waterpulse:["3M","4M","5E"],whirlpool:["4M"]}}, - remoraid:{learnset:{acidspray:["5E"],attract:["3M","4M","5M"],aurorabeam:["3E","3L22","4E","4L14","5E","5L14"],blizzard:["3M","4M","5M"],bounce:["4T","5T"],brine:["4M","5D"],bubblebeam:["3L22","4L19","5L19"],bulletseed:["4M","4L27","5L27"],captivate:["4M"],chargebeam:["4M","5M"],defensecurl:["3T"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flail:["4E","5E"],flamethrower:["3M","4M","5M"],focusenergy:["3L33","4L23","5L23"],frustration:["3M","4M","5M"],gunkshot:["4T","5T"],haze:["3E","4E","5E"],hiddenpower:["3M","4M","5M"],hydropump:["5L42"],hyperbeam:["3M","3L55","4M","4L45","5M","5L45"],icebeam:["3M","3L44","4M","4L40","5M","5L40"],icywind:["4T","5T"],incinerate:["5M"],lockon:["3L11","4L6","5L6","5D"],mimic:["3T"],mudshot:["5E"],mudslap:["3T","4T"],naturalgift:["4M"],octazooka:["3E","4E","5E"],protect:["3M","4M","5M"],psybeam:["3L22","4L10","5L10"],psychic:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockblast:["3E","4E","5E","5D"],round:["5M"],scald:["5M"],screech:["3E","4E","5E"],secretpower:["3M","4M"],seedbomb:["4T","5T"],signalbeam:["4L36","4T","5L36","5T"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4E","4T","5E","5T"],soak:["5L49"],stringshot:["4T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3E","4E","5E"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T","5E"],thief:["3M","4M","5M"],thunderwave:["3E","3T","4E","4M","5M"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L1","4L1","5L1"],waterpulse:["3M","4M","4L32","5E","5L32"],waterspout:["4E","5E"],whirlpool:["4M"]}}, - octillery:{learnset:{attract:["3M","4M","5M"],aurorabeam:["3L22","4L1","4L14","5L1","5L14"],blizzard:["3M","4M","5M"],bounce:["4T","5T"],brine:["4M"],bubblebeam:["3L22","4L19","5L19"],bulletseed:["3M","4M","4L29","5L29"],captivate:["4M"],chargebeam:["4M","5M"],constrict:["3L11","4L1","4L6","5L1","5L6"],defensecurl:["3T"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],flashcannon:["4M","5M"],focusenergy:["3L38","4L23","5L23"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gunkshot:["4L1","4T","5L1","5T"],hiddenpower:["3M","4M","5M"],hydropump:["5L52"],hyperbeam:["3M","3L70","4M","4L55","5M","5L55","4S0"],icebeam:["3M","3L54","4M","4L48","5M","5L48","4S0"],icywind:["4T","5T"],incinerate:["5M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],octazooka:["3L25","4L25","5L25","4S0"],payback:["4M","5M"],protect:["3M","4M","5M"],psybeam:["3L22","4L1","4L10","5L1","5L10"],psychic:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockblast:["4L1","5L1"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],signalbeam:["4L42","4T","5L42","4S0","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5M"],smackdown:["5M"],snore:["3T","4T","5T"],soak:["5L61"],stringshot:["4T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],thief:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L1","4L1","5L1"],waterpulse:["3M","4M"],whirlpool:["4M"],wringout:["4L36","5L36"],bind:["5T"]}}, - delibird:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],aurorabeam:["3E","4E","5E"],avalanche:["4M"],bestow:["5E"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bounce:["4T","5T"],brickbreak:["4M","5M"],captivate:["4M"],counter:["3T"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fakeout:["4E","5E"],fling:["4M","5M"],fly:["3M","4M","5M"],focuspunch:["3M","4M","5D"],frostbreath:["5M"],frustration:["3M","4M","5M"],futuresight:["3E","4E","5E"],gunkshot:["4T","5T"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],iceball:["3E","4E","5E"],icebeam:["3M","4M","5M"],icepunch:["4E","5E","5T"],iceshard:["4E","5E","5D"],icywind:["3T","4T","5E","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],pluck:["4M","5M"],present:["3L1","4L1","5L1","5D","3S0"],protect:["3M","4M","5M"],quickattack:["3E","4E","5E"],raindance:["3M","4M","5M"],rapidspin:["3E","4E","5E"],recycle:["4M","5T"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["4T"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],signalbeam:["4T","5T"],skyattack:["3T","4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T"],splash:["3E","4E","5E"],substitute:["3T","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"]}}, - mantyke:{learnset:{acrobatics:["5M"],aerialace:["4M","5M"],agility:["4L19","5L19"],aircutter:["4T"],airslash:["5L36"],amnesia:["5E"],aquaring:["4L46","5L46"],attract:["4M","5M"],blizzard:["4M","5M"],bounce:["4L40","4T","5L40","5T"],bubble:["4L1","5L1"],bubblebeam:["4L10","5L10"],bulldoze:["5M"],captivate:["4M"],confuseray:["4L37","5L37"],dive:["4T","5M"],doubleteam:["4M","5M"],earthquake:["4M","5M"],endure:["4M"],facade:["4M","5M"],frustration:["4M","5M"],hail:["4M","5M"],haze:["4E","5E"],headbutt:["4L13","4T","5L13"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],hydropump:["4E","4L49","5E","5L49"],icebeam:["4M","5M"],icywind:["4T","5T"],mirrorcoat:["4E","5E"],mudslap:["4T"],mudsport:["4E","5E"],naturalgift:["4M"],protect:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rockslide:["4E","5M"],round:["5M"],scald:["5M"],secretpower:["4M"],signalbeam:["4E","5E","5T"],slam:["4E","5E"],sleeptalk:["4M","5T"],snore:["4T","5T"],splash:["4E","5E"],substitute:["4M","5M"],supersonic:["4L4","5L4"],surf:["4M","5M"],swagger:["4M","5M"],swift:["4T"],tackle:["4L1","5L1"],takedown:["4L31","5L31"],toxic:["4M","5M"],twister:["4E","5E"],waterfall:["4M","5M"],waterpulse:["4M","4L28","5L28"],watersport:["4E","5E"],whirlpool:["4M"],wideguard:["5E","5L23"],wingattack:["4L22","5L22"]}}, - mantine:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M"],agility:["3L29","4L19","5L19"],aircutter:["4T","5D"],airslash:["5L36"],amnesia:["5E"],aquaring:["4L46","5L46"],aquatail:["4T","5T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bounce:["4L40","4T","5L40","5T"],brine:["4M"],bubble:["3L1","4L1","5L1","3S0"],bubblebeam:["3L15","4L1","4L10","5L1","5L10"],bulldoze:["5M"],bulletseed:["4M","4L1","5L1"],captivate:["4M"],confuseray:["3L50","4L37","5L37"],defog:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gunkshot:["4T","5T"],hail:["3M","4M","5M"],haze:["3E","4E","5E"],headbutt:["4L13","4T","5L13"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hydropump:["3E","4E","4L49","5E","5L49"],hyperbeam:["4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],mimic:["3T"],mirrorcoat:["4E","5E","5D"],mudslap:["3T","4T"],mudsport:["3E","4E","5E"],naturalgift:["4M"],protect:["3M","4M","5M"],psybeam:["4L1","5L1"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3E","4E","4M","5M"],rocktomb:["4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],signalbeam:["4L1","4T","5L1","5T"],slam:["3E","4E","5E"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],splash:["4E","5E"],stringshot:["4T"],substitute:["3T","4M","5M"],supersonic:["3L8","4L1","4L4","5L1","5L4","5D","3S0"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S0"],tailwind:["4T","5T"],takedown:["3L22","4L31","5L31"],toxic:["3M","4M","5M"],twister:["3E","4E","5E"],waterfall:["3M","4M","5M"],waterpulse:["3M","3L43","4M","4L28","5L28"],watersport:["4E","5E"],whirlpool:["4M"],wideguard:["5E","5L23"],wingattack:["3L36","4L22","5L22"]}}, - skarmory:{learnset:{aerialace:["3M","4M","5M"],agility:["3L16","4L14","4L12","5L12"],aircutter:["3L29","4L24","4T","4L23","5L23"],airslash:["4L40","4L39","5L42"],assurance:["4E","5E"],attract:["3M","4M","5M"],autotomize:["5L39"],bravebird:["4E","5E"],captivate:["4M"],counter:["3T"],curse:["3E","4E","5E"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drillpeck:["3E","4E","5E","5D"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],feint:["4L20","5L20"],flash:["4M","5M"],flashcannon:["4M","5M"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],furyattack:["3L26","4L20","4L17","5L17"],furycutter:["4T"],guardswap:["4E","5E"],hiddenpower:["3M","4M","5M"],icywind:["4T","5T"],irondefense:["4T","5T"],leer:["3L1","4L1","5L1"],metalsound:["3L45","4L33","4L31","5L31"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4L50","4L45","5L50"],ominouswind:["4T"],payback:["4M","5M"],peck:["3L1","4L1","5L1","5D"],pluck:["4M","5M"],protect:["3M","4M","5M"],pursuit:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],roost:["4M","5D","5T"],round:["5M"],sandattack:["3L10","4L7","4L6","5L6"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],skyattack:["3E","3T","4E","4T","5E","5T"],skydrop:["5M"],slash:["4L46","4L42","5L45"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spikes:["3L42","4L27","4L28","5L28"],stealthrock:["4M","5E","5T"],steelwing:["3M","3L32","4M","4L38","4L34","5L34"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3L13","3T","4L11","4T","4L9","5L9"],swordsdance:["4M","5M"],tailwind:["4T","5T"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],whirlwind:["3E","4E","5E"],xscissor:["4M","5M"],ironhead:["5T"]}}, - houndour:{learnset:{attract:["3M","4M","5M"],beatup:["3E","4E","4L27","5E","5L25"],bite:["3L25","4L17","5L16"],bodyslam:["3T"],captivate:["4M"],charm:["3S1"],counter:["3E","3T","4E","5E"],crunch:["3L49","4L48","5L49"],darkpulse:["4M","5D","5T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],embargo:["4M","4L40","5M","5L37"],ember:["3L1","4L1","5L1","3S0","3S1"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L37","4L35","5L32","3S1"],feint:["4E","5E","5D"],fireblast:["3M","4M","5M"],firefang:["4E","4L30","5E","5L28"],firespin:["3E","4E","5E"],flamecharge:["5M"],flamethrower:["3M","3L43","4M","4L43","5M","5L44"],foulplay:["5L40","5T"],frustration:["3M","4M","5M"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],howl:["3L7","4L4","5L4","5D","3S0"],incinerate:["5M"],inferno:["5L56"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","3S0"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4E","4L53","5E","5L52"],naturalgift:["4M"],nightmare:["3T"],odorsleuth:["3L31","4L22","5L20"],overheat:["3M","4M","5M"],payback:["4M","5M"],protect:["3M","4M","5M"],punishment:["4E","5E"],pursuit:["3E","4E","5E"],rage:["3E","4E","5E"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],reversal:["3E","4E","5E"],roar:["3M","3L19","4M","4L14","5M","5L13","3S1"],rocksmash:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],smog:["3L13","4L9","5L8"],snarl:["5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spite:["3E","4E","4T","5E","5T"],substitute:["3T","4M","5M"],suckerpunch:["4T","5E"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],swagger:["3T","4M","5M"],swift:["3T","4T"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunderfang:["4E","5E"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],willowisp:["3E","4E","4M","5M"],hypervoice:["5T"]}}, - houndoom:{learnset:{attract:["3M","4M","5M"],beatup:["4L28","5L26"],bite:["3L27","4L17","5L16"],bodyslam:["3T"],captivate:["4M"],counter:["3T"],crunch:["3L59","4L54","5L56"],darkpulse:["4M","5T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],embargo:["4M","4L44","5M","5L41"],ember:["3L1","4L1","5L1"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L43","4L38","5L35"],fireblast:["3M","4M","5M"],firefang:["4L32","5L30"],flamecharge:["5M"],flamethrower:["3M","3L51","4M","4L48","5M","5L50"],foulplay:["5L45","5T"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],howl:["3L1","3L7","4L1","4L4","5L1","5L4"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],inferno:["5L65"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L60","5L60"],naturalgift:["4M"],nightmare:["3T"],odorsleuth:["3L35","4L22","5L20"],overheat:["3M","4M","5M"],payback:["4M","5M"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","3L19","4M","4L14","5M","5L13"],rocksmash:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],smog:["3L13","4L1","4L9","5L1","5L8"],snarl:["5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spite:["4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],swagger:["3T","4M","5M"],swift:["3T","4T"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thunderfang:["4L1","5L1"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],willowisp:["4M","5M"],hypervoice:["5T"]}}, - phanpy:{learnset:{ancientpower:["3E","4E","4T","5E"],attract:["3M","4M","5M"],bodyslam:["3E","3T","4E","5E"],bulldoze:["5M"],captivate:["4M"],charm:["4L33","5L33"],counter:["3E","3T","4E","5E"],defensecurl:["3L9","3T","4L1","5L1"],doubleedge:["3L49","3T","4L42","5L42"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endeavor:["4E","5E","5T"],endure:["3L41","3T","4M","4L28","5L28"],facade:["3M","4M","5M"],fissure:["3E","4E","5E"],flail:["3L17","4L6","5L6","5D"],focusenergy:["3E","4E","5E"],frustration:["3M","4M","5M"],growl:["3L1","4L1","5L1"],gunkshot:["4T","5T"],headbutt:["4T"],headsmash:["4E","5E"],heavyslam:["5E","5D"],hiddenpower:["3M","4M","5M"],iceshard:["4E","5E"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4L37","4T","5L37","5T"],mimic:["3T"],mudslap:["3T","4T","5E"],naturalgift:["4M","4L19","5L19"],odorsleuth:["3L1","4L1","5L1"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3L33","3T","4L15","4T","5L15"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seedbomb:["4T","5D","5T"],slam:["4L24","5L24"],sleeptalk:["3T","4M","5T"],snore:["3E","3T","4E","4T","5E","5T"],stealthrock:["4M","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],takedown:["3L25","4L10","5L10"],toxic:["3M","4M","5M"],hypervoice:["5T"]}}, - donphan:{learnset:{ancientpower:["4T"],assurance:["4L31","5L31"],attract:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],bounce:["4T","5T"],bulldoze:["5M","5L1"],captivate:["4M"],counter:["3T"],defensecurl:["3L9","3T","4L1","5L1"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],earthquake:["3M","3L49","4M","4L46","5M","5L46"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],firefang:["4L1","5L1"],flail:["3L17","4L1"],frustration:["3M","4M","5M"],furyattack:["3L25","4L25","5L25"],gigaimpact:["4M","4L54","5M","5L54"],growl:["3L1","4L1","5L1"],gunkshot:["4T","5T"],gyroball:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hornattack:["3L1","4L1","5L1"],hyperbeam:["3M","4M","5M"],irondefense:["4T","5T"],irontail:["3M","4M","5T"],knockoff:["4L10","4T","5L10","5T"],magnitude:["4L19","5L19"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],odorsleuth:["3L1"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],rapidspin:["3L41","4L6","5L6"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3L33","3T","4L15","4T","5L15"],round:["5M"],sandstorm:["3M","4M","5M"],scaryface:["4L39","5L39"],secretpower:["3M","4M"],seedbomb:["4T","5T"],slam:["4L24","5L24"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],thunderfang:["4L1","5L1"],toxic:["3M","4M","5M"],lastresort:["5T"],hypervoice:["5T"],endeavor:["5T"]}}, - stantler:{learnset:{astonish:["3L13","3L11","4L7","5L7"],attract:["3M","4M","5M"],bite:["3E","4E","5E"],bodyslam:["3T"],bounce:["4T","5T"],bulldoze:["5M"],calmmind:["3M","3L49","3L47","4M","4L27","5M","5L27"],captivate:["4M","4L49","5L53"],chargebeam:["4M","5M"],confuseray:["3L43","3L41","4L23","5L23"],disable:["3E","4E","5E","5D"],doubleedge:["3T"],doublekick:["4E","5E"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],earthquake:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],extrasensory:["3E","4E","5E"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gravity:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hypnosis:["3L19","3L17","4L10","5L10"],imprison:["4L43","5L49"],irontail:["3M","4M","5T"],jumpkick:["5L43"],lastresort:["4T","5T"],leer:["3L7","4L3","5L3","3S0"],lightscreen:["3M","4M","5M"],mefirst:["4L53","5E","5L55"],megahorn:["4E","5E"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["5E"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3E","3T","4E","4M","5M"],psyshock:["5M"],rage:["5E"],raindance:["3M","4M","5M"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],roleplay:["3L31","4L33","4T","5L33","5T"],round:["5M"],sandattack:["3L31","3L27","4L16","5L16"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5D","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spite:["3E","4E","4T","5E","5T"],stomp:["3L25","3L21","4L13","5L13"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3E","3T","4E","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5D","3S0"],takedown:["3L37","4L21","5L21"],thief:["3M","4M","5M"],thrash:["4E","5E"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trickroom:["4M","5M"],uproar:["4T","5T"],wildcharge:["5M"],workup:["5M"],zenheadbutt:["4E","4L38","4T","5E","5L38","5T"],magicroom:["5T"]}}, - smeargle:{learnset:{captivate:["5D"],falseswipe:["5S1"],meanlook:["5S1"],odorsleuth:["5S1"],sketch:["3L1","3L11","3L21","3L31","3L41","3L51","3L61","3L71","3L81","3L91","4L1","4L11","4L21","4L31","4L41","4L51","4L61","4L71","4L81","4L91","5L1","5L11","5L21","5L31","5L41","5L51","5L61","5L71","5L81","5L91","5D","3S0"],sleeptalk:["5D"],spore:["5S1"]}}, - miltank:{learnset:{attract:["3M","4M","5M"],bide:["3L26","4L15","5L15"],blizzard:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3L43","3T","4L24","5L24"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M","4L35","5L35"],counter:["3T"],curse:["3E","4E","5E","5D"],defensecurl:["3L8","3T","4L5","5L5","5D"],dizzypunch:["4E","5E"],doubleedge:["3T","4E","5E"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3E","3T","4E","4M","5E"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],growl:["3L4","4L3","5L3"],gyroball:["4M","4L41","5M","5L41"],hammerarm:["4E","5E"],headbutt:["4T"],healbell:["3L53","4L48","4T","5L48","5T"],heartstamp:["5E"],helpinghand:["3E","4E","4T","5E","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],irontail:["3M","4M","5D","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],milkdrink:["3L19","4L11","5L11"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","5E"],present:["3E","4E","5E"],protect:["3M","4M","5M"],psychup:["3E","3T","4E","4M","5M"],punishment:["4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],reversal:["3E","4E","5E"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3L34","3T","4L19","4T","5L19"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3E","3T","4E","5E"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sleeptalk:["3E","3T","4E","4M","5E","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stealthrock:["4M","5T"],stomp:["3L13","4L8","5L8"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],wakeupslap:["4L55","5L55"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"],zenheadbutt:["4L29","4T","5L29","5T"],afteryou:["5T"]}}, - raikou:{learnset:{aurasphere:["4S1"],bite:["3L1","4L1","5L1"],bodyslam:["3T"],bulldoze:["5M"],calmmind:["3M","3L81","4M","4L78","5M","5L78"],chargebeam:["4M","5M"],crunch:["3L61","4L43","5L43","3S0"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],discharge:["4L57","5L57"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],extrasensory:["4L64","5L64"],extremespeed:["4S1"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1"],lightscreen:["4M","5M"],magnetrise:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],quash:["5M"],quickattack:["3L31","4L22","5L22","3S0"],raindance:["3M","4M","4L71","5M","5L71"],reflect:["3M","3L51","4M","4L36","5M","5L36","3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","3L21","4M","4L15","5M","5L15"],rockclimb:["4M"],rocksmash:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],shadowball:["4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snore:["3T","4T","5T"],spark:["3L41","4L29","5L29","3S0"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],thunder:["3M","3L71","4M","4L71","4L85","5M","5L85"],thunderbolt:["3M","4M","5M"],thunderfang:["4L50","5L50"],thundershock:["3L11","4L8","5L8"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],voltswitch:["5M"],weatherball:["4S1"],wildcharge:["5M"],zapcannon:["4S1"]}}, - entei:{learnset:{bite:["3L1","4L1","5L1"],bodyslam:["3T"],bulldoze:["5M"],calmmind:["3M","3L81","4M","4L78","5M","5L78"],crushclaw:["4S1"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],ember:["3L11","4L8","5L8"],endure:["3T","4M"],eruption:["4L85","5L85"],extrasensory:["4L64","5L64"],extremespeed:["4S1"],facade:["3M","4M","5M"],fireblast:["3M","3L71","4M","4L71","5M","5L71"],firefang:["4L50","5L50"],firespin:["3L31","4L22","5L22","3S0"],flamecharge:["5M"],flamethrower:["3M","3L51","4M","4L36","5M","5L36","3S0"],flareblitz:["4S1"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],howl:["4S1"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],lavaplume:["4L57","5L57"],leer:["3L1","4L1","5L1"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["4M","5M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],quash:["5M"],raindance:["3M","4M","5M"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","3L21","4M","4L15","5M","5L15"],rockclimb:["4M"],rocksmash:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],shadowball:["4M","5M"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stomp:["3L41","4L29","5L29","3S0"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3L61","3T","4M","4L43","5M","5L43","3S0"],swift:["3T","4T"],toxic:["3M","4M","5M"],willowisp:["4M","5M"]}}, - suicune:{learnset:{airslash:["4S1"],aquaring:["4S1"],aurorabeam:["3L41","4L29","5L29","3S0"],avalanche:["4M"],bite:["3L1","4L1","5L1"],blizzard:["3M","4M","4L85","5M","5L85"],bodyslam:["3T"],brine:["4M"],bubblebeam:["3L11","4L8","5L8"],bulldoze:["5M"],calmmind:["3M","3L81","4M","4L78","5M","5L78"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],extrasensory:["4L64","5L64"],extremespeed:["4S1"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gust:["3L31","4L22","5L22","3S0"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["3L71","4L71","5L71"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icefang:["4L50","5L50"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1"],mimic:["3T"],mirrorcoat:["3L61","4L43","5L43","3S0"],mist:["3L51","4L36","5L36","3S0"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],quash:["5M"],raindance:["3M","3L21","4M","4L15","5M","5L15"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockclimb:["4M"],rocksmash:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],scald:["5M"],secretpower:["3M","4M"],shadowball:["4M","5M"],sheercold:["4S1"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4L57","4T","5L57","5T"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"]}}, - larvitar:{learnset:{ancientpower:["3E","4E","4T","5E"],assurance:["4E","5E"],attract:["3M","4M","5M"],bite:["3L1","4L1","5L1","5D","3S0","5S1"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L14"],crunch:["3L43","4L37","5L41"],curse:["3E","4E","5E"],darkpulse:["4M","4L28","5L32","5D","5T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragondance:["3E","4E","5E","3S0"],earthpower:["4T","5T"],earthquake:["3M","3L50","4M","4L41","5M","5L46"],endure:["3T","4M"],facade:["3M","4M","5M"],focusenergy:["3E","4E","5E"],frustration:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","3L57","4M","4L50","5M","5L55"],irondefense:["4E","5E","5T"],ironhead:["4E","4T","5E","5T"],irontail:["5E","5T"],leer:["3L1","4L1","5L1","5S1"],mimic:["3T"],mudslap:["3T"],naturalgift:["4M"],outrage:["3E","4E","5E","5T","3S0"],payback:["4M","4L32","5M","5L37"],protect:["3M","4M","5M"],pursuit:["3E","4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3L22","3T","4M","4L14","5M","5L19"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandstorm:["3M","3L8","4M","4L5","5M","5L5","3S0","5S1"],scaryface:["3L36","4L19","5L23"],screech:["3L15","4L10","5L10"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snarl:["5M"],snore:["3T","4T","5T"],spite:["4T","5T"],stealthrock:["4M","5E","5D","5T"],stomp:["3E","4E","5E"],stoneedge:["4M","4L46","5M","5L50"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5S1","5T"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],thrash:["3L29","4L23","5L28"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"]}}, - pupitar:{learnset:{ancientpower:["4T"],attract:["3M","4M","5M"],bite:["3L1","4L1","5L1"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L14"],crunch:["3L47","4L41","5L47"],darkpulse:["4M","4L28","5L34","5T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],earthquake:["3M","3L56","4M","4L47","5M","5L54"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","3L65","4M","4L60","5M","5L67"],irondefense:["4T","5T"],ironhead:["4T","5T"],leer:["3L1","4L1","5L1"],mimic:["3T"],mudslap:["3T"],naturalgift:["4M"],payback:["4M","4L34","5M","5L41"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3L22","3T","4M","4L14","5M","5L19"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandstorm:["3M","3L1","3L8","4M","4L1","4L5","5M","5L1","5L5"],scaryface:["3L38","4L19","5L23"],screech:["3L1","3L15","4L1","4L10","5L1","5L10"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snarl:["5M"],snore:["3T","4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","4L54","5M","5L60"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],thrash:["3L29","4L23","5L28"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],irontail:["5T"],outrage:["5T"]}}, - tyranitar:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M"],avalanche:["4M"],bite:["3L1","4L1","5L1"],blizzard:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L14"],counter:["3T"],crunch:["3L47","4L41","5L47","3S0","5S1","5S2"],cut:["3M","4M","5M"],darkpulse:["4M","4L28","5L34","5T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonclaw:["3M","4M","5M"],dragonpulse:["4M","5T"],dragontail:["5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L61","4M","4L47","5M","5L54","3S0","5S2"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M","5S1"],firefang:["4L1","5L1"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","5L82"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","3L75","4M","4L70","5M","5L73"],icebeam:["3M","4M","5M","5S1"],icefang:["4L1","5L1"],icepunch:["4T","5T"],incinerate:["5M"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],outrage:["4T","5T"],payback:["4M","4L34","5M","5L41","5S2"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["3L22","3T","4M","4L14","5M","5L19"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandstorm:["3M","3L1","3L8","4M","4L1","4L5","5M","5L1","5L5"],scaryface:["3L38","4L19","5L23","3S0"],screech:["3L1","3L15","4L1","4L10","5L1","5L10"],secretpower:["3M","4M"],seismictoss:["3T","5S2"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snarl:["5M"],snore:["3T","4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","4L54","5M","5L63","5S1"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],thrash:["3L29","4L23","5L28","3S0"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderfang:["4L1","5L1"],thunderpunch:["4T","5T"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],waterpulse:["3M","4M"],whirlpool:["4M"],foulplay:["5T"],irondefense:["5T"]}}, - lugia:{learnset:{aerialace:["3M","4M","5M"],aeroblast:["3L77","4L85","4L43","5L43"],aircutter:["4T"],ancientpower:["3L88","4L57","4T","5L57"],aquatail:["4T","5T"],avalanche:["4M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brine:["4M"],bulldoze:["5M"],calmmind:["3M","4M","4L93","5M","5L93"],chargebeam:["4M","5M"],defog:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonpulse:["4M","5T"],dragonrush:["4L15","5L15"],dragontail:["5M"],dreameater:["3T","4M","5M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],extrasensory:["4L65","4L23","5L23"],facade:["3M","4M","5M"],featherdance:["3S2"],flash:["4M","5M"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],futuresight:["3L99","4L79","5L79"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],gust:["3L22","4L15","4L9","5L9"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["3L44","4L29","4L37","5L37","3S0","3S1","3S2"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],lightscreen:["3M","4M","5M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","4L51","4L85","5L85"],nightmare:["3T"],ominouswind:["4T"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychoboost:["3S2"],psychup:["3T","4M","5M"],psyshock:["5M"],punishment:["4L71","4L50","5L50"],raindance:["3M","3L55","4M","4L37","4L29","5M","5L29","3S0","3S1"],recover:["3L33","4L23","4L71","5L71","3S0","3S1","3S2"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],roost:["4M","5T"],round:["5M"],safeguard:["3M","3L11","4M","4L9","4L65","5M","5L65"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],skyattack:["4L99","4T","5L99","5T"],skydrop:["5M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3L66","3T","4L43","4T","3S0","3S1"],tailwind:["4T","5T"],telekinesis:["5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],twister:["4T"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],weatherball:["4L1","5L1"],whirlpool:["4M"],whirlwind:["3L1","4L1","5L1"],zenheadbutt:["4T","5T"],hypervoice:["5T"],wonderroom:["5T"]}}, - hooh:{learnset:{aerialace:["3M","4M","5M"],aircutter:["4T"],ancientpower:["3L88","4L57","4T","5L57"],bravebird:["4L15","5L15"],bulldoze:["5M"],calmmind:["3M","4M","4L93","5M","5L93"],chargebeam:["4M","5M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],extrasensory:["4L65","4L23","5L23"],facade:["3M","4M","5M"],fireblast:["3M","3L44","4M","4L29","4L37","5M","5L37","3S0","3S1"],flamecharge:["5M"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],futuresight:["3L99","4L79","5L79"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],gust:["3L22","4L15","4L9","5L9"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],ironhead:["4T","5T"],lightscreen:["3M","4M","5M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","4L51","4L85","5L85"],nightmare:["3T"],ominouswind:["4T"],overheat:["3M","4M","5M"],pluck:["4M","5M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],punishment:["4L71","4L50","5L50"],raindance:["3M","4M","5M"],recover:["3L33","4L23","4L71","5L71","3S0","3S1"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],roost:["4M","5T"],round:["5M"],sacredfire:["3L77","4L85","4L43","5L43"],safeguard:["3M","3L11","4M","4L9","4L65","5M","5L65"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skyattack:["3T","4L99","4T","5L99","5T"],skydrop:["5M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],steelwing:["3M","4M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","3L55","4M","4L37","4L29","5M","5L29","3S0","3S1"],swagger:["3T","4M","5M"],swift:["3L66","3T","4L43","4T","3S0","3S1"],tailwind:["4T","5T"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],weatherball:["4L1","5L1"],whirlwind:["3L1","4L1","5L1"],willowisp:["4M","5M"],zenheadbutt:["4T","5T"],hypervoice:["5T"]}}, - celebi:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["3L20","4L28","4T","5L28","3S1","3S3"],batonpass:["3L40","4L37","5L37","3S1"],calmmind:["3M","4M","5M"],chargebeam:["4M","5M"],confusion:["3L1","4L1","5L1","3S0"],cut:["3M","4M","5M"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],earthpower:["4T","5T"],echoedvoice:["5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],futuresight:["3L30","4L64","5L64","3S1","3S3"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],healbell:["3L1","4L1","4T","5L1","3S0","3S2","3S3","5T"],healblock:["4L55","5L55"],healingwish:["4L73","5L73","4S4"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],lastresort:["4T","5T"],leafstorm:["4L82","5L82","4S4"],leechseed:["3L1","4L1","5L1","3S2"],lightscreen:["3M","4M","5M"],magicalleaf:["4L19","5L19"],magiccoat:["4T","5T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4S4"],naturalgift:["4M","4L46","5L46"],nightmare:["3T"],perishsong:["3L50","4L91","5L91","3S1"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],recover:["3L1","4L1","5L1","3S0","3S2","4S4"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","3L10","4M","4L10","5M","5L10","3S0","3S2","3S3"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],silverwind:["4M"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stealthrock:["4M","5T"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],thunderwave:["4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"],waterpulse:["3M","4M"],worryseed:["4T","5T"],zenheadbutt:["4T","5T"],magicroom:["5T"],wonderroom:["5T"]}}, - treecko:{learnset:{absorb:["3L6","4L6","5L6","3S0","5S1"],acrobatics:["5M"],aerialace:["3M","4M","5M"],agility:["3L31","4L31","5L31"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulletseed:["3M","4M","5E"],captivate:["4M"],counter:["3T"],crunch:["3E","4E","5E"],crushclaw:["3E","4E","5E"],cut:["3M","4M","5M"],detect:["3L41","4L41","5L41"],dig:["3M","4M","5M"],doubleedge:["3T"],doublekick:["4E","5E"],doubleteam:["3M","4M","5M"],dragonbreath:["3E","4E","5E"],drainpunch:["4M","5T"],dynamicpunch:["3T"],endeavor:["3E","4E","4T","5E","5T"],endure:["3T","4M"],energyball:["4M","4L51","5M","5L51"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigadrain:["3M","3L46","4M","4L46","5L46","5T"],grassknot:["4M","5M"],grasspledge:["5T"],grasswhistle:["4E","5E"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],irontail:["3M","4M","5T"],leafstorm:["4E","5E"],leechseed:["3E","4E","5E"],leer:["3L1","4L1","5L1","3S0","5S1"],lowkick:["4T","5T"],magicalleaf:["4E","5E"],megadrain:["3L26","4L26","5L26"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3E","4E","5E"],naturalgift:["4M","5E"],pound:["3L1","4L1","5L1","3S0","5S1"],protect:["3M","4M","5M"],pursuit:["3L16","4L16","5L16"],quickattack:["3L11","4L11","5L11"],razorwind:["4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],screech:["3L21","4L21","5L21"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],slam:["3L36","4L36","5L36"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],synthesis:["4E","4T","5E","5T"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],worryseed:["4E","4T","5E","5T"]}}, - grovyle:{learnset:{absorb:["3L1","3L6","4L1","4L6","5L1","5L6"],acrobatics:["5M"],aerialace:["3M","4M","5M"],agility:["3L35","4L35","5L35"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M"],detect:["3L47","4L47","5L47"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],endeavor:["4T","5T"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],falseswipe:["3L53","4M","4L53","5M","5L53"],flash:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3L16","3T","4L16","4T","5L16"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M"],grasspledge:["5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],irontail:["3M","4M","5T"],leafblade:["3L29","4L29","5L29"],leafstorm:["4L59","5L59"],leer:["3L1","4L1","5L1"],lowkick:["4T","5T"],lowsweep:["5M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],pound:["3L1","4L1","5L1"],protect:["3M","4M","5M"],pursuit:["3L17","4L17","5L17"],quickattack:["3L1","3L11","4L1","4L11","5L1","5L11"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],screech:["3L23","4L23","5L23"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],slam:["3L41","4L41","5L41"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],worryseed:["4T","5T"],xscissor:["4M","5M"]}}, - sceptile:{learnset:{absorb:["3L1","3L6","4L1","4L6","5L1","5L6"],acrobatics:["5M"],aerialace:["3M","4M","5M"],agility:["3L35","4L35","5L35"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M"],detect:["3L51","4L51","5L51"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonclaw:["3M","4M","5M"],dragonpulse:["4M","5S0","5T"],drainpunch:["4M","5T"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endeavor:["4T","5T"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],falseswipe:["3L59","4M","4L59","5M","5L59"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M","5S0"],focuspunch:["3M","4M"],frenzyplant:["4T","5T"],frustration:["3M","4M","5M"],furycutter:["3L16","3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],grasspledge:["5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],irontail:["3M","4M","5T"],leafblade:["3L29","4L29","5L29"],leafstorm:["4L67","5L67","5S0"],leer:["3L1","4L1","5L1"],lowkick:["4T","5T"],lowsweep:["5M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4L1","5L1"],outrage:["4T","5T"],pound:["3L1","4L1","5L1"],protect:["3M","4M","5M"],pursuit:["3L17","4L17","5L17"],quickattack:["3L1","3L11","4L1","4L11","5L1","5L11"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockclimb:["4M"],rockslide:["4M","5M","5S0"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],screech:["3L23","4L23","5L23"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],slam:["3L43","4L43","5L43"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],worryseed:["4T","5T"],xscissor:["4M","4L16","5M","5L16"]}}, - torchic:{learnset:{aerialace:["3M","4M","5M"],agility:["4E","5E"],attract:["3M","4M","5M"],batonpass:["4E","5E"],bodyslam:["3T"],bounce:["4T","5T"],captivate:["4M"],counter:["3E","3T","4E","5E"],crushclaw:["4E","5E"],curse:["5E"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],ember:["3L10","4L10","5L10","3S0","5S1"],endure:["3E","3T","4E","4M","5E"],facade:["3M","4M","5M"],featherdance:["4E","5E"],feint:["4E","5E"],fireblast:["3M","4M","5M"],firepledge:["5T"],firespin:["3L25","4L25","5L25"],flameburst:["5E"],flamecharge:["5M"],flamethrower:["3M","3L43","4M","4L43","5M","5L43"],focusenergy:["3L7","4L7","5L7","3S0","5S1"],frustration:["3M","4M","5M"],growl:["3L1","4L1","5L1","3S0","5S1"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],incinerate:["5M"],lastresort:["4E","4T","5E","5T"],lowkick:["5E","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mirrormove:["3L37","4L37","5L37"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4E","5E"],overheat:["3M","4M","5M"],peck:["3L16","4L16","5L16"],protect:["3M","4M","5M"],quickattack:["3L28","4L28","5L28"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],reversal:["3E","4E","5E"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandattack:["3L19","4L19","5L19"],scratch:["3L1","4L1","5L1","3S0","5S1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],slash:["3L34","4L34","5L34"],sleeptalk:["3T","4M","5T"],smellingsalt:["3E","4E","5E"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3E","3T","4E","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],toxic:["3M","4M","5M"],willowisp:["4M","5M"]}}, - combusken:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bodyslam:["3T"],bounce:["4T","5T"],brickbreak:["3M","4M","5M"],bulkup:["3M","3L28","4M","4L28","5M","5L28"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],doubleedge:["3T"],doublekick:["3L16","4L16","5L16"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],ember:["3L1","3L13","4L1","4L13","5L1","5L13"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepledge:["5T"],firepunch:["3T","4T","5T"],flamecharge:["5M"],flamethrower:["3M","4M","5M"],flareblitz:["4L54","5L54"],fling:["4M","5M"],focusblast:["4M","5M"],focusenergy:["3L1","3L7","4L1","4L7","5L1","5L7"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],growl:["3L1","4L1","5L1"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],incinerate:["5M"],lastresort:["4T","5T"],lowkick:["4T","5T"],lowsweep:["5M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mirrormove:["3L43","4L43","5L43"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M"],peck:["3L17","4L17","5L17"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],quickattack:["3L32","4L32","5L32"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandattack:["3L21","4L21","5L21"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],skyuppercut:["3L50","4L50","5L50"],slash:["3L39","4L39","5L39"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],vacuumwave:["4T"],willowisp:["4M","5M"],workup:["5M"],dualchop:["5T"]}}, - blaziken:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],blastburn:["4T","5T"],blazekick:["3L36","4L36","5L36","3S0"],bodyslam:["3T"],bounce:["4T","5T"],bravebird:["4L49","5L49"],brickbreak:["3M","4M","5M"],bulkup:["3M","3L28","4M","4L28","5M","5L28"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],doubleedge:["3T"],doublekick:["3L16","4L16","5L16"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],ember:["3L1","3L13","4L1","4L13","5L1","5L13"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepledge:["5T"],firepunch:["3L1","3T","4L1","4T","5L1","5T","6L0"],flamecharge:["5M"],flamethrower:["3M","4M","5M"],flareblitz:["4L66","5L66","5S1","6L0"],fling:["4M","5M"],focusblast:["4M","5M"],focusenergy:["3L1","3L7","4L1","4L7","5L1","5L7"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hijumpkick:["5L1","5S1","6L1"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],knockoff:["4T","5T"],lastresort:["4T","5T"],lowkick:["4T","5T"],lowsweep:["5M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mirrormove:["3L49","3S0"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M"],peck:["3L17","4L17","5L17"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],quickattack:["3L32","4L32","5L32"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],sandattack:["3L21","4L21","5L21"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],skyuppercut:["3L59","4L59","5L59","3S0"],slash:["3L42","4L42","5L42","3S0"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["4M","5M"],stoneedge:["4M","5M","5S1"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],thunderpunch:["3T","4T","5S1","5T"],toxic:["3M","4M","5M"],vacuumwave:["4T"],willowisp:["4M","5M"],workup:["5M"],dualchop:["5T"],poweruppunch:["6L0"]}}, - mudkip:{learnset:{ancientpower:["4E","4T","5E"],aquatail:["4T","5T"],attract:["3M","4M","5M"],avalanche:["5E"],bide:["3L15","4L15","5L15"],bite:["4E","5E"],blizzard:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M"],counter:["4E","5E"],curse:["3E","4E","5E"],defensecurl:["3T"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T","4E","5E"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endeavor:["3L46","4L46","4T","5L46","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],foresight:["3L19","4L19","5L19"],frustration:["3M","4M","5M"],growl:["3L1","4L1","5L1","3S0","5S1"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["3L42","4L42","5L42"],iceball:["3E","4E","5E"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lowkick:["4T","5T"],mimic:["3T"],mirrorcoat:["3E","4E","5E"],mudbomb:["4E","5E"],mudslap:["3L6","3T","4L6","4T","5L6","3S0","5S1"],mudsport:["3L24","4L24","5L24"],naturalgift:["4M"],protect:["3M","3L37","4M","4L37","5M","5L37"],raindance:["3M","4M","5M"],refresh:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],sludge:["4E","5E"],sludgewave:["5M"],snore:["3T","4T","5T"],stomp:["3E","4E","5E"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1","3S0","5S1"],takedown:["3L28","4L28","5L28"],toxic:["3M","4M","5M"],uproar:["3E","4E","5E"],waterfall:["3M","4M","5M"],watergun:["3L10","4L10","5L10","3S0","5S1"],waterpledge:["5T"],waterpulse:["3M","4M"],whirlpool:["3L33","4E","4L33","4M","5E","5L33"],wideguard:["5E"],yawn:["4E","5E"],earthpower:["5T"]}}, - marshtomp:{learnset:{ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M"],bide:["3L15","4L15","5L15"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["4M","5M"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L46","4M","4L46","5M","5L46"],echoedvoice:["5M"],endeavor:["3L53","4L53","4T","5L53","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],fling:["4M","5M"],foresight:["3L20","4L20","5L20"],frustration:["3M","4M","5M"],growl:["3L1","4L1","5L1"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudbomb:["4L25","5L25"],muddywater:["3L37","4L37","5L37"],mudshot:["3L16","4L16","5L16"],mudslap:["3L1","3L6","3T","4L1","4L6","4T","5L1","5L6"],mudsport:["3L25"],naturalgift:["4M"],protect:["3M","3L42","4M","4L42","5M","5L42"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],sludgewave:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],takedown:["3L31","4L31","5L31"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L1","3L10","4L1","4L10","5L1","5L10"],waterpledge:["5T"],waterpulse:["3M","4M"],whirlpool:["4M"]}}, - swampert:{learnset:{ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M"],avalanche:["4M"],bide:["3L15","4L15","5L15"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L52","4M","4L52","5M","5L52","5S0"],echoedvoice:["5M"],endeavor:["3L61","4L61","4T","5L61","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],foresight:["3L20","4L20","5L20"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1"],hail:["3M","4M","5M"],hammerarm:["4L69","5L69","5S0"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydrocannon:["4T","5T"],hydropump:["5S0"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M","5S0"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudbomb:["4L25","5L25"],muddywater:["3L39","4L39","5L39"],mudshot:["3L16","4L16","5L16"],mudslap:["3L1","3L6","3T","4L1","4L6","4T","5L1","5L6"],mudsport:["3L25"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","3L46","4M","4L46","5M","5L46"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],sludgewave:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],takedown:["3L31","4L31","5L31"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L1","3L10","4L1","4L10","5L1","5L10"],waterpledge:["5T"],waterpulse:["3M","4M"],whirlpool:["4M"]}}, - poochyena:{learnset:{assurance:["4L29","5L29"],astonish:["3E","4E","5E"],attract:["3M","4M","5M"],bite:["3L13","4L13","5L13"],bodyslam:["3T"],captivate:["4M"],counter:["3T"],covet:["3E","4E","5E","5T"],crunch:["3L41","4L53","5L53"],darkpulse:["4M","5D","5T"],dig:["3M","4M","5M","3S0"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],embargo:["4M","4L41","5M","5L41"],endure:["3T","4M"],facade:["3M","4M","5M"],firefang:["4E","5E"],frustration:["3M","4M","5M"],headbutt:["4T"],healbell:["3S0"],hiddenpower:["3M","4M","5M"],howl:["3L5","4L5","5L5","5D","3S0"],icefang:["4E","5E"],incinerate:["5M"],irontail:["3M","4M","5T"],leer:["3E","4E","5E"],mefirst:["4E","5E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],odorsleuth:["3L17","4L17","5L17"],payback:["4M","5M"],poisonfang:["3E","4E","5E","5D","3S0"],protect:["3M","4M","5M"],psychup:["3T"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","3L21","4M","4L21","5M","5L21"],rocksmash:["3M","4M","5M"],round:["5M"],sandattack:["3L9","4L9","5L9"],scaryface:["3L29","4L33","5L33"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],sleeptalk:["3T","4M","5E","5T"],snarl:["5M"],snatch:["3M","4M","5E","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M"],suckerpunch:["4E","4L49","4T","5E","5L49"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],swagger:["3L25","3T","4M","4L25","5M","5L25"],tackle:["3L1","4L1","5L1"],takedown:["3L33","4L45","5L45"],taunt:["3M","3L37","4M","4L37","5M","5L37"],thief:["3M","3L45","4M","5M"],thunderfang:["4E","5E"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],yawn:["3E","4E","5E"],foulplay:["5T"],hypervoice:["5T"]}}, - mightyena:{learnset:{assurance:["4L32","5L32"],attract:["3M","4M","5M"],bite:["3L1","3L13","4L1","4L13","5L1","5L13"],bodyslam:["3T"],captivate:["4M"],counter:["3T"],crunch:["3L47"],darkpulse:["4M","5T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],embargo:["4M","4L47","5M","5L47"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],howl:["3L1","3L5","4L1","4L5","5L1","5L5"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],odorsleuth:["3L17","4L17","5L17"],payback:["4M","5M"],protect:["3M","4M","5M"],psychup:["3T"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","3L22","4M","4L22","5M","5L22"],rocksmash:["3M","4M","5M"],round:["5M"],sandattack:["3L1","3L9","4L1","4L9","5L1","5L9"],scaryface:["3L32","4L37","5L37"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4L62","4T","5L62"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],swagger:["3L27","3T","4M","4L27","5M","5L27"],tackle:["3L1","4L1","5L1"],takedown:["3L37","4L52","5L52"],taunt:["3M","3L42","4M","4L42","5M","5L42"],thief:["3M","3L52","4M","4L57","5M","5L57"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],covet:["5T"],foulplay:["5T"],hypervoice:["5T"]}}, - zigzagoon:{learnset:{attract:["3M","4M","5M"],bellydrum:["3L41","4L41","5L45"],bestow:["5L33"],blizzard:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M"],chargebeam:["4M","5M"],charm:["3E","4E","5E"],covet:["3L29","4L29","5L29","5T"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],extremespeed:["3S1"],facade:["3M","4M","5M"],flail:["3L33","4L33","5L37"],fling:["4M","4L45","5M","5L49"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],grassknot:["4M","5M"],growl:["3L1","4L1","5L1","3S0","3S1"],gunkshot:["4T","5T"],headbutt:["3L9","4L9","4T","5L9"],helpinghand:["4E","4T","5E","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4T","5D","5T"],mimic:["3T"],mudslap:["3T","4E","4T","5E"],mudsport:["3L21","4L21","5L21"],naturalgift:["4M"],odorsleuth:["3L17","4L17","5L17"],pinmissile:["3L25","4L25","5L25"],protect:["3M","4M","5M"],pursuit:["3E","4E","5E"],raindance:["3M","4M","5M"],rest:["3M","3L37","4M","4L37","5M","5L41"],retaliate:["5M"],"return":["3M","4M","5M"],rockclimb:["5E"],rocksmash:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],sandattack:["3L13","4L13","5L13"],secretpower:["3M","4M"],seedbomb:["4T","5T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],simplebeam:["5E"],sleeptalk:["3T","4M","5E","5T"],snore:["3T","4T","5T"],substitute:["3E","3T","4E","4M","5M"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5D","3S0","3S1"],tailwhip:["3L5","4L5","5L5","3S0"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],tickle:["3E","4E","5E"],toxic:["3M","4M","5M"],trick:["3E","4E","4T","5E","5D","5T"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"],hypervoice:["5T"]}}, - linoone:{learnset:{attract:["3M","4M","5M"],bellydrum:["3L53","4L53","5L59"],bestow:["5L41"],blizzard:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M"],chargebeam:["4M","5M"],covet:["3L35","4L35","5L35","5T"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fling:["4M","4L59","5M","5L65"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],furyswipes:["3L29","4L29","5L29"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growl:["3L1","4L1","5L1"],gunkshot:["4T","5T"],headbutt:["3L1","3L9","4L1","4L9","4T","5L1","5L9"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3L23","4L23","5L23"],naturalgift:["4M"],odorsleuth:["3L17","4L17","5L17"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","3L47","4M","4L47","5M","5L53"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],sandattack:["3L13","4L13","5L13"],secretpower:["3M","4M"],seedbomb:["4T","5T"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],slash:["3L41","4L41","5L47"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],switcheroo:["4L1","5L1"],tackle:["3L1","4L1","5L1"],tailwhip:["3L1","3L5","4L1","4L5","5L1","5L5"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"],hypervoice:["5T"]}}, - wurmple:{learnset:{bugbite:["4L15","4T","5L15","5T","5D"],poisonsting:["3L5","4L5","5L5","5D"],snore:["4T","5T","5D"],stringshot:["3L1","4L1","4T","5L1"],tackle:["3L1","4L1","5L1"],electroweb:["5T"]}}, - silcoon:{learnset:{bugbite:["4T","5T"],harden:["3L1","3L7","4L1","4L7","5L1","5L7"],irondefense:["4T","5T"],stringshot:["4T"],electroweb:["5T"]}}, - beautifly:{learnset:{absorb:["3L1","3L10","4L1","4L10","5L1","5L10"],acrobatics:["5M"],aerialace:["3M","4M","5M"],aircutter:["4T"],attract:["3M","3L31","4M","4L31","5M","5L31"],bugbite:["4T","5T"],bugbuzz:["4L41","5L41"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","3L38","4M","4L38","5L38","5T"],gigaimpact:["4M","5M"],gust:["3L13","4L13","5L13"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],megadrain:["3L24","4L24","5L24"],mimic:["3T"],morningsun:["3L20","4L20","5L20"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],quiverdance:["5L45"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],silverwind:["3L34","4M","4L34","5L34"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],stunspore:["3L17","4L17","5L17"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uturn:["4M","5M"],venoshock:["5M"],whirlwind:["3L27","4L27","5L27"],electroweb:["5T"]}}, - cascoon:{learnset:{bugbite:["4T","5T"],harden:["3L1","3L7","4L1","4L7","5L1","5L7"],irondefense:["4T","5T"],stringshot:["4T"],electroweb:["5T"]}}, - dustox:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M"],aircutter:["4T"],attract:["3M","4M","5M"],bugbite:["4T","5T"],bugbuzz:["4L41","5L41"],captivate:["4M"],confusion:["3L1","3L10","4L1","4L10","5L1","5L10"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],gust:["3L13","4L13","5L13"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],lightscreen:["3M","3L31","4M","4L31","5M","5L31"],mimic:["3T"],moonlight:["3L20","4L20","5L20"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","3L17","4M","4L17","5M","5L17"],psybeam:["3L24","4L24","5L24"],psychic:["3M","4M","5M"],quiverdance:["5L45"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5T"],round:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],silverwind:["3L34","4M","4L34","5L34"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],thief:["3M","4M","5M"],toxic:["3M","3L38","4M","4L38","5M","5L38"],twister:["4T"],uturn:["4M","5M"],venoshock:["5M"],whirlwind:["3L27","4L27","5L27"],electroweb:["5T"]}}, - lotad:{learnset:{absorb:["3L7","4L5","5L5","5D","3S0"],astonish:["3L1","4L1","5L1","3S0"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bubblebeam:["4L25","5L25"],bulletseed:["3M","4M"],captivate:["4M"],counter:["4E","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],energyball:["4M","4L43","4L45","5M","5L45"],facade:["3M","4M","5M"],flail:["3E","4E","5E"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5E","5T"],grassknot:["4M","5M"],growl:["3L3","4L3","5L3","3S0"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],leechseed:["3E","4E","5E","5D"],megadrain:["3L43","4L19","5L19"],mimic:["3T"],mist:["3L21","4L11","5L11"],naturalgift:["4M","4L15","5L15"],naturepower:["3L13","4L7","5L7"],protect:["3M","4M","5M"],raindance:["3M","3L31","4M","4L35","4L37","5M","5L37"],razorleaf:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["3E","4E","5E"],swordsdance:["3T","4M","5M"],synthesis:["3E","4E","4T","5E","5T"],teeterdance:["5E"],thief:["3M","4M","5M"],tickle:["4E","5E"],toxic:["3M","4M","5M"],uproar:["4T","5T"],watergun:["3E","4E","5E"],waterpulse:["3M","4M","5D"],whirlpool:["4M"],zenheadbutt:["4L27","4T","4L31","5L31","5T"]}}, - lombre:{learnset:{absorb:["3L7","4L5","5L5"],astonish:["3L1","4L1","5L1"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bubblebeam:["4L25","5L25"],bulletseed:["3M","4M"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],echoedvoice:["5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],fakeout:["3L19","4L11","5L11"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],furyswipes:["3L25","4L15","5L15"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M"],growl:["3L3","4L3","5L3"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hydropump:["3L49","4L43","4L45","5L45"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],naturepower:["3L13","4L7","5L7"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],thief:["3M","3L37","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],uproar:["3L43","4L35","4T","4L37","5L37","5T"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],watersport:["3L31","4L19","5L19"],whirlpool:["4M"],zenheadbutt:["4L27","4T","4L31","5L31","5T"],hypervoice:["5T"]}}, - ludicolo:{learnset:{absorb:["3L1"],astonish:["3L1","4L1","5L1"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],echoedvoice:["5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],fakeout:["5S0"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5S0","5T","5S1"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growl:["3L1","4L1","5L1"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hydropump:["5S0"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M","5S0","5S1"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],megadrain:["4L1","5L1"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],naturepower:["3L1","4L1","5L1"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rocksmash:["3M","4M","5M"],round:["5M"],scald:["5M","5S1"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M","5S1"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],thief:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],uproar:["4T","5T"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],zenheadbutt:["4T","5T"],hypervoice:["5T"]}}, - seedot:{learnset:{amnesia:["3E","4E","5E"],attract:["3M","4M","5M"],beatup:["5E"],bide:["3L1","4L1","5L1","3S0"],bodyslam:["3T"],bulletseed:["3M","4M","5E","3S1","5D"],captivate:["4M"],defensecurl:["3T"],defog:["5E"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],explosion:["3L43","3T","4M","4L43","5M","5L43"],facade:["3M","4M","5M"],falseswipe:["3E","4E","5M"],flash:["3M","4M","5M"],foulplay:["5E","5T","5D"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T","3S1"],grassknot:["4M","5M"],growth:["3L7","4L7","5L7","3S0","5D"],harden:["3L3","4L3","5L3","3S0"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],leechseed:["3E","4E","5E"],mimic:["3T"],nastyplot:["4E","5E"],naturalgift:["4M"],naturepower:["3L13","4L13","5L13"],powerswap:["4E","5E"],protect:["3M","4M","5M"],quickattack:["3E","4E","5E"],razorwind:["3E","4E","5E"],refresh:["3S1"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M","3S1"],seedbomb:["4T","5T"],selfdestruct:["3T"],shadowball:["3M","4M","5M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spite:["4T","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","3L31","4M","4L31","5M","5L31"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],synthesis:["3L21","4L21","4T","5L21","5T"],takedown:["3E","4E","5E"],toxic:["3M","4M","5M"],worryseed:["4E","4T","5E","5T"]}}, - nuzleaf:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],embargo:["4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],explosion:["3T","4M","5M"],extrasensory:["3L49","4L49","5L49"],facade:["3M","4M","5M"],faintattack:["3L31","4L31","5L31"],fakeout:["3L19","4L19","5L19"],falseswipe:["5M"],flash:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M"],growth:["3L7","4L7","5L7"],harden:["3L3","4L3","5L3"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],lowkick:["4T","5T"],lowsweep:["5M"],megakick:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],naturepower:["3L13","4L13","5L13"],payback:["4M","5M"],pound:["3L1","4L1","5L1"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],razorleaf:["4L1","5L1"],razorwind:["3L37","4L37","5L37"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],selfdestruct:["3T"],shadowball:["3M","4M","5M"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spite:["4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3L43","3T","4M","4L43","5M","5L43"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],thief:["3M","4M","5M"],torment:["3M","3L25","4M","4L25","5M","5L25"],toxic:["3M","4M","5M"],worryseed:["4T","5T"],foulplay:["5T"]}}, - shiftry:{learnset:{aerialace:["3M","4M","5M"],aircutter:["4T"],attract:["3M","4M","5M"],bodyslam:["3T"],bounce:["4T","5T"],brickbreak:["3M","4M","5M"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],defensecurl:["3T"],defog:["4M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],embargo:["4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],faintattack:["4L1","5L1"],falseswipe:["5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growth:["3L1"],harden:["3L1"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icywind:["4T","5T"],knockoff:["4T","5T"],leafstorm:["4L49","5L49"],leaftornado:["5L19"],lowkick:["4T","5T"],lowsweep:["5M"],megakick:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L1","5L1"],naturalgift:["4M"],naturepower:["3L1"],ominouswind:["4T"],payback:["4M","5M"],pound:["3L1"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],razorleaf:["4L1","5L1"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],selfdestruct:["3T"],shadowball:["3M","4M","5M"],silverwind:["4M"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spite:["4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],tailwind:["4T","5T"],thief:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],whirlwind:["4L1","5L1"],worryseed:["4T","5T"],xscissor:["4M","5M"],foulplay:["5T"]}}, - taillow:{learnset:{aerialace:["3M","3L34","4M","4L34","5M","5L34"],agility:["3L43","4L43","5L43"],aircutter:["4T"],airslash:["4L53","5L53"],attract:["3M","4M","5M"],bravebird:["4E","5E","5D"],captivate:["4M"],counter:["3T"],defog:["4M","5E"],doubleedge:["3T"],doubleteam:["3M","3L19","4M","4L19","5M","5L19"],echoedvoice:["5M"],endeavor:["3L26","4L26","4T","5L26","5T"],endure:["3T","4M","5D"],facade:["3M","4M","5M"],featherdance:["3S0"],fly:["3M","4M","5M"],focusenergy:["3L4","4L4","5L4","3S0"],frustration:["3M","4M","5M"],growl:["3L1","4L1","5L1","3S0"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],mimic:["3T"],mirrormove:["3E","4E","5E","5D"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],peck:["3L1","4L1","5L1","5D","3S0"],pluck:["4M","5M"],protect:["3M","4M","5M"],pursuit:["3E","4E","5E"],quickattack:["3L8","4L8","5L8"],rage:["3E","4E","5E"],raindance:["3M","4M","5M"],refresh:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5E","5T"],round:["5M"],secretpower:["3M","4M"],skyattack:["3E","3T","4E","5E"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M","5E"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3E","4E","5E"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5D","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uturn:["4M","5M"],whirlwind:["4E","5E"],wingattack:["3L13","4L13","5L13"],workup:["5M"]}}, - swellow:{learnset:{aerialace:["3M","3L38","4M","4L38","5M","5L38"],agility:["3L49","4L49","5L49","3S0"],aircutter:["4T"],airslash:["4L61","5L61"],attract:["3M","4M","5M"],batonpass:["3S0"],captivate:["4M"],counter:["3T"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","3L19","4M","4L19","5M","5L19"],echoedvoice:["5M"],endeavor:["3L28","4L28","4T","5L28","5T"],endure:["3T","4M"],facade:["3M","4M","5M","3S0"],fly:["3M","4M","5M"],focusenergy:["3L1","3L4","4L1","4L4","5L1","5L4"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],peck:["3L1","4L1","5L1"],pluck:["4M","4L1","5M","5L1"],protect:["3M","4M","5M"],quickattack:["3L1","3L8","4L1","4L8","5L1","5L8"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5T"],round:["5M"],secretpower:["3M","4M"],skyattack:["3T","4T","5T","3S0"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uturn:["4M","5M"],wingattack:["3L13","4L13","5L13"],workup:["5M"]}}, - wingull:{learnset:{aerialace:["3M","4M","4L42","5M","5L42"],agility:["3E","3L55","4E","4L37","5E","5L37"],aircutter:["4T","5L33"],airslash:["4L47","5L47"],aquaring:["4E","5E"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],brine:["4M","5E"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],growl:["3L1","4L1","5L1"],gust:["3E","4E","5E"],hail:["3M","4M","5M"],hiddenpower:["3M","4M","5M"],hurricane:["5L50"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],knockoff:["4E","4T","5E","5T"],mimic:["3T"],mist:["3E","3L21","4E","4L16","5E","5L16"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],protect:["3M","4M","5M"],pursuit:["3L43","4L34","5L34"],quickattack:["3L31","4L24","5L24"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","4L29","5E","5L29","5T"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],shockwave:["3M","4M","5D"],skyattack:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],supersonic:["3L7","4L6","5L6"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["3E","4E","4T","5E","5D"],uproar:["4T","5T"],uturn:["4M","5M"],watergun:["3L1","4L1","5L1","5D"],waterpulse:["3M","4M","4L19","5L19"],watersport:["3E","4E","5E"],wingattack:["3L13","4L11","5L11"]}}, - pelipper:{learnset:{aerialace:["3M","4M","5M"],aircutter:["4T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],brine:["4M","5L34"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fling:["4M","4L43","5M","5L43"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1"],gunkshot:["4T","5T"],hail:["3M","4M","5M"],hiddenpower:["3M","4M","5M"],hurricane:["5L63"],hydropump:["3L61","4L57","5L57"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],knockoff:["4T","5T"],mimic:["3T"],mist:["3L21","4L16","5L16"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","4L24","5M","5L24"],pluck:["4M","5M"],protect:["3M","3L25","4M","4L25","5M","5L25"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","4L31","5L31","5T"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],shockwave:["3M","4M"],skyattack:["3T","4T","5T"],skydrop:["5M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],soak:["5L1"],spitup:["3L47","4L38","5L38"],steelwing:["3M","4M"],stockpile:["3L33","4L38","5L38"],substitute:["3T","4M","5M"],supersonic:["3L7","4L6","5L6"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["3L33","4L38","5L38"],swift:["3T","4T"],tailwind:["4L50","4T","5L50","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uproar:["4T","5T"],uturn:["4M","5M"],watergun:["3L1","3L3","4L1","5L1"],waterpulse:["3M","4M","4L19","5L19"],watersport:["3L1","4L1","5L1"],whirlpool:["4M"],wingattack:["3L1","3L13","4L1","4L11","5L1","5L11"]}}, - ralts:{learnset:{allyswitch:["5M"],attract:["3M","4M","5M"],bodyslam:["3T"],calmmind:["3M","3L21","4M","4L23","5M","5L28"],captivate:["4M"],chargebeam:["4M","5M"],charm:["4L39","5L43","3S1"],confuseray:["4E","5E"],confusion:["3L6","4L6","5L6","5D","3S2"],defensecurl:["3T"],destinybond:["3E","4E","5E","5D"],disable:["3E","4E","5E"],doubleedge:["3T"],doubleteam:["3M","3L11","4M","4L10","5M","5L10"],dreameater:["3L46","3T","4M","4L45","5M","5L50"],echoedvoice:["5M"],encore:["4E","5E"],endure:["3T","4M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],futuresight:["3L36","4L34","5L39"],grassknot:["4M","5M"],growl:["3L1","4L1","5L1","3S0","3S1"],grudge:["4E","5E"],headbutt:["4T"],healpulse:["5L23"],helpinghand:["4T","5D","5T"],hiddenpower:["3M","4M","5M"],hypnosis:["3L41","4L43","5L45"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],imprison:["3L31","4L32","5L34"],lightscreen:["3M","4M","5M"],luckychant:["4L17","5L17"],magicalleaf:["4L21","5L21"],magiccoat:["4T","5T"],meanlook:["3E","4E","5E"],memento:["3E","4E","5E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],protect:["3M","4M","5M"],psychic:["3M","3L26","4M","4L28","5M","5L32"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M","3S2"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shadowsneak:["4E","5E"],shockwave:["3M","4M","3S2"],signalbeam:["4T","5T"],sing:["3S2"],skillswap:["3M","4M","5E","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],storedpower:["5L54"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["4T"],synchronoise:["5E"],taunt:["3M","4M","5M"],telekinesis:["5M"],teleport:["3L16","4L12","5L12"],thief:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],willowisp:["3E","4E","5M"],wish:["3S0"],zenheadbutt:["4T","5T"],hypervoice:["5T"],magicroom:["5T"],wonderroom:["5T"]}}, - kirlia:{learnset:{allyswitch:["5M"],attract:["3M","4M","5M"],bodyslam:["3T"],calmmind:["3M","3L21","4M","4L25","5M","5L31"],captivate:["4M"],chargebeam:["4M","5M"],charm:["4L45","5L50"],confusion:["3L1","3L6","4L1","4L6","5L1","5L6"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","3L1","3L11","4M","4L1","4L10","5M","5L1","5L10"],dreameater:["3L54","3T","4M","4L53","5M","5L59"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],futuresight:["3L40","4L39","5L45"],grassknot:["4M","5M"],growl:["3L1","4L1","5L1"],headbutt:["4T"],healpulse:["5L25"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hypnosis:["3L47","4L50","5L53"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],imprison:["3L33","4L36","5L39"],lightscreen:["3M","4M","5M"],luckychant:["4L17","5L17"],magicalleaf:["3L1","4L22","5L22"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],protect:["3M","4M","5M"],psychic:["3M","3L26","4M","4L31","5M","5L36"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],storedpower:["5L64"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["4T"],taunt:["3M","4M","5M"],telekinesis:["5M"],teleport:["3L1","3L16","4L1","4L12","5L1","5L12"],thief:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],willowisp:["5M"],zenheadbutt:["4T","5T"],hypervoice:["5T"],magicroom:["5T"],wonderroom:["5T"]}}, - gardevoir:{learnset:{allyswitch:["5M"],attract:["3M","4M","5M"],bodyslam:["3T"],calmmind:["3M","3L21","4M","4L25","5M","5L33"],captivate:["4M","4L53","5L60"],chargebeam:["4M","5M"],confusion:["3L1","3L6","4L1","4L6","5L1","5L6"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","3L1","3L11","4M","4L1","4L10","5M","5L1","5L10"],dreameater:["3L60","3T","4M","4L65","5M","5L73"],echoedvoice:["5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M","5S0"],frustration:["3M","4M","5M"],futuresight:["3L42","4L45","5L53"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growl:["3L1","4L1","5L1"],headbutt:["4T"],healbell:["4T","5T"],healingwish:["4L1","5L1"],healpulse:["5L25"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],hypnosis:["3L51","4L60","5L65","5S0"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],imprison:["3L33","4L40","5L45"],lightscreen:["3M","4M","5M"],magicalleaf:["4L22","5L22"],magiccoat:["4T","5T"],mimic:["3T"],moonblast:["6L85"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],protect:["3M","4M","5M"],psychic:["3M","3L26","4M","4L33","5M","5L40","5S0"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],storedpower:["5L80"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["4T"],taunt:["3M","4M","5M"],telekinesis:["5M"],teleport:["3L1","3L16","4L1","4L12","5L1","5L12"],thief:["3M","4M","5M"],thunderbolt:["3M","4M","5M","5S0"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],willowisp:["5M"],wish:["4L17","5L17"],zenheadbutt:["4T","5T"],hypervoice:["5T"],magicroom:["5T"],wonderroom:["5T"]}}, - gallade:{learnset:{aerialace:["4M","5M"],allyswitch:["5M"],attract:["4M","5M"],brickbreak:["4M","5M"],bulkup:["4M","5M"],bulldoze:["5M"],calmmind:["4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],closecombat:["4L53","5L59"],confusion:["4L1","4L6","5L1","5L6"],cut:["4M","5M"],doubleteam:["4M","4L1","4L10","5M","5L1","5L10"],drainpunch:["4M","5T"],dreameater:["4M","5M"],earthquake:["4M","5M"],echoedvoice:["5M"],endure:["4M"],facade:["4M","5M"],falseswipe:["4M","4L45","5M","5L50"],feint:["4L39","5L45"],firepunch:["4T","5T"],flash:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],furycutter:["4L17","4T","5L17"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["4T"],healpulse:["5L25"],helpinghand:["4L36","4T","5L39","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icepunch:["4T","5T"],knockoff:["4T","5T"],leafblade:["4L1","5L1"],leer:["4L1","5L1"],lightscreen:["4M","5M"],lowkick:["4T","5T"],lowsweep:["5M"],magiccoat:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4L1","5L1"],painsplit:["4T","5T"],poisonjab:["4M","5M"],protect:["4M","4L50","5M","5L53"],psychic:["4M","5M"],psychocut:["4L31","5L36"],psychup:["4M","5M"],psyshock:["5M"],raindance:["4M","5M"],recycle:["4M","5T"],reflect:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],slash:["4L22","5L22"],sleeptalk:["4M","5T"],snatch:["4M","5T"],snore:["4T","5T"],stoneedge:["4M","5M"],storedpower:["5L64"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],swordsdance:["4M","4L25","5M","5L31"],taunt:["4M","5M"],telekinesis:["5M"],teleport:["4L1","4L12","5L1","5L12"],thief:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4T","5T"],thunderwave:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],vacuumwave:["4T"],willowisp:["5M"],workup:["5M"],xscissor:["4M","5M"],zenheadbutt:["4T","5T"],dualchop:["5T"],hypervoice:["5T"],magicroom:["5T"],wonderroom:["5T"]}}, - surskit:{learnset:{agility:["3L31","4L31","5L31"],aquajet:["5E"],attract:["3M","4M","5M"],batonpass:["4L43","5L43"],blizzard:["3M","4M","5M"],bubble:["3L1","4L1","5L1","5D","3S0","3S1"],bubblebeam:["3L25","4L25","5L25"],bugbite:["4E","4T","5E","5T"],captivate:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5D","5T"],haze:["3L37","4L37","5L37"],hiddenpower:["3M","4M","5M"],hydropump:["3E","4E","5E","5D"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],mimic:["3T"],mindreader:["3E","4E","5E"],mist:["3L37","4L37","5L37"],mudshot:["3E","4E","5E"],mudslap:["4T"],mudsport:["3S0"],naturalgift:["4M"],protect:["3M","4M","5M"],psybeam:["3E","4E","5E"],psychup:["3T","4M","5M"],quickattack:["3L7","4L7","5L7","3S1"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],signalbeam:["4E","4T","5E","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["3L13","4L13","5L13"],swift:["3T","4T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"],watersport:["3L19","4L19","5L19"]}}, - masquerain:{learnset:{aerialace:["3M","4M","5M"],aircutter:["4T"],airslash:["4L47","5L47"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bubble:["3L1","4L1","5L1"],bugbite:["4T","5T"],bugbuzz:["4L61","5L61"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],gust:["3L26","4L22","5L22"],hiddenpower:["3M","4M","5M"],hydropump:["3C"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],mimic:["3T"],mudslap:["4T"],naturalgift:["4M"],nightmare:["3T"],ominouswind:["4L1","4T","5L1"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],quickattack:["3L1","3L7","4L1","4L7","5L1","5L7"],quiverdance:["5L68"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5T"],round:["5M"],scald:["5M"],scaryface:["3L33","4L26","5L26"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],silverwind:["3L47","4M","4L40","5L40"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],stunspore:["3L40","4L33","5L33"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["3L1","3L13","4L1","4L13","5L1","5L13"],swift:["3T","4T"],tailwind:["4T","5T"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uturn:["4M","5M"],waterpulse:["3M","4M"],watersport:["3L1","3L19","4L1","4L19","5L1","5L19"],whirlwind:["3L53","4L54","5L54"]}}, - shroomish:{learnset:{absorb:["3L1","4L1","5L1"],attract:["3M","4M","5M"],bodyslam:["3T"],bulletseed:["3M","4M","5E","5D"],captivate:["4M"],charm:["3E","4E","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["5E","5T"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],faketears:["3E","4E","5E"],falseswipe:["3E","4E","5M","3S0"],flash:["3M","4M","5M"],focuspunch:["5E","5D"],frustration:["3M","4M","5M"],gigadrain:["3M","3L45","4M","4L37","5L37","5T"],grassknot:["4M","5M"],growth:["3L36","4L33","5L33"],headbutt:["3L22","4L21","4T","5L21"],helpinghand:["3E","4E","4T","5E","5T"],hiddenpower:["3M","4M","5M"],leechseed:["3L10","4L13","5L13"],megadrain:["3L16","4L17","5L17","3S0"],mimic:["3T"],naturalgift:["4M","5E"],poisonpowder:["3L28","4L25","5L25"],protect:["3M","4M","5M"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seedbomb:["4E","4L41","4T","5E","5L41","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spore:["3L54","4L45","5L45"],stunspore:["3L7","4L9","5L9","3S0","5D"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3E","3T","4E","4M","5M"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],tackle:["3L4","4L5","5L5"],toxic:["3M","4M","5M"],venoshock:["5M"],wakeupslap:["4E","5E"],worryseed:["4E","4L29","4T","5E","5L29","5T"]}}, - breloom:{learnset:{absorb:["3L1","4L1","5L1"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3L28","3T","4L25","5L25"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dynamicpunch:["3L54","3T","4L45","5L45"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],falseswipe:["5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],forcepalm:["4L29","5L29"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["3L22","4L21","4T","5L21"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],irontail:["3M","4M","5T"],leechseed:["3L1","3L10","4L1","4L13","5L1","5L13"],lowsweep:["5M"],machpunch:["3L23","4L23","5L23"],megadrain:["3L16","4L17","5L17"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mindreader:["3L45","4L37","5L37"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seedbomb:["4L41","4T","5L41","5T"],seismictoss:["3T"],skyuppercut:["3L36","4L33","5L33"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],stunspore:["3L1","3L7","4L1","4L9","5L1","5L9"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],tackle:["3L1","3L4","4L1","4L5","5L1","5L5"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],vacuumwave:["4T"],venoshock:["5M"],workup:["5M"],worryseed:["4T","5T"]}}, - slakoth:{learnset:{aerialace:["3M","4M","5M"],afteryou:["5E","5T"],amnesia:["3L25","4L25","5L25"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3E","3T","4E","5E"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],captivate:["4M"],chipaway:["5L37"],counter:["3L37","3T","4L37","5L43"],covet:["3L31","4L31","5L31","5T"],crushclaw:["3E","4E","5E"],curse:["3E","4E","5E"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],encore:["3L7","4L7","5L7"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L19","4L19","5L19"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flail:["3L43","4L43","5L49"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gunkshot:["4T","5T"],hammerarm:["4E","5E"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4E","5E","5D"],protect:["3M","4M","5M"],pursuit:["3E","4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],round:["5M"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],slackoff:["3L13","4L13","5L13"],slash:["3E","4E","5E"],sleeptalk:["3E","3T","4E","4M","5E","5T"],snore:["3E","3T","4E","4T","5E","5T"],solarbeam:["3M","4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T","5D"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],tickle:["5E"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"],workup:["5M"],yawn:["3L1","4L1","5L1","5D"]}}, - vigoroth:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L43"],counter:["3L37","3T","4L37","5L37"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],encore:["3L1","3L7","4L1","4L7","5L1","5L7"],endure:["3L25","3T","4M","4L25","5L25"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focusenergy:["3L1","4L1","5L1"],focuspunch:["3M","3L43","4M","4L43","5L49"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],furyswipes:["3L19","4L19","5L19"],gunkshot:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],lowkick:["4T","5T"],lowsweep:["5M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],reversal:["3L49","4L49","5L55"],roar:["3M","4M","5M"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],round:["5M"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],slash:["3L31","4L31","5L31"],sleeptalk:["3T","4M","5T"],snore:["3T"],solarbeam:["3M","4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],uproar:["3L1","3L13","4L1","4L13","4T","5L1","5L13","5T"],waterpulse:["3M","4M"],workup:["5M"],covet:["5T"],afteryou:["5T"]}}, - slaking:{learnset:{aerialace:["3M","4M","5M","4S0"],amnesia:["3L25","4L25","5L25"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L37"],counter:["3L37","3T","4L37","5L43"],covet:["3L31","4L31","5L31","5T"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],encore:["3L1","3L7","4L1","4L7","5L1","5L7"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L19","4L19","5L19"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flail:["3L43","4L43","5L49"],flamethrower:["3M","4M","5M"],fling:["4M","4L49","5M","5L55"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","4S0"],gunkshot:["4T","5T"],hammerarm:["4L61","5L67"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],lowkick:["4T","5T"],lowsweep:["5M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],punishment:["4L55","5L61"],quash:["5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M","4S0"],roar:["3M","4M","5M"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],round:["5M"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M","4S0"],shockwave:["3M","4M"],slackoff:["3L1","3L13","4L1","4L13","5L1","5L13"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3L36","3T","4M","4L36","5M","5L36"],taunt:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"],workup:["5M"],yawn:["3L1","4L1","5L1"],afteryou:["5T"]}}, - nincada:{learnset:{aerialace:["3M","4M","5M"],bugbite:["4E","4T","5E","5T"],bugbuzz:["4E","5E"],cut:["3M","4M","5M"],dig:["3M","3L45","4M","4L45","5M","5L45"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3E","3T","4E","4M","5E","5D"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E"],falseswipe:["3L25","4M","4L25","5M","5L25"],finalgambit:["5E"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],furyswipes:["3L14","4L14","5L14"],gigadrain:["3M","4M","5T"],gust:["3E","4E","5E"],harden:["3L1","4L1","5L1"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],leechlife:["3L5","4L5","5L5","5D"],metalclaw:["3L38","4L38","5L38"],mimic:["3T"],mindreader:["3L19","4L19","5L19"],mudslap:["3L31","3T","4L31","4T","5L31"],naturalgift:["4M"],nightslash:["4E","5E","5D"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],sandattack:["3L9","4L9","5L9"],sandstorm:["3M","4M","5M"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],silverwind:["3E","4E","5E"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spite:["4T","5T"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],toxic:["3M","4M","5M"],xscissor:["4M","5M"]}}, - ninjask:{learnset:{aerialace:["3M","4M","5M"],agility:["3L38","4L38","5L38"],aircutter:["4T"],attract:["3M","4M","5M"],batonpass:["3L45","4L45","5L45"],bugbite:["4L1","4T","5L1","5T"],captivate:["4M"],cut:["3M","4M","5M"],defog:["4M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","3L20","4M","4L20","5M","5L20"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3L20","3T","4L20","4T","5L20"],furyswipes:["3L14","4L14","5L14"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],harden:["3L1","4L1","5L1"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],leechlife:["3L1","3L5","4L1","4L5","5L1","5L5"],mimic:["3T"],mindreader:["3L19","4L19","5L19"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5T"],round:["5M"],sandattack:["3L1","3L9","4L1","4L9","5L1","5L9"],sandstorm:["3M","4M","5M"],scratch:["3L1","4L1","5L1"],screech:["3L20","4L20","5L20"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],silverwind:["4M"],slash:["3L31","4L31","5L31"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spite:["4T","5T"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3L25","3T","4M","4L25","5M","5L25"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"],xscissor:["4M","4L52","5M","5L52"]}}, - shedinja:{learnset:{aerialace:["3M","4M","5M"],agility:["3S4"],batonpass:["3S5"],bugbite:["4T","5T"],confuseray:["3L31","4L31","5L31","3S0"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","3S1","5M"],dreameater:["3T","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T","3S1"],furyswipes:["3L14","4L14","5L14"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grudge:["3L45","4L45","5L45","3S0"],harden:["3L1","4L1","5L1"],healblock:["4L52","5L52"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],leechlife:["3L5","4L5","5L5"],mimic:["3T"],mindreader:["3L19","4L19","5L19"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],sandattack:["3L9","4L9","5L9"],sandstorm:["3M","4M","5M"],scratch:["3L1","4L1","5L1"],screech:["3S1"],secretpower:["3M","4M"],shadowball:["3M","3L38","4M","4L59","5M","5L59","3S0"],shadowclaw:["4M","5M"],shadowsneak:["4L38","5L38"],slash:["3S3"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spite:["3L25","4L25","4T","5L25","3S0","5T"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3S2"],telekinesis:["5M"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],willowisp:["4M","5M"],xscissor:["4M","4S6","5M"]}}, - whismur:{learnset:{astonish:["3L11","4L11","5L11"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M"],circlethrow:["5E"],counter:["3T"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],endeavor:["4E","5E","5T","5D"],endure:["3T","4M"],extrasensory:["3E","4E","5E"],facade:["3M","4M","5M"],faketears:["5E"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],hammerarm:["4E","5E"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],howl:["3L15","4L15","5L15"],hypervoice:["3L45","4L45","5L51","5T"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],pound:["3L1","4L1","5L1","3S0"],protect:["3M","4M","5M"],psychup:["3T"],raindance:["3M","4M","5M"],rest:["3M","3L41","4M","4L41","5M","5L45"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","3L35","4M","4L35","5M","5L35"],rollout:["3T","4T"],round:["5M"],screech:["3L31","4L31","5L31"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sleeptalk:["3L41","3T","4M","4L41","5L45","5T"],smellingsalt:["3E","4E","5E"],smokescreen:["4E","5E"],snore:["3E","3T","4E","4T","5E","5T"],solarbeam:["3M","4M","5M"],stomp:["3L25","4L25","5L25"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3L21","4L21","5L21"],swagger:["3E","3T","4E","4M","5M"],synchronoise:["5L41"],takedown:["3E","4E","5E"],teeterdance:["3S0"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],uproar:["3L5","4L5","4T","5L5","3S0","5T","5D"],waterpulse:["3M","4M"],workup:["5M"],zenheadbutt:["4T","5T","5D"]}}, - loudred:{learnset:{astonish:["3L1","3L11","4L1","4L11","5L1","5L11"],attract:["3M","4M","5M"],bite:["4L20","5L20"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],howl:["3L1","3L15","4L1","4L15","5L1","5L15"],hypervoice:["3L57","4L57","5L65","5T"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M"],pound:["3L1","4L1","5L1"],protect:["3M","4M","5M"],psychup:["3T"],raindance:["3M","4M","5M"],rest:["3M","3L51","4M","4L51","5M","5L57"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","3L43","4M","4L43","5M","5L43"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],rollout:["3T","4T"],round:["5M"],screech:["3L37","4L37","5L37"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sleeptalk:["3L51","3T","4M","4L51","5L57","5T"],smackdown:["5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stomp:["3L29","4L29","5L29"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3L23","4L23","5L23"],swagger:["3T","4M","5M"],synchronoise:["5L51"],taunt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["3L1","3L5","4L1","4L5","4T","5L1","5L5","5T"],waterpulse:["3M","4M"],workup:["5M"],zenheadbutt:["4T","5T"],endeavor:["5T"]}}, - exploud:{learnset:{astonish:["3L1","3L11","4L1","4L11","5L1","5L11"],attract:["3M","4M","5M"],avalanche:["4M"],bite:["4L20","5L20"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],crunch:["4L40","5L40"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firefang:["4L1","5L1"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],howl:["3L1","3L15","4L1","4L15","5L1","5L15"],hyperbeam:["3M","3L40","4M","4L71","5M","5L79","3S1"],hypervoice:["3L63","4L63","5L71","3S0","5T"],icebeam:["3M","4M","5M"],icefang:["4L1","5L1"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],overheat:["3M","4M","5M"],pound:["3L1","4L1","5L1"],protect:["3M","4M","5M"],psychup:["3T"],raindance:["3M","4M","5M"],rest:["3M","3L55","4M","4L55","5M","5L55","3S0"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","3L45","4M","4L45","5M","5L45","3S0","3S1"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],rollout:["3T","4T"],round:["5M"],screech:["3L37","4L37","5L37","3S1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sleeptalk:["3L55","3T","4M","4L55","5L63","3S0","5T"],smackdown:["5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stomp:["3L29","4L29","5L29","3S1"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["3L23","4L23","5L23"],surf:["4M","5M"],swagger:["3T","4M","5M"],synchronoise:["5L55"],taunt:["3M","4M","5M"],thunderfang:["4L1","5L1"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["3L1","3L5","4L1","4L5","4T","5L1","5L5","5T"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"],zenheadbutt:["4T","5T"],endeavor:["5T"]}}, - makuhita:{learnset:{armthrust:["3L10","4L7","5L7","5D","3S0"],attract:["3M","4M","5M"],bellydrum:["3L37","4L25","5L25"],bodyslam:["3T"],brickbreak:["3M","4M","5M","3S0"],bulkup:["3M","4M","5M"],bulldoze:["5M"],bulletpunch:["4E","5E"],captivate:["4M"],chipaway:["5E"],closecombat:["4L40","5L40"],counter:["3E","3T","4E","5E"],crosschop:["3E","4E","5E"],detect:["3E","4E","5E"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3E","3T","4E","5E"],earthquake:["3M","4M","5M"],endure:["3L40","3T","4M","4L37","5L37"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E"],fakeout:["3L19","4L13","5L13"],feint:["4E","5E"],firepunch:["3T","4T","5T"],fling:["4M","5M"],focusblast:["4M","5M"],focusenergy:["3L1","4L1","5L1"],focuspunch:["3M","4M","5E"],forcepalm:["4L28","5L28"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],headbutt:["4T"],heavyslam:["5L46"],helpinghand:["3E","4E","4T","5E","5D","5T"],hiddenpower:["3M","4M","5M"],icepunch:["3T","4T","5D","5T"],knockoff:["3L28","4L19","4T","5L19","5T"],lowkick:["4T","5T"],lowsweep:["5M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],refresh:["3S0"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],revenge:["3E","4E","5E"],reversal:["3L49","4L43","5L43"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M","3S0"],roleplay:["4T","5T"],round:["5M"],sandattack:["3L4","4L4","5L4"],secretpower:["3M","4M"],seismictoss:["3L46","3T","4L31","5L31"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],smellingsalt:["3L31","4L22","5L22"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],vacuumwave:["4T"],vitalthrow:["3L13","4L10","5L10"],wakeupslap:["4E","4L34","5E","5L34"],whirlpool:["4M"],whirlwind:["3L22","4L16","5L16"],wideguard:["5E"],workup:["5M"]}}, - hariyama:{learnset:{armthrust:["3L1","3L10","4L1","4L7","5L1","5L7"],attract:["3M","4M","5M"],bellydrum:["3L40","4L27","5L27"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],brine:["4M","4L1","5L1"],bulkup:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],closecombat:["4L52","5L52"],counter:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endure:["3L44","3T","4M","4L47","5L47"],facade:["3M","4M","5M"],fakeout:["3L19","4L13","5L13"],firepunch:["3T","4T","5T"],fling:["4M","5M"],focusblast:["4M","5M"],focusenergy:["3L1","4L1","5L1"],focuspunch:["3M","4M"],forcepalm:["4L32","5L32"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],heavyslam:["5L62"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],ironhead:["4T","5T"],knockoff:["3L29","4L19","4T","5L19","5T"],lowkick:["4T","5T"],lowsweep:["5M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],reversal:["3L55","4L57","5L57"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],sandattack:["3L1","3L4","4L1","4L4","5L1","5L4"],secretpower:["3M","4M"],seismictoss:["3L51","3T","4L37","5L37"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],smellingsalt:["3L33","4L22","5L22"],snore:["3T","4T","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],vacuumwave:["4T"],vitalthrow:["3L13","4L10","5L10"],wakeupslap:["4L42","5L42"],whirlpool:["4M"],whirlwind:["3L22","4L16","5L16"],workup:["5M"]}}, - nosepass:{learnset:{ancientpower:["4T","5D"],attract:["3M","4M","5M"],block:["3L16","4E","4L19","4T","5E","5L19","5T"],bodyslam:["3T"],bulldoze:["5M"],captivate:["4M"],defensecurl:["3T"],discharge:["4L49","4L55","5L55"],doubleedge:["3T","4E","5E"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthpower:["4L73","4T","4L79","5L79","5T"],earthquake:["3M","4M","5M"],endure:["3T","4M","5E"],explosion:["3E","3T","4E","4M","5M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],frustration:["3M","4M","5M"],gravity:["4T","5T"],harden:["3L7","4L7","5L7"],headbutt:["4T"],helpinghand:["3S0"],hiddenpower:["3M","4M","5M"],icepunch:["3T","4T","5T"],irondefense:["4T","5T"],lockon:["3L46","4L67","4L73","5L73"],magiccoat:["4T","5T"],magnetrise:["4T","5T"],magnitude:["3E","4E","5E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],painsplit:["4T","5T"],powergem:["4L49","5L49"],protect:["3M","4M","5M"],rest:["3M","3L37","4M","4L43","5M","5L43"],"return":["3M","4M","5M"],rockblast:["5L18"],rockpolish:["4M","5M"],rockslide:["3L28","3T","4M","4L31","5M","5L31","3S0"],rocksmash:["3M","4M","5M"],rockthrow:["3L13","4L13","5L13"],rocktomb:["3M","4M","5M"],rollout:["3E","3T","4E","4T","5E"],round:["5M"],sandstorm:["3M","3L31","4M","4L37","5M","5L37"],secretpower:["3M","4M"],selfdestruct:["3T"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],spark:["5L25"],stealthrock:["4M","5E","5T","5D"],stoneedge:["4M","4L55","4L61","5M","5L61"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1","5D"],taunt:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M","3S0"],thunderpunch:["3T","4T","5T"],thunderwave:["3L22","3T","4M","4L25","5M","5L25","3S0"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],voltswitch:["5M"],zapcannon:["3L43","4L61","4L67","5L67"]}}, - probopass:{learnset:{ancientpower:["4T"],attract:["4M","5M"],block:["4L1","4L19","4T","5L1","5L19","5T"],bulldoze:["5M"],captivate:["4M"],discharge:["4L49","4L55","5L55"],doubleteam:["4M","5M"],earthpower:["4L73","4T","4L79","5L79","5T"],earthquake:["4M","5M"],endure:["4M"],explosion:["4M","5M"],facade:["4M","5M"],firepunch:["4T","5T"],flashcannon:["4M","5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],gravity:["4L1","4T","5L1","5T"],headbutt:["4T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icepunch:["4T","5T"],irondefense:["4L1","4L7","4T","5L1","5L7","5T"],ironhead:["4T","5T"],lockon:["4L67","4L73","5L73"],magiccoat:["4T","5T"],magnetbomb:["4L1","4L13","5L1","5L13"],magnetrise:["4L1","4T","5L1","5T"],mudslap:["4T"],naturalgift:["4M"],painsplit:["4T","5T"],powergem:["4L49","5L49"],protect:["4M","5M"],rest:["4M","4L43","5M","5L43"],"return":["4M","5M"],rockblast:["5L18"],rockpolish:["4M","5M"],rockslide:["4M","4L31","5M","5L31"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],rollout:["4T"],round:["5M"],sandstorm:["4M","4L37","5M","5L37"],secretpower:["4M"],shockwave:["4M"],sleeptalk:["4M","5T"],smackdown:["5M"],snore:["4T","5T"],spark:["5L25"],stealthrock:["4M","5T"],stoneedge:["4M","4L55","4L61","5M","5L61"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],tackle:["4L1","5L1"],taunt:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4T","5T"],thunderwave:["4M","4L25","5M","5L25"],torment:["4M","5M"],toxic:["4M","5M"],voltswitch:["5M"],zapcannon:["4L61","4L67","5L67"]}}, - skitty:{learnset:{assist:["3L19","4L18","4L22","5L22"],attract:["3M","3L7","4M","4L4","4L8","5M","5L8","3S2"],batonpass:["3E","4E","5E"],blizzard:["3M","4M","5M"],bodyslam:["3T"],calmmind:["3M","4M","5M"],captivate:["4M","4L42","4L46","5E","5L46","5D"],chargebeam:["4M","5M"],charm:["3L25","4L22","4L25","5L25"],copycat:["4L11","4L18","5L18"],covet:["3L31","4L32","4L36","5L36","5T"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3L39","3T","4L39","4L42","5L42"],doubleslap:["3L15","4L15","5L15"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L27","4L25","4L29","5L29"],fakeout:["4E","4L1","5E","5L1"],faketears:["3E","4E","5E"],flash:["3M","4M","5M"],foresight:["4L4","5L4","5D"],frustration:["3M","4M","5M"],grassknot:["4M","5M"],growl:["3L1","4L1","5L1","3S0","3S1","3S2"],headbutt:["4T"],healbell:["3L37","4L36","4L39","4T","5L39","5T"],helpinghand:["3E","4E","4T","5E","5T"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4E","4T","5E","5T"],mimic:["3T"],mudbomb:["4E","5E"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M"],payday:["3S0"],protect:["3M","4M","5M"],psychup:["3E","3T","4E","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rollout:["3T","4T","3S1"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],simplebeam:["5E"],sing:["3L13","4L8","4L11","5L11"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],substitute:["3E","3T","4E","4M","5M"],suckerpunch:["4E","4T","5E"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S0","3S1","3S2"],tailwhip:["3L3","4L1","5L1","3S0","3S1","3S2"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],tickle:["3E","4E","5E","5D"],toxic:["3M","4M","5M"],uproar:["3E","4E","5E","5T"],wakeupslap:["4L29","4L32","5L32"],waterpulse:["3M","4M"],wildcharge:["5M"],wish:["3E","4E","5E"],workup:["5M"],zenheadbutt:["4E","4T","5E","5T"],hypervoice:["5T"]}}, - delcatty:{learnset:{attract:["3M","3L1","4M","4L1","5M","5L1","3S0"],blizzard:["3M","4M","5M"],bodyslam:["3T"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleslap:["3L1","4L1","5L1"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fakeout:["4L1","5L1"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growl:["3L1"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M","3S0"],shadowball:["3M","4M","5M"],shockwave:["3M","4M","3S0"],sing:["3L1","4L1","5L1"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetkiss:["3S0"],swift:["3T","4T"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"],wildcharge:["5M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],uproar:["5T"],hypervoice:["5T"]}}, - sableye:{learnset:{aerialace:["3M","4M","5M"],astonish:["3L13","4L11","5L11"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],calmmind:["3M","4M","5M"],captivate:["4M","5E"],confuseray:["3L37","4L46","5L46"],counter:["3T"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],detect:["3L25","4L22","5L22"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],embargo:["4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L29","4L32","5L32","3S1"],fakeout:["3L21","4L18","5L18"],feint:["4E","5E"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],flatter:["4E","5E"],fling:["4M","5M"],focuspunch:["3M","4M"],foresight:["3L5","4L4","5L4","5D","3S0"],foulplay:["5L50","5T","5S2"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],furyswipes:["3L17","4L15","5L15"],gravity:["4T","5T"],headbutt:["4T"],helpinghand:["3S1"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],incinerate:["5M"],knockoff:["3L33","4L29","4T","5L29","5T"],leer:["3L1","4L1","5L1","3S0"],lowkick:["4T","5T"],lowsweep:["5M"],magiccoat:["4T","5T"],meanlook:["3L45","4L57","5E","5L60"],megakick:["3T"],megapunch:["3T"],metalburst:["5E"],metronome:["3T"],mimic:["3T"],moonlight:["3E","4E","5E"],mudslap:["3T","4T"],nastyplot:["4E","5E"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L9","4L8","5L8","3S0"],octazooka:["5S2"],ominouswind:["4T"],painsplit:["4T"],payback:["4M","5M"],poisonjab:["4M","5M"],powergem:["4L43","5L43"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3E","3T","4E","4M","5M"],punishment:["4L36","5L36"],raindance:["3M","4M","5M"],recover:["3E","4E","5E","3S1"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],scratch:["3L1","4L1","5L1","3S0"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","3L41","4M","4L53","5M","5L57","3S1"],shadowclaw:["4M","4L39","5M","5L39"],shadowsneak:["4L25","5L25"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5D","5T"],substitute:["3T","4M","5M"],suckerpunch:["4T","5E","5D"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],telekinesis:["5M"],thief:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],tickle:["5S2"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5E","5T","5S2"],waterpulse:["3M","4M"],willowisp:["4M","5M"],zenheadbutt:["4L50","4T","5L53","5T"],roleplay:["4T","5T"],wonderroom:["5T"]}}, - mawile:{learnset:{ancientpower:["3E","4E","4T","5E"],astonish:["3L1","4L1","5L1","3S0"],attract:["3M","4M","5M"],batonpass:["3L31","4L31","5L31"],bite:["3L11","4L11","5L11"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M","5E"],chargebeam:["4M","5M"],counter:["3T"],crunch:["3L36","4L36","5L36"],darkpulse:["4M","5T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],embargo:["4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L26","4L26","5L26"],faketears:["3L6","4L6","5L6","5D","3S0"],falseswipe:["3E","4E","5M","3S1"],fireblast:["3M","4M","5M"],firefang:["4E","5E","5D"],flamethrower:["3M","4M","5M"],flashcannon:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],guardswap:["4E","5E"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icefang:["4E","5E"],icepunch:["3T","4T","5D","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irondefense:["3L41","4L41","4T","5L41","5T","3S1"],ironhead:["4L56","4T","5L56","5T"],knockoff:["4T","5T"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],metalburst:["5E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],painsplit:["4T","5T"],payback:["4M","5M"],poisonfang:["3E","4E","5E"],protect:["3M","4M","5M"],psychup:["3E","3T","4E","5M"],punishment:["4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["4M","5M"],sing:["3S1"],slam:["5E"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spitup:["3L46","4L51","5L51"],stockpile:["3L46","4L51","5L51"],stoneedge:["5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4E","4L46","4T","5E","5L46"],sunnyday:["3M","4M","5M"],superfang:["4T","5T"],swagger:["3T","4M","5M"],swallow:["3L46","4L51","5L51"],sweetscent:["3L16","4L16","5L16"],swordsdance:["3E","3T","4E","4M","5M"],taunt:["3M","4M","5M"],thunderfang:["4E","5E"],thunderpunch:["3T","4T","5T"],tickle:["3E","4E","5E"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],vicegrip:["3L21","4L21","5L21","3S1"],foulplay:["5T"],lastresort:["5T"],snatch:["5T"],stealthrock:["5T"]}}, - aron:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["4T"],attract:["3M","4M","5M"],autotomize:["5L43"],bodyslam:["3E","3T","4E","5E"],bulldoze:["5M"],captivate:["4M"],curse:["4E","5E"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3L44","3T","4L43","5L50"],doubleteam:["3M","4M","5M"],dragonrush:["4E","5E"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],endeavor:["3E","4E","4T","5E","5T","5D"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],harden:["3L4","4L4","5L4","5D"],headbutt:["3L10","4L11","4T","5L11"],headsmash:["4E","5E","5D"],heavyslam:["5L46"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],irondefense:["3L17","4L18","4T","5L18","5T"],ironhead:["4E","4L29","4T","5E","5L29","5T"],irontail:["3M","3L29","4M","4L39","5L39","5T"],magnetrise:["4T","5T"],metalburst:["4L46","5L53"],metalclaw:["3L13","4L15","5L15"],metalsound:["3L39","4L36","5L36"],mimic:["3T"],mudslap:["3L7","3T","4L8","4T","5L8"],naturalgift:["4M"],protect:["3M","3L34","4M","4L32","5M","5L32"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","3L21","4M","4L22","5M","5L22"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],sandstorm:["3M","4M","5M"],screech:["4E","5E"],secretpower:["3M","4M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],smellingsalt:["3E","4E","5E"],snore:["3T","4T","5T"],spite:["4T","5T"],stealthrock:["4M","5E","5T"],stomp:["3E","4E","5E"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5E","5T"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],takedown:["3L25","4L25","5L25"],toxic:["3M","4M","5M"],uproar:["4T","5T"],waterpulse:["3M","4M"]}}, - lairon:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["4T"],attract:["3M","4M","5M"],autotomize:["5L51"],bodyslam:["3T"],bulldoze:["5M"],captivate:["4M"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3L53","3T","4L51","5L62"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],harden:["3L1","3L4","4L1","4L4","5L1","5L4"],headbutt:["3L1","3L10","4L1","4L11","4T","5L1","5L11"],heavyslam:["5L56"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],irondefense:["3L17","4L18","4T","5L18","5T"],ironhead:["4L29","4T","5L29","5T"],irontail:["3M","3L29","4M","4L45","5L45","5T"],magnetrise:["4T","5T"],metalburst:["4L56","5L67"],metalclaw:["3L13","4L15","5L15"],metalsound:["3L45","4L40","5L40"],mimic:["3T"],mudslap:["3L1","3L7","3T","4L1","4L8","4T","5L1","5L8"],naturalgift:["4M"],protect:["3M","3L37","4M","4L34","5M","5L34"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","3L21","4M","4L22","5M","5L22"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],takedown:["3L25","4L25","5L25"],toxic:["3M","4M","5M"],uproar:["4T","5T"],waterpulse:["3M","4M"]}}, - aggron:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M"],autotomize:["5L57"],avalanche:["4M"],blizzard:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3L63","3T","4L57","5L74","3S0"],doubleteam:["3M","4M","5M"],dragonclaw:["3M","4M","5M"],dragonpulse:["4M","5T"],dragontail:["5M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],flashcannon:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],harden:["3L1","3L4","4L1","4L4","5L1","5L4"],headbutt:["3L1","3L10","4L1","4L11","4T","5L1","5L11"],heavyslam:["5L65"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irondefense:["3L17","4L18","4T","5L18","5T"],ironhead:["4L29","4T","5L29","5T"],irontail:["3M","3L29","4M","4L48","5L48","3S0","3S1","5T"],lowkick:["4T","5T"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],metalburst:["4L65","5L82"],metalclaw:["3L13","4L15","5L15"],metalsound:["3L50","4L40","5L40","3S0","3S1"],mimic:["3T"],mudslap:["3L1","3L7","3T","4L1","4L8","4T","5L1","5L8"],naturalgift:["4M"],outrage:["4T","5T"],payback:["4M","5M"],protect:["3M","3L37","4M","4L34","5M","5L34","3S0","3S1"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","3L21","4M","4L22","5M","5L22"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spite:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],takedown:["3L25","4L25","5L25","3S1"],taunt:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],waterpulse:["3M","4M"],whirlpool:["4M"]}}, - meditite:{learnset:{acupressure:["5L39"],attract:["3M","4M","5M"],batonpass:["3E","4E","5E"],bide:["3L1","4L1","5L1","3S0"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulletpunch:["4E","5E"],calmmind:["3M","3L28","4M","4L25","5M","5L25"],captivate:["4M"],confusion:["3L9","4L8","5L8","3S0","3S1"],counter:["3T"],detect:["3L12","4L11","5L11","3S1"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5E","5D","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3E","3T","4E","5E","3S1"],endure:["3T","4M","5D"],facade:["3M","4M","5M"],fakeout:["3E","4E","5E"],feint:["4L22","5L22"],firepunch:["3E","3T","4E","4T","5E","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],forcepalm:["4L29","5L29"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],guardswap:["4E","5E"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","3L18","3L17","4M","4L15","5M","5L15"],hijumpkick:["3L32","3L33","4L32","5L32"],icepunch:["3E","3T","4E","4T","5E","5T"],lightscreen:["3M","4M","5M"],lowkick:["4T","5T"],lowsweep:["5M"],magiccoat:["4T","5T"],meditate:["3L4","4L4","5L4","5D","3S0"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mindreader:["3L22","3L25","4L18","5L18"],mudslap:["3T","4T"],naturalgift:["4M"],painsplit:["4T","5T"],poisonjab:["4M","5M"],powerswap:["4E","5E"],powertrick:["4L39","5L43"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychocut:["4E","5E"],psychup:["3L38","3T","3L36","4M","4L36","5M","5L36"],psyshock:["5M"],raindance:["3M","4M","5M"],recover:["3L48","3L44","4L46","5L50"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],reversal:["3L42","3L41","4L43","5L46"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],secretpower:["3M","4M","5E"],seismictoss:["3T"],shadowball:["3M","4M","5M","3S1"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","3L20","4M","5M"],swift:["3T","4T"],telekinesis:["5M"],thunderpunch:["3E","3T","4E","4T","5E","5T"],toxic:["3M","4M","5M"],trick:["4T","5T"],vacuumwave:["4T"],workup:["5M"],zenheadbutt:["4T","5T"]}}, - medicham:{learnset:{acupressure:["5L42"],attract:["3M","4M","5M"],bide:["3L1","4L1","5L1"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],calmmind:["3M","3L28","4M","4L25","5M","5L25"],captivate:["4M"],confusion:["3L1","3L9","4L1","4L8","5L1","5L8"],counter:["3T"],detect:["3L1","3L12","4L1","4L11","5L1","5L11"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],feint:["4L22","5L22"],firepunch:["3L1","3T","4L1","4T","5L1","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],forcepalm:["4L29","5L29"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","3L18","3L17","4M","4L15","5M","5L15"],hijumpkick:["3L32","3L33","4L32","5L32"],hyperbeam:["3M","4M","5M"],icepunch:["3L1","3T","4L1","4T","5L1","5T"],lightscreen:["3M","4M","5M"],lowkick:["4T","5T"],lowsweep:["5M"],magiccoat:["4T","5T"],meditate:["3L1","3L4","4L1","4L4","5L1","5L4"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mindreader:["3L22","3L25","4L18","5L18"],mudslap:["3T","4T"],naturalgift:["4M"],painsplit:["4T","5T"],poisonjab:["4M","5M"],powertrick:["4L42","5L49"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3L40","3T","3L36","4M","4L36","5M","5L36"],psyshock:["5M"],raindance:["3M","4M","5M"],recover:["3L54","3L56","4L55","5L62"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],reversal:["3L46","3L47","4L49","5L55"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","3L20","4M","5M"],swift:["3T","4T"],telekinesis:["5M"],thunderpunch:["3L1","3T","4L1","4T","5L1","5T"],toxic:["3M","4M","5M"],trick:["4T","5T"],vacuumwave:["4T"],workup:["5M"],zenheadbutt:["4T","5T"]}}, - electrike:{learnset:{attract:["3M","4M","5M"],bite:["3L33","4L28","5L28"],bodyslam:["3T"],captivate:["4M"],charge:["3L41","4L44","5L44"],chargebeam:["4M","5M"],crunch:["3E","4E","5E"],curse:["3E","4E","5E"],discharge:["4E","4L41","5E","5L41"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],electroball:["5E"],endure:["3T","4M"],facade:["3M","4M","5M"],firefang:["4E","5E"],flameburst:["5E"],flamethrower:["4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],headbutt:["3E","4E","4T","5E"],hiddenpower:["3M","4M","5M"],howl:["3L12","4L12","5L12"],icefang:["4E","5E","5D"],irontail:["3M","4M","5T"],leer:["3L9","4L9","5L9"],lightscreen:["4M","5M"],magnetrise:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],odorsleuth:["3L25","4L25","5L25"],protect:["3M","4M","5M"],quickattack:["3L17","4L17","5L17"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","3L28","4M","4L36","5M","5L36"],round:["5M"],secretpower:["3M","4M"],shockwave:["3M","4M","5E"],signalbeam:["4T","5D","5T"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snore:["3T","4T","5T"],spark:["3L20","4L20","5L20"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],swagger:["3T","4M","5M"],swift:["3E","3T","4E","4T","5E"],switcheroo:["4E","5E"],tackle:["3L1","4L1","5L1"],thief:["3M","4M","5M"],thunder:["3M","3L36","4M","4L49","5M","5L52"],thunderbolt:["3M","4M","5M"],thunderfang:["4E","4L33","5E","5L33"],thunderwave:["3L4","3T","4M","4L4","5M","5L4","5D"],toxic:["3M","4M","5M"],uproar:["3E","4E","5E","5T"],voltswitch:["5M"],wildcharge:["5M","5L49"]}}, - manectric:{learnset:{attract:["3M","4M","5M"],bite:["3L39","4L30","5L30","3S0"],bodyslam:["3T"],captivate:["4M"],charge:["3L53","4L54","5L54"],chargebeam:["4M","5M"],discharge:["4L49","5L49"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],firefang:["4L1","5L1"],flamethrower:["4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],howl:["3L1","3L12","4L1","4L12","5L1","5L12"],hyperbeam:["3M","4M","5M"],irontail:["3M","4M","5T"],leer:["3L1","3L9","4L1","4L9","5L1","5L9"],lightscreen:["4M","5M"],magnetrise:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],odorsleuth:["3L25","4L25","5L25"],overheat:["4M","5M"],protect:["3M","4M","5M"],quickattack:["3L17","4L17","5L17"],raindance:["3M","4M","5M","3S0"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","3L31","4M","4L42","5M","5L42"],round:["5M"],secretpower:["3M","4M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snore:["3T","4T","5T"],spark:["3L20","4L20","5L20"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],thief:["3M","4M","5M"],thunder:["3M","3L45","4M","4L61","5M","5L66","3S0"],thunderbolt:["3M","4M","5M"],thunderfang:["4L37","5L37"],thunderwave:["3L1","3L4","3T","4M","4L1","4L4","5M","5L1","5L4"],toxic:["3M","4M","5M"],voltswitch:["5M"],wildcharge:["5M","5L61"],uproar:["5T"]}}, - plusle:{learnset:{agility:["3L47","4L44","5L48"],attract:["3M","4M","5M"],batonpass:["3L40","4L42","5L44"],bodyslam:["3T"],captivate:["4M"],charge:["3L31","4L35","5L38"],chargebeam:["4M","5M"],copycat:["4L24","5L24"],counter:["3T"],defensecurl:["3T"],discharge:["4E","5E","5D"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],electroball:["5L29"],encore:["3L22","4L17","5L17"],endure:["3T","4M"],entrainment:["5L63"],facade:["3M","4M","5M"],faketears:["3L28","4L21","4L31","5L21","5L35"],flash:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],grassknot:["4M","5M"],growl:["3L1","4L1","5L1","3S0","3S1"],headbutt:["4T"],helpinghand:["3L13","4L10","4T","5L10","5T"],hiddenpower:["3M","4M","5M"],irontail:["3M","4M","5T"],lastresort:["4L48","4T","5L51","5T"],lightscreen:["3M","4M","5M"],luckychant:["5E"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L51","5L56"],naturalgift:["4M"],protect:["3M","4M","5M"],quickattack:["3L10","4L7","5L7","3S1"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M"],signalbeam:["4T","5T","5D"],sing:["4E","5E"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spark:["3L19","4L15","5L15"],substitute:["3E","3T","4E","4M","5M"],swagger:["3T","4M","5M"],sweetkiss:["4E","5E"],swift:["3T","4L29","4T","5L31"],thunder:["3M","3L37","4M","4L38","5M","5L42"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3L4","3T","4M","4L3","5M","5L3","3S0","3S1","5D"],toxic:["3M","4M","5M"],uproar:["4T","5T"],voltswitch:["5M"],watersport:["3S0"],wildcharge:["5M"],wish:["3E","4E","5E"]}}, - minun:{learnset:{agility:["3L47","4L44","5L48"],attract:["3M","4M","5M"],batonpass:["3L40","4L42","5L44"],bodyslam:["3T"],captivate:["4M"],charge:["3L31","4L35","5L38"],chargebeam:["4M","5M"],charm:["3L28","4L21","5L21"],copycat:["4L24","5L24"],counter:["3T"],defensecurl:["3T"],discharge:["4E","5E","5D"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],echoedvoice:["5M"],electroball:["5L29"],encore:["3L22","4L17","5L17"],endure:["3T","4M"],entrainment:["5L63"],facade:["3M","4M","5M"],faketears:["4L31","5L35"],flash:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],grassknot:["4M","5M"],growl:["3L1","4L1","5L1","3S0","3S1"],headbutt:["4T"],helpinghand:["3L13","4L10","4T","5L10","5T"],hiddenpower:["3M","4M","5M"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M"],luckychant:["5E"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3S0"],nastyplot:["4L51","5L56"],naturalgift:["4M"],protect:["3M","4M","5M"],quickattack:["3L10","4L7","5L7","3S1"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M"],signalbeam:["4T","5T","5D"],sing:["4E","5E"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spark:["3L19","4L15","5L15"],substitute:["3E","3T","4E","4M","5M"],swagger:["3T","4M","5M"],sweetkiss:["4E","5E"],swift:["3T","4L29","4T","5L31"],thunder:["3M","3L37","4M","4L38","5M","5L42"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3L4","3T","4M","4L3","5M","5L3","3S0","3S1","5D"],toxic:["3M","4M","5M"],trumpcard:["4L48","5L51"],uproar:["4T","5T"],voltswitch:["5M"],wildcharge:["5M"],wish:["3E","4E","5E"]}}, - volbeat:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M"],aircutter:["4T"],attract:["3M","4M","5M"],batonpass:["3E","4E","5E"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bugbite:["4T","5T"],bugbuzz:["4E","4L41","5E","5L41"],captivate:["4M"],chargebeam:["4M","5M"],confuseray:["3L5","4L9","5L9"],counter:["3T"],dizzypunch:["5E"],doubleedge:["3L37","3T","4L45","5L45"],doubleteam:["3M","3L9","4M","4L5","5M","5L5"],dynamicpunch:["3T"],encore:["4E","5E"],endure:["3T","4M"],facade:["3M","4M","5M"],flash:["3M","4M","4L1","5M","5L1","5D"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],helpinghand:["3L33","4L33","4T","5L33","5T"],hiddenpower:["3M","4M","5M"],icepunch:["3T","4T","5T"],lightscreen:["3M","4M","5M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],moonlight:["3L13","4L13","5L13"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","3L29","4M","4L29","5M","5L29"],psychup:["3T","4M","5M"],quickattack:["3L17","4L17","5L17"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5T"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T","5E"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["3L25","4L25","4T","5L25","5T"],silverwind:["3E","4E","4M","5E"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],tailglow:["3L21","4L21","5L21"],tailwind:["4T","5D","5T"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["3E","4E","5E","5D","5T"],uturn:["4M","5M"],waterpulse:["3M","4M"],zenheadbutt:["4L37","4T","5L37","5T"]}}, - illumise:{learnset:{acrobatics:["5M"],aerialace:["3M","4M","5M"],aircutter:["4T"],attract:["3M","4M","5M"],batonpass:["3E","4E","5E"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bugbite:["4T","5T"],bugbuzz:["4E","4L41","5E","5L41"],captivate:["4M","5E"],chargebeam:["4M","5M"],charm:["3L9","4L9","5L9","5D"],confuseray:["5E"],counter:["3T"],covet:["3L37","4L45","5L45","5T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],encore:["3L25","4E","4L25","5E","5L25"],endure:["3T","4M"],facade:["3M","4M","5M"],faketears:["5E","5D"],flash:["3M","4M","5M"],flatter:["3L29","4L29","5L29"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigadrain:["3M","4M","5T"],growth:["3E","4E","5E"],helpinghand:["3L33","4L33","4T","5L33","5T"],hiddenpower:["3M","4M","5M"],icepunch:["3T","4T","5T"],lightscreen:["3M","4M","5M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],moonlight:["3L13","4L13","5L13"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],quickattack:["3L17","4L17","5L17"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5T"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],silverwind:["3E","4E","4M","5E"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetscent:["3L5","4L5","5L5"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],tailwind:["4T","5D","5T"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],uturn:["4M","5M"],waterpulse:["3M","4M"],wish:["3L21","4L21","5L21"],zenheadbutt:["4L37","4T","5L37","5T"]}}, - budew:{learnset:{absorb:["4L1","5L1"],attract:["4M","5M"],bulletseed:["4M"],captivate:["4M"],cottonspore:["4E","5E"],covet:["5T"],cut:["4M","5M"],doubleteam:["4M","5M"],endure:["4M"],energyball:["4M","5M"],extrasensory:["4E","5E"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],gigadrain:["4M","5E","5T"],grassknot:["4M","5M"],grasswhistle:["5E"],growth:["4L4","5L4"],hiddenpower:["4M","5M"],leafstorm:["4E","5E"],megadrain:["4L13","5L13"],mindreader:["4E","5E"],mudslap:["4T"],naturalgift:["4M","5E"],pinmissile:["4E","5E"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],razorleaf:["4E","5E"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],seedbomb:["4T","5E","5T"],shadowball:["4M","5M"],sleeppowder:["4E","5E"],sleeptalk:["4M","5T"],sludgebomb:["4M","5M"],snore:["4T","5T"],solarbeam:["4M","5M"],spikes:["4E","5E"],stunspore:["4L10","5L10"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],swordsdance:["4M","5M"],synthesis:["4E","4T","5E","5T"],toxic:["4M","5M"],uproar:["4T","5T"],venoshock:["5M"],watersport:["4L7","5L7"],worryseed:["4L16","4T","5L16","5T"]}}, - roselia:{learnset:{absorb:["3L1","4L1","5L1","3S0"],aromatherapy:["3L53","4L43","5L43"],attract:["3M","4M","5M"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],cottonspore:["3E","4E","5E"],covet:["5T"],cut:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigadrain:["3M","3L33","4M","4L25","5E","5L25","5T"],grassknot:["4M","5M"],grasswhistle:["3L29","4L22","5E","5L22","3S1"],growth:["3L5","4L4","5L4","3S0","5D"],hiddenpower:["3M","4M","5M"],ingrain:["3L41","4L34","5L34"],leafstorm:["4E","5E"],leechseed:["3L21","4L16","5L16","3S1"],magicalleaf:["3L25","4L19","5L19","3S1"],megadrain:["3L17","4L13","5L13"],mimic:["3T"],mindreader:["4E","5E"],mudslap:["3T","4T"],naturalgift:["4M","5E"],nightmare:["3T"],petaldance:["3L49","4L40","5L40"],pinmissile:["3E","4E","5E"],poisonjab:["4M","5M"],poisonsting:["3L9","4L7","5L7","3S0"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["4M","5M"],razorleaf:["4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5E","5T"],shadowball:["3M","4M","5M"],sleeppowder:["4E","5E","5D"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spikes:["3E","4E","5E"],stunspore:["3L13","4L10","5L10"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetkiss:["3S1"],sweetscent:["3L37","4L31","5L31"],swift:["3T","4T","5D"],swordsdance:["3T","4M","5M"],synthesis:["3E","3L57","4E","4L46","4T","5E","5L46","5T"],toxic:["3M","3L45","4M","4L37","5M","5L37"],toxicspikes:["4L28","5L28"],venoshock:["5M"],worryseed:["4T","5T"]}}, - roserade:{learnset:{attract:["4M","5M"],bulletseed:["4M"],captivate:["4M"],covet:["5T"],cut:["4M","5M"],doubleteam:["4M","5M"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],gigadrain:["4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],magicalleaf:["4L1","5L1"],megadrain:["4L1","5L1"],mudslap:["4T"],naturalgift:["4M"],poisonjab:["4M","5M"],poisonsting:["4L1","5L1"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],seedbomb:["4T","5T"],shadowball:["4M","5M"],sleeptalk:["4M","5T"],sludgebomb:["4M","5M"],snore:["4T","5T"],solarbeam:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],sweetscent:["4L1","5L1"],swift:["4T"],swordsdance:["4M","5M"],synthesis:["4T","5T"],toxic:["4M","5M"],venoshock:["5M"],weatherball:["4L1","5L1"],worryseed:["4T","5T"]}}, - gulpin:{learnset:{acidarmor:["3E","4E","5E","5D"],acidspray:["5L34"],amnesia:["3L17","4L17","5L17"],attract:["3M","4M","5M"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],curse:["4E","5E"],defensecurl:["3T"],destinybond:["4E","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3E","3T","4E","4M","5M"],dynamicpunch:["3T"],encore:["3L23","4L23","5L23"],endure:["3T","4M"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],frustration:["3M","4M","5M"],gastroacid:["4L44","4T","5L49","5T"],gigadrain:["3M","4M","5T","5D"],gunkshot:["4L54","4T","5E","5L59","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],mimic:["3T"],mudslap:["3T","4T","5E"],naturalgift:["4M"],nightmare:["3T"],painsplit:["3E","4E","4T","5E","5T"],poisongas:["3L9","4L9","5L9","5D"],pound:["3L1","4L1","5L1"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],selfdestruct:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M","3S0"],sing:["3S0"],sleeptalk:["3T","4M","5T"],sludge:["3L14","4L14","5L14","3S0"],sludgebomb:["3M","3L39","4M","4L39","5M","5L44"],sludgewave:["5M"],smog:["3E","4E","5E"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spitup:["3L34","4L34","5L39"],stockpile:["3L34","4L34","5L39"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["3L34","4L34","5L39"],thunderpunch:["3T","4T","5T"],toxic:["3M","3L28","4M","4L28","5M","5L28","3S0"],venoshock:["5M"],waterpulse:["3M","4M"],wringout:["4L49","5L54"],yawn:["3L6","4L6","5L6"]}}, - swalot:{learnset:{acidspray:["5L38"],amnesia:["3L17","4L17","5L17"],attract:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3L26","3T","4L26","5L26"],bulldoze:["5M"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],earthquake:["4M","5M"],encore:["3L23","4L23","5L23"],endure:["3T","4M"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],frustration:["3M","4M","5M"],gastroacid:["4L52","4T","5L59","5T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],gunkshot:["4L66","4T","5L73","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],poisongas:["3L1","3L9","4L1","4L9","5L1","5L9"],pound:["3L1","4L1","5L1"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],selfdestruct:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],sludge:["3L1","3L14","4L1","4L14","5L1","5L14"],sludgebomb:["3M","3L48","4M","4L45","5M","5L52"],sludgewave:["5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spitup:["3L40","4L38","5L45"],stockpile:["3L40","4L38","5L45"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["3L40","4L38","5L45"],thunderpunch:["3T","4T","5T"],toxic:["3M","3L31","4M","4L30","5M","5L30"],venoshock:["5M"],waterpulse:["3M","4M"],wringout:["4L59","5L66"],yawn:["3L1","3L6","4L1","4L6","5L1","5L6"]}}, - carvanha:{learnset:{agility:["3L43","4L36","5L36"],ancientpower:["4E","4T","5E"],aquajet:["4L31","5L31"],assurance:["4L26","5L26"],attract:["3M","4M","5M"],bite:["3L1","4L1","5L1","5D","3S0"],blizzard:["3M","4M","5M"],bounce:["4T","5T"],brine:["4M","5E"],captivate:["4M"],crunch:["3L22","4L28","5L28"],darkpulse:["4M","5D","5T"],dive:["3M","4T","5M"],doubleedge:["3E","3T","4E","5E"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],focusenergy:["3L13","4L8","5L8"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],hail:["3M","4M","5M"],hiddenpower:["3M","4M","5M"],hydropump:["3E","4E","5E"],icebeam:["3M","4M","5M"],icefang:["4L16","5L16"],icywind:["3T","4T","5T"],leer:["3L1","4L1","5L1"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M"],protect:["3M","4M","5M"],rage:["3L7","4L6","5L6"],raindance:["3M","4M","5M"],refresh:["3S0"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],round:["5M"],scald:["5M"],scaryface:["3L16","4L11","5L11","3S0"],screech:["3L28","4L18","5L18"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M"],superfang:["4T","5T"],surf:["3M","4M","5M"],swagger:["3L37","3T","4M","4L21","5M","5L21"],swift:["3T","4T","5E"],takedown:["3L31","4L38","5L38"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],thrash:["3E","4E","5E","5D"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M","3S0"],whirlpool:["4M"],zenheadbutt:["4T","5T"]}}, - sharpedo:{learnset:{agility:["3L53","4L45","5L45"],ancientpower:["4T"],aquajet:["4L34","5L34"],assurance:["4L26","5L26"],attract:["3M","4M","5M"],avalanche:["4M"],bite:["3L1","4L1","5L1"],blizzard:["3M","4M","5M"],bounce:["4T","5T"],brine:["4M"],bulldoze:["5M"],captivate:["4M"],crunch:["3L22","4L28","5L28"],darkpulse:["4M","5T"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],feint:["4L1","5L1"],focusenergy:["3L1","3L13","4L1","4L8","5L1","5L8"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icefang:["4L16","5L16"],icywind:["3T","4T","5T"],leer:["3L1","4L1","5L1"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4L56","5L56"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],rage:["3L1","3L7","4L1","4L6","5L1","5L6"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],scald:["5M"],scaryface:["3L16","4L11","5L11"],screech:["3L28","4L18","5L18"],secretpower:["3M","4M"],skullbash:["3L48","4L50","5L50"],slash:["3L33","4L30","5L30"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snore:["3T","4T","5T"],spite:["4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superfang:["4T","5T"],surf:["3M","4M","5M"],swagger:["3L43","3T","4M","4L21","5M","5L21"],swift:["3T","4T"],taunt:["3M","3L38","4M","4L40","5M","5L40"],thief:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],zenheadbutt:["4T","5T"]}}, - wailmer:{learnset:{amnesia:["3L46","4L37","5L37"],aquaring:["4E","5E"],astonish:["3L23","4L17","5L17"],attract:["3M","4M","5M"],avalanche:["4M"],blizzard:["3M","4M","5M"],bodyslam:["3T","4E","5E"],bounce:["4L44","4T","5L44","5D","5T"],brine:["4M","4L31","5L31"],bulldoze:["5M"],captivate:["4M"],curse:["3E","4E","5E"],defensecurl:["3T","4E","5E"],dive:["3M","4L41","4T","5M","5L41"],doubleedge:["3E","3T","4E","5E"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],fissure:["3E","4E","5E"],frustration:["3M","4M","5M"],growl:["3L5","4L4","5L4"],hail:["3M","4M","5M"],headbutt:["4T"],heavyslam:["5L50"],hiddenpower:["3M","4M","5M"],hydropump:["3L50","4L47","5L47"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],mimic:["3T"],mist:["3L32","4L24","5L24"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","3L37","4M","4L27","5M","5L27"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3L14","3T","4L11","4T","5L11"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],selfdestruct:["3T"],sleeptalk:["3E","3T","4E","4M","5E","5D","5T"],snore:["3E","3T","4E","4T","5E","5T"],soak:["5E"],splash:["3L1","4L1","5L1"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3E","3T","4E","4M","5M"],thrash:["3E","4E","5E"],tickle:["3E","4E","5E"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L10","4L7","5L7","5D"],waterpulse:["3M","3L28","4M","4L21","5L21"],waterspout:["3L41","4L34","5L34"],whirlpool:["3L19","4L14","4M","5L14"],zenheadbutt:["5E","5T"],hypervoice:["5T"]}}, - wailord:{learnset:{amnesia:["3L52","4L37","5L37","3S0"],astonish:["3L23","4L17","5L17"],attract:["3M","4M","5M"],avalanche:["4M"],blizzard:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],bounce:["4L54","4T","5L54","5T"],brine:["4M","4L31","5L31"],bulldoze:["5M"],captivate:["4M"],defensecurl:["3T"],dive:["3M","4L46","4T","5M","5L46"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],growl:["3L1","3L5","4L1","4L4","5L1","5L4"],hail:["3M","4M","5M"],headbutt:["4T"],heavyslam:["5L70"],hiddenpower:["3M","4M","5M"],hydropump:["3L59","4L62","5L62","3S0"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],mimic:["3T"],mist:["3L32","4L24","5L24","3S1"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","3L37","4M","4L27","5M","5L27","3S0","3S1"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3L1","3L14","3T","4L1","4L11","4T","5L1","5L11"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],selfdestruct:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],splash:["3L1","4L1","5L1"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L1","3L10","4L1","4L7","5L1","5L7"],waterpulse:["3M","3L28","4M","4L21","5L21","3S1"],waterspout:["3L44","4L34","5L34","3S0","3S1"],whirlpool:["3L19","4L14","4M","5L14"],zenheadbutt:["5T"],hypervoice:["5T"]}}, - numel:{learnset:{amnesia:["3L31","4L25","5L31"],ancientpower:["4E","5E"],attract:["3M","4M","5M"],bodyslam:["3E","3T","4E","5E","5D"],bulldoze:["5M"],captivate:["4M"],charm:["3S0"],curse:["5L29"],defensecurl:["3E","3T","4E","5E"],dig:["3M","4M","5M","3S0"],doubleedge:["3L49","3T","4L51","5L55"],doubleteam:["3M","4M","5M"],earthpower:["4L35","4T","5L41","5T"],earthquake:["3M","3L35","4M","4L41","5M","5L45"],echoedvoice:["5M"],ember:["3L11","4L5","5L5","5D","3S0"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flameburst:["5L21"],flamecharge:["5M"],flamethrower:["3M","3L41","4M","4L45","5M","5L51"],focusenergy:["3L25","4L15","5L15"],frustration:["3M","4M","5M"],growl:["3L1","4L1","5L1"],headbutt:["4T"],heatwave:["4E","4T","5E","5D","5T"],hiddenpower:["3M","4M","5M"],howl:["3E","4E","5E"],incinerate:["5M"],ironhead:["5E","5T"],lavaplume:["4L31","5L35"],magnitude:["3L19","4L11","5L11"],mimic:["3T"],mudbomb:["4E","5E"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3E","3T","4E","4T","5E"],round:["5M"],sandstorm:["3M","4M","5M"],scaryface:["3E","4E","5E"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spitup:["4E","5E"],stealthrock:["4M","5T"],stockpile:["4E","5E"],stomp:["3E","4E","5E"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["4E","5E"],tackle:["3L1","4L1","5L1"],takedown:["3L29","4L21","5L25","3S0"],toxic:["3M","4M","5M"],willowisp:["4M","5M"],yawn:["4E","5E","5L36"],afteryou:["5T"]}}, - camerupt:{learnset:{amnesia:["3L31","4L25","5L31"],attract:["3M","4M","5M"],bodyslam:["3T"],bulldoze:["5M"],captivate:["4M"],curse:["5L29"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4L39","4T","5L49","5T"],earthquake:["3M","3L37","4M","4L49","5M","5L57"],echoedvoice:["5M"],ember:["3L1","3L11","4L1","4L5","5L1","5L5"],endure:["3T","4M"],eruption:["3L45","4L57","5L67"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],fissure:["3L55","4L67","5L75"],flameburst:["5L21"],flamecharge:["5M"],flamethrower:["3M","4M","5M"],flashcannon:["4M","5M"],focusenergy:["3L25","4L15","5L15"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],ironhead:["4T","5T"],lavaplume:["4L31","5L33"],magnitude:["3L1","3L19","4L1","4L11","5L1","5L11"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3L33","3T","4M","4L33","5M","5L39"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],selfdestruct:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["4M","5M"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],takedown:["3L29","4L21","5L25"],toxic:["3M","4M","5M"],willowisp:["4M","5M"],yawn:["5L39"],afteryou:["5T"]}}, - torkoal:{learnset:{amnesia:["3L40","4L49","5L49"],attract:["3M","4M","5M"],bodyslam:["3L20","3T","4L33","5L33"],bulldoze:["5M"],captivate:["4M"],clearsmog:["5E"],curse:["3L7","4L12","5L12"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],earthquake:["4E","4M","5M"],ember:["3L1","4L1","5L1","5D"],endure:["3E","3T","4E","4M","5E"],eruption:["3E","4E","5E"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firespin:["3L17","4L17","5L17"],fissure:["4E","5E","5D"],flail:["3L43","4L52","5L52"],flameburst:["5E"],flamecharge:["5M"],flamethrower:["3M","3L30","4M","4L28","5M","5L28"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gyroball:["4M","5M"],headbutt:["4T"],heatwave:["3L46","4L55","4T","5L55","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["4M","5M"],incinerate:["5M"],inferno:["5L60"],irondefense:["3L33","4L44","4T","5L44","5T"],irontail:["3M","4M","5T"],lavaplume:["4L39","5L39"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M"],protect:["3M","3L27","4M","4L36","5M","5L36"],rapidspin:["4L23","5L23"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],rollout:["4T"],round:["5M"],secretpower:["3M","4M"],selfdestruct:["3T"],shellsmash:["5L65"],skullbash:["4E","5E"],sleeptalk:["3E","3T","4E","4M","5E","5T"],sludgebomb:["3M","4M","5M"],smog:["3L4","4L4","5L4"],smokescreen:["3L14","4L20","5L20"],snore:["3T","4T","5T"],solarbeam:["4M","5M"],stealthrock:["4M","5D","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],toxic:["3M","4M","5M"],willowisp:["4M","5M"],withdraw:["4L7","5L7"],yawn:["3E","4E","5E"],afteryou:["5T"]}}, - spoink:{learnset:{amnesia:["4E","5E"],attract:["3M","4M","5M"],bodyslam:["3T"],bounce:["3L43","4L48","4T","5L53","5T"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],confuseray:["3L25","4L18","5L18"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],endure:["3T","4M","5E"],extrasensory:["3E","4E","5E"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],futuresight:["3E","4E","5E"],grassknot:["4M","5M"],headbutt:["4T"],healbell:["4T","5T"],hiddenpower:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lightscreen:["3M","4M","5M"],luckychant:["5E"],magiccoat:["3L28","4L21","4T","5L21","5T"],mimic:["3T"],mirrorcoat:["4E","5E"],naturalgift:["4M"],odorsleuth:["3L10","4L10","5L10"],payback:["4M","4L34","5M","5L41"],powergem:["4L46","5L48"],protect:["3M","4M","5M"],psybeam:["3L16","4L14","5L14"],psychic:["3M","3L34","4M","4L41","5M","5L46"],psychup:["3L19","3T","4M","4L15","5M","5L15"],psyshock:["5M","5L34"],psywave:["3L7","4L7","5L7","5D"],raindance:["3M","4M","5M"],recycle:["4M","5D","5T"],reflect:["3M","4M","5M"],rest:["3M","3L37","4M","4L29","5M","5L29"],"return":["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5E","5D","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3L37","3T","4L29","4T","5L29","5T"],splash:["3L1","4L1","5L1","3S0"],substitute:["3E","3T","4E","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],taunt:["3M","4M","5M"],telekinesis:["5M"],thief:["3M","4M","5M"],thunderwave:["4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["3E","4E","4T","5E","5T"],trickroom:["4M","5M"],uproar:["3S0"],whirlwind:["5E"],zenheadbutt:["4E","4L26","4T","5E","5L26","5T"],covet:["5T"]}}, - grumpig:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],bounce:["3L55","4L60","4T","5L68","5T"],brickbreak:["4M","5M"],bulldoze:["5M"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],confuseray:["3L25","4L18","5L18"],counter:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["4T"],healbell:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lightscreen:["3M","4M","5M"],magiccoat:["3L28","4L21","4T","5L21","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],odorsleuth:["3L1","3L10","4L1","4L10","5L1","5L10"],payback:["4M","4L37","5M","5L47"],powergem:["4L55","5L60"],protect:["3M","4M","5M"],psybeam:["3L1","3L16","4L1","4L14","5L1","5L14"],psychic:["3M","3L37","4M","4L47","5M","5L55"],psychup:["3L19","3T","4M","4L15","5M","5L15"],psyshock:["5M","5L37"],psywave:["3L1","3L7","4L1","4L7","5L1","5L7"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","3L43","4M","4L29","5M","5L29"],"return":["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3L43","3T","4L29","4T","5L29","5T"],splash:["3L1","4L1","5L1"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],taunt:["3M","4M","5M"],telekinesis:["5M"],thief:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],zenheadbutt:["4L26","4T","5L26","5T"],covet:["5T"]}}, - spinda:{learnset:{assist:["3E","4E","5E"],attract:["3M","4M","5M"],batonpass:["3E","4E","5E"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],calmmind:["3M","4M","5M"],captivate:["4M"],copycat:["4L10","5L10","5D"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M"],disable:["3E","4E","5E"],dizzypunch:["3L27","4L28","5L28"],doubleedge:["3L45","3T","4L46","5L46"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],encore:["3E","4E","5E"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L12","4L14","5L14"],fakeout:["4E","5E","5D"],faketears:["5E"],firepunch:["3T","4T","5T"],flail:["3L49","4L50","5L50"],flash:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hypnosis:["3L23","4L23","5L23"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5E","5T"],lastresort:["4T","5T"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M"],psybeam:["3L16","4L19","5L19"],psychic:["3M","4M","5M"],psychocut:["4E","5E"],psychup:["3L38","3T","4M","4L41","5M","5L41"],raindance:["3M","4M","5M"],rapidspin:["5E"],recycle:["4M","5T"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4E","4T","5E","5T"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sing:["3S0"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],smellingsalt:["3E","4E","5E"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4L32","4T","5L32"],sunnyday:["3M","4M","5M"],superpower:["5D"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S0"],teeterdance:["3L34","4L37","5L37"],thief:["3M","4M","5M"],thrash:["3L56","4L55","5L55"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],trick:["3E","4E","5E","5T"],trickroom:["4M","5M"],uproar:["3L5","4L5","4T","5L5","3S0","5T"],waterpulse:["3M","4M","5E"],wildcharge:["5M"],wish:["3E","4E","5E"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"]}}, - trapinch:{learnset:{attract:["3M","4M","5M"],bide:["5L17"],bite:["3L1","4L1","5L1","5D","5S0"],bodyslam:["3T"],bugbite:["4T","5E","5T"],bulldoze:["5M","5L21"],captivate:["4M"],crunch:["3L33","4L33","5L33"],dig:["3M","3L41","4M","4L41","5M","5L41"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4L65","4T","5E","5L65","5T"],earthquake:["3M","4M","4L73","5M","5L73"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],faintattack:["3L17","4L17","5L17"],feint:["4L81","5L81"],fissure:["4L89","5L89"],flail:["4E","5E"],focusenergy:["3E","4E","5E"],frustration:["3M","4M","5M"],furycutter:["4E","4T","5E"],gigadrain:["3M","4M","5D","5T"],gust:["3E","4E","5E"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","3L57","4M","4L57","5M","5L57"],mimic:["3T"],mudshot:["4E","5E"],mudslap:["3T","4T","5L13"],naturalgift:["4M"],protect:["3M","4M","5M"],quickattack:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M","5L25"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandattack:["3L9","4L9","5L9"],sandstorm:["3M","3L49","4M","4L49","5M","5L49"],sandtomb:["3L25","4L25","5L25"],secretpower:["3M","4M"],signalbeam:["5E","5D","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],superpower:["5L67","5T"],solarbeam:["3M","4M","5M"],strength:["3M","4M","5M"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],toxic:["3M","4M","5M"]}}, - vibrava:{learnset:{aircutter:["4T"],attract:["3M","4M","5M"],bide:["5L17"],bite:["3L1"],bodyslam:["3T"],bugbite:["4T","5T"],bulldoze:["5M","5L21"],captivate:["4M"],crunch:["3L33"],defog:["4M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dracometeor:["4T","5T"],dragonbreath:["3L35","4L35","5L35"],dragonpulse:["4M","5T"],earthpower:["4T","5T","5L39"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L1","3L17","4L1","4L17","5L1","5L17"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["4T"],gigadrain:["3M","4M","5T"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","3L57","4M","4L57","5M","5L57"],mimic:["3T"],mudslap:["3T","4T","5L13"],naturalgift:["4M"],ominouswind:["4T"],outrage:["4T","5T"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M","5L25"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roost:["4M","5T"],round:["5M"],sandattack:["3L1","3L9","4L1","4L9","5L1","5L9"],sandstorm:["3M","3L49","4M","4L49","5M","5L49"],sandtomb:["3L1","3L25","4L1","4L25","5L1","5L25"],screech:["3L41","4L41","5L41"],secretpower:["3M","4M"],silverwind:["4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],sonicboom:["4L1","5L1"],steelwing:["3M","4M"],strength:["3M","4M","5M"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["4L33","5L33"],swagger:["3T","4M","5M"],swift:["3T","4T"],toxic:["3M","4M","5M"],twister:["4T"],uturn:["4M","5M"],signalbeam:["5T"],superpower:["5T"],tailwind:["4T","5T"]}}, - flygon:{learnset:{aerialace:["4M","5M"],aircutter:["4T"],attract:["3M","4M","5M"],bide:["5L17"],bite:["3L1"],bodyslam:["3T"],bugbite:["4T","5T"],bulldoze:["5M","5L21"],captivate:["4M"],crunch:["3L33","3S0"],defog:["4M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dracometeor:["4T","5T","4S1"],dragonbreath:["3L35","4L35","5L35","3S0"],dragonclaw:["3M","4M","4L45","5M","5L45","4S1"],dragonpulse:["4M","5T"],dragontail:["5M","5L65"],earthpower:["4T","5T","5L39"],earthquake:["3M","4M","5M","4S1"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L1","3L17","4L1","4L17","5L1","5L17"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","3L65","4M","4L57","5M","5L57"],incinerate:["5M"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["3T","4T","5L13"],naturalgift:["4M"],ominouswind:["4T"],outrage:["4T","5T"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M","5L25"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roost:["4M","5T"],round:["5M"],sandattack:["3L1","3L9","4L1","4L9","5L1","5L9"],sandstorm:["3M","3L53","4M","4L49","5M","5L49"],sandtomb:["3L1","3L25","4L1","4L25","5L1","5L25","3S0"],screech:["3L41","4L41","5L41","3S0"],secretpower:["3M","4M"],silverwind:["4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],sonicboom:["4L1","5L1"],steelwing:["3M","4M"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],supersonic:["4L33","5L33"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],thunderpunch:["4T","5T"],toxic:["3M","4M","5M"],twister:["4T"],uturn:["4M","5M","4S1"],signalbeam:["5T"],superpower:["5T"]}}, - cacnea:{learnset:{absorb:["3L5","4L5","5L5","5D","3S0"],acid:["3E","4E","5E"],attract:["3M","4M","5M"],block:["5E","5T"],bodyslam:["3T"],brickbreak:["4M","5M"],bulletseed:["3M","4M"],captivate:["4M"],cottonspore:["3L41","4L49","5L49"],counter:["3E","3T","4E","5E"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],destinybond:["3L49","4L57","5L57"],disable:["5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dynamicpunch:["3E","3T","4E","5E"],encore:["3S0"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],faintattack:["3L29","4L29","5L29"],flash:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M"],grasswhistle:["3E","4E","5E"],growth:["3L9","4L9","5L9"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],ingrain:["3L25","4L25","5L25"],leechseed:["3L13","4L13","5L13"],leer:["3L1","4L1","5L1","3S0"],lowkick:["4E","4T","5E","5T"],magicalleaf:["4E","5E"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4E","5E"],naturalgift:["4M"],needlearm:["3L37","4L45","5L45"],payback:["4M","4L41","5M","5L41"],pinmissile:["3L21","4L21","5L21"],poisonjab:["4M","5M"],poisonsting:["3L1","4L1","5L1","3S0"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],sandattack:["3L17","4L17","5L17"],sandstorm:["3M","3L45","4M","4L53","5M","5L53"],secretpower:["3M","4M"],seedbomb:["4E","4T","5E","5T"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],smellingsalt:["4E","5E"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spikes:["3L33","4L33","5L33"],spite:["4T","5T"],substitute:["3T","4M","5M"],suckerpunch:["4L37","4T","5L37"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],switcheroo:["5E"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],teeterdance:["3E","4E","5E","5D"],thunderpunch:["3T","4T","5D","5T"],toxic:["3M","4M","5M"],venoshock:["5M"],worryseed:["4T","5E","5T"]}}, - cacturne:{learnset:{absorb:["3L1","3L5","4L1","4L5","5L1","5L5"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["4M","5M"],bulletseed:["3M","4M"],captivate:["4M"],cottonspore:["3L47","4L59","5L59"],counter:["3T"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],destinybond:["3L59","4L71","5L71"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],embargo:["4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],faintattack:["3L29","4L29","5L29","3S0"],flash:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growth:["3L1","3L9","4L1","4L9","5L1","5L9"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],ingrain:["3L25","4L25","5L25","3S0"],leechseed:["3L13","4L13","5L13"],leer:["3L1","4L1","5L1"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],needlearm:["3L41","4L53","5L53","3S0"],payback:["4M","4L47","5M","5L47"],pinmissile:["3L21","4L21","5L21"],poisonjab:["4M","5M"],poisonsting:["3L1","4L1","5L1"],protect:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],revenge:["3L1","4L1","5L1"],roleplay:["4T","5T"],round:["5M"],sandattack:["3L17","4L17","5L17"],sandstorm:["3M","3L53","4M","4L65","5M","5L65"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spikes:["3L35","4L35","5L35","3S0"],spite:["4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4L41","4T","5L41"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],synthesis:["4T","5T"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],venoshock:["5M"],worryseed:["4T","5T"],block:["5T"],foulplay:["5T"]}}, - swablu:{learnset:{aerialace:["3M","4M","5M"],agility:["3E","4E","5E"],aircutter:["4T"],astonish:["3L8","4L5","5L5"],attract:["3M","4M","5M"],bodyslam:["3T"],captivate:["4M"],cottonguard:["5L40"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonpulse:["4M","4L45","5L50","5T"],dragonrush:["4E","5E"],dreameater:["3T","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["3S0"],featherdance:["4E","5E","5D"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],furyattack:["3L18","4L13","5L13"],growl:["3L1","4L1","5L1","3S0","5S1"],haze:["3E","4E","5E"],healbell:["4T","5T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],hypervoice:["5E","5T"],icebeam:["3M","4M","5M"],mimic:["3T"],mirrormove:["3L38","4L36","5L36"],mist:["3L28","4L23","5L23"],mudslap:["3T","4T"],naturalgift:["4M","4L32","5L32"],ominouswind:["4T"],outrage:["4T","5T"],peck:["3L1","4L1","5L1","5D","3S0","5S1"],perishsong:["3L48","4L50","5L55"],pluck:["4M","5M"],powerswap:["4E","5E"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],pursuit:["3E","4E","5E"],rage:["3E","4E","5E"],raindance:["3M","4M","5M"],refresh:["3L41","4L40","5L45"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roost:["4M","5E","5D","5T"],round:["5M","5L18"],safeguard:["3M","3L21","4M","4L18","5M","5L18"],secretpower:["3M","4M"],sing:["3L11","4L9","5L9"],skyattack:["3T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],steelwing:["3M","4M","5E"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],takedown:["3L31","4L28","5L28"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uproar:["4T","5T"]}}, - altaria:{learnset:{aerialace:["3M","4M","5M","3S1"],aircutter:["4T"],astonish:["3L1","3L8","4L1","4L5","5L1","5L5"],attract:["3M","4M","5M"],bodyslam:["3T"],bulldoze:["5M"],captivate:["4M"],cottonguard:["5L46"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dracometeor:["4T","5T"],dragonbreath:["3L35","4L35","5L35","3S0","3S1","5S2"],dragonclaw:["3M","4M","5M"],dragondance:["3L40","4L39","5L39","3S0"],dragonpulse:["4M","4L54","5L62","5T"],dreameater:["3T","4M","5M"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["5S2"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],furyattack:["3L18","4L13","5L13"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1"],healbell:["4T","5T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],incinerate:["5M"],irontail:["3M","4M","5T"],mimic:["3T"],mist:["3L28","4L23","5L23"],mudslap:["3T","4T"],naturalgift:["4M","4L32","5L32","5S2"],ominouswind:["4T"],outrage:["4T","5T"],peck:["3L1","4L1","5L1"],perishsong:["3L54","4L62","5L70"],pluck:["4M","4L1","5M","5L1"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],refresh:["3L45","4L46","5L54","3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],roost:["4M","5T"],round:["5M","5L18"],safeguard:["3M","3L21","4M","4L18","5M","5L18"],secretpower:["3M","4M"],sing:["3L1","3L11","4L1","4L9","5L1","5L9"],skyattack:["3L59","3T","4L70","4T","5L77","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","3S1"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],takedown:["3L31","4L28","5L28","3S0","3S1","5S2"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],uproar:["4T","5T"],hypervoice:["5T"],wonderroom:["5T"]}}, - zangoose:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","3S2"],captivate:["4M"],closecombat:["4L53","5L53"],counter:["3E","3T","4E","5E","3S2"],crushclaw:["3L31","4L31","5L31","3S2"],curse:["3E","4E","5E"],defensecurl:["3T"],detect:["3L46","4L40","5L40"],dig:["3M","4M","5M"],disable:["4E","5E"],doubleedge:["3T"],doublehit:["4E","5E","5D"],doublekick:["3E","4E","5E"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],embargo:["4M","4L27","5M","5L27"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["3L55","4M","4L44","5M","5L44"],feint:["5E"],finalgambit:["5E"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flail:["3E","4E","5E"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],furycutter:["3L13","3T","4L14","4T","5L14","3S0"],furyswipes:["4E","5E"],gigadrain:["3M","4M","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5E","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],leer:["3L4","4L1","5L1","3S0","3S1"],lowkick:["4T","5T","5D"],megakick:["3T"],megapunch:["3T"],metalclaw:["4E","5E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4E","5E"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],pursuit:["3L25","4L22","5L22"],quickattack:["3L7","4L5","5L5","3S0","3S1","5D"],raindance:["3M","4M","5M"],razorwind:["3E","4E","5E"],refresh:["3S2"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],revenge:["5L26"],roar:["3E","3M","4E","4M","5M"],rockclimb:["4M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],rollout:["3T","4T"],round:["5M"],scratch:["3L1","4L1","5L1","3S1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],slash:["3L19","4L18","5L18"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3L10","3T","4M","4L9","5M","5L9","3S0","3S1"],taunt:["3M","3L37","4M","4L35","5M","5L35"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"],workup:["5M"],xscissor:["4M","4L48","5M","5L48"]}}, - seviper:{learnset:{aquatail:["4T","5T","5D"],assurance:["4E","5E"],attract:["3M","4M","5M"],bite:["3L10","4L10","5L10","3S0","3S2","5D"],bodyslam:["3E","3T","4E","5E","5D"],bulldoze:["5M"],captivate:["4M"],coil:["5L64"],crunch:["3L28","4L28","5L28","3S1"],darkpulse:["4M","5T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragontail:["5M"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],finalgambit:["5E"],flamethrower:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gastroacid:["5L34","5T"],gigadrain:["3M","4M","5T"],glare:["3L25","4L25","5L25","3S1"],haze:["3L43","4L43","5L43"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],irontail:["3M","4M","5E","5T"],knockoff:["4T","5T"],lick:["3L7","4L7","5L7","3S0","3S2"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4E","4L46","5E","5L46"],payback:["4M","5M"],poisonfang:["3L34","4L34","5L34"],poisonjab:["4M","4L52","5M","5L52"],poisontail:["3L16","4L16","5L16","3S0","3S1"],protect:["3M","4M","5M"],punishment:["5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rocksmash:["3M","4M","5M"],round:["5M"],scaryface:["4E","5E"],screech:["3L19","4L19","5L19","3S1"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spitup:["3E","4E","5E"],stockpile:["3E","4E","5E"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3L37","3T","4M","4L37","5M","5L37"],swallow:["3E","4E","5E"],swift:["3T","4T"],switcheroo:["4E","5E"],taunt:["3M","4M","5M"],thief:["3M","4M","5M"],toxic:["3M","4M","5M"],venoshock:["5M","5L55"],wrap:["3L1","4L1","5L1","3S0","3S2"],wringout:["4L55","5E","5L61"],xscissor:["4M","5M"],bind:["5T"]}}, - lunatone:{learnset:{acrobatics:["5M"],ancientpower:["4T"],batonpass:["3S1"],blizzard:["4M","5M"],bodyslam:["3T"],bulldoze:["5M"],calmmind:["3M","4M","5M"],chargebeam:["4M","5M"],confusion:["3L7","4L1","5L1","5D","3S0"],cosmicpower:["3L31","4L34","5L34"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],earthpower:["4T","5T","5D"],earthquake:["3M","4M","5M"],embargo:["4M","4L31","5M","5L31"],endure:["3T","4M"],explosion:["3L49","3T","4M","4L56","5M","5L56"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],futuresight:["3L43","4L53","5L53"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],gyroball:["4M","5M"],harden:["3L1","4L1","5L1","3S0"],healblock:["4L42","5L42"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],hypnosis:["3L19","4L12","5L12"],icebeam:["3M","4M","5M"],ironhead:["4T","5T"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],magicroom:["5L64","5T"],mimic:["3T"],moonlight:["5D"],naturalgift:["4M"],painsplit:["4T","5T"],protect:["3M","4M","5M"],psychic:["3M","3L37","4M","4L45","5M","5L45","3S1"],psychup:["3T","4M","5M"],psyshock:["5M"],psywave:["3L25","4L23","5L23"],raindance:["3M","4M","5M","3S1"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockpolish:["4M","4L20","5M","5L20"],rockslide:["3T","4M","5M","5L25"],rockthrow:["3L13","4L9","5L9"],rocktomb:["3M","4M","5M","3S1"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","5L41"],substitute:["3T","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S0"],telekinesis:["5M"],toxic:["3M","4M","5M"],trickroom:["4M","5M"],zenheadbutt:["4T","5T"],icywind:["5T"]}}, - solrock:{learnset:{acrobatics:["5M"],ancientpower:["4T"],batonpass:["3S1"],bodyslam:["3T"],bulldoze:["5M"],calmmind:["3M","4M","5M"],chargebeam:["4M","5M"],confusion:["3L7","4L1","5L1","5D","3S0"],cosmicpower:["3L31","4L34","5L34","3S1"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],embargo:["4M","4L31","5M","5L31"],endure:["3T","4M"],explosion:["3L49","3T","4M","4L56","5M","5L56"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firespin:["3L19","4L12","5L12"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],gyroball:["4M","5M"],harden:["3L1","4L1","5L1","3S0"],healblock:["4L42","5L42"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],irondefense:["4T","5T"],ironhead:["4T","5T"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],mimic:["3T"],morningsun:["5D"],naturalgift:["4M"],overheat:["3M","4M","5M"],painsplit:["4T","5T"],protect:["3M","4M","5M"],psychic:["3M","4M","5M","5L33","3S1"],psychup:["3T","4M","5M"],psyshock:["5M"],psywave:["3L25","4L23","5L23"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockpolish:["4M","4L20","5M","5L20"],rockslide:["3L37","3T","4M","4L45","5M","5L45"],rockthrow:["3L13","4L9","5L9"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],solarbeam:["3M","3L43","4M","4L53","5M","5L53"],stealthrock:["4M","5T"],stoneedge:["4M","5M","5L41"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M","3S1"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S0"],telekinesis:["5M"],toxic:["3M","4M","5M"],trickroom:["4M","5M"],willowisp:["4M","5M"],wonderroom:["5L64","5T"],zenheadbutt:["4T","5T","5D"],heatwave:["5T"]}}, - barboach:{learnset:{amnesia:["3L21","4L18","5L18"],aquatail:["4L35","4T","5L35","5T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bounce:["4T","5T"],bulldoze:["5M"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragondance:["4E","5E"],earthpower:["4T","5E","5T"],earthquake:["3M","3L31","4M","4L39","5M","5L39"],endure:["3T","4M"],facade:["3M","4M","5M"],fissure:["3L41","4L47","5L47"],flail:["4E","5E"],frustration:["3M","4M","5M"],futuresight:["3L36","4L43","5L43"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["4E","5E"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],magnitude:["3L16","4L26","5L26"],mimic:["3T"],mudbomb:["4L14","5L14"],muddywater:["5E"],mudshot:["5E"],mudslap:["3L1","3T","4L1","4T","5L1","5D"],mudsport:["3L6","4L6","5L6"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","3L26","4M","4L31","5M","5L31"],"return":["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],scald:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5D","5T"],snore:["3L26","3T","4L31","4T","5L31","5T"],spark:["3E","4E","5E","5D"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],takedown:["4E","5E"],thrash:["3E","4E","5E"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L11","4L10","5L10"],waterpulse:["3M","4M","4L22","5L22"],watersport:["3L6","4L6","5L6"],whirlpool:["3E","4E","4M","5E"]}}, - whiscash:{learnset:{amnesia:["3L21","4L18","5L18"],aquatail:["4L39","4T","5L39","4S0","5T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bounce:["4T","5T"],bulldoze:["5M"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],earthquake:["3M","3L36","4M","4L45","5M","5L45","4S0"],endure:["3T","4M"],facade:["3M","4M","5M"],fissure:["3L56","4L57","5L57"],frustration:["3M","4M","5M"],futuresight:["3L46","4L51","5L51"],gigaimpact:["4M","5M","4S0"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],magnitude:["3L16","4L26","5L26"],mimic:["3T"],mudbomb:["4L14","5L14"],mudslap:["3L1","3T","4L1","4T","5L1"],mudsport:["3L1","3L6","4L1","4L6","5L1","5L6"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","3L26","4M","4L33","5M","5L33"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],scald:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3L26","3T","4L33","4T","5L33","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tickle:["3L1","4L1","5L1"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L11","4L10","5L10"],waterpulse:["3M","4M","4L22","5L22"],watersport:["3L1","3L6","4L1","4L6","5L1","5L6"],whirlpool:["4M"],zenheadbutt:["4L1","4T","5L1","4S0","5T"]}}, - corphish:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["3E","4E","4T","5E"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3E","3T","4E","5E"],brickbreak:["3M","4M","5M"],bubble:["3L1","4L1","5L1","3S0"],bubblebeam:["3L20","3L19","4L20","5L20"],captivate:["4M"],chipaway:["5E"],counter:["3T"],crabhammer:["3L35","3L34","4L38","5L38"],crunch:["3L43","4L47","5L47"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],doubleedge:["3T","5E"],doubleteam:["3M","4M","5M"],dragondance:["4E","5E"],endeavor:["3E","4E","4T","5E","5D","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],guillotine:["3L44","3L46","4L53","5L53"],hail:["3M","4M","5M"],harden:["3L7","4L7","5L7","5D"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],knockoff:["3L26","3L25","4E","4L26","4T","5E","5L26","5T"],leer:["3L13","4L13","5L13"],metalclaw:["4E","5E","5D"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3E","4E","5E"],naturalgift:["4M"],nightslash:["4L35","5L35"],payback:["4M","5M"],protect:["3M","3L23","3L22","4M","4L23","5M","5L23"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],spite:["4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superpower:["4E","4T","5E","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3L38","3T","3L37","4M","4L44","5M","5L44"],taunt:["3M","3L32","3L31","4M","4L32","5M","5L32"],toxic:["3M","4M","5M"],trumpcard:["5E"],vicegrip:["3L10","4L10","5L10"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],watersport:["3S0"],whirlpool:["4M"],xscissor:["4M","5M"]}}, - crawdaunt:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["4T"],attract:["3M","4M","5M"],avalanche:["4M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bubble:["3L1","4L1","5L1"],bubblebeam:["3L20","3L19","4L20","5L20"],captivate:["4M"],counter:["3T"],crabhammer:["3L39","3L38","4L44","5L44","3S0","3S1"],crunch:["3L51","4L57","5L57"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],dig:["3M","4M","5M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],guillotine:["3L52","3L56","4L65","5L65","3S0"],hail:["3M","4M","5M"],harden:["3L1","3L7","4L1","4L7","5L1","5L7"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],knockoff:["3L26","3L25","4L26","4T","5L26","3S1","5T"],leer:["3L1","3L13","4L1","4L13","5L1","5L13"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4L39","5L39"],payback:["4M","5M"],protect:["3M","3L23","3L22","4M","4L23","5M","5L23"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockslide:["4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5M"],snarl:["5M"],snore:["3T","4T","5T"],spite:["4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superpower:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4L30","4T","5L30"],swordsdance:["3L44","3T","3L43","4M","4L52","5M","5L52","3S0","3S1"],taunt:["3M","3L34","3L33","4M","4L34","5M","5L34","3S0","3S1"],toxic:["3M","4M","5M"],vicegrip:["3L1","3L10","4L1","4L10","5L1","5L10"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],xscissor:["4M","5M"]}}, - baltoy:{learnset:{allyswitch:["5M"],ancientpower:["3L25","4L25","4T","5L26"],bulldoze:["5M"],calmmind:["4M","5M"],chargebeam:["4M","5M"],confusion:["3L1","4L1","5L1"],cosmicpower:["3L37","4L45","5L37"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],earthpower:["4L53","4T","5L51","5T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],explosion:["3L45","3T","4M","4L71","5M","5L60"],extrasensory:["5L43"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T","5D"],guardsplit:["5L48"],gyroball:["4M","5M"],harden:["3L3","4L3","5L4"],headbutt:["4T"],healblock:["4L61","5L54"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3L7","3T","4L7","4T","5L11","3S0"],naturalgift:["4M"],powersplit:["5L48"],powertrick:["4L31","5L31"],protect:["3M","4M","5M"],psybeam:["3L11","4L11","5L15","3S0"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],rapidspin:["3L5","4L5","5L7","5D"],recycle:["4M","5T"],reflect:["3M","4M","5M"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocktomb:["3M","3L15","4M","4L15","5M","5L18","3S0"],round:["5M"],safeguard:["4M","5M"],sandstorm:["3M","3L31","4M","4L37","5M","5L34"],secretpower:["3M","4M"],selfdestruct:["3L19","3T","4L19","5L21"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stealthrock:["4M","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],telekinesis:["5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],zenheadbutt:["4T","5T","5D"],drillrun:["5T"],wonderroom:["5T"]}}, - claydol:{learnset:{allyswitch:["5M"],ancientpower:["3L25","4L25","4T","5L26"],bulldoze:["5M"],calmmind:["4M","5M"],chargebeam:["4M","5M"],confusion:["3L1","4L1","5L1"],cosmicpower:["3L42","4L51","5L47"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],earthpower:["4L62","4T","5L59","5T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],explosion:["3L55","3T","4M","4L86","5M","5L72"],extrasensory:["5L39"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],guardsplit:["5L54"],gyroball:["4M","5M"],harden:["3L1","3L3","4L1","4L3","5L1","5L4"],headbutt:["4T"],healblock:["4L73","5L64"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","3L36","4M","4L36","5M","5L36"],icebeam:["3M","4M","5M"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3L7","3T","4L7","4T","5L11"],naturalgift:["4M"],powersplit:["5L54"],powertrick:["4L31","5L31"],protect:["3M","4M","5M"],psybeam:["3L11","4L11","5L15"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],rapidspin:["3L1","3L5","4L1","4L5","5L1","5L7"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","3L15","4M","4L15","5M","5L18"],round:["5M"],safeguard:["4M","5M"],sandstorm:["3M","3L31","4M","4L40","5M","5L34"],secretpower:["3M","4M"],selfdestruct:["3L19","3T","4L19","5L21"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],telekinesis:["5M"],teleport:["3L1","4L1","5L1"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],zenheadbutt:["4T","5T"],drillrun:["5T"],wonderroom:["5T"]}}, - lileep:{learnset:{acid:["3L15","4L8","5L8","5D","5S0"],amnesia:["3L36","4L29","5L29"],ancientpower:["3L43","4L43","5L43"],astonish:["3L1","4L1","5L1"],attract:["3M","4M","5M"],barrier:["3E","4E","5E"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],confuseray:["3L29","4L22","5L22"],constrict:["3L8","4L1","5L1","5S0"],curse:["4E","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],endure:["3T","4M","5E"],energyball:["4M","4L50","5M","5L50"],facade:["3M","4M","5M"],flash:["4M","5M"],frustration:["3M","4M","5M"],gastroacid:["4L36","4T","5L36","5T"],gigadrain:["3M","4M","5D","5T"],grassknot:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],ingrain:["3L22","4L15","5L15"],megadrain:["5E"],mimic:["3T"],mirrorcoat:["3E","4E","5E","5D"],mudslap:["3T","4T"],naturalgift:["4M"],painsplit:["4T","5T"],protect:["3M","4M","5M"],psychup:["3T"],recover:["3E","4E","5E","5S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3E","3T","4E","4M","5M","5S0"],rocktomb:["4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],smackdown:["5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spitup:["3L50","4L57","5L57"],stealthrock:["4M","5E","5T"],stockpile:["3L50","4L57","5L57"],stringshot:["4T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["3L50","4L57","5L57"],swordsdance:["4M","5M"],synthesis:["4T","5T"],tickle:["4E","5E"],toxic:["3M","4M","5M"],worryseed:["4T","5T"],wringout:["4E","4L64","5E","5L64"],bind:["5T"]}}, - cradily:{learnset:{acid:["3L1","3L15","4L1","4L8","5L1","5L8"],amnesia:["3L36","4L29","5L29"],ancientpower:["3L48","4L36","4T","5L36"],astonish:["3L1","4L1","5L1"],attract:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],bulldoze:["5M"],bulletseed:["3M","4M"],captivate:["4M"],confuseray:["3L29","4L22","5L22"],constrict:["3L1","3L8","4L1","5L1"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","4L56","5M","5L56"],facade:["3M","4M","5M"],flash:["4M","5M"],frustration:["3M","4M","5M"],gastroacid:["4L46","4T","5L46","5T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],ingrain:["3L1","3L22","4L1","4L15","5L1","5L15"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],painsplit:["4T","5T"],protect:["3M","4M","5M"],psychup:["3T"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],sludgewave:["5M"],smackdown:["5M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spitup:["3L60","4L66","5L66"],stealthrock:["4M","5T"],stockpile:["3L60","4L66","5L66"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],stringshot:["4T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["3L60","4L66","5L66"],swordsdance:["4M","5M"],synthesis:["4T","5T"],toxic:["3M","4M","5M"],worryseed:["4T","5T"],wringout:["4L76","5L76"],bind:["5T"]}}, - anorith:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["3L37","4L31","4T","5L31"],attract:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],crosspoison:["4E","5E","5D","5S0"],crushclaw:["4L55","5L55"],curse:["4E","5E"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["4M","5M"],frustration:["3M","4M","5M"],furycutter:["3L43","3T","4L37","4T","5L37"],harden:["3L7","4L1","5L1","5S0"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],irondefense:["4T","5E","5T"],knockoff:["3E","4E","4T","5E","5T"],metalclaw:["3L25","4L19","5L19"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3L13","4L7","5L7","5S0"],naturalgift:["4M"],protect:["3M","3L31","4M","4L25","5M","5L25"],rapidspin:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockblast:["3L55","4L49","5L49"],rockpolish:["4M","5M"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandattack:["4E","5E"],sandstorm:["3M","4M","5M"],scratch:["3L1","4L1","5L1","5D"],screech:["4E","5E"],secretpower:["3M","4M"],slash:["3L49","4L43","5L43"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5D","5T"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swordsdance:["3E","3T","4E","4M","5M"],toxic:["3M","4M","5M"],watergun:["3L19","4L13","5L13","5S0"],waterpulse:["3M","4M","5E"],xscissor:["4M","4L61","5M","5L61"],bugbite:["5T"]}}, - armaldo:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["3L37","4L31","4T","5L31"],aquatail:["4T","5T"],attract:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],crushclaw:["4L67","5L67"],cut:["3M","4M","5M"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],falseswipe:["4M","5M"],flashcannon:["4M","5M"],frustration:["3M","4M","5M"],furycutter:["3L46","3T","4L37","4T","5L37"],gigaimpact:["4M","5M"],harden:["3L1","3L7","4L1","5L1"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],irondefense:["4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lowkick:["4T","5T"],metalclaw:["3L25","4L19","5L19"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3L1","3L13","4L1","4L7","5L1","5L7"],naturalgift:["4M"],protect:["3M","3L31","4M","4L25","5M","5L25"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockblast:["3L64","4L55","5L55"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],scratch:["3L1","4L1","5L1"],secretpower:["3M","4M"],seismictoss:["3T"],slash:["3L55","4L46","5L46"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],stringshot:["4T"],strugglebug:["5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["4T","5T"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M"],toxic:["3M","4M","5M"],watergun:["3L1","3L19","4L1","4L13","5L1","5L13"],waterpulse:["3M","4M"],xscissor:["4M","4L73","5M","5L73"],bugbite:["5T"]}}, - feebas:{learnset:{attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],brine:["5E"],captivate:["4M","5E","5D"],confuseray:["3E","4E","5E"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonbreath:["3E","4E","5E"],dragonpulse:["5E","5T"],endure:["3T","4M"],facade:["3M","4M","5M"],flail:["3L30","4L30","5L30"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],haze:["4E","5E"],hiddenpower:["3M","4M","5M"],hypnosis:["3E","4E","5E"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["5E","5T"],lightscreen:["3E","4E","5M"],mimic:["3T"],mirrorcoat:["3E","4E","5E","5D"],mist:["4E","5E"],mudsport:["3E","4E","5E"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],splash:["3L1","4L1","5L1","5D"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L15","4L15","5L15"],tickle:["4E","5E"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"]}}, - milotic:{learnset:{aquaring:["4L49","5L49"],aquatail:["4L29","4T","5L29","5T"],attract:["3M","3L45","4M","4L41","5M","5L41"],avalanche:["4M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bulldoze:["5M"],captivate:["4M","4L25","5L25"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonpulse:["4M","5T"],dragontail:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],hiddenpower:["3M","4M","5M"],hydropump:["3L40","4L37","5L37","4S1","4S2","5S3"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M","4S1","5S3","5S4"],icywind:["3T","4T","4S2","5T"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],lightscreen:["5M"],magiccoat:["4T","5T"],mimic:["3T"],mirrorcoat:["5S3"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","3L35","4M","4L33","5M","5L33","3S0","4S1","4S2"],recover:["3L30","4L21","5L21","3S0","4S1","4S2","5S3","5S4"],refresh:["3L15","4L9","5L9"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","3L50","4M","4L45","5M","5L45"],scald:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],surf:["3M","4M","5M","5S4"],swagger:["3T","4M","5M"],swift:["3T","4T"],toxic:["3M","4M","5M","5S4"],twister:["3L25","4L17","4T","5L17","3S0"],waterfall:["3M","4M","5M"],watergun:["3L1","4L1","5L1"],waterpulse:["3M","3L20","4M","4L13","5L13","3S0"],watersport:["3L10","4L5","5L5"],whirlpool:["4M"],wrap:["3L5","4L1","5L1"],bind:["5T"]}}, - castform:{learnset:{amnesia:["4E","5E"],attract:["3M","4M","5M"],avalanche:["4M"],blizzard:["3M","4M","5M","5L50"],bodyslam:["3T"],captivate:["4M"],clearsmog:["5E"],defensecurl:["3T"],disable:["4E","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],ember:["3L10","4L10","5L10","5D"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M","5L50"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],futuresight:["3E","4E","5E"],hail:["3M","3L20","4M","4L20","5M","5L30"],headbutt:["5L20"],hex:["5E"],hiddenpower:["3M","4M","5M"],hydropump:["5L50"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],incinerate:["5M"],lastresort:["4T","5T"],luckychant:["4E","5E"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4E","4T","5E","5D"],powdersnow:["3L10","4L10","5L10"],protect:["3M","4M","5M"],psychup:["3E","3T","4E","4M","5M"],raindance:["3M","3L20","4M","4L20","5M","5L30"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],scald:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","3L20","4M","4L20","5M","5L30"],swagger:["3T","4M","5M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],tailwind:["4T","5T"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],watergun:["3L10","4L10","5L10"],waterpulse:["3M","4M","5D"],weatherball:["3L30","4L30","5L40"],workup:["5M"]}}, - kecleon:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["3L49","4L64","4T","4L55","5L55"],aquatail:["4T","5T"],astonish:["3L1","4L1","5L1"],attract:["3M","4M","5M"],bind:["3L4","4L4","5L4","5T"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],counter:["3T"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],disable:["3E","4E","5E"],dizzypunch:["4E","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L7","4L7","5L7","5D"],fakeout:["4E","5E"],feint:["4L14","5L14"],fireblast:["3M","4M","5M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],foulplay:["5E","5T"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],furyswipes:["3L12","4L10","5L10"],grassknot:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],lick:["3L1","4L1","5L1"],lowkick:["4T","5T"],magiccoat:["3E","4E","4T","5E","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4E","5E"],naturalgift:["4M"],protect:["3M","4M","5M"],psybeam:["3L17","4L15","4L18","5L18"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],recover:["4E","5E"],recycle:["4M","5T"],reflecttype:["5D"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],roleplay:["4T","5T"],rollout:["3T","4T"],round:["5M"],scratch:["3L1","4L1","5L1"],screech:["3L24","4L32","5L32"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shadowclaw:["4M","4L55","4L49","5M","5L49"],shadowsneak:["4L20","4L22","5L22"],shockwave:["3M","4M"],skillswap:["3M","4M","5E","5T","5D"],slash:["3L31","4L25","4L27","5L27"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5E","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stealthrock:["4M","5T"],strength:["3M","4M","5M"],substitute:["3L40","3T","4M","4L39","4L37","5M","5L37"],suckerpunch:["4L46","4T","4L43","5L43"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],synchronoise:["5L58"],tailwhip:["3L1","4L1","5L1"],thief:["3M","3L1","4M","4L1","5M","5L1"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["3E","4E","4T","5E","5T"],trickroom:["4M","5M"],waterpulse:["3M","4M"],workup:["5M"],afteryou:["5T"],wonderroom:["5T"]}}, - shuppet:{learnset:{astonish:["3E","4E","5E"],attract:["3M","4M","5M"],bodyslam:["3T"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],confuseray:["4E","5E"],curse:["3L20","4L13","5L13"],darkpulse:["4M","5T"],destinybond:["3E","4E","5E","5D"],disable:["3E","4E","5E"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],embargo:["4M","4L38","5M","5L43"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L37","4L28","5L28","3S0"],flash:["3M","4M","5M"],foresight:["3E","4E","5E"],frustration:["3M","4M","5M"],grudge:["3L56","4L46","5L50"],gunkshot:["5E"],headbutt:["4T"],hex:["5L31"],hiddenpower:["3M","4M","5M"],icywind:["3T","4T","5T"],imprison:["3E","4E","5E"],knockoff:["3L1","4L1","4T","5L1","5T"],magiccoat:["4T","5T"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L13","4L8","5L8","5D"],ominouswind:["4T","5E"],painsplit:["4T","5D","5T"],payback:["4E","4M","5M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],pursuit:["4E","5E"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],screech:["3L8","4L5","5L5"],secretpower:["3M","4M"],shadowball:["3M","3L44","4M","4L31","5M","5L35","3S0"],shadowsneak:["4E","4L20","5E","5L20"],shockwave:["3M","4M"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","3L49","4M","4L43","5L46","5T"],snore:["3T"],spite:["3L25","4L16","4T","5L16","3S0","5T"],substitute:["3T","4M","5M"],suckerpunch:["4L35","4T","5L38"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],telekinesis:["5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4L50","4T","5L55","5T"],trickroom:["4M","5M"],willowisp:["3L32","4M","4L23","5M","5L23","3S0"],foulplay:["5T"],magicroom:["5T"]}}, - banette:{learnset:{attract:["3M","4M","5M"],bodyslam:["3T"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],cottonguard:["5S1"],curse:["3L1","3L20","4L1","4L13","5L1","5L13","3S0"],darkpulse:["4M","5T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],embargo:["4M","4L42","5M","5L51"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3L39","4L28","5L28","3S0","5S1"],flash:["3M","4M","5M"],fling:["4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grudge:["3L64","4L58","5L66"],headbutt:["4T"],helpinghand:["3S0"],hex:["5L31","5S1"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icywind:["3T","4T","5T"],knockoff:["3L1","4L1","4T","5L1","5T"],magiccoat:["4T","5T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L1","3L13","4L1","4L5","5L1","5L8"],ominouswind:["4T"],painsplit:["4T","5T"],payback:["4M","5M"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roleplay:["4T","5T"],round:["5M"],screech:["3L1","3L8","4L1","4L8","5L1","5L5"],secretpower:["3M","4M"],shadowball:["3M","3L48","4M","4L31","5M","5L35","3S0","5S1"],shadowclaw:["4M","5M"],shadowsneak:["4L20","5L20"],shockwave:["3M","4M"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","3L55","4M","4L51","5L58","5T"],snore:["3T"],spite:["3L25","4L16","4T","5L16","5T"],substitute:["3T","4M","5M"],suckerpunch:["4L35","4T","5L42"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],telekinesis:["5M"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4L66","4T","5L75","5T"],trickroom:["4M","5M"],willowisp:["3L32","4M","4L23","5M","5L23"],foulplay:["5T"],magicroom:["5T"]}}, - duskull:{learnset:{astonish:["3L16","4L14","5L14","3S1"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],confuseray:["3L23","4L17","5L17","3S1"],curse:["3L34","4L30","5L30","3S0"],darkpulse:["4M","5E","5T"],destinybond:["3E","4E","5E"],disable:["3L5","4L6","5L6","5D"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],embargo:["4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E"],flash:["3M","4M","5M"],fling:["4M","5M"],foresight:["3L12","4L9","5L9"],frustration:["3M","4M","5M"],futuresight:["3L49","4L46","5L49"],gravity:["4T","5T"],grudge:["3E","4E","5E"],headbutt:["4T"],hex:["5L38"],helpinghand:["3S1"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],imprison:["3E","4E","5E"],leer:["3L1","4L1","5L1"],meanlook:["3L45","4L38","5L41","3S0"],memento:["3E","4E","5E"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L1","4L1","5L1"],ominouswind:["4E","4T","5E"],painsplit:["3E","4E","4T","5E","5D","5T"],payback:["4M","4L41","5M","5L46"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],pursuit:["3L27","4L25","5L25","3S0"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","3S1"],shadowsneak:["4L22","5L22"],skillswap:["3M","4M","5E","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],telekinesis:["5M"],thief:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["5D","5T"],trickroom:["4M","5M"],willowisp:["3L38","4M","4L33","5M","5L33","3S0"],wonderroom:["5T"]}}, - dusclops:{learnset:{astonish:["3L16","4L14","5L14"],attract:["3M","4M","5M"],bind:["3L1","4L1","5L1","5T"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["4M","5M"],bulldoze:["5M"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],confuseray:["3L23","4L17","5L17"],counter:["3T"],curse:["3L34","4L30","5L30"],darkpulse:["4M","5T"],disable:["3L1","3L5","4L1","4L6","5L1","5L6"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],embargo:["4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],firepunch:["3T","4L1","4T","5L1","5T"],flash:["3M","4M","5M"],fling:["4M","5M"],focuspunch:["3M","4M"],foresight:["3L12","4L9","5L9"],frustration:["3M","4M","5M"],futuresight:["3L58","4L61","5L61"],gigaimpact:["4M","5M"],gravity:["4L1","4T","5L1","5T"],headbutt:["4T"],hex:["5L42"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icepunch:["3T","4L1","4T","5L1","5T"],icywind:["3T","4T","5T"],leer:["3L1","4L1","5L1"],meanlook:["3L51","4L43","5L49"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L1","4L1","5L1"],ominouswind:["4T"],painsplit:["4T","5T"],payback:["4M","4L51","5M","5L58"],protect:["3M","4M","5M"],psychic:["3M","4M","5M"],psychup:["3T","4M","5M"],pursuit:["3L27","4L25","5L25"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shadowpunch:["3L37","4L37","5L37"],shadowsneak:["4L22","5L22"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],telekinesis:["5M"],thief:["3M","4M","5M"],thunderpunch:["3T","4L1","4T","5L1","5T"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],willowisp:["3L41","4M","4L33","5M","5L33"],wonderroom:["5T"]}}, - dusknoir:{learnset:{astonish:["4L14","5L14"],attract:["4M","5M"],bind:["4L1","5L1","5T"],blizzard:["4M","5M"],brickbreak:["4M","5M"],bulldoze:["5M"],calmmind:["4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],confuseray:["4L17","5L17"],curse:["4L30","5L30"],darkpulse:["4M","5T"],disable:["4L1","4L6","5L1","5L6"],doubleteam:["4M","5M"],dreameater:["4M","5M"],earthquake:["4M","5M"],embargo:["4M","5M"],endure:["4M"],facade:["4M","5M"],firepunch:["4L1","4T","5L1","5T"],flash:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],foresight:["4L9","5L9"],frustration:["4M","5M"],futuresight:["4L61","5L61"],gigaimpact:["4M","5M"],gravity:["4L1","4T","5L1","5T"],headbutt:["4T"],hex:["5L42"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],icepunch:["4L1","4T","5L1","5T"],icywind:["4T","5T"],leer:["4L1","5L1"],meanlook:["4L43","5L49"],mudslap:["4T"],naturalgift:["4M"],nightshade:["4L1","5L1"],ominouswind:["4T"],painsplit:["4T","5T"],payback:["4M","4L51","5M","5L58"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],pursuit:["4L25","5L25"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shadowpunch:["4L37","5L37"],shadowsneak:["4L22","5L22"],skillswap:["4M","5T"],sleeptalk:["4M","5T"],snatch:["4M","5T"],snore:["4T","5T"],spite:["4T","5T"],strength:["4M","5M"],substitute:["4M","5M"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],taunt:["4M","5M"],telekinesis:["5M"],thief:["4M","5M"],thunderpunch:["4L1","4T","5L1","5T"],torment:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],willowisp:["4M","4L33","5M","5L33"]}}, - tropius:{learnset:{aerialace:["3M","4M","5M"],aircutter:["4T"],airslash:["4L47","5L51","4S0"],attract:["3M","4M","5M"],bestow:["5L57"],bodyslam:["3L37","3T","4L37","5L37"],bulldoze:["5M"],bulletseed:["3M","4M","5E"],captivate:["4M"],curse:["4E","5E"],cut:["3M","4M","5M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragondance:["4E","5E"],earthquake:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growth:["3L7","4L7","5L7"],gust:["3L1","4L1","5L1","5D"],headbutt:["3E","4E","4T","5E"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],leafblade:["4E","5E"],leafstorm:["4E","4L61","5E","5L71"],leaftornado:["5L47"],leechseed:["3E","4E","5E","5D"],leer:["3L1","4L1","5L1"],magicalleaf:["3L31","4L31","5L31"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","4L57","5E","5L67"],naturepower:["3E","4E","5E"],ominouswind:["4T"],outrage:["4T","5T"],protect:["3M","4M","5M"],razorleaf:["3L11","4L11","5L11"],razorwind:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rocksmash:["3M","4M","5M"],roost:["4M","5T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],silverwind:["4M","5D"],slam:["3E","4E","5E"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","3L41","4M","4L51","5M","5L61","4S0"],steelwing:["3M","4M"],stomp:["3L17","4L17","5L17"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M","4S0"],swagger:["3T","4M","5M"],sweetscent:["3L21","4L21","5L21"],swordsdance:["3T","4M","5M"],synthesis:["3L47","4E","4L41","4T","5E","5L41","4S0","5T"],tailwind:["4T","5T"],toxic:["3M","4M","5M"],twister:["4T"],whirlwind:["3L27","4L27","5L27"],worryseed:["4T","5T"],seedbomb:["5T"],dragonpulse:["5T"]}}, - chingling:{learnset:{astonish:["4L9","5L9"],attract:["4M","5M"],calmmind:["4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],confusion:["4L14","5L14"],curse:["4E","5E"],disable:["4E","5E"],doubleteam:["4M","5M"],dreameater:["4E","4M","5M"],echoedvoice:["5M"],endure:["4M"],entrainment:["5L25"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],futuresight:["4E","5E"],grassknot:["4M","5M"],gravity:["4T","5T"],growl:["4L6","5L6"],healbell:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],hypnosis:["4E","5E"],icywind:["4T","5T"],knockoff:["4T","5T"],lastresort:["4L22","5L22","5T"],lightscreen:["4M","5M"],magiccoat:["4T","5T"],naturalgift:["4M"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],psyshock:["5M"],raindance:["4M","5M"],recover:["4E","5E"],recycle:["4M","5T"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rollout:["4T"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],signalbeam:["4T","5T"],skillswap:["4M","5E","5T"],sleeptalk:["4M","5T"],snatch:["4M","5T"],snore:["4T","5T"],storedpower:["5E"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],taunt:["4M","5M"],telekinesis:["5M"],thunderwave:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],uproar:["4L17","5L17","5T"],wish:["4E","5E"],wrap:["4L1","5L1"],zenheadbutt:["4T","5T"],hypervoice:["5T"],bind:["5T"]}}, - chimecho:{learnset:{astonish:["3L9","4L9","5L9","3S0"],attract:["3M","4M","5M"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],confusion:["3L14","4L14","5L14"],curse:["3E","4E","5E"],defensecurl:["3T"],disable:["3E","4E","5E"],doubleedge:["3L33","3T","4L33","5L33"],doubleteam:["3M","4M","5M"],dreameater:["3E","3T","4E","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],energyball:["4M","5M"],extrasensory:["4L46","5L46"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],futuresight:["4E","5E"],grassknot:["4M","5M"],gravity:["4T","5T"],growl:["3L6","4L6","5L6","3S0"],healbell:["3L38","4L38","4T","5L38","5T"],healingwish:["4L49","5L57"],healpulse:["5L49"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M"],hypervoice:["5D","5T"],hypnosis:["3E","4E","5E","5D"],icywind:["3T","4T","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M"],psychic:["3M","3L46","4M","5M"],psychup:["3T","4M","5M"],psyshock:["5M"],psywave:["3L30","4L30","5L30"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","3L41","4M","4L41","5M","5L41"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5E","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],storedpower:["5E"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],synchronoise:["5L54"],takedown:["3L17","4L22","5L22"],taunt:["3M","4M","5M"],telekinesis:["5M"],thunderwave:["4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],uproar:["3L22","4L17","4T","5L17","5T"],wish:["4E","5E"],wrap:["3L1","4L1","5L1","5D","3S0"],yawn:["3L25","4L25","5L25"],zenheadbutt:["4T","5T"],bind:["5T"]}}, - absol:{learnset:{aerialace:["3M","4M","5M"],assurance:["4E","5E"],attract:["3M","4M","5M"],batonpass:["3E","4E","5E"],bite:["3L21","4L28","5L28","3S2"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bounce:["4T","5T"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],counter:["3T"],curse:["3E","4E","5E"],cut:["3M","4M","5M"],darkpulse:["4M","5T"],detect:["4L49","5L49"],doubleedge:["3E","3T","4E","5E"],doubleteam:["3M","3L31","4M","4L33","5M","5L33","3S3"],dreameater:["3T","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],facade:["3M","4M","5M"],faintattack:["3E","4E","5E"],falseswipe:["4M","5M"],feint:["4L1","5L1","5D"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],flash:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],futuresight:["3L41","4L41","5L41","3S3"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hex:["5E"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],incinerate:["5M"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],leer:["3L5","4L4","5L4","3S0","3S1"],magiccoat:["3E","4E","4T","5E","5T"],meanlook:["4E","5E"],mefirst:["4E","4L57","5E","5L57"],megahorn:["4E","5E","5D"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],nightslash:["4L52","5L52"],payback:["4M","5M"],perishsong:["3L46","4L65","5E","5L65","3S3"],protect:["3M","4M","5M"],psychocut:["4L60","5L60"],psychup:["3T","4M","5M"],punishment:["4E","5E"],pursuit:["4L20","5L20"],quickattack:["3L13","4L12","5L12"],raindance:["3M","4M","5M"],razorwind:["3L17","4L17","5L17","3S2"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],roleplay:["4T","5T"],round:["5M"],sandstorm:["3M","4M","5M"],scratch:["3L1","4L1","5L1","3S0","3S1"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],slash:["3L36","4L36","5L36","3S3"],sleeptalk:["3T","4M","5T"],snarl:["5M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","3S1","3S2","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3E","3T","4E","4M","5M"],suckerpunch:["4E","4L44","4T","5E","5L44"],sunnyday:["3M","4M","5M"],superpower:["4T","5D","5T"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3L26","3T","4M","4L25","5M","5L25","3S2"],taunt:["3M","3L9","4M","4L9","5M","5L9"],thief:["3M","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"],willowisp:["4M","5M"],wish:["3S0"],xscissor:["4M","5M"],zenheadbutt:["4E","4T","5E","5T"],foulplay:["5T"]}}, - snorunt:{learnset:{attract:["3M","4M","5M"],avalanche:["4M","5E"],bide:["4E","5E"],bite:["3L10","4L10","5L10","3S0"],blizzard:["3M","3L43","4M","4L46","5M","5L46"],block:["3E","4E","4T","5E","5T"],bodyslam:["3T"],captivate:["4M"],crunch:["3L28","4L31","5L31"],disable:["4E","5E"],doubleedge:["3T"],doubleteam:["3M","3L7","4M","4L4","5M","5L4"],endure:["3T","4M"],facade:["3M","4M","5M"],faketears:["5E"],flash:["3M","4M","5M"],frostbreath:["5M"],frustration:["3M","4M","5M"],hail:["3M","3L37","4M","4L40","5M","5L40"],headbutt:["3L19","4L19","4T","5L19"],hex:["5E"],hiddenpower:["3M","4M","5M"],icebeam:["3M","3L34","4M","5M"],icefang:["4L28","5L28"],iceshard:["4L37","5L37"],icywind:["3L16","3T","4L13","4T","5L13","5T","3S0"],leer:["3L1","4L1","5L1"],lightscreen:["3M","4M","5M"],mimic:["3T"],naturalgift:["4M"],powdersnow:["3L1","4L1","5L1","5D"],protect:["3M","3L25","4M","4L22","5M","5L22"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["4E","4T","5E"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],sing:["3S0"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spikes:["3E","4E","5E"],spite:["4T","5T"],substitute:["3T","4M","5M"],swagger:["3T","4M","5M"],toxic:["3M","4M","5M"],waterpulse:["3M","4M","5D","3S0"],weatherball:["4E","5E","5D"]}}, - glalie:{learnset:{attract:["3M","4M","5M"],avalanche:["4M"],bite:["3L1","3L10","4L1","4L10","5L1","5L10"],blizzard:["3M","3L53","4M","4L51","5M","5L51"],block:["4T","5T"],bodyslam:["3T"],bulldoze:["5M"],captivate:["4M"],crunch:["3L28","4L31","5L31"],darkpulse:["4M","5T"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","3L1","3L7","4M","4L1","4L4","5M","5L1","5L4"],earthquake:["3M","4M","5M"],endure:["3T","4M"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],frostbreath:["5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gyroball:["4M","5M"],hail:["3M","3L42","4M","4L40","5M","5L40"],headbutt:["3L19","4L19","4T","5L19"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","3L34","4M","4L37","5M","5L37"],icefang:["4L28","5L28"],icywind:["3L16","3T","4L13","4T","5L13","5T"],ironhead:["4T","5T"],leer:["3L1","4L1","5L1"],lightscreen:["3M","4M","5M"],mimic:["3T"],naturalgift:["4M"],payback:["4M","5M"],powdersnow:["3L1","4L1","5L1"],protect:["3M","3L25","4M","4L22","5M","5L22"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","4M","5M"],sheercold:["3L61","4L59","5L59"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M"],superfang:["4T","5T"],swagger:["3T","4M","5M"],taunt:["3M","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],waterpulse:["3M","4M"]}}, - froslass:{learnset:{astonish:["4L1","4L10","5L1","5L10"],attract:["4M","5M"],avalanche:["4M"],blizzard:["4M","4L51","5M","5L51"],block:["4T","5T"],captivate:["4M","4L31","5L31"],confuseray:["4L19","5L19"],destinybond:["4L59","5L59"],doubleteam:["4M","4L1","4L4","5M","5L1","5L4"],dreameater:["4M","5M"],embargo:["4M","5M"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],fling:["4M","5M"],frostbreath:["5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],hail:["4M","4L40","5M","5L40"],headbutt:["4T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],icepunch:["4T","5T"],iceshard:["4L37","5L37"],icywind:["4L13","4T","5L13","5T"],leer:["4L1","5L1"],lightscreen:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4L22","4T","5L22"],painsplit:["4T","5T"],payback:["4M","5M"],powdersnow:["4L1","5L1"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rollout:["4T"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T"],snatch:["4M","5T"],snore:["4T","5T"],spite:["4T","5T"],substitute:["4M","5M"],suckerpunch:["4T"],swagger:["4M","5M"],taunt:["4M","5M"],telekinesis:["5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderwave:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],wakeupslap:["4L28","5L28"],waterpulse:["4M"]}}, - spheal:{learnset:{aquaring:["4E","5E"],aquatail:["4T","5T","5D"],attract:["3M","4M","5M"],aurorabeam:["3L25","4L25","5L25","3S0"],blizzard:["3M","3L43","4M","4L43","5M","5L43"],bodyslam:["3L19","3T","4L19","5L19"],brine:["4M"],bulldoze:["5M"],captivate:["4M"],charm:["3S0"],curse:["3E","4E","5E"],defensecurl:["3T","3L1","4L1","5L1"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],encore:["3L7","4L7","5L7"],endure:["3T","4M"],facade:["3M","4M","5M"],fissure:["3E","4E","5E","5D"],frostbreath:["5M"],frustration:["3M","4M","5M"],growl:["3L1","4L1","5L1"],hail:["3M","3L31","4M","4L31","5M","5L31"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],iceball:["3L13","4L13","5L13"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["3T","4T","3S0"],naturalgift:["4M"],powdersnow:["3L1","4L1","5L1","5D"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","3L37","4M","4L37","5M","5L37"],"return":["3M","4M","5M"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T","5E"],round:["5M"],secretpower:["3M","4M"],sheercold:["3L49","4L49","5L49"],signalbeam:["4E","4T","5E","5T"],sleeptalk:["3T","4M","5E","5T"],snore:["3L37","3T","4L37","4T","5L37","5T"],spitup:["3E","4E","5E"],stockpile:["3E","4E","5E"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superfang:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swallow:["3E","4E","5E"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L1","4L1","5L1","3S0"],waterpulse:["3M","4M","5E"],watersport:["3E","4E","5E"],whirlpool:["4M"],yawn:["3E","4E","5E"]}}, - sealeo:{learnset:{aquatail:["4T","5T"],attract:["3M","4M","5M"],aurorabeam:["3L25","4L25","5L25"],blizzard:["3M","3L47","4M","4L47","5M","5L47"],bodyslam:["3L19","3T","4L19","5L19"],brine:["4M"],bulldoze:["5M"],captivate:["4M"],defensecurl:["3T","3L1"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],encore:["3L1","3L7","4L1","4L7","5L1","5L7"],endure:["3T","4M"],facade:["3M","4M","5M"],frostbreath:["5M"],frustration:["3M","4M","5M"],growl:["3L1","4L1","5L1"],hail:["3M","3L31","4M","4L31","5M","5L31"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],iceball:["3L13","4L13","5L13"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],powdersnow:["3L1","4L1","5L1"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","3L39","4M","4L39","5M","5L39"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M"],sheercold:["3L55","4L55","5L55"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3L39","3T","4L39","4T","5L39","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superfang:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","4L32","5M","5L32"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L1","4L1","5L1"],waterpulse:["3M","4M"],whirlpool:["4M"]}}, - walrein:{learnset:{aquatail:["4T","5T"],attract:["3M","4M","5M"],aurorabeam:["3L25","4L25","5L25"],avalanche:["4M"],blizzard:["3M","3L50","4M","4L52","5M","5L52"],block:["4T","5T"],bodyslam:["3L19","3T","4L19","5L19"],brine:["4M"],bulldoze:["5M"],captivate:["4M"],crunch:["4L1","5L1"],defensecurl:["3T","3L1"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],encore:["3L1","3L7","4L1","4L7","5L1","5L7"],endure:["3T","4M"],facade:["3M","4M","5M"],frostbreath:["5M"],frustration:["3M","4M","5M"],furycutter:["4T"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1"],hail:["3M","3L31","4M","4L31","5M","5L31","5S0"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],iceball:["3L13","4L13","5L13"],icebeam:["3M","4M","5M","5S0"],icefang:["4L44","5L44"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],powdersnow:["3L1","4L1","5L1"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","3L39","4M","4L39","5M","5L39"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],secretpower:["3M","4M"],sheercold:["3L61","4L65","5L65","5S0"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3L39","3T","4L39","4T","5L39","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superfang:["4T","5T"],surf:["3M","4M","5M","5S0"],swagger:["3T","4M","4L32","5M","5L32"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L1","4L1","5L1"],waterpulse:["3M","4M"],whirlpool:["4M"]}}, - clamperl:{learnset:{aquaring:["4E","5E","5D"],attract:["3M","4M","5M"],barrier:["3E","4E","5E"],blizzard:["3M","4M","5M"],bodyslam:["3E","3T","4E","5E"],brine:["4M","5E"],captivate:["4M","5D"],clamp:["3L1","4L1","5L1"],confuseray:["3E","4E","5E"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],hiddenpower:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],irondefense:["3L1","4L1","4T","5L1","5T"],mimic:["3T"],muddywater:["4E","5E"],mudsport:["3E","4E","5E"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],refresh:["3E","4E","5E"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],scald:["5M"],secretpower:["3M","4M"],shellsmash:["5L51"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],supersonic:["3E","4E","5E"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L1","4L1","5L1"],waterpulse:["3M","4M","5E"],whirlpool:["3L1","4L1","4M","5L1","5D"]}}, - huntail:{learnset:{aquatail:["4L46","4T","5L46","5T"],attract:["3M","4M","5M"],batonpass:["3L43","4L33","5L33"],bite:["3L8","4L6","5L6"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bounce:["4T","5T"],brine:["4M","4L28","5L28"],captivate:["4M"],crunch:["3L36","4L42","5L42"],dive:["3M","4L37","4T","5M","5L37"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],hiddenpower:["3M","4M","5M"],hydropump:["3L50","4L51","5L51"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icefang:["4L24","5L24"],icywind:["3T","4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],scald:["5M"],scaryface:["3L29","4L19","5L19"],screech:["3L15","4L10","5L10"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],suckerpunch:["4T"],superfang:["4T","5T"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],waterpulse:["3M","3L22","4M","4L15","5L15"],whirlpool:["3L1","4L1","4M","5L1"],bind:["5T"]}}, - gorebyss:{learnset:{agility:["3L15","4L10","5L10"],amnesia:["3L29","4L19","5L19"],aquaring:["4L24","5L24"],aquatail:["4L46","4T","5L46","5T"],attract:["3M","4M","5M"],batonpass:["3L43","4L33","5L33"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bounce:["4T","5T"],brine:["4M"],captivate:["4M","4L28","5L28"],confusion:["3L8","4L6","5L6"],dive:["3M","4L37","4T","5M","5L37"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],hiddenpower:["3M","4M","5M"],hydropump:["3L50","4L51","5L51"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],psychic:["3M","3L36","4M","4L42","5M","5L42"],psychup:["4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],scald:["5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],waterpulse:["3M","3L22","4M","4L15","5L15"],whirlpool:["3L1","4L1","4M","5L1"],bind:["5T"]}}, - relicanth:{learnset:{amnesia:["3E","4E","5E"],ancientpower:["3L43","4L43","4T","5L43"],aquatail:["4E","4T","5E","5T"],attract:["3M","4M","5M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],bounce:["4T","5T"],brine:["4M","5E"],bulldoze:["5M"],calmmind:["3M","4M","5M"],captivate:["4M"],dive:["3M","4L57","4T","5M","5L57"],doubleedge:["3L57","3T","4L50","5L50"],doubleteam:["3M","4M","5M"],earthpower:["4T","5D","5T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],harden:["3L1","4L1","5L1"],headbutt:["4T"],headsmash:["4L78","5L78"],hiddenpower:["3M","4M","5M"],hydropump:["3L64","4L71","5L71"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],magnitude:["3E","4E","5E"],mimic:["3T"],muddywater:["4E","5E"],mudshot:["5E"],mudslap:["3T","4E","4T","5E"],mudsport:["3L36","4L36","5L36"],naturalgift:["4M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","3L50","4M","4L64","5M","5L64"],"return":["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3E","3T","4E","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","3L15","4M","4L15","5M","5L15"],round:["5M"],safeguard:["3M","4M","5M"],sandstorm:["3M","4M","5M"],scald:["5M"],secretpower:["3M","4M"],skullbash:["3E","4E","5E"],sleeptalk:["3E","3T","4E","4M","5E","5D","5T"],smackdown:["5M"],snore:["3T","4E","4T","5E","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],tackle:["3L1","4L1","5L1"],takedown:["3L29","4L29","5L29"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L8","4L8","5L8","5D"],waterpulse:["3M","4M"],watersport:["3E","4E","5E"],whirlpool:["4M"],yawn:["3L22","4L22","5L22"],zenheadbutt:["5E","5T"]}}, - luvdisc:{learnset:{agility:["3L16","4L9","5L9"],aquajet:["4E","5E"],aquaring:["4E","4L37","5E","5L46"],attract:["3M","3L28","4M","4L22","5M","5L27"],blizzard:["3M","4M","5M"],bounce:["4T","5T"],brine:["4M","5E"],captivate:["4E","4M","4L40","5E","5L51"],charm:["3L4","4L4","5L4","5D"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],flail:["3L40","4L46","5L31"],frustration:["3M","4M","5M"],hail:["3M","4M","5M"],healpulse:["5E"],hiddenpower:["3M","4M","5M"],hydropump:["5L40"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5D","5T"],luckychant:["4L17","5L17"],mimic:["3T"],mudsport:["3E","4E","5E","5D"],naturalgift:["4M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],round:["5M"],safeguard:["3M","3L48","4M","4L51","5M","5L55"],scald:["5M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],splash:["3E","4E","5E"],substitute:["3T","4M","5M"],supersonic:["3E","4E","5E"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],sweetkiss:["3L36","4L27","5L37"],swift:["3T","4T"],tackle:["3L1","4L1","5L1"],takedown:["3L24","4L14","5L14"],toxic:["3M","4M","5M"],waterfall:["3M","4M","5M"],watergun:["3L12","4L7","5L7"],waterpulse:["3M","4M","4L31","5L22"],watersport:["3E","4E","5E"],whirlpool:["4M"]}}, - bagon:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bite:["3L5","4L5","5L5","5D","3S0","3S1"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],crunch:["3L41","4L46","5L46"],cut:["3M","4M","5M"],defensecurl:["5E"],doubleedge:["3L53","3T","4L55","5L55"],doubleteam:["3M","4M","5M"],dracometeor:["4T","5T"],dragonbreath:["3L33","4L31","5L31"],dragonclaw:["3M","3L49","4M","4L50","5M","5L50"],dragondance:["3E","4E","5E","5D"],dragonpulse:["4M","5E","5T"],dragonrage:["3E","4E","5E"],dragonrush:["4E","5E"],ember:["3L25","4L25","5L25"],endure:["3T","4M","5E"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],firefang:["4E","5E"],flamethrower:["3M","4M","5M"],focusenergy:["3L21","4L20","5L20"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],headbutt:["3L17","4L16","4T","5L16"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hydropump:["3E","4E","5E"],incinerate:["5M"],irondefense:["3S1"],leer:["3L9","4L10","5L10"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5D","5T"],protect:["3M","4M","5M"],rage:["3L1","4L1","5L1","3S0","3S1","5S2"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],scaryface:["3L37","4L40","5L40"],secretpower:["3M","4M"],shadowclaw:["4E","4M","5M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],thrash:["3E","4E","5E"],toxic:["3M","4M","5M"],twister:["3E","4E","4T","5E"],wish:["3S0"],zenheadbutt:["4L35","4T","5L35","5T"],hypervoice:["5T"]}}, - shelgon:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bite:["3L1","3L5","4L1","4L5","5L1","5L5"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],captivate:["4M"],crunch:["3L56","4L50","5L50"],cut:["3M","4M","5M"],defensecurl:["3T"],doubleedge:["3L78","3T","4L61","5L61"],doubleteam:["3M","4M","5M"],dracometeor:["4T","5T"],dragonbreath:["3L38","4L32","5L32"],dragonclaw:["3M","3L69","4M","4L55","5M","5L55"],dragonpulse:["4M","5T"],ember:["3L25","4L25","5L25"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],focusenergy:["3L21","4L20","5L20"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],headbutt:["3L1","3L17","4L1","4L16","4T","5L1","5L16"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],incinerate:["5M"],irondefense:["4T","5T"],leer:["3L1","3L9","4L1","4L10","5L1","5L10"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","3L30","4M","4L30","5M","5L30"],rage:["3L1","4L1","5L1"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],scaryface:["3L47","4L43","5L43"],secretpower:["3M","4M"],shadowclaw:["4M","5M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],toxic:["3M","4M","5M"],twister:["4T"],zenheadbutt:["4L37","4T","5L37","5T"],hypervoice:["5T"]}}, - salamence:{learnset:{aerialace:["3M","4M","5M","3S1","5S3"],aircutter:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M"],bite:["3L1","3L5","4L1","4L5","5L1","5L5"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],captivate:["4M"],crunch:["3L61","4L53","5L53"],cut:["3M","4M","5M"],defensecurl:["3T"],defog:["4M"],doubleedge:["3L93","3T","4L70","5L70"],doubleteam:["3M","4M","5M"],dracometeor:["4T","5T"],dragonbreath:["3L38","4L32","5L32","3S0"],dragonclaw:["3M","3L79","4M","4L61","5M","5L61","3S1","4S2","5S3"],dragondance:["3S1","5S3"],dragonpulse:["4M","5T"],dragontail:["5M","5L80"],earthquake:["3M","4M","5M"],ember:["3L25","4L25","5L25"],endure:["3T","4M"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M","4S2"],firefang:["4L1","5L1"],flamethrower:["3M","4M","5M"],fly:["3M","3L50","4M","4L50","5M","5L50","3S0"],focusenergy:["3L21","4L20","5L20"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],headbutt:["3L1","3L17","4L1","4L16","4T","5L1","5L16"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hydropump:["4S2"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],irontail:["3M","4M","5T"],leer:["3L1","3L9","4L1","4L10","5L1","5L10"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],outrage:["4T","5S3","5T"],protect:["3M","3L30","4M","4L30","5M","5L30","3S0"],rage:["3L1","4L1","5L1"],raindance:["3M","4M","5M"],refresh:["3S1"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],roost:["4M","5T"],round:["5M"],scaryface:["3L47","4L43","5L43","3S0"],secretpower:["3M","4M"],shadowclaw:["4M","5M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M"],stoneedge:["4M","5M","4S2"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],thunderfang:["4L1","5L1"],toxic:["3M","4M","5M"],twister:["4T"],zenheadbutt:["4L37","4T","5L37","5T"],hypervoice:["5T"]}}, - beldum:{learnset:{headbutt:["4T"],irondefense:["4T","5T"],ironhead:["4T","5D","5T"],takedown:["3L1","4L1","5L1","5D"],zenheadbutt:["4T","5D","5T"]}}, - metang:{learnset:{aerialace:["3M","4M","5M"],agility:["3L56","4L44","5L44"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],bulletpunch:["4L32","5L32"],confusion:["3L20","4L1","4L20","5L1","5L20","3S0"],cut:["3M","4M","5M"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],flashcannon:["4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],grassknot:["4M","5M"],gravity:["4T","5T"],gyroball:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","3L62","4M","4L56","5M","5L56"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irondefense:["3L44","4L40","4T","5L40","5T"],ironhead:["4T","5T"],lightscreen:["3M","4M","5M"],magnetrise:["4L1","4T","5L1","5T"],metalclaw:["3L20","4L1","4L20","5L1","5L20","3S0"],meteormash:["3L50","4L48","5L48"],mimic:["3T"],miracleeye:["5L26"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],psychic:["3M","3L38","4M","4L36","5M","5L36"],psychup:["3T","4M","5M"],psyshock:["5M"],pursuit:["3L32","4L28","5L28"],raindance:["3M","4M","5M"],reflect:["3M","4M","5M"],refresh:["3S0"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],sandstorm:["3M","4M","5M"],scaryface:["3L26","4L24","5L24"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],takedown:["3L1","4L1","5L1","3S0"],telekinesis:["5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],trick:["4T","5T"],zenheadbutt:["4L52","4T","5L52","5T"]}}, - metagross:{learnset:{aerialace:["3M","4M","5M"],agility:["3L66","4L44","5L44","5S4"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],bulletpunch:["4L32","5L32","4S0","5S1","5S2"],confusion:["3L1","3L20","4L1","4L20","5L1","5L20"],cut:["3M","4M","5M"],defensecurl:["3T"],doubleedge:["3T","5S4","5S5"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","5S1","5S3","5S6"],endure:["3T","4M"],explosion:["3T","4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],flashcannon:["4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],gyroball:["4M","5M"],hammerarm:["4L45","5L45","4S0","5S1","5S2","5S4","5S5"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","3L77","4M","4L71","5M","5L71","5S6"],icepunch:["3T","4T","5T","5S2"],icywind:["3T","4T","5T"],irondefense:["3L44","4L40","4T","5L40","5T","5S4"],ironhead:["4T","5T"],lightscreen:["3M","4M","5M"],magnetrise:["4L1","4T","5L1","5T"],metalclaw:["3L1","3L20","4L1","4L20","5L1","5L20"],meteormash:["3L55","4L53","5L53","4S0","5S1","5S3","5S5","5S6"],mimic:["3T"],miracleeye:["5L26"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","5S3"],psychic:["3M","3L38","4M","4L36","5M","5L36","5S5","5S6"],psychup:["3T","4M","5M"],psyshock:["5M"],pursuit:["3L32","4L28","5L28"],raindance:["3M","4M","5M"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],sandstorm:["3M","4M","5M"],scaryface:["3L1","3L26","4L24","5L24"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","4M","5M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],sludgebomb:["3M","4M","5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],takedown:["3L1","4L1","5L1"],telekinesis:["5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M"],trick:["4T","5T"],zenheadbutt:["4L62","4T","5L62","4S0","5T","5S2","5S3"]}}, - regirock:{learnset:{ancientpower:["3L33","4L33","4T","5L33","3S0"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],chargebeam:["4M","4L49","5M","5L49"],counter:["3T"],curse:["3L17","4L17","5L17","3S0"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],explosion:["3L1","3T","4M","4L1","5M","5L1"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gravity:["4T","5T"],hammerarm:["4L81","5L81"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","3L65","4M","4L89","5M","5L89","3S0"],icepunch:["3T","4T","5T"],irondefense:["3L41","4L41","5L41","5T"],ironhead:["4T","5T"],lockon:["3L57","4L57","5L57"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rockthrow:["3L9","4L9","5L9"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3T"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stomp:["4L1","5L1"],stoneedge:["4M","4L73","5M","5L73"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["3L25","4L25","4T","5L25","3S0","5T"],swagger:["3T","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],zapcannon:["3L49","4L65","5L65"]}}, - regice:{learnset:{amnesia:["3L41","4L41","5L41"],ancientpower:["3L33","4L33","4T","5L33","3S0"],avalanche:["4M"],blizzard:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],chargebeam:["4M","4L49","5M","5L49"],counter:["3T"],curse:["3L17","4L17","5L17","3S0"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],explosion:["3L1","3T","4M","4L1","5M","5L1"],facade:["3M","4M","5M"],flashcannon:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frostbreath:["5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gravity:["4T","5T"],hail:["3M","4M","5M"],hammerarm:["4L81","5L81"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","3L65","4M","4L89","5M","5L89","3S0"],icebeam:["3M","4M","4L73","5M","5L73"],icepunch:["3T","4T","5T"],icywind:["3L9","3T","4L9","4T","5L9","5T"],ironhead:["4T","5T"],lockon:["3L57","4L57","5L57"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3T"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],stomp:["4L1","5L1"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],superpower:["3L25","4L25","4T","5L25","3S0","5T"],swagger:["3T","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],zapcannon:["3L49","4L65","5L65"]}}, - registeel:{learnset:{aerialace:["3M","4M","5M"],amnesia:["3L41","4L41","5L41"],ancientpower:["3L33","4L33","4T","5L33","3S0"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulldoze:["5M"],chargebeam:["4M","4L49","5M","5L49"],counter:["3T"],curse:["3L17","4L17","5L17","3S0"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M"],endure:["3T","4M"],explosion:["3L1","3T","4M","4L1","5M","5L1"],facade:["3M","4M","5M"],flashcannon:["4M","4L73","5M","5L73"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],gravity:["4T","5T"],hammerarm:["4L81","5L81"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","3L65","4M","4L89","5M","5L89","3S0"],icepunch:["3T","4T","5T"],irondefense:["3L41","4L41","4T","5L41","5T"],ironhead:["4L73","4T","5L73","5T"],lockon:["3L57","4L57","5L57"],megakick:["3T"],megapunch:["3T"],metalclaw:["3L9","4L9","5L9"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3T"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stomp:["4L1","5L1"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["3L25","4L25","4T","5L25","3S0","5T"],swagger:["3T","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],zapcannon:["3L49","4L65","5L65"],magnetrise:["5T"]}}, - latias:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bodyslam:["3T"],bulldoze:["5M"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],charm:["3L50","4L55","5L55","3S0","3S1"],cut:["3M","4M","5M"],defog:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dracometeor:["4T","5T"],dragonbreath:["3L20","4L20","5L20"],dragonclaw:["3M","4M","5M"],dragonpulse:["4M","4L70","5L80","5T"],dreameater:["3T","4M","5M"],earthquake:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],guardsplit:["5L75"],healingwish:["4L60","5L85"],healpulse:["5L65"],helpinghand:["3L10","4L10","4T","5L10","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],mimic:["3T"],mistball:["3L35","4L35","5L35","3S0","3S1","4S2"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","4M","5M"],psychic:["3M","3L40","4M","4L65","5M","5L60","3S0","3S1"],psychoshift:["4L50","5L50"],psychup:["3T","4M","5M"],psyshock:["5M"],psywave:["3L1","4L1","5L1"],raindance:["3M","4M","5M"],recover:["3L45","4L45","5L45","3S0","3S1"],reflect:["3M","4M","5M"],reflecttype:["5L70"],refresh:["3L30","4L30","5L30","4S2"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],roleplay:["4T","5T"],roost:["4M","5T"],round:["5M"],safeguard:["3M","3L15","4M","4L15","5M","5L15"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],telekinesis:["5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],twister:["4T"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],watersport:["3L25","4L25","5L25","4S2"],whirlpool:["4M"],wish:["3L5","4L5","5L5"],zenheadbutt:["4L40","4T","5L40","4S2","5T"],covet:["5T"],magicroom:["5T"]}}, - latios:{learnset:{aerialace:["3M","4M","5M"],attract:["3M","4M","5M"],bodyslam:["3T"],bulldoze:["5M"],calmmind:["3M","4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],cut:["3M","4M","5M"],defog:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dracometeor:["4T","5T"],dragonbreath:["3L20","4L20","5L20"],dragonclaw:["3M","4M","5M"],dragondance:["3L50","4L55","5L55","3S0","3S1"],dragonpulse:["4M","4L70","5L80","5T"],dreameater:["3T","4M","5M"],earthquake:["3M","4M","5M"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],flash:["3M","4M","5M"],fly:["3M","4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],healblock:["4L5","5L5"],healpulse:["5L65"],helpinghand:["3L10","4L10","4T","5L10","5T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M"],lusterpurge:["3L35","4L35","5L35","3S0","3S1","4S2"],magiccoat:["4T","5T"],memento:["3L5","4L60","5L85"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],powersplit:["5L75"],protect:["3M","3L25","4M","4L25","5M","5L25","4S2"],psychic:["3M","3L40","4M","4L65","5M","5L60","3S0","3S1"],psychoshift:["4L50","5L50"],psychup:["3T","4M","5M"],psyshock:["5M"],psywave:["3L1","4L1","5L1"],raindance:["3M","4M","5M"],recover:["3L45","4L45","5L45","3S0","3S1"],reflect:["3M","4M","5M"],refresh:["3L30","4L30","5L30","4S2"],rest:["3M","4M","5M"],retaliate:["5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],roost:["4M","5T"],round:["5M"],safeguard:["3M","3L15","4M","4L15","5M","5L15"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],steelwing:["3M","4M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],tailwind:["4T","5T"],telekinesis:["5M","5L70"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],twister:["4T"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],zenheadbutt:["4L40","4T","5L40","4S2","5T"],wonderroom:["5T"]}}, - kyogre:{learnset:{ancientpower:["3L15","4L15","4T","4L45","5L45","5S0"],aquaring:["4L30","5L30"],aquatail:["4L75","4T","4L65","5L65","5T"],avalanche:["4M"],blizzard:["3M","4M","5M"],block:["4T","5T"],bodyslam:["3L20","3T","4L20","4L15","5L15"],brickbreak:["3M","4M","5M"],brine:["4M"],bulldoze:["5M"],calmmind:["3M","3L30","4M","4L30","4L60","5M","5L60"],defensecurl:["3T"],dive:["3M","4T","5M"],doubleedge:["3L65","3T","4L65","4L80","5L80"],doubleteam:["3M","4M","5M"],earthquake:["3M","4M","5M"],endure:["3T","4M"],facade:["3M","4M","5M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],hail:["3M","4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hydropump:["3L45","4L45","4L90","5L90"],hyperbeam:["3M","4M","5M"],icebeam:["3M","3L35","4M","4L35","5M","5L35","5S0","5S1"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],mimic:["3T"],muddywater:["4L20","5L20"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","3L50","4M","4L50","5M"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],scald:["5M"],scaryface:["3L5","4L5","5L5"],secretpower:["3M","4M"],sheercold:["3L60","4L60","4L75","5L75","5S1"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],thunder:["3M","4M","5M","5S0","5S1"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"],waterfall:["3M","4M","5M"],waterpulse:["3M","3L1","4M","4L1","5L1"],waterspout:["3L75","4L80","4L50","5L50","5S0","5S1"],whirlpool:["4M"]}}, - groudon:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["3L15","4L15","4T","4L45","5L45","5S0"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","3L30","4M","4L30","4L60","5M","5L60"],bulldoze:["5M"],counter:["3T"],cut:["3M","4M","5M"],defensecurl:["3T"],dig:["3M","4M","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dragonclaw:["3M","4M","5M"],dragonpulse:["4M","5T"],dragontail:["5M"],dynamicpunch:["3T"],earthpower:["4L75","4T","4L65","5L65","5T","5S1"],earthquake:["3M","3L35","4M","4L35","5M","5L35","5S0"],endure:["3T","4M"],eruption:["3L75","4L80","4L50","5L50","5S0","5S1"],facade:["3M","4M","5M"],fireblast:["3M","3L45","4M","4L45","4L90","5M","5L90"],firepunch:["3T","4T","5T"],fissure:["3L60","4L60","4L75","5L75"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],hammerarm:["4L20","5L20","5S1"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","4M","5M"],incinerate:["5M"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],lavaplume:["4L15","5L15"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudshot:["3L1","4L1","5L1"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],rest:["3M","3L50","4M","4L50","4L30","5M","5L30"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],rollout:["3T","4T"],round:["5M"],safeguard:["3M","4M","5M"],sandstorm:["3M","4M","5M"],scaryface:["3L5","4L5","5L5"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],slash:["3L20","4L20"],sleeptalk:["3T","4M","5T"],smackdown:["5M"],snore:["3T","4T","5T"],solarbeam:["3M","3L65","4M","4L65","4L80","5M","5L80","5S0","5S1"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["3T","4M","5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],uproar:["4T","5T"]}}, - rayquaza:{learnset:{aerialace:["3M","4M","5M"],airslash:["4L35","5L35"],ancientpower:["3L15","4L15","4T","4L45","5L45","5S0"],aquatail:["4T","5T"],avalanche:["4M"],blizzard:["3M","4M","5M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],bulkup:["3M","4M","5M"],bulldoze:["5M"],crunch:["3L35","4L35","4L15","5L15"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M"],dracometeor:["4T","5T"],dragonclaw:["3M","3L20","4M","4L20","5M"],dragondance:["3L30","4L30","4L60","5L60","5S0"],dragonpulse:["4M","4L75","4L90","5L90","5S0","5S1","5T"],dragontail:["5M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M"],echoedvoice:["5M"],endure:["3T","4M"],energyball:["4M","5M"],extremespeed:["3L60","4L60","4L75","5L75","5S1"],facade:["3M","4M","5M"],fireblast:["3M","4M","5M"],flamethrower:["3M","4M","5M"],fling:["4M","5M"],fly:["3M","3L45","4M","4L45","4L65","5M","5L65"],focusblast:["4M","5M"],frustration:["3M","4M","5M"],furycutter:["3T","4T"],gigaimpact:["4M","5M"],gyroball:["4M","5M"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],honeclaws:["5M"],hyperbeam:["3M","3L75","4M","4L65","4L80","5M","5L80","5S1"],hypervoice:["4L20","5L20","5T"],icebeam:["3M","4M","5M"],icywind:["3T","4T","5T"],incinerate:["5M"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["3L65","4L80","4T","4L50","5L50","5S0","5T"],overheat:["3M","4M","5M"],protect:["3M","4M","5M"],psychup:["3T","4M","5M"],raindance:["3M","4M","5M"],rest:["3M","3L50","4M","4L50","4L30","5M","5L30"],"return":["3M","4M","5M"],roar:["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandstorm:["3M","4M","5M"],scaryface:["3L5","4L5","5L5"],secretpower:["3M","4M"],shadowclaw:["4M","5M"],shockwave:["3M","4M"],skydrop:["5M"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],surf:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3T","4T"],swordsdance:["4M","5M"],tailwind:["4T","5T"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],twister:["3L1","4L1","4T","5L1"],uproar:["4T","5T"],vcreate:["5S1"],waterfall:["3M","4M","5M"],waterpulse:["3M","4M"],whirlpool:["4M"],bind:["5T"]}}, - jirachi:{learnset:{aerialace:["3M","4M","5M"],ancientpower:["4T"],bodyslam:["3T"],calmmind:["3M","4M","5M"],chargebeam:["4M","5M"],confusion:["3L1","4L1","5L1","3S0","4S2","4S3"],cosmicpower:["3L45","4L60","5L60","5S6"],defensecurl:["3T"],doomdesire:["3L50","4L70","5L70"],doubleedge:["3L35","3T","4L40","5L40"],doubleteam:["3M","4M","5M"],dracometeor:["4S3","5S5"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],endure:["3T","4M"],energyball:["4M","5M"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],flashcannon:["4M","5M"],fling:["4M","5M"],followme:["5S5"],frustration:["3M","4M","5M"],futuresight:["3L40","4L55","5L55"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4L45","4T","5L45","5T"],headbutt:["4T"],healingwish:["4L50","5L50","5S4","5S6","5S7"],helpinghand:["3L15","4L15","4T","5L15","3S1","5T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],ironhead:["4T","5T"],lastresort:["4L65","4T","5L65","5T"],lightscreen:["3M","4M","5M"],magiccoat:["4T","5T"],meteormash:["5S4","5S5","5S6"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M"],psychic:["3M","3L20","4M","4L20","5M","5L20","3S1","5S4"],psychup:["3T","4M","5M"],psyshock:["5M"],raindance:["3M","4M","5M"],recycle:["4M","5T"],reflect:["3M","4M","5M"],refresh:["3L25","4L25","5L25","3S1"],rest:["3M","3L5","3L30","4M","4L5","4L30","5M","5L5","5L30","3S0","3S1","4S2","4S3"],"return":["3M","4M","5M","5S7"],round:["5M"],safeguard:["3M","4M","5M"],sandstorm:["3M","4M","5M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],swagger:["3T","4M","5M"],swift:["3L10","3T","4L10","4T","5L10","5S4","5S7"],telekinesis:["5M"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"],waterpulse:["3M","4M"],wish:["3L1","4L1","5L1","3S0","4S2","4S3","5S5","5S6","5S7"],zenheadbutt:["4L35","4T","5L35","5T"],magicroom:["5T"]}}, - deoxys:{learnset:{aerialace:["3M","4M","5M"],agility:["3L35","4L73","5L73"],allyswitch:["5M"],amnesia:["3L35","4L73","5L73"],avalanche:["4M"],bodyslam:["3T"],brickbreak:["3M","4M","5M"],calmmind:["3M","4M","5M"],chargebeam:["4M","5M"],cosmicpower:["3L35","4L73","5L73","3S3"],counter:["3L50","3T","4S6","4L97","5L97"],cut:["3M","4M","5M"],darkpulse:["5S9"],detect:["4S6"],doubleedge:["3T"],doubleteam:["3L10","3M","4M","5M","4S5","4L17","5L17"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M"],dynamicpunch:["3T"],endure:["3T","4M"],energyball:["4M","5M"],extremespeed:["3L50","4S4","4S5","4L97","5L97"],facade:["3M","4M","5M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M"],flashcannon:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M"],hyperbeam:["3M","3L50","4M","4L97","5M","5L97","3S3","4S7"],icebeam:["3M","4M","5M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irondefense:["3L35","4S4","5T","4L73","5L73"],knockoff:["3L15","4L25","4T","5L25","3S0","3S2","5T"],leer:["3L1","4L1","5L1","4S8"],lightscreen:["3M","4M","5M"],lowkick:["4T","5T"],lowsweep:["5M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],meteormash:["4S7"],mimic:["3T"],mirrorcoat:["3L50","4S6","4L97","5L97"],mudslap:["3T","4T"],nastyplot:["5S9"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L5","4L9","5L9","4S8"],poisonjab:["4M","5M"],protect:["3M","4M","5M"],psychic:["3M","3L25","4M","4L41","5M","5L41","3S0","3S1","3S2"],psychoboost:["3L45","4L89","5L89","3S3","4S4","4S5","4S6","4S7","4S8","5S9"],psychoshift:["4L57","5L57"],psychup:["3T","4M","5M"],psyshock:["5M"],pursuit:["3L20","4L33","5L33","3S1","3S2"],raindance:["3M","4M","5M"],recover:["3L40","4L81","5L81","3S3","5S9"],recycle:["4M","5T"],reflect:["3M","4M","5M"],rest:["3M","4M","5M"],"return":["3M","4M","5M"],rockslide:["3T","4M","5M"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M"],round:["5M"],safeguard:["3M","4M","5M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],snatch:["3M","3L30","4M","4L49","5L49","3S0","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M"],spikes:["3L20","3S0","4L33","5L33"],stealthrock:["4M","5T"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M"],superpower:["3S1","4S7","4L49","5L49"],swagger:["3T","4M","5M"],swift:["3L30","3T","4T","3S2","4S5","4L49","5L49"],taunt:["3L15","3M","4M","5M","3S1","4L25","5L25"],telekinesis:["5M"],teleport:["3L10","4L17","5L17"],thunder:["3M","4M","5M"],thunderbolt:["3M","4M","5M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M"],torment:["3M","4M","5M"],toxic:["3M","4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],waterpulse:["3M","4M"],wrap:["3L1","4L1","5L1","4S8"],zapcannon:["3L40","4S4","4L81","5L81"],zenheadbutt:["4L65","4T","5L65","5T"],bind:["5T"],roleplay:["4T","5T"],wonderroom:["5T"]}}, - turtwig:{learnset:{absorb:["4L9","5L9","5S0","5S1"],amnesia:["4E","5E"],attract:["4M","5M"],bite:["4L21","5L21"],bodyslam:["4E","5E"],bulletseed:["4M"],captivate:["4M"],crunch:["4L37","5L37"],curse:["4L17","5L17"],cut:["4M","5M"],doubleedge:["4E","5E"],doubleteam:["4M","5M"],earthpower:["4T","5E","5T"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],gigadrain:["4M","4L41","5L41","5T"],grassknot:["4M","5M"],grasspledge:["5T"],growth:["4E","5E"],headbutt:["4T"],hiddenpower:["4M","5M"],irontail:["4M","5T"],leafstorm:["4L45","5L45"],leechseed:["4L29","5L29"],lightscreen:["4M","5M"],megadrain:["4L25","5L25"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M"],razorleaf:["4L13","5L13"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rockclimb:["4M"],rocksmash:["4M","5M"],round:["5M"],safeguard:["4M","5M"],sandtomb:["4E","5E"],secretpower:["4M"],seedbomb:["4E","4T","5E","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],spitup:["4E","5E"],stealthrock:["4M","5T"],stockpile:["4E","5E","5S1"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],superpower:["4E","5E","5T"],swagger:["4M","5M"],swallow:["4E","5E"],swordsdance:["4M","5M"],synthesis:["4L33","4T","5L33","5T"],tackle:["4L1","5L1","5S0","5S1"],thrash:["4E","5E"],tickle:["4E","5E"],toxic:["4M","5M"],wideguard:["5E"],withdraw:["4L5","5L5","5S0","5S1"],worryseed:["4E","4T","5E","5T"]}}, - grotle:{learnset:{absorb:["4L9","5L9"],attract:["4M","5M"],bite:["4L22","5L22"],bulletseed:["4M"],captivate:["4M"],crunch:["4L42","5L42"],curse:["4L17","5L17"],cut:["4M","5M"],doubleteam:["4M","5M"],earthpower:["4T","5T"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],gigadrain:["4M","4L47","5L47","5T"],grassknot:["4M","5M"],grasspledge:["5T"],headbutt:["4T"],hiddenpower:["4M","5M"],irontail:["4M","5T"],leafstorm:["4L52","5L52"],leechseed:["4L32","5L32"],lightscreen:["4M","5M"],megadrain:["4L27","5L27"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M"],razorleaf:["4L13","5L13"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rockclimb:["4M"],rocksmash:["4M","5M"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],seedbomb:["4T","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],stealthrock:["4M","5T"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swordsdance:["4M","5M"],synthesis:["4L37","4T","5L37","5T"],tackle:["4L1","5L1"],toxic:["4M","5M"],withdraw:["4L1","4L5","5L1","5L5"],worryseed:["4T","5T"],superpower:["5T"]}}, - torterra:{learnset:{absorb:["4L1","4L9","5L1","5L9"],attract:["4M","5M"],bite:["4L22","5L22"],block:["4T","5T"],bulldoze:["5M"],bulletseed:["4M"],captivate:["4M"],crunch:["4L45","5L45"],curse:["4L17","5L17"],cut:["4M","5M"],doubleteam:["4M","5M"],earthpower:["4T","5T"],earthquake:["4M","4L32","5M","5L32","5S0"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],flash:["4M","5M"],frenzyplant:["4T","5T"],frustration:["4M","5M"],gigadrain:["4M","4L51","5L51","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],grasspledge:["5T"],headbutt:["4T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],ironhead:["4T","5T"],irontail:["4M","5T"],leafstorm:["4L57","5L57"],leechseed:["4L33","5L33"],lightscreen:["4M","5M"],megadrain:["4L27","5L27"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T","5S0"],protect:["4M","5M"],razorleaf:["4L1","4L13","5L1","5L13"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],safeguard:["4M","5M"],sandstorm:["4M","5M"],secretpower:["4M"],seedbomb:["4T","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],stealthrock:["4M","5T"],stoneedge:["4M","5M","5S0"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],superpower:["4T","5T"],swagger:["4M","5M"],swordsdance:["4M","5M"],synthesis:["4L39","4T","5L39","5T"],tackle:["4L1","5L1"],toxic:["4M","5M"],withdraw:["4L1","4L5","5L1","5L5"],woodhammer:["4L1","5L1","5S0"],worryseed:["4T","5T"]}}, - chimchar:{learnset:{acrobatics:["5M","5L39"],aerialace:["4M","5M"],assist:["4E","5E"],attract:["4M","5M"],blazekick:["4E","5E"],brickbreak:["4M","5M"],bulkup:["4M","5M"],captivate:["4M"],counter:["4E","5E"],cut:["4M","5M"],dig:["4M","5M"],doublekick:["4E","5E"],doubleteam:["4M","5M"],ember:["4L7","5L7","5S1","5S3"],encore:["4E","5E"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","4L31","5M","5L31"],fakeout:["4E","5E","5S3"],fireblast:["4M","5M"],firepledge:["5T"],firepunch:["4E","4T","5E","5T"],firespin:["4L33","5L33"],flamecharge:["5M"],flamethrower:["4M","4L41","5M","5L47","4S0","4S2"],flamewheel:["4L17","5L17"],fling:["4M","5M"],focusenergy:["4E","5E"],focuspunch:["4M","5E"],frustration:["4M","5M"],furyswipes:["4L15","5L15"],grassknot:["4M","5M","4S0","4S2"],headbutt:["4T"],heatwave:["4E","4T","5E","5T"],helpinghand:["4E","4T","5E","4S0","4S2","5T"],hiddenpower:["4M","5M"],honeclaws:["5M"],incinerate:["5M"],irontail:["4M","5T"],leer:["4L1","5L1","5S1","5S3"],lowkick:["4T","5T"],lowsweep:["5M"],mudslap:["4T"],nastyplot:["4L23","5L23"],naturalgift:["4M"],overheat:["4M","5M"],protect:["4M","5M"],quickguard:["5E"],rest:["4M","5M"],"return":["4M","5M"],rockclimb:["4M"],rocksmash:["4M","5M"],roleplay:["4T","5T"],rollout:["4T"],round:["5M"],scratch:["4L1","5L1","5S1"],secretpower:["4M"],shadowclaw:["4M","5M"],slackoff:["4L39","5L41"],sleeptalk:["4M","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],strength:["4M","5M"],submission:["5E"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],swordsdance:["4M","5M"],taunt:["4M","4L9","5M","5L9","5S1","5S3"],thunderpunch:["4E","4T","5E","4S0","4S2","5T"],torment:["4M","4L25","5M","5L25"],toxic:["4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"],vacuumwave:["4T"],willowisp:["4M","5M"],covet:["5T"],gunkshot:["5T"]}}, - monferno:{learnset:{acrobatics:["5M","5L46"],aerialace:["4M","5M"],attract:["4M","5M"],brickbreak:["4M","5M"],bulkup:["4M","5M"],captivate:["4M"],closecombat:["4L36","5L36"],cut:["4M","5M"],dig:["4M","5M"],doubleteam:["4M","5M"],ember:["4L1","4L7","5L1","5L7"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M"],feint:["4L26","5L26"],fireblast:["4M","5M"],firepledge:["5T"],firepunch:["4T","5T"],firespin:["4L39","5L39"],flamecharge:["5M"],flamethrower:["4M","5M"],flamewheel:["4L19","5L19"],flareblitz:["4L49","5L56"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],furyswipes:["4L16","5L16"],grassknot:["4M","5M"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],honeclaws:["5M"],incinerate:["5M"],irontail:["4M","5T"],leer:["4L1","5L1"],lowkick:["4T","5T"],lowsweep:["5M"],machpunch:["4L14","5L14"],mudslap:["4T"],naturalgift:["4M"],overheat:["4M","5M"],poisonjab:["4M","5M"],protect:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],roleplay:["4T","5T"],rollout:["4T"],round:["5M"],scratch:["4L1","5L1"],secretpower:["4M"],shadowclaw:["4M","5M"],slackoff:["4L46","5L49"],sleeptalk:["4M","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],swordsdance:["4M","5M"],taunt:["4M","4L9","5M","5L9"],thunderpunch:["4T","5T"],torment:["4M","4L29","5M","5L29"],toxic:["4M","5M"],uturn:["4M","5M"],vacuumwave:["4T"],willowisp:["4M","5M"],workup:["5M"],covet:["5T"],dualchop:["5T"],gunkshot:["5T"]}}, - infernape:{learnset:{acrobatics:["5M","5L52"],aerialace:["4M","5M"],attract:["4M","5M"],blastburn:["4T","5T"],brickbreak:["4M","5M"],bulkup:["4M","5M"],bulldoze:["5M"],calmmind:["4M","4L53","5M","5L58"],captivate:["4M"],closecombat:["4L41","5L36","5S0"],covet:["5T"],cut:["4M","5M"],dig:["4M","5M"],doubleteam:["4M","5M"],dualchop:["5T"],earthquake:["4M","5M"],ember:["4L1","4L7","5L1","5L7"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M"],feint:["4L29","5L26"],fireblast:["4M","5M","5S0"],firepledge:["5T"],firepunch:["4T","5T"],firespin:["4L45","5L42"],flamecharge:["5M"],flamethrower:["4M","5M"],flamewheel:["4L21","5L19"],flareblitz:["4L57","5L68"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],furyswipes:["4L17","5L16"],gigaimpact:["4M","5M"],grassknot:["4M","5M","5S0"],gunkshot:["4T","5T"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],honeclaws:["5M"],hyperbeam:["4M","5M"],incinerate:["5M"],irontail:["4M","5T"],leer:["4L1","5L1"],lowkick:["4T","5T"],lowsweep:["5M"],machpunch:["4L14","5L14"],mudslap:["4T"],naturalgift:["4M"],overheat:["4M","5M"],poisonjab:["4M","5M"],protect:["4M","5M"],punishment:["4L33","5L29"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],roar:["4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],roleplay:["4T","5T"],rollout:["4T"],round:["5M"],scratch:["4L1","5L1"],secretpower:["4M"],shadowclaw:["4M","5M"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],swordsdance:["4M","5M"],taunt:["4M","4L1","4L9","5M","5L1","5L9"],thunderpunch:["4T","5T"],torment:["4M","5M"],toxic:["4M","5M"],uturn:["4M","5M","5S0"],vacuumwave:["4T"],willowisp:["4M","5M"],workup:["5M"]}}, - piplup:{learnset:{aerialace:["4M","5M"],agility:["4E","5E"],aquaring:["4E","5E"],attract:["4M","5M"],bide:["4L18","4L22","5E","5L22"],blizzard:["4M","5M"],brickbreak:["4M","5M"],brine:["4M","4L29","5L29"],bubble:["4L8","5L8","5S0","5S3"],bubblebeam:["4L22","4L18","5L18"],captivate:["4M"],cut:["4M","5M"],defog:["4M"],dig:["4M","5M"],dive:["4T","5M"],doublehit:["4E","5E"],doubleteam:["4M","5M"],drillpeck:["4L39","5L39"],echoedvoice:["5M"],endure:["4M"],facade:["4M","5M"],featherdance:["4E","5E","5S1","5S2","5S3"],flail:["4E","5E"],fling:["4M","5M"],frustration:["4M","5M"],furyattack:["4L25","5L25"],grassknot:["4M","5M"],growl:["4L4","5L4","5S0","5S3"],hail:["4M","5M"],headbutt:["4T"],hiddenpower:["4M","5M"],hydropump:["4E","4L43","5E","5L43","5S1"],icebeam:["4M","5M"],icywind:["4T","5E","5T"],mist:["4L36","5L36"],mudslap:["4E","4T","5E"],mudsport:["4E","5E"],naturalgift:["4M"],peck:["4L15","5L15","5S1","5S2"],pluck:["4M","5M"],pound:["4L1","5L1","5S0","5S3"],protect:["4M","5M"],quash:["5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rocktomb:["4M","5M"],round:["5M","5S2"],scald:["5M"],secretpower:["4M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T"],snore:["4E","4T","5E","5T"],stealthrock:["4M","5T"],substitute:["4M","5M"],supersonic:["4E","5E"],surf:["4M","5M"],swagger:["4M","5M"],toxic:["4M","5M"],waterfall:["4M","5M"],waterpledge:["5T"],waterpulse:["4M"],watersport:["4L11","5L11","5S1"],whirlpool:["4L32","4M","5L32"],yawn:["4E","5E"],covet:["5T"],sing:["5S2"]}}, - prinplup:{learnset:{aerialace:["4M","5M"],attract:["4M","5M"],bide:["4L19","4L24","5L24"],blizzard:["4M","5M"],brickbreak:["4M","5M"],brine:["4M","4L33","5L33"],bubble:["4L8","5L8"],bubblebeam:["4L24","4L19","5L19"],captivate:["4M"],cut:["4M","5M"],defog:["4M"],dig:["4M","5M"],dive:["4T","5M"],doubleteam:["4M","5M"],drillpeck:["4L46","5L46"],echoedvoice:["5M"],endure:["4M"],facade:["4M","5M"],fling:["4M","5M"],frustration:["4M","5M"],furyattack:["4L28","5L28"],grassknot:["4M","5M"],growl:["4L1","4L4","5L1","5L4"],hail:["4M","5M"],headbutt:["4T"],hiddenpower:["4M","5M"],honeclaws:["5M"],hydropump:["4L51","5L51"],icebeam:["4M","5M"],icywind:["4T","5T"],metalclaw:["4L16","5L16"],mist:["4L42","5L42"],mudslap:["4T"],naturalgift:["4M"],peck:["4L15","5L15"],pluck:["4M","5M"],protect:["4M","5M"],quash:["5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],scald:["5M"],secretpower:["4M"],shadowclaw:["4M","5M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],strength:["4M","5M"],substitute:["4M","5M"],surf:["4M","5M"],swagger:["4M","5M"],tackle:["4L1","5L1"],toxic:["4M","5M"],waterfall:["4M","5M"],waterpledge:["5T"],waterpulse:["4M"],watersport:["4L11","5L11"],whirlpool:["4L37","4M","5L37"],covet:["5T"]}}, - empoleon:{learnset:{aerialace:["4M","5M"],aquajet:["4L36","5L36","5S0"],attract:["4M","5M"],avalanche:["4M"],blizzard:["4M","5M"],brickbreak:["4M","5M"],brine:["4M","4L33","5L33"],bubble:["4L1","4L8","5L1","5L8"],bubblebeam:["4L24","4L19","5L19"],bulldoze:["5M"],captivate:["4M"],cut:["4M","5M"],defog:["4M"],dig:["4M","5M"],dive:["4T","5M"],doubleteam:["4M","5M"],drillpeck:["4L52","5L52"],earthquake:["4M","5M"],echoedvoice:["5M"],endure:["4M"],facade:["4M","5M"],flashcannon:["4M","5M"],fling:["4M","5M"],frustration:["4M","5M"],furyattack:["4L28","5L28"],furycutter:["4T"],gigaimpact:["4M","5M"],grassknot:["4M","5M","5S0"],growl:["4L1","4L4","5L1","5L4"],hail:["4M","5M"],headbutt:["4T"],hiddenpower:["4M","5M"],honeclaws:["5M"],hydrocannon:["4T","5T"],hydropump:["4L59","5L59","5S0"],hyperbeam:["4M","5M"],icebeam:["4M","5M","5S0"],icywind:["4T","5T"],irondefense:["4T","5T"],knockoff:["4T","5T"],metalclaw:["4L16","5L16"],mist:["4L46","5L46"],mudslap:["4T"],naturalgift:["4M"],peck:["4L15","5L15"],pluck:["4M","5M"],protect:["4M","5M"],quash:["5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],scald:["5M"],secretpower:["4M"],shadowclaw:["4M","5M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],steelwing:["4M"],strength:["4M","5M"],substitute:["4M","5M"],surf:["4M","5M"],swagger:["4M","4L19","4L24","5M","5L24"],swordsdance:["4M","4L11","5M","5L11"],tackle:["4L1","5L1"],toxic:["4M","5M"],waterfall:["4M","5M"],waterpledge:["5T"],waterpulse:["4M"],whirlpool:["4L39","4M","5L39"],covet:["5T"]}}, - starly:{learnset:{aerialace:["4M","4L25","5M","5L25"],agility:["4L33","5L33"],aircutter:["4T"],astonish:["4E","5E"],attract:["4M","5M"],bravebird:["4L37","5L37"],captivate:["4M"],defog:["4M"],detect:["5E"],doubleedge:["4E","5E"],doubleteam:["4M","4L13","5M","5L13"],echoedvoice:["5M"],endeavor:["4L17","4T","5L17","5T"],endure:["4M"],facade:["4M","5M"],featherdance:["4E","5E"],finalgambit:["5L41"],fly:["4M","5M"],foresight:["4E","5E"],frustration:["4M","5M"],furyattack:["4E","5E"],growl:["4L1","5L1","4S0"],heatwave:["4T","5T"],hiddenpower:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],protect:["4M","5M"],pursuit:["4E","5E"],quickattack:["4L5","5L5"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],revenge:["5E"],roost:["4M","5E","5T"],round:["5M"],sandattack:["4E","5E"],secretpower:["4M"],sleeptalk:["4M","5T"],snore:["4T","5T"],steelwing:["4M","5E"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],tackle:["4L1","5L1","4S0"],tailwind:["4T","5T"],takedown:["4L29","5L29"],thief:["4M","5M"],toxic:["4M","5M"],twister:["4T"],uproar:["5E"],uturn:["4M","5M"],whirlwind:["4L21","5L21"],wingattack:["4L9","5L9"],workup:["5M"]}}, - staravia:{learnset:{aerialace:["4M","4L28","5M","5L28"],agility:["4L38","5L38"],aircutter:["4T"],attract:["4M","5M"],bravebird:["4L43","5L43"],captivate:["4M"],defog:["4M"],doubleteam:["4M","4L13","5M","5L13"],echoedvoice:["5M"],endeavor:["4L18","4T","5L18","5T"],endure:["4M"],facade:["4M","5M"],featherdance:["5D"],finalgambit:["5L48"],fly:["4M","5M"],frustration:["4M","5M"],growl:["4L1","5L1"],heatwave:["4T","5T"],hiddenpower:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],protect:["4M","5M"],quickattack:["4L1","4L5","5L1","5L5"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],roost:["4M","5T"],round:["5M"],secretpower:["4M"],sleeptalk:["4M","5T"],snore:["4T","5T"],steelwing:["4M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],tackle:["4L1","5L1"],tailwind:["4T","5D","5T"],takedown:["4L33","5L33"],thief:["4M","5M"],toxic:["4M","5M"],twister:["4T"],uturn:["4M","5M"],whirlwind:["4L23","5L23"],wingattack:["4L9","5L9","5D"],workup:["5M"]}}, - staraptor:{learnset:{aerialace:["4M","4L28","5M","5L28"],agility:["4L41","5L41"],aircutter:["4T"],attract:["4M","5M"],bravebird:["4L49","5L49"],captivate:["4M"],closecombat:["4L34","5L34"],defog:["4M"],doubleteam:["4M","4L13","5M","5L13"],echoedvoice:["5M"],endeavor:["4L18","4T","5L18","5T"],endure:["4M"],facade:["4M","5M"],finalgambit:["5L57"],fly:["4M","5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],growl:["4L1","5L1"],heatwave:["4T","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],protect:["4M","5M"],quickattack:["4L1","4L5","5L1","5L5"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],roost:["4M","5T"],round:["5M"],secretpower:["4M"],skyattack:["4T","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],steelwing:["4M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],tackle:["4L1","5L1"],tailwind:["4T","5T"],takedown:["4L33","5L33"],thief:["4M","5M"],toxic:["4M","5M"],twister:["4T"],uturn:["4M","5M"],whirlwind:["4L23","5L23"],wingattack:["4L1","4L9","5L1","5L9"],workup:["5M"]}}, - bidoof:{learnset:{amnesia:["4L29","5L29"],aquatail:["4E","4T","5E","5D","5T"],attract:["4M","5M"],blizzard:["4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],curse:["4L45","5L45"],cut:["4M","5M"],defensecurl:["4E","4L9","5E","5L9"],dig:["4M","5M"],doubleedge:["4E","5E"],doubleteam:["4M","5M"],echoedvoice:["5M"],endure:["4M","5E"],facade:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],furyswipes:["4E","5E"],grassknot:["4M","5M"],growl:["4L5","5L5"],headbutt:["4L17","4T","5L17"],hiddenpower:["4M","5M"],hyperfang:["4L21","5L21"],icebeam:["4M","5M"],icywind:["4T","5T"],irontail:["4M","5T"],lastresort:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],odorsleuth:["4E","5E"],pluck:["4M","5M"],protect:["4M","5M"],quickattack:["4E","5E"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],rockclimb:["5E"],rocksmash:["4M","5M"],rollout:["4E","4L13","4T","5E","5L13"],round:["5M"],secretpower:["4M","5D"],shadowball:["4M","5M"],shockwave:["4M"],skullbash:["5E"],sleeptalk:["4M","5E","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],substitute:["4M","5M"],sunnyday:["4M","5M"],superfang:["4L37","4T","5L37","5T"],superpower:["4L41","4T","5L41","5T"],swagger:["4M","5M"],swift:["4T"],tackle:["4L1","5L1","5D","4S0"],takedown:["4L33","5L33"],taunt:["4M","5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderwave:["4M","5M"],toxic:["4M","5M"],watersport:["4E","5E"],workup:["5M"],yawn:["4L25","5L25"],covet:["5T"]}}, - bibarel:{learnset:{amnesia:["4L33","5L33"],aquatail:["4T","5T"],attract:["4M","5M"],blizzard:["4M","5M"],bulldoze:["5M"],captivate:["4M"],chargebeam:["4M","5M"],curse:["4L53","5L53"],cut:["4M","5M"],defensecurl:["4L9","5L9"],dig:["4M","5M"],dive:["4T","5M"],doubleteam:["4M","5M"],echoedvoice:["5M"],endure:["4M"],facade:["4M","5M"],fling:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],furycutter:["4T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growl:["4L1","4L5","5L1","5L5"],headbutt:["4L18","4T","5L18"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],hyperfang:["4L23","5L23"],icebeam:["4M","5M"],icywind:["4T","5T"],irontail:["4M","5T"],lastresort:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],pluck:["4M","5M"],protect:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],rockclimb:["4M"],rocksmash:["4M","5M"],rollout:["4L13","4T","5L13"],round:["5M"],scald:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],sleeptalk:["4M","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],superfang:["4L43","4T","5L43","5T"],superpower:["4L48","4T","5L48","5T"],surf:["4M","5M"],swagger:["4M","5M"],swift:["4T"],tackle:["4L1","5L1"],takedown:["4L38","5L38"],taunt:["4M","5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderwave:["4M","5M"],toxic:["4M","5M"],waterfall:["4M","5M"],watergun:["4L15","5L15"],waterpulse:["4M"],whirlpool:["4M"],workup:["5M"],yawn:["4L28","5L28"],covet:["5T"]}}, - kricketot:{learnset:{bide:["4L1","5L1"],bugbite:["4L16","4T","5L16","5T"],endeavor:["4T","5T","5D"],growl:["4L1","5L1"],mudslap:["4T"],snore:["4T","5T"],stringshot:["4T"],strugglebug:["5L6","5D"],uproar:["4T","5T","5D"]}}, - kricketune:{learnset:{aerialace:["4M","5M"],attract:["4M","5M"],bide:["4L1","5L1"],brickbreak:["4M","5M"],bugbite:["4T","5T"],bugbuzz:["4L34","4L46","5L46"],captivate:["4M"],cut:["4M","5M"],doubleteam:["4M","5M"],echoedvoice:["5M"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M"],falseswipe:["4M","5M"],flash:["4M","5M"],focusenergy:["4L22","5L22"],frustration:["4M","5M"],furycutter:["4L10","4T","5L10"],gigaimpact:["4M","5M"],growl:["4L1","5L1"],hiddenpower:["4M","5M"],honeclaws:["5M"],hyperbeam:["4M","5M"],knockoff:["4T","5T"],leechlife:["4L14","5L14"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4L42","5L42"],perishsong:["4L38","4L50","5L50"],protect:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rocksmash:["4M","5M"],round:["5M"],screech:["4L30","4L34","5L34"],secretpower:["4M"],silverwind:["4M"],sing:["4L18","5L18"],slash:["4L26","5L26"],sleeptalk:["4M","5T"],snore:["4T","5T"],strength:["4M","5M"],stringshot:["4T"],strugglebug:["5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swordsdance:["4M","5M"],taunt:["4L38","4M","5M","5L38"],toxic:["4M","5M"],uproar:["4T","5T"],xscissor:["4M","4L26","4L30","5M","5L30"],hypervoice:["5T"],healbell:["5T"]}}, - shinx:{learnset:{attract:["4M","5M"],bite:["4L13","4L17","5L17"],captivate:["4M"],charge:["4L9","5L9","5D"],chargebeam:["4M","5M"],crunch:["4L29","4L33","5L33"],discharge:["4L41","5L41"],doublekick:["5E"],doubleteam:["4M","5M"],endure:["4M"],facade:["4M","5M"],firefang:["4E","5E"],flash:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],headbutt:["4T"],helpinghand:["5E"],hiddenpower:["4M","5M"],howl:["4E","5E"],icefang:["4E","5E"],irontail:["4M","5T"],leer:["4L5","5L5"],lightscreen:["4M","5M"],magnetrise:["4T","5D","5T"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4E","5E","5D"],protect:["4M","5M"],quickattack:["4E","5E"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","4L21","5M","5L21"],round:["5M"],scaryface:["4L37","5L37"],secretpower:["4M"],shockwave:["4M","5E"],signalbeam:["4T","5E","5T"],sleeptalk:["4M","5T"],snarl:["5M"],snore:["4T","5T"],spark:["4L17","4L13","5L13"],strength:["4M","5M"],substitute:["4M","5M"],swagger:["4M","4L25","5M","5L25"],swift:["4T","5E"],tackle:["4L1","5L1"],takedown:["4E","5E"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderfang:["4E","4L33","4L29","5E","5L29"],thunderwave:["4M","5M"],toxic:["4M","5M"],voltswitch:["5M"],wildcharge:["5M","5L45"]}}, - luxio:{learnset:{attract:["4M","5M"],bite:["4L13","4L18","5L18"],captivate:["4M"],charge:["4L9","5L9"],chargebeam:["4M","5M"],crunch:["4L33","4L38","5L38"],discharge:["4L48","5L48"],doubleteam:["4M","5M"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],headbutt:["4T"],hiddenpower:["4M","5M"],irontail:["4M","5T"],leer:["4L1","4L5","5L1","5L5"],lightscreen:["4M","5M"],magnetrise:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","4L23","5M","5L23"],round:["5M"],scaryface:["4L43","5L43"],secretpower:["4M"],shockwave:["4M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T"],snarl:["5M"],snore:["4T","5T"],spark:["4L18","4L13","5L13"],strength:["4M","5M"],substitute:["4M","5M"],swagger:["4M","4L28","5M","5L28"],swift:["4T"],tackle:["4L1","5L1"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderfang:["4L38","4L33","5L33"],thunderwave:["4M","5M"],toxic:["4M","5M"],voltswitch:["5M"],wildcharge:["5M","5L53"]}}, - luxray:{learnset:{attract:["4M","5M"],bite:["4L13","4L18","5L18"],captivate:["4M"],charge:["4L1","4L9","5L1","5L9"],chargebeam:["4M","5M"],crunch:["4L35","4L42","5L42"],discharge:["4L56","5L56"],doubleteam:["4M","5M"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],gigaimpact:["4M","5M"],headbutt:["4T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],irontail:["4M","5T"],leer:["4L1","4L5","5L1","5L5"],lightscreen:["4M","5M"],magnetrise:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","4L23","5M","5L23"],round:["5M"],scaryface:["4L49","5L49"],secretpower:["4M"],shockwave:["4M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T"],snarl:["5M"],snore:["4T","5T"],spark:["4L18","4L13","5L13"],strength:["4M","5M"],substitute:["4M","5M"],superpower:["4T","5T"],swagger:["4M","4L28","5M","5L28"],swift:["4T"],tackle:["4L1","5L1"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderfang:["4L42","4L35","5L35"],thunderwave:["4M","5M"],toxic:["4M","5M"],voltswitch:["5M"],wildcharge:["5M","5L63"]}}, - cranidos:{learnset:{ancientpower:["4L28","4T","5L33"],assurance:["4L24","5L24"],attract:["4M","5M"],blizzard:["4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L28"],crunch:["4E","5E","5S0"],curse:["4E","5E"],dig:["4M","5M"],doubleedge:["4E","5E"],doubleteam:["4M","5M"],dragonpulse:["4M","5T"],earthpower:["4T","5T"],earthquake:["4M","5M"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M"],fireblast:["4M","5M"],firepunch:["4T","5T","5D"],flamethrower:["4M","5M"],fling:["4M","5M"],focusenergy:["4L6","5L6"],frustration:["4M","5M"],hammerarm:["4E","5E"],headbutt:["4L1","4T","5L1","5D","5S0"],headsmash:["4L43","5L46"],hiddenpower:["4M","5M"],icebeam:["4M","5M"],incinerate:["5M"],ironhead:["4T","5E","5T","5D"],irontail:["4M","5E","5T"],leer:["4E","4L1","5E","5L1"],mudslap:["4T"],naturalgift:["4M"],payback:["4M","5M"],protect:["4M","5M"],pursuit:["4L10","5L10","5S0"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandstorm:["4M","5M"],scaryface:["4L19","5L19"],screech:["4L37","5L42"],secretpower:["4M"],shockwave:["4M"],slam:["4E","5E"],sleeptalk:["4M","5T"],smackdown:["5M"],snore:["4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stomp:["4E","5E"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],superpower:["4T","5T"],swagger:["4M","5M"],swordsdance:["4M","5M"],takedown:["4L15","5L15","5S0"],thief:["4M","5M"],thrash:["4E","5E"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4T","5T"],toxic:["4M","5M"],uproar:["4T","5T"],whirlwind:["4E","5E"],zenheadbutt:["4L33","4T","5L37","5T"]}}, - rampardos:{learnset:{ancientpower:["4L28","4T","5L36"],assurance:["4L24","5L24"],attract:["4M","5M"],avalanche:["4M"],blizzard:["4M","5M"],brickbreak:["4M","5M"],bulldoze:["5M"],captivate:["4M"],chipaway:["5L28"],cut:["4M","5M"],dig:["4M","5M"],doubleteam:["4M","5M"],dragonpulse:["4M","5T"],dragontail:["5M"],earthpower:["4T","5T"],earthquake:["4M","5M"],endeavor:["4L30","4T","5L30","5T"],endure:["4M"],facade:["4M","5M"],fireblast:["4M","5M"],firepunch:["4T","5T"],flamethrower:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focusenergy:["4L6","5L6"],focuspunch:["4M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],headbutt:["4L1","4T","5L1"],headsmash:["4L52","5L58"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],incinerate:["5M"],ironhead:["4T","5T"],irontail:["4M","5T"],leer:["4L1","5L1"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T"],painsplit:["4T","5T"],payback:["4M","5M"],protect:["4M","5M"],pursuit:["4L10","5L10"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandstorm:["4M","5M"],scaryface:["4L19","5L19"],screech:["4L43","5L51"],secretpower:["4M"],shockwave:["4M"],sleeptalk:["4M","5T"],smackdown:["5M"],snore:["4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],superpower:["4T","5T"],surf:["4M","5M"],swagger:["4M","5M"],swordsdance:["4M","5M"],takedown:["4L15","5L15"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4T","5T"],toxic:["4M","5M"],uproar:["4T","5T"],whirlpool:["4M"],zenheadbutt:["4L36","4T","5L43","5T"]}}, - shieldon:{learnset:{ancientpower:["4L28","4T","5L28"],attract:["4M","5M"],blizzard:["4M","5M"],bodyslam:["4E","5E","5S0"],bulldoze:["5M"],captivate:["4M"],counter:["4E","5E","5D"],curse:["4E","5E"],dig:["4M","5M"],doubleedge:["4E","5E"],doubleteam:["4M","5M"],earthpower:["4T","5T"],earthquake:["4M","5M"],endure:["4M","4L33","5L33"],facade:["4M","5M"],fireblast:["4M","5M"],fissure:["4E","5E","5D"],flamethrower:["4M","5M"],flashcannon:["4M","5M"],focusenergy:["4E","5E"],frustration:["4M","5M"],headbutt:["4E","4T","5E"],heavyslam:["5L46"],hiddenpower:["4M","5M"],icebeam:["4M","5M"],incinerate:["5M"],irondefense:["4L19","4T","5L19","5T"],ironhead:["4L43","4T","5L42","5T"],irontail:["4M","5T"],magnetrise:["4T","5T"],metalburst:["4L37","5L37"],metalsound:["4L10","5L10","5S0"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","4L1","5M","5L1","5D","5S0"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockblast:["4E","5E"],rockpolish:["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandstorm:["4M","5M"],scaryface:["4E","5E"],screech:["4E","5E"],secretpower:["4M"],shockwave:["4M"],sleeptalk:["4M","5T"],smackdown:["5M"],snore:["4T","5T"],stealthrock:["4M","5E","5T"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","4L24","5M","5L24"],tackle:["4L1","5L1"],takedown:["4L15","5L15","5S0"],taunt:["4M","4L6","5M","5L6"],thunder:["4M","5M"],thunderbolt:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],wideguard:["5E"]}}, - bastiodon:{learnset:{ancientpower:["4L28","4T","5L28"],attract:["4M","5M"],avalanche:["4M"],blizzard:["4M","5M"],block:["4L30","4T","5L30","5T"],bulldoze:["5M"],captivate:["4M"],dig:["4M","5M"],doubleteam:["4M","5M"],earthpower:["4T","5T"],earthquake:["4M","5M"],endure:["4M","4L36","5L36"],facade:["4M","5M"],fireblast:["4M","5M"],flamethrower:["4M","5M"],flashcannon:["4M","5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],heavyslam:["5L58"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],incinerate:["5M"],irondefense:["4L19","4T","5L19","5T"],ironhead:["4L52","4T","5L51","5T"],irontail:["4M","5T"],magiccoat:["4T","5T"],magnetrise:["4T","5T"],metalburst:["4L43","5L43"],metalsound:["4L1","4L10","5L1","5L10"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["4M","4L1","5M","5L1"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockpolish:["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandstorm:["4M","5M"],secretpower:["4M"],shockwave:["4M"],sleeptalk:["4M","5T"],smackdown:["5M"],snore:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","4L24","5M","5L24"],tackle:["4L1","5L1"],takedown:["4L15","5L15"],taunt:["4M","4L1","4L6","5M","5L1","5L6"],thunder:["4M","5M"],thunderbolt:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"]}}, - burmy:{learnset:{bugbite:["4L15","4T","5L15","5D","5T"],hiddenpower:["4L20","5L20"],protect:["4L1","5L1","5D"],snore:["4T","5D","5T"],stringshot:["4T"],tackle:["4L10","5L10"],electroweb:["5T"]}}, - wormadam:{learnset:{attract:["4M","4L41","5M","5L41"],bugbite:["4L15","4T","5L15","5T"],bulletseed:["4M"],captivate:["4M","4L35","5L35"],confusion:["4L23","5L23"],doubleteam:["4M","5M"],dreameater:["4M","5M"],endeavor:["4T","5T"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],flail:["4L38","5L38"],flash:["4M","5M"],frustration:["4M","5M"],gigadrain:["4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growth:["4L29","5L29"],hiddenpower:["4M","4L20","5M","5L20"],hyperbeam:["4M","5M"],leafstorm:["4L47","5L47"],naturalgift:["4M"],protect:["4M","4L10","5M","5L10"],psybeam:["4L32","5L32"],psychic:["4M","4L44","5M","5L44"],psychup:["4M","5M"],raindance:["4M","5M"],razorleaf:["4L26","5L26"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],seedbomb:["4T","5T"],shadowball:["4M","5M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],stringshot:["4T"],strugglebug:["5M"],substitute:["4M","5M"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],synthesis:["4T","5T"],tackle:["4L1","5L1"],thief:["4M","5M"],toxic:["4M","5M"],uproar:["4T","5T"],venoshock:["5M"],worryseed:["4T","5T"],electroweb:["5T"]}}, - wormadamsandy:{learnset:{attract:["4M","4L41","5M","5L41"],bugbite:["4L15","4T","5L15","5T"],bulldoze:["5M"],captivate:["4M","4L35","5L35"],confusion:["4L23","5L23"],dig:["4M","5M"],doubleteam:["4M","5M"],dreameater:["4M","5M"],earthpower:["4T","5T"],earthquake:["4M","5M"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M"],fissure:["4L47","5L47"],flail:["4L38","5L38"],flash:["4M","5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],harden:["4L29","5L29"],hiddenpower:["4M","4L20","5M","5L20"],hyperbeam:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","4L10","5M","5L10"],psybeam:["4L32","5L32"],psychic:["4M","4L44","5M","5L44"],psychup:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rockblast:["4L26","5L26"],rocktomb:["4M","5M"],rollout:["4T"],round:["5M"],safeguard:["4M","5M"],sandstorm:["4M","5M"],secretpower:["4M"],shadowball:["4M","5M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],stringshot:["4T"],strugglebug:["5M"],substitute:["4M","5M"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],tackle:["4L1","5L1"],thief:["4M","5M"],toxic:["4M","5M"],uproar:["4T","5T"],venoshock:["5M"],electroweb:["5T"],stealthrock:["5T"]}}, - wormadamtrash:{learnset:{attract:["4M","4L41","5M","5L41"],bugbite:["4L15","4T","5L15","5T"],captivate:["4M","4L35","5L35"],confusion:["4L23","5L23"],doubleteam:["4M","5M"],dreameater:["4M","5M"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M"],flail:["4L38","5L38"],flash:["4M","5M"],flashcannon:["4M","5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],gunkshot:["4T","5T"],gyroball:["4M","5M"],hiddenpower:["4M","4L20","5M","5L20"],hyperbeam:["4M","5M"],irondefense:["4T","5T"],ironhead:["4L47","4T","5L47","5T"],magnetrise:["4T","5T"],metalsound:["4L29","5L29"],mirrorshot:["4L26","5L26"],naturalgift:["4M"],protect:["4M","4L10","5M","5L10"],psybeam:["4L32","5L32"],psychic:["4M","4L44","5M","5L44"],psychup:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],shadowball:["4M","5M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],stringshot:["4T"],strugglebug:["5M"],substitute:["4M","5M"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],tackle:["4L1","5L1"],thief:["4M","5M"],toxic:["4M","5M"],uproar:["4T","5T"],venoshock:["5M"],electroweb:["5T"]}}, - mothim:{learnset:{acrobatics:["5M"],aerialace:["4M","5M"],aircutter:["4T"],airslash:["4L41","5L41"],attract:["4M","5M"],bugbite:["4L15","4T","5L15","5T"],bugbuzz:["4L47","5L47"],camouflage:["4L35","5L35"],captivate:["4M"],confusion:["4L23","5L23"],defog:["4M"],doubleteam:["4M","5M"],dreameater:["4M","5M"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],gigadrain:["4M","5T"],gigaimpact:["4M","5M"],gust:["4L26","5L26"],hiddenpower:["4M","4L20","5M","5L20"],hyperbeam:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],poisonpowder:["4L29","5L29"],protect:["4M","4L10","5M","5L10"],psybeam:["4L32","5L32"],psychic:["4M","4L44","5M","5L44"],psychup:["4M","5M"],quiverdance:["5L50"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roost:["4M","5T"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],shadowball:["4M","5M"],signalbeam:["4T","5T"],silverwind:["4M","4L38","5L38"],skillswap:["4M","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],stringshot:["4T"],strugglebug:["5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],tackle:["4L1","5L1"],tailwind:["4T","5T"],thief:["4M","5M"],toxic:["4M","5M"],twister:["4T"],uturn:["4M","5M"],venoshock:["5M"],electroweb:["5T"]}}, - combee:{learnset:{aircutter:["4T","5D"],bugbite:["4L13","4T","5L13","5T"],bugbuzz:["5L29"],endeavor:["4T","5T"],gust:["4L1","5L1","5D"],mudslap:["4T"],ominouswind:["4T"],snore:["4T","5T"],stringshot:["4T"],sweetscent:["4L1","5L1"],swift:["4T"],tailwind:["4T","5T","5D"]}}, - vespiquen:{learnset:{acrobatics:["5M"],aerialace:["4M","5M"],aircutter:["4T"],airslash:["5L37"],attackorder:["4L37","5L37"],attract:["4M","5M"],bugbite:["4T","5T"],captivate:["4M","4L33","5L33"],confuseray:["4L7","5L7"],cut:["4M","5M"],defendorder:["4L13","5L13"],defog:["4M"],destinybond:["4L43","5L43"],doubleteam:["4M","5M"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],fling:["4M","5M"],frustration:["4M","5M"],furycutter:["4L9","4T","5L9"],furyswipes:["4L19","5L19"],gigaimpact:["4M","5M"],gust:["4L1","5L1"],healorder:["4L25","5L25"],hiddenpower:["4M","5M"],honeclaws:["5M"],hyperbeam:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],poisonsting:["4L3","5L3"],powergem:["4L21","5L21"],protect:["4M","5M"],pursuit:["4L15","5L15"],quash:["5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roost:["4M","5T"],round:["5M"],secretpower:["4M"],signalbeam:["4T","5T"],silverwind:["4M"],slash:["4L31","5L31"],sleeptalk:["4M","5T"],sludgebomb:["4M","5M"],snore:["4T","5T"],stringshot:["4T"],strugglebug:["5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","4L39","5M","5L39"],sweetscent:["4L1","5L1"],swift:["4T"],tailwind:["4T","5T"],thief:["4M","5M"],toxic:["4M","4L27","5M","5L27"],uturn:["4M","5M"],venoshock:["5M"],xscissor:["4M","5M"]}}, - pachirisu:{learnset:{attract:["4M","5M"],bestow:["5E"],bide:["4L1","5L1"],bite:["4E","5E"],captivate:["4M"],charge:["5E"],chargebeam:["4M","5M"],charm:["4L9","5L9"],covet:["4E","5E","5D","5T"],cut:["4M","5M"],defensecurl:["4E","5E"],dig:["4M","5M"],discharge:["4L29","5L41"],doubleteam:["4M","5M"],echoedvoice:["5M"],electroball:["5L25"],endure:["4M","4L17","5L17"],facade:["4M","5M"],faketears:["4E","5E"],flail:["4E","5E"],flash:["4M","5M"],flatter:["4E","5E"],fling:["4M","5M"],followme:["5E"],frustration:["4M","5M"],grassknot:["4M","5M"],growl:["4L1","5L1"],gunkshot:["4T","5T"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],hyperfang:["5L49"],irontail:["4M","5E","5T"],lastresort:["4L37","4T","5L45","5T"],lightscreen:["4M","5M"],magnetrise:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M"],quickattack:["4L5","5L5","5D"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rollout:["4E","4T","5E"],round:["5M"],secretpower:["4M"],seedbomb:["4T","5T"],shockwave:["4M","5D"],sleeptalk:["4M","5T"],snore:["4T","5T"],spark:["4L13","5L13"],substitute:["4M","5M"],superfang:["4L33","4T","5L37","5T"],swagger:["4M","5M"],sweetkiss:["4L25","5L29"],swift:["4L21","4T","5L21"],tailwhip:["5E"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4T","5T"],thunderwave:["4M","5M","5L33"],toxic:["4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"],voltswitch:["5M"]}}, - buizel:{learnset:{agility:["4L28","5L28"],aquajet:["4L21","5L21"],aquaring:["5E"],aquatail:["5E","5L55","5T"],attract:["4M","5M"],batonpass:["4E","5E"],blizzard:["4M","5M"],brickbreak:["4M","5M"],brine:["4M"],bulkup:["4M","5M"],captivate:["4M"],dig:["4M","5M"],dive:["4T","5M"],doublehit:["5L27"],doubleslap:["4E","5E"],doubleteam:["4M","5M"],echoedvoice:["5M"],endure:["4M"],facade:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],furycutter:["4E","5E"],furyswipes:["4E","5E"],growl:["4L1","5L1"],hail:["4M","5M"],headbutt:["4E","4T","5E"],hiddenpower:["4M","5M"],hydropump:["5L45"],icebeam:["4M","5M"],icepunch:["4T","5T"],icywind:["4T","5T"],irontail:["4M","5T"],mefirst:["5E"],mudslap:["4E","4T","5E"],naturalgift:["4M"],odorsleuth:["4E","5E"],protect:["4M","5M"],pursuit:["4L10","5L10"],quickattack:["4L3","5L3"],raindance:["4M","5M"],razorwind:["4L45","5L45"],rest:["4M","5M"],"return":["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],scald:["5M"],secretpower:["4M"],slash:["4E","5E","5D"],sleeptalk:["4M","5T"],snore:["4T","5T"],sonicboom:["4L1","5L1"],strength:["4M","5M"],substitute:["4M","5M"],surf:["4M","5M"],swagger:["4M","5M"],swift:["4L15","4T","5L15"],switcheroo:["5E"],tailslap:["5E"],toxic:["4M","5M"],waterfall:["4M","5M"],watergun:["4L6","5L6","5D"],waterpulse:["4M","5D"],watersport:["4L1","5L1","5D"],whirlpool:["4L36","4M","5L36"]}}, - floatzel:{learnset:{agility:["4L29","5L29"],aquajet:["4L21","5L21"],aquatail:["4T","5L62","5T"],attract:["4M","5M"],blizzard:["4M","5M"],brickbreak:["4M","5M"],brine:["4M"],bulkup:["4M","5M"],captivate:["4M"],crunch:["4L26","5L26"],dig:["4M","5M"],dive:["4T","5M"],doublehit:["5L29"],doubleteam:["4M","5M"],echoedvoice:["5M"],endure:["4M"],facade:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],growl:["4L1","5L1"],hail:["4M","5M"],headbutt:["4T"],hiddenpower:["4M","5M"],hydropump:["5L57"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],icefang:["4L1","5L1"],icepunch:["4T","5T"],icywind:["4T","5T"],irontail:["4M","5T"],mudslap:["4T"],naturalgift:["4M"],payback:["4M","5M"],protect:["4M","5M"],pursuit:["4L10","5L10"],quickattack:["4L1","4L3","5L1","5L3"],raindance:["4M","5M"],razorwind:["4L50","5L50"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],scald:["5M"],secretpower:["4M"],sleeptalk:["4M","5T"],snore:["4T","5T"],sonicboom:["4L1","5L1"],strength:["4M","5M"],substitute:["4M","5M"],surf:["4M","5M"],swagger:["4M","5M"],swift:["4L15","4T","5L15"],taunt:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],waterfall:["4M","5M"],watergun:["4L6","5L6"],waterpulse:["4M"],watersport:["4L1","5L1"],whirlpool:["4L39","4M","5L39"],lowkick:["4T","5T"]}}, - cherubi:{learnset:{aromatherapy:["4E","5E"],attract:["4M","5M"],bulletseed:["4M","5D"],captivate:["4M"],defensecurl:["5E"],doubleteam:["4M","5M"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],gigadrain:["4M","5T"],grassknot:["4M","5M"],grasswhistle:["4E","5E"],growth:["4L7","5L7"],healingwish:["5E"],healpulse:["5E","5D"],helpinghand:["4L13","4T","5L13","5T"],hiddenpower:["4M","5M"],leechseed:["4L10","5L10","5D"],luckychant:["4L40","5L40"],magicalleaf:["4L19","5L19"],morningsun:["5L1"],naturalgift:["4M","5E"],naturepower:["4E","5E"],protect:["4M","5M"],razorleaf:["4E","5E"],rest:["4M","5M"],"return":["4M","5M"],rollout:["4T","5E"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],seedbomb:["4T","5E","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","4L37","5M","5L37"],substitute:["4M","5M"],sunnyday:["4M","4L22","5M","5L22"],swagger:["4M","5M"],sweetscent:["4E","5E"],swordsdance:["4M","5M"],synthesis:["4T","5T"],tackle:["4L1","5L1"],takedown:["4L31","5L31"],tickle:["4E","5E"],toxic:["4M","5M"],weatherball:["4E","5E"],worryseed:["4L28","4T","5L28","5T"]}}, - cherrim:{learnset:{attract:["4M","5M"],bulletseed:["4M"],captivate:["4M"],doubleteam:["4M","5M"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],gigadrain:["4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growth:["4L1","4L7","5L1","5L7"],helpinghand:["4L13","4T","5L13","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],leechseed:["4L10","5L10"],luckychant:["4L48","5L48"],magicalleaf:["4L19","5L19"],morningsun:["5L1"],naturalgift:["4M"],petaldance:["4L25","5L25"],protect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rollout:["4T"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],seedbomb:["4T","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","4L43","5M","5L43"],substitute:["4M","5M"],sunnyday:["4M","4L22","5M","5L22"],swagger:["4M","5M"],swordsdance:["4M","5M"],synthesis:["4T","5T"],tackle:["4L1","5L1"],takedown:["4L35","5L35"],toxic:["4M","5M"],worryseed:["4L30","4T","5L30","5T"]}}, - shellos:{learnset:{amnesia:["4E","5E"],ancientpower:["4T"],attract:["4M","5M"],blizzard:["4M","5M"],bodyslam:["4L29","5L29"],brine:["4M","5E"],captivate:["4M"],clearsmog:["5E"],counter:["4E","5E"],curse:["4E","5E"],dive:["4T","5M"],doubleteam:["4M","5M"],earthpower:["4T","5T"],endure:["4M"],facade:["4M","5M"],fissure:["4E","5E"],frustration:["4M","5M"],hail:["4M","5M"],harden:["4L4","5L4"],headbutt:["4T"],hiddenpower:["4M","4L16","5M","5L16"],icebeam:["4M","5M"],icywind:["4T","5T"],memento:["4E","5E"],mirrorcoat:["4E","5E"],mist:["5E"],mudbomb:["4L11","5L11"],muddywater:["4L37","5L37"],mudslap:["4L1","5L1","5D"],mudsport:["4L2","5L2"],naturalgift:["4M"],painsplit:["4T","5T"],protect:["4M","5M"],raindance:["4M","4L22","5M","5L22"],recover:["4L46","5L46"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],scald:["5M"],secretpower:["4M","5D"],sleeptalk:["4M","5T"],sludge:["4E","5E"],snore:["4T","5T"],spitup:["4E","5E"],stockpile:["4E","5E"],stringshot:["4T"],substitute:["4M","5M"],surf:["4M","5M"],swagger:["4M","5M"],swallow:["4E","5E"],toxic:["4M","5M"],trumpcard:["4E","5E"],waterpulse:["4M","4L7","5L7"],whirlpool:["4M"],yawn:["4E","5E","5D"]}}, - gastrodon:{learnset:{ancientpower:["4T"],attract:["4M","5M"],blizzard:["4M","5M"],block:["4T","5T"],bodyslam:["4L29","5L29"],brine:["4M"],bulldoze:["5M"],captivate:["4M"],dig:["4M","5M"],dive:["4T","5M"],doubleteam:["4M","5M"],earthpower:["4T","5T"],earthquake:["4M","5M"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],hail:["4M","5M"],harden:["4L1","4L4","5L1","5L4"],headbutt:["4T"],hiddenpower:["4M","4L16","5M","5L16"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],icywind:["4T","5T"],mudbomb:["4L11","5L11"],muddywater:["4L41","5L41"],mudslap:["4L1","4T","5L1"],mudsport:["4L1","4L2","5L1","5L2"],naturalgift:["4M"],painsplit:["4T","5T"],protect:["4M","5M"],raindance:["4M","4L22","5M","5L22"],recover:["4L54","5L54"],rest:["4M","5M"],"return":["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandstorm:["4M","5M"],scald:["5M"],secretpower:["4M"],sleeptalk:["4M","5T"],sludgebomb:["4M","5M"],sludgewave:["5M"],snore:["4T","5T"],stoneedge:["4M","5M"],strength:["4M","5M"],stringshot:["4T"],substitute:["4M","5M"],surf:["4M","5M"],swagger:["4M","5M"],toxic:["4M","5M"],waterfall:["4M","5M"],waterpulse:["4M","4L1","4L7","5L1","5L7"],whirlpool:["4M"]}}, - drifloon:{learnset:{acrobatics:["5M"],aircutter:["4T"],amnesia:["5L40"],astonish:["4L6","5L6"],attract:["4M","5M"],batonpass:["4L33","5L38"],bodyslam:["4E","5E"],calmmind:["4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],clearsmog:["5E"],constrict:["4L1","5L1"],cut:["4M","5M"],defog:["4M","5E"],destinybond:["4E","5E"],disable:["4E","5E"],doubleteam:["4M","5M"],dreameater:["4M","5M"],embargo:["4M","5M"],endure:["4M"],explosion:["4M","4L43","5M","5L46"],facade:["4M","5M"],flash:["4M","5M"],focusenergy:["4L14","5L14"],frustration:["4M","5M"],gust:["4L11","5L11"],gyroball:["4M","5M"],haze:["4E","5E"],hex:["5L22"],hiddenpower:["4M","5M"],hypnosis:["4E","5E","5D"],icywind:["4T","5T"],knockoff:["4T","5T"],magiccoat:["4T","5T"],memento:["4E","5E"],minimize:["4L1","5L1","5D"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4L30","4T","5L33"],painsplit:["4T","5T"],payback:["4M","4L17","5M","5L17"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],recycle:["4M","5T"],rest:["4M","5M"],"return":["4M","5M"],rollout:["4T"],round:["5M"],secretpower:["4M"],shadowball:["4M","4L38","5M","5L43"],shockwave:["4M"],silverwind:["4M"],skillswap:["4M","5D","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],spite:["4T","5T"],spitup:["4L27","5L30"],stockpile:["4L22","5L27"],substitute:["4M","5M"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swallow:["4L27","5L30"],swift:["4T"],tailwind:["4T","5T"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderwave:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],weatherball:["4E","5E"],willowisp:["4M","5M"],bind:["5T"]}}, - drifblim:{learnset:{acrobatics:["5M"],aircutter:["4T"],amnesia:["5L46"],astonish:["4L1","4L6","5L1","5L6"],attract:["4M","5M"],batonpass:["4L37","5L44"],calmmind:["4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],constrict:["4L1","5L1"],cut:["4M","5M"],defog:["4M"],doubleteam:["4M","5M"],dreameater:["4M","5M"],embargo:["4M","5M"],endure:["4M"],explosion:["4M","4L51","5M","5L56"],facade:["4M","5M"],flash:["4M","5M"],fly:["4M","5M"],focusenergy:["4L14","5L14"],frustration:["4M","5M"],gigaimpact:["4M","5M"],gust:["4L1","4L11","5L1","5L11"],gyroball:["4M","5M"],hex:["5L22"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icywind:["4T","5T"],knockoff:["4T","5T"],magiccoat:["4T","5T"],minimize:["4L1","5L1"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4L32","4T","5L37"],painsplit:["4T","5T"],payback:["4M","4L17","5M","5L17"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],recycle:["4M","5T"],rest:["4M","5M"],"return":["4M","5M"],rollout:["4T"],round:["5M"],secretpower:["4M"],shadowball:["4M","4L44","5M","5L51"],shockwave:["4M"],silverwind:["4M"],skillswap:["4M","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],spite:["4T","5T"],spitup:["4L27","5L32"],stockpile:["4L22","5L27"],substitute:["4M","5M"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swallow:["4L27","5L32"],swift:["4T"],tailwind:["4T","5T"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderwave:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],willowisp:["4M","5M"],bind:["5T"]}}, - buneary:{learnset:{afteryou:["5L43","5T"],agility:["4L33","5L33"],attract:["4E","4M","5M"],batonpass:["4L26","5L26"],bounce:["4L46","4T","5L56","5T"],captivate:["4M"],chargebeam:["4M","5M"],charm:["4L43","5L46"],circlethrow:["5E"],copycat:["5E"],cut:["4M","5M"],defensecurl:["4L1","5L1"],dig:["4M","5M"],dizzypunch:["4L36","5L36"],doublehit:["4E","5E"],doubleteam:["4M","5M"],drainpunch:["4M","5D","5T"],encore:["4E","5E"],endeavor:["4T","5T"],endure:["4M","4L6","5L6"],entrainment:["5L53"],facade:["4M","5M"],fakeout:["4E","5E","5D"],faketears:["4E","5E"],firepunch:["4E","5E","5T"],flail:["4E","5E"],fling:["4M","5M"],focuspunch:["4M","5E"],foresight:["4L1","5L1","5D"],frustration:["4M","4L13","5M","5L13"],grassknot:["4M","5M"],headbutt:["4T"],healbell:["4T","5T"],healingwish:["4L53","5L63"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],icebeam:["4M","5M"],icepunch:["4E","5E","5T"],irontail:["4M","5T"],jumpkick:["4L23","5L23"],lastresort:["4T","5T"],lowkick:["4E","4T","5E","5T"],magiccoat:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],pound:["4L1","5L1"],protect:["4M","5M"],quickattack:["4L16","5L16"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],rocksmash:["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],skyuppercut:["4E","5E"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],splash:["4L1","5L1"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],sweetkiss:["4E","5E"],swift:["4T"],switcheroo:["4E","5E"],thunderbolt:["4M","5M"],thunderpunch:["4E","5E","5T"],thunderwave:["4M","5M"],toxic:["4M","5M"],uproar:["4T","5T"],waterpulse:["4M"],workup:["5M"],covet:["5T"],hypervoice:["5T"]}}, - lopunny:{learnset:{afteryou:["5L43","5T"],agility:["4L33","5L33"],attract:["4M","5M"],batonpass:["4L26","5L26"],blizzard:["4M","5M"],bounce:["4L46","4T","5L56","5T"],captivate:["4M"],chargebeam:["4M","5M"],charm:["4L43","5L46"],cut:["4M","5M"],defensecurl:["4L1","5L1"],dig:["4M","5M"],dizzypunch:["4L36","5L36"],doubleteam:["4M","5M"],drainpunch:["4M","5T"],endeavor:["4T","5T"],endure:["4M","4L6","5L6"],entrainment:["5L53"],facade:["4M","5M"],firepunch:["4T","5T"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],foresight:["4L1","5L1"],frustration:["4M","5M"],furycutter:["4T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["4T"],healbell:["4T","5T"],healingwish:["4L53","5L63"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],icepunch:["4T","5T"],irontail:["4M","5T"],jumpkick:["4L23","5L23"],lastresort:["4T","5T"],lowkick:["4T","5T"],lowsweep:["5M"],magiccoat:["4L1","4T","5L1","5T"],mirrorcoat:["4L1","5L1"],mudslap:["4T"],naturalgift:["4M"],pound:["4L1","5L1"],protect:["4M","5M"],quickattack:["4L16","5L16"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","4L13","5M","5L13"],rocksmash:["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],splash:["4L1","5L1"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4T","5T"],thunderwave:["4M","5M"],toxic:["4M","5M"],uproar:["4T","5T"],waterpulse:["4M"],workup:["5M"],covet:["5T"],hypervoice:["5T"]}}, - glameow:{learnset:{aerialace:["4M","5M"],assist:["4L29","5L29"],assurance:["4E","5E","5D"],attract:["4M","4L45","5M","5L44"],bite:["4E","5E"],captivate:["4M","4L32","5L32"],charm:["4L25","5L25"],cut:["4M","5M"],dig:["4M","5M"],doubleteam:["4M","5M"],dreameater:["4M","5M"],echoedvoice:["5M"],endure:["4M"],facade:["4M","5M"],faintattack:["4L17","5L17"],fakeout:["4L1","5L1","5D"],faketears:["4E","5E"],flail:["4E","5E"],flash:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],furyswipes:["4L20","5L20"],growl:["4L8","5L8"],headbutt:["4T"],hiddenpower:["4M","5M"],honeclaws:["5M","5L48"],hypnosis:["4L13","5L13"],irontail:["4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5E","5T"],mudslap:["4T"],naturalgift:["4M"],payback:["4M","5M"],protect:["4M","5M"],psychup:["4M","5M"],quickattack:["4E","5E"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],round:["5M"],sandattack:["4E","5E"],scratch:["4L5","5L5"],secretpower:["4M","5D"],shadowball:["4M","5M"],shadowclaw:["4M","5M"],shockwave:["4M"],slash:["4L37","5L37"],sleeptalk:["4M","5T"],snatch:["4M","5E","5T"],snore:["4T","5T"],substitute:["4M","5M"],suckerpunch:["4L41","4T","5L41"],sunnyday:["4M","5M"],superfang:["4T","5T"],swagger:["4M","5M"],swift:["4T"],tailwhip:["4E","5E"],taunt:["4M","5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],uturn:["4M","5M"],wakeupslap:["5E"],waterpulse:["4M"],workup:["5M"],covet:["5T"],foulplay:["5T"],hypervoice:["5T"]}}, - purugly:{learnset:{aerialace:["4M","5M"],assist:["4L29","5L29"],attract:["4M","4L53","5M","5L52"],bodyslam:["4L45","5L45"],bulldoze:["5M"],captivate:["4M","4L32","5L32"],charm:["4L25","5L25"],cut:["4M","5M"],dig:["4M","5M"],doubleteam:["4M","5M"],dreameater:["4M","5M"],echoedvoice:["5M"],endure:["4M"],facade:["4M","5M"],faintattack:["4L17","5L17"],fakeout:["4L1","5L1"],flash:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],furyswipes:["4L20","5L20"],gigaimpact:["4M","5M"],growl:["4L1","4L8","5L1","5L8"],headbutt:["4T"],hiddenpower:["4M","5M"],honeclaws:["5M","5L60"],hyperbeam:["4M","5M"],hypnosis:["4L13","5L13"],irontail:["4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],payback:["4M","5M"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],roar:["4M","5M"],rollout:["4T"],round:["5M"],scratch:["4L1","4L5","5L1","5L5"],secretpower:["4M"],shadowball:["4M","5M"],shadowclaw:["4M","5M"],shockwave:["4M"],slash:["4L37","5L37"],sleeptalk:["4M","5T"],snatch:["4M","5T"],snore:["4T","5T"],substitute:["4M","5M"],suckerpunch:["4T"],sunnyday:["4M","5M"],superfang:["4T","5T"],swagger:["4M","4L38","5M","5L38"],swift:["4T"],taunt:["4M","5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],uturn:["4M","5M"],waterpulse:["4M"],workup:["5M"],covet:["5T"],foulplay:["5T"],hypervoice:["5T"]}}, - stunky:{learnset:{acidspray:["5L32"],astonish:["4E","5E"],attract:["4M","5M"],captivate:["4M"],crunch:["4E","5E"],cut:["4M","5M"],darkpulse:["4M","5T"],defog:["4M"],dig:["4M","5M"],doubleedge:["4E","5E"],doubleteam:["4M","5M"],endure:["4M"],explosion:["4M","4L44","5M","5L49"],facade:["4M","5M"],feint:["4L18","5L18"],fireblast:["4M","5M"],flameburst:["5E"],flamethrower:["4M","5M"],focusenergy:["4L1","5L1"],foulplay:["5E","5D","5T"],frustration:["4M","5M"],furycutter:["4T"],furyswipes:["4L11","4L10","5L10"],haze:["4E","5E"],headbutt:["4T"],hiddenpower:["4M","5M"],honeclaws:["5M"],incinerate:["5M"],irontail:["4M","5E","5T"],leer:["4E","5E"],memento:["4L37","4L38","5L43"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4L31","4L32","5L37"],payback:["4M","5M"],poisongas:["4L4","5L4"],protect:["4M","5M"],punishment:["4E","5E"],pursuit:["4E","5E"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rocksmash:["4M","5M"],round:["5M"],scaryface:["4E","5E"],scratch:["4L1","5L1"],screech:["4L7","5L7","5D"],secretpower:["4M"],shadowball:["4M","5M"],shadowclaw:["4M","5M"],slash:["4L25","4L22","5L22"],sleeptalk:["4M","5T"],sludgebomb:["4M","5M"],smog:["4E","5E"],smokescreen:["4L15","4L14","5L14"],snarl:["5M"],snatch:["4M","5T"],snore:["4T","5T"],substitute:["4M","5M"],suckerpunch:["4T","5D"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],taunt:["4M","5M"],thief:["4M","5M"],torment:["4M","5M"],toxic:["4M","4L20","4L27","5M","5L27"],venoshock:["5M"]}}, - skuntank:{learnset:{acidspray:["5L32"],attract:["4M","5M"],captivate:["4M"],cut:["4M","5M"],darkpulse:["4M","5T"],defog:["4M"],dig:["4M","5M"],doubleteam:["4M","5M"],endure:["4M"],explosion:["4M","4L52","5M","5L61"],facade:["4M","5M"],feint:["4L18","5L18"],fireblast:["4M","5M"],flamethrower:["4M","4L34","5M","5L34"],focusenergy:["4L1","5L1"],frustration:["4M","5M"],furycutter:["4T"],furyswipes:["4L11","4L10","5L10"],gigaimpact:["4M","5M"],headbutt:["4T"],hiddenpower:["4M","5M"],honeclaws:["5M"],hyperbeam:["4M","5M"],incinerate:["5M"],irontail:["4M","5T"],memento:["4L41","4L42","5L51"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4L31","4L32","5L41"],payback:["4M","5M"],poisongas:["4L1","4L4","5L1","5L4"],poisonjab:["4M","5M"],protect:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rocksmash:["4M","5M"],round:["5M"],scratch:["4L1","5L1"],screech:["4L7","5L7"],secretpower:["4M"],shadowball:["4M","5M"],shadowclaw:["4M","5M"],slash:["4L25","4L22","5L22"],sleeptalk:["4M","5T"],sludgebomb:["4M","5M"],smokescreen:["4L15","4L14","5L14"],snarl:["5M"],snatch:["4M","5T"],snore:["4T","5T"],strength:["4M","5M"],substitute:["4M","5M"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],taunt:["4M","5M"],thief:["4M","5M"],torment:["4M","5M"],toxic:["4M","4L20","4L27","5M","5L27"],venoshock:["5M"],foulplay:["5T"]}}, - bronzor:{learnset:{ancientpower:["4T"],bulldoze:["5M"],calmmind:["4M","5M"],chargebeam:["4M","5M"],confuseray:["4L14","5L14"],confusion:["4L1","5L1"],doubleteam:["4M","5M"],dreameater:["4M","5M"],earthquake:["4M","5M"],endure:["4M"],extrasensory:["4L19","5L19"],facade:["4M","5M"],faintattack:["4L41","5L41"],flash:["4M","5M"],flashcannon:["4M","5M"],frustration:["4M","5M"],futuresight:["4L37","5L37"],grassknot:["4M","5M"],gravity:["4T","5D","5T"],gyroball:["4M","4L35","5M","5L35"],healblock:["4L52","5L52"],heavyslam:["5L54"],hiddenpower:["4M","5M"],hypnosis:["4L7","5L7","5D"],imprison:["4L12","5L12"],irondefense:["4L26","5L26","5T"],lightscreen:["4M","5M"],metalsound:["5L31"],naturalgift:["4M"],payback:["4M","4L49","5M","5L49"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],psyshock:["5M"],psywave:["5L15"],raindance:["4M","5M"],recycle:["4M","5T"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rockpolish:["4M","5M"],rockslide:["4M","5M"],rocktomb:["4M","5M"],rollout:["4T"],round:["5M"],safeguard:["4M","4L30","5M","5L30"],sandstorm:["4M","5M"],secretpower:["4M"],shadowball:["4M","5M"],signalbeam:["4T","5T"],skillswap:["4M","5D","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],stealthrock:["4M","5T"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],tackle:["4L1","5L1"],telekinesis:["5M"],toxic:["4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],wonderroom:["5T"]}}, - bronzong:{learnset:{ancientpower:["4T"],block:["4L33","4T","5L33","5T"],bulldoze:["5M"],calmmind:["4M","5M"],chargebeam:["4M","5M"],confuseray:["4L14","5L14"],confusion:["4L1","5L1"],doubleteam:["4M","5M"],dreameater:["4M","5M"],earthquake:["4M","5M"],endure:["4M"],explosion:["4M","5M"],extrasensory:["4L19","5L19"],facade:["4M","5M"],faintattack:["4L50","5L50"],flash:["4M","5M"],flashcannon:["4M","5M"],frustration:["4M","5M"],futuresight:["4L43","5L43"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],gyroball:["4M","4L38","5M","5L38"],healblock:["4L67","5L67"],heavyslam:["5L72"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],hypnosis:["4L1","4L7","5L1","5L7"],imprison:["4L1","4L12","5L1","5L12"],irondefense:["4L26","5L26","5T"],ironhead:["4T","5T"],lightscreen:["4M","5M"],metalsound:["5L31"],naturalgift:["4M"],payback:["4M","4L61","5M","5L61"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],psyshock:["5M"],psywave:["5L15"],raindance:["4M","4L1","5M","5L1"],recycle:["4M","5T"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rockpolish:["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],rollout:["4T"],round:["5M"],safeguard:["4M","4L30","5M","5L30"],sandstorm:["4M","5M"],secretpower:["4M"],shadowball:["4M","5M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],stealthrock:["4M","5T"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","4L1","5M","5L1"],swagger:["4M","5M"],tackle:["4L1","5L1"],telekinesis:["5M"],toxic:["4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],zenheadbutt:["4T","5T"],wonderroom:["5T"]}}, - chatot:{learnset:{aerialace:["4M","5M"],agility:["4E","5E"],aircutter:["5E"],attract:["4M","5M"],captivate:["4M"],chatter:["4L21","5L21","4S0"],defog:["4M","5E"],doubleteam:["4M","5M"],echoedvoice:["5M","5L37"],encore:["4E","5E"],endure:["4M"],facade:["4M","5M"],featherdance:["4L41","5L53"],fly:["4M","5M"],frustration:["4M","5M"],furyattack:["4L17","5L17","4S0"],growl:["4L5","5L5"],heatwave:["4T","5T"],hiddenpower:["4M","5M"],hypervoice:["4L45","5L57","5T"],mimic:["4L29","5L33"],mirrormove:["4L9","5L9","5D","4S0"],mudslap:["4T"],nastyplot:["4E","5E","5D"],naturalgift:["4M"],nightshade:["4E","5E"],ominouswind:["4T"],peck:["4L1","5L1"],pluck:["4M","5M"],protect:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roleplay:["4T","5D","5T"],roost:["4M","4L33","5L41","5T"],round:["5M","5L29"],secretpower:["4M"],sing:["4L13","5L13"],skyattack:["4T","5T"],sleeptalk:["4M","5E","5T"],snore:["4T","5T"],steelwing:["4M","5E"],substitute:["4M","5M"],sunnyday:["4M","5M"],supersonic:["4E","5E"],swagger:["4M","5M"],swift:["4T"],synchronoise:["5L49"],tailwind:["4T","5T"],taunt:["4M","4L25","5M","5L25","4S0"],thief:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],twister:["4T"],uproar:["4L37","4T","5L45","5T"],uturn:["4M","5M"],workup:["5M"]}}, - spiritomb:{learnset:{attract:["4M","5M"],calmmind:["4M","5M"],captivate:["4M","5E"],confuseray:["4L1","5L1"],curse:["4L1","5L1"],darkpulse:["4M","4L49","5L49","5T","5S0"],destinybond:["4E","5E"],doubleteam:["4M","5M"],dreameater:["4M","4L19","5M","5L19"],embargo:["4M","5M","5S0"],endure:["4M"],facade:["4M","5M"],faintattack:["4L7","5L7"],flash:["4M","5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],grudge:["4E","5E"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],hypnosis:["4L13","5L13"],icywind:["4T","5D","5T"],imprison:["4E","5E"],memento:["4L43","5L43"],nastyplot:["4L37","5L37"],naturalgift:["4M"],nightmare:["5E"],ominouswind:["4L25","4T","5L25"],painsplit:["4E","4T","5E","5D","5T"],protect:["4M","5M"],psychic:["4M","5M","5S0"],psychup:["4M","5M"],pursuit:["4L1","5L1"],quash:["5M"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],rocktomb:["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shadowsneak:["4E","4L1","5E","5L1"],shockwave:["4M"],silverwind:["4M","5S0"],sleeptalk:["4M","5T"],smokescreen:["4E","5E"],snarl:["5M"],snatch:["4M","5T"],snore:["4T","5T"],spite:["4L1","4T","5L1","5D","5T"],substitute:["4M","5M"],suckerpunch:["4L31","4T","5L31"],sunnyday:["4M","5M"],swagger:["4M","5M"],taunt:["4M","5M"],telekinesis:["5M"],thief:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],uproar:["4T","5T"],waterpulse:["4M"],willowisp:["4M","5M"],foulplay:["5T"],wonderroom:["5T"]}}, - gible:{learnset:{aerialace:["4M","5M"],attract:["4M","5M"],bodyslam:["4E","5E"],bulldoze:["5M"],captivate:["4M"],cut:["4M","5M"],dig:["4M","4L31","5M","5L31"],doubleedge:["4E","5E"],doubleteam:["4M","5M"],dracometeor:["4T","5T"],dragonbreath:["4E","5E"],dragonclaw:["4M","4L27","5M","5L27"],dragonpulse:["4M","5T"],dragonrage:["4L7","5L7","5D"],dragonrush:["4L37","5L37"],earthpower:["4T","5T"],earthquake:["4M","5M"],endure:["4M","5D"],facade:["4M","5M"],fireblast:["4M","5M"],flamethrower:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],headbutt:["4T"],hiddenpower:["4M","5M"],honeclaws:["5M"],incinerate:["5M"],ironhead:["4E","4T","5E","5T"],irontail:["5E","5T"],metalclaw:["4E","5E"],mudshot:["4E","5E"],mudslap:["4T"],naturalgift:["4M"],outrage:["4E","4T","5E","5T","5D"],protect:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockclimb:["4M","5E"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandattack:["4L3","5L3"],sandstorm:["4M","4L13","5M","5L13"],sandtomb:["4E","4L19","5E","5L19"],scaryface:["4E","5E"],secretpower:["4M"],shadowclaw:["4M","5M"],slash:["4L25","5L25"],sleeptalk:["4M","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],tackle:["4L1","5L1"],takedown:["4L15","5L15"],thrash:["4E","5E"],toxic:["4M","5M"],twister:["4E","4T","5E"]}}, - gabite:{learnset:{aerialace:["4M","5M"],attract:["4M","5M"],bulldoze:["5M"],captivate:["4M"],cut:["4M","5M"],dig:["4M","4L40","5M","5L40"],doubleteam:["4M","5M"],dracometeor:["4T","5T"],dragonclaw:["4M","4L33","5M","5L33"],dragonpulse:["4M","5T"],dragonrage:["4L7","5L7"],dragonrush:["4L49","5L49"],dualchop:["5L24","5T"],earthpower:["4T","5T"],earthquake:["4M","5M"],endure:["4M"],facade:["4M","5M"],fireblast:["4M","5M"],flamethrower:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],headbutt:["4T"],hiddenpower:["4M","5M"],honeclaws:["5M"],incinerate:["5M"],ironhead:["4T","5T"],irontail:["4M","5T"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandattack:["4L1","4L3","5L1","5L3"],sandstorm:["4M","4L13","5M","5L13"],sandtomb:["4L19","5L19"],secretpower:["4M"],shadowclaw:["4M","5M"],slash:["4L28","5L28"],sleeptalk:["4M","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],tackle:["4L1","5L1"],takedown:["4L15","5L15"],toxic:["4M","5M"],twister:["4T"]}}, - garchomp:{learnset:{aerialace:["4M","5M"],aquatail:["4T","5T"],attract:["4M","5M"],brickbreak:["4M","5M"],bulldoze:["5M"],captivate:["4M"],crunch:["4L48","5L48","5S1"],cut:["4M","5M"],dig:["4M","4L40","5M","5L40","5S1"],doubleteam:["4M","5M"],dracometeor:["4T","5T"],dragonclaw:["4M","4L33","5M","5L33","5S1"],dragonpulse:["4M","5T"],dragonrage:["4L1","4L7","5L1","5L7"],dragonrush:["4L55","5L55"],dragontail:["5M"],dualchop:["5L24","5T"],earthpower:["4T","5T"],earthquake:["4M","5M","5S0"],endure:["4M"],facade:["4M","5M"],falseswipe:["4M","5M"],fireblast:["4M","5M"],firefang:["4L1","5L1"],flamethrower:["4M","5M"],fling:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],gigaimpact:["4M","5M"],headbutt:["4T"],hiddenpower:["4M","5M"],honeclaws:["5M"],hyperbeam:["4M","5M"],incinerate:["5M"],ironhead:["4T","5T"],irontail:["4M","5T"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T","5S0","5S1"],poisonjab:["4M","5M"],protect:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandattack:["4L1","4L3","5L1","5L3"],sandstorm:["4M","4L1","4L13","5M","5L1","5L13"],sandtomb:["4L19","5L19"],secretpower:["4M"],shadowclaw:["4M","5M"],slash:["4L28","5L28"],sleeptalk:["4M","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","5S0"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],surf:["4M","5M"],swagger:["4M","5M"],swift:["4T"],swordsdance:["4M","5M","5S0"],tackle:["4L1","5L1"],takedown:["4L15","5L15"],toxic:["4M","5M"],twister:["4T"],whirlpool:["4M"]}}, - riolu:{learnset:{agility:["4E","5E"],attract:["4M","5M"],aurasphere:["4S0"],bite:["4E","5E"],blazekick:["4E","5E"],brickbreak:["4M","5M"],bulkup:["4M","5M"],bulldoze:["5M"],bulletpunch:["4E","5E","4S0","5D"],captivate:["4M"],circlethrow:["5E"],copycat:["4L29","5L29"],counter:["4L6","5L6"],crosschop:["4E","5E"],crunch:["4E","5E"],detect:["4E","5E"],dig:["4M","5M"],doubleteam:["4M","5M"],drainpunch:["4M","4S0","5T"],earthquake:["4M","5M"],endure:["4M","4L1","5L1","5D"],facade:["4M","5M"],feint:["4L15","5L15"],finalgambit:["5L55"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M","5D"],followme:["4E","5E"],forcepalm:["4L11","5L11"],foresight:["4L1","5L1"],frustration:["4M","5M"],furycutter:["4T"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],hijumpkick:["4E","5E"],icepunch:["4T","5T"],irondefense:["4E","4T","5E","5T"],irontail:["4M","5T"],lowkick:["4E","4T","5E","5T"],lowsweep:["5M"],magnetrise:["4T","5T"],mindreader:["4E","5E"],mudslap:["4T"],nastyplot:["5L47"],naturalgift:["4M"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["4M","5M"],quickattack:["4L1","5L1"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],reversal:["4L19","5L19"],roar:["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],roleplay:["4T","5T"],round:["5M"],screech:["4L24","5L24"],secretpower:["4M"],shadowclaw:["4M","5M","4S0"],skyuppercut:["4E","5E"],sleeptalk:["4M","5T"],snore:["4T","5T"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],swordsdance:["4M","5M"],thunderpunch:["4T","5T"],toxic:["4M","5M"],vacuumwave:["4E","4T","5E"],workup:["5M"],zenheadbutt:["4T","5T"],dualchop:["5T"]}}, - lucario:{learnset:{attract:["4M","5M"],aurasphere:["4L37","5L51","4S0","6L0"],blazekick:["4S1"],bonerush:["4L19","5L19","4S1"],brickbreak:["4M","5M"],bulkup:["4M","5M"],bulldoze:["5M"],bulletpunch:["5S2","5S3"],calmmind:["4M","5M","5L47"],captivate:["4M"],closecombat:["4L42","5L55","5S3","6L0"],counter:["4L6","5L6","5S2"],darkpulse:["4M","4L1","5L1","4S0","5T"],detect:["4L1","5L1","5S2"],dig:["4M","5M"],doubleteam:["4M","5M"],dragonpulse:["4M","4L47","5L60","4S0","5T","6L0"],drainpunch:["4M","5T"],earthquake:["4M","5M"],endure:["4M"],extremespeed:["4L51","5L65"],facade:["4M","5M"],feint:["4L15","5L15"],flashcannon:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],forcepalm:["4L11","5L11","4S1"],foresight:["4L1","5L1"],frustration:["4M","5M"],furycutter:["4T"],gigaimpact:["4M","5M"],headbutt:["4T"],healpulse:["5L42"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],honeclaws:["5M"],hyperbeam:["4M","5M"],icepunch:["4T","5T"],irondefense:["4T","5T"],irontail:["4M","5T"],lowkick:["4T","5T"],lowsweep:["5M"],magnetrise:["4T","5T"],mefirst:["4L29","5L29"],metalclaw:["4L1","5L1","5S2"],metalsound:["4L24","5L24"],mudslap:["4T"],naturalgift:["4M"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["4M","5M"],psychic:["4M","5M"],quickattack:["4L1","5L1"],quickguard:["5L33"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],roar:["4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],roleplay:["4T","5T"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shadowclaw:["4M","5M","5S3"],sleeptalk:["4M","5T"],snore:["4T","5T"],stoneedge:["4M","5M","5S3"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M","4S1"],swagger:["4M","5M"],swift:["4T"],swordsdance:["4M","4L33","5M","5L37"],thunderpunch:["4T","5T"],toxic:["4M","5M"],vacuumwave:["4T"],waterpulse:["4M","4S0"],workup:["5M"],zenheadbutt:["4T","5T"],dualchop:["5T"],poweruppunch:["6M"]}}, - hippopotas:{learnset:{attract:["4M","5M"],bite:["4L7","5L7","5D"],bodyslam:["4E","5E"],bulldoze:["5M"],captivate:["4M"],crunch:["4L31","5L31"],curse:["4E","5E"],dig:["4M","4L19","5M","5L19"],doubleedge:["4L44","5L44"],doubleteam:["4M","5M"],earthpower:["4T","5T"],earthquake:["4M","4L37","5M","5L37"],endure:["4M"],facade:["4M","5M"],fissure:["4L50","5L50"],frustration:["4M","5M"],headbutt:["4T"],hiddenpower:["4M","5M"],irontail:["4M","5T"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],revenge:["4E","5E"],roar:["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandattack:["4L1","5L1"],sandstorm:["4M","5M"],sandtomb:["4E","4L25","5E","5L25"],secretpower:["4M"],slackoff:["4E","5E"],sleeptalk:["4M","5E","5T"],snore:["4T","5T"],spitup:["4E","5E"],stealthrock:["4M","5T"],stockpile:["4E","5E","5D"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],superpower:["4T","5D","5T"],swagger:["4M","5M"],swallow:["4E","5E"],tackle:["4L1","5L1"],takedown:["4L19","5L19"],toxic:["4M","5M"],waterpulse:["4M"],whirlwind:["5E"],yawn:["4L13","5L13"]}}, - hippowdon:{learnset:{attract:["4M","5M"],bite:["4L1","4L7","5L1","5L7"],bulldoze:["5M"],captivate:["4M"],crunch:["4L31","5L31"],dig:["4M","4L19","5M","5L19"],doubleedge:["4L50","5L50"],doubleteam:["4M","5M"],earthpower:["4T","5T"],earthquake:["4M","4L40","5M","5L40"],endure:["4M"],facade:["4M","5M"],firefang:["4L1","5L1"],fissure:["4L60","5L60"],frustration:["4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icefang:["4L1","5L1"],ironhead:["4T","5T"],irontail:["4M","5T"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandattack:["4L1","5L1"],sandstorm:["4M","5M"],sandtomb:["4L25","5L25"],secretpower:["4M"],sleeptalk:["4M","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],superpower:["4T","5T"],swagger:["4M","5M"],tackle:["4L1","5L1"],takedown:["4L19","5L19"],thunderfang:["4L1","5L1"],toxic:["4M","5M"],waterpulse:["4M"],yawn:["4L1","4L13","5L1","5L13"]}}, - skorupi:{learnset:{acupressure:["4L17","5L17"],aerialace:["4M","5M"],agility:["4E","5E","5D"],aquatail:["4T","5D","5T"],attract:["4M","5M"],bite:["4L1","5L1","5D"],brickbreak:["4M","5M"],bugbite:["4L34","4T","5L34","5T"],captivate:["4M"],confuseray:["4E","5E"],crosspoison:["4L50","5L61"],crunch:["4L45","5L56"],cut:["4M","5M"],darkpulse:["4M","5T"],dig:["4M","5M"],doubleteam:["4M","5M"],endure:["4M"],facade:["4M","5M"],faintattack:["4E","5E"],falseswipe:["4M","5M"],flash:["4M","5M"],fling:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],headbutt:["4T"],hiddenpower:["4M","5M"],honeclaws:["5M","5L45"],irontail:["4M","5E","5T"],knockoff:["4L23","4L6","5L6","5T"],leer:["4L6","4L1","5L1"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4E","5E","5L38"],payback:["4M","5M"],pinmissile:["4L12","5L12"],poisonfang:["4L39","5L39"],poisonjab:["4M","5M"],poisonsting:["4L1","5L1"],poisontail:["5E"],protect:["4M","5M"],pursuit:["4E","5E","5L16"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],sandattack:["4E","5E"],scaryface:["4L28","4L23","5L23"],screech:["4E","5E"],secretpower:["4M"],shadowball:["4M","5M"],slash:["4E","5E"],sleeptalk:["4M","5T"],sludgebomb:["4M","5M"],snore:["4T","5T"],strength:["4M","5M"],strugglebug:["5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swordsdance:["4M","5M"],taunt:["4M","5M"],thief:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],toxicspikes:["4L34","4L28","5L28"],twineedle:["5E"],venoshock:["5M","5L50"],whirlwind:["4E","5E"],xscissor:["4M","5M"]}}, - drapion:{learnset:{acupressure:["4L17","5L17"],aerialace:["4M","5M"],aquatail:["4T","5T"],attract:["4M","5M"],bite:["4L1","5L1"],brickbreak:["4M","5M"],bugbite:["4L34","4T","5L34","5T"],bulldoze:["5M"],captivate:["4M"],crosspoison:["4L58","5L73"],crunch:["4L49","5L65"],cut:["4M","5M"],darkpulse:["4M","5T"],dig:["4M","5M"],doubleteam:["4M","5M"],earthquake:["4M","5M"],endure:["4M"],facade:["4M","5M"],falseswipe:["4M","5M"],firefang:["4L1","5L1"],flash:["4M","5M"],fling:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],gigaimpact:["4M","5M"],headbutt:["4T"],hiddenpower:["4M","5M"],honeclaws:["5M","5L48"],hyperbeam:["4M","5M"],icefang:["4L1","5L1"],irontail:["4M","5T"],knockoff:["4L23","4T","4L1","4L6","5L1","5L6","5T"],leer:["4L1","4L6","5L1"],mudslap:["4T"],naturalgift:["4M"],nightslash:["5L38"],payback:["4M","5M"],pinmissile:["4L1","4L12","5L12"],poisonfang:["4L39","5L39"],poisonjab:["4M","5M"],poisonsting:["4L1","5L1"],protect:["4M","5M"],pursuit:["5L16"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],roar:["4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],scaryface:["4L28","4L23","5L23"],secretpower:["4M"],shadowball:["4M","5M"],sleeptalk:["4M","5T"],sludgebomb:["4M","5M"],snarl:["5M"],snore:["4T","5T"],strength:["4M","5M"],strugglebug:["5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swordsdance:["4M","5M"],taunt:["4M","5M"],thief:["4M","5M"],thunderfang:["4L1","5L1"],torment:["4M","5M"],toxic:["4M","5M"],toxicspikes:["4L34","4L28","5L28"],venoshock:["5M","5L56"],xscissor:["4M","5M"]}}, - croagunk:{learnset:{acupressure:["5E"],astonish:["4L1","5L1","5S0"],attract:["4M","5M"],bounce:["4T","5T"],brickbreak:["4M","5M"],bulkup:["4M","5M"],bulldoze:["5M"],bulletpunch:["4E","5E"],captivate:["4M"],counter:["4E","5E"],crosschop:["4E","5E"],darkpulse:["4M","5T"],dig:["4M","5M"],doubleteam:["4M","5M"],drainpunch:["5E","5D","5T"],dynamicpunch:["4E","5E"],earthquake:["4M","5M"],embargo:["4M","5M"],endure:["4M"],facade:["4M","5M"],faintattack:["4L17","5L17"],fakeout:["4E","5E"],feint:["4E","5E"],flatter:["4L45","5L50"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],furycutter:["4T"],gunkshot:["4T","5D","5T"],headbutt:["4E","4T","5E"],hiddenpower:["4M","5M"],icepunch:["4T","5T"],icywind:["4T","5T"],knockoff:["4T","5T"],lowkick:["4T","5T"],lowsweep:["5M"],meditate:["4E","5E"],mefirst:["4E","5E"],mudbomb:["4L29","5L29"],mudslap:["4L3","4T","5L3","5S0","5S1"],nastyplot:["4L36","5L38"],naturalgift:["4M"],payback:["4M","5M"],poisonjab:["4M","4L38","5M","5L43","5S1"],poisonsting:["4L8","5L8","5D","5S0","5S1"],protect:["4M","5M"],pursuit:["4L15","5L15"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],revenge:["4L22","5L22"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],roleplay:["4T","5T"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],sleeptalk:["4M","5T"],sludgebomb:["4M","4L43","5M","5L45"],sludgewave:["5M"],smellingsalt:["4E","5E"],snatch:["4M","5T"],snore:["4T","5T"],spite:["4T","5T"],strength:["4M","5M"],substitute:["4M","5M"],suckerpunch:["4L31","4T","5L31"],sunnyday:["4M","5M"],superfang:["4T","5T"],swagger:["4M","4L24","5M","5L24"],taunt:["4M","4L10","5M","5L10","5S0","5S1"],thief:["4M","5M"],thunderpunch:["4T","5T"],torment:["4M","5M"],toxic:["4M","5M"],vacuumwave:["4E","4T","5E"],venoshock:["5M","5L36"],wakeupslap:["4E","5E"],workup:["5M"],xscissor:["4M","5M"],dualchop:["5T"],foulplay:["5T"],helpinghand:["5T"]}}, - toxicroak:{learnset:{astonish:["4L1","5L1"],attract:["4M","5M"],bounce:["4T","5T"],brickbreak:["4M","5M"],bulkup:["4M","5M"],bulldoze:["5M"],captivate:["4M"],cut:["4M","5M"],darkpulse:["4M","5T"],dig:["4M","5M"],doubleteam:["4M","5M"],earthquake:["4M","5M"],embargo:["4M","5M"],endure:["4M"],facade:["4M","5M"],faintattack:["4L17","5L17"],flatter:["4L54","5L62"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],furycutter:["4T"],gigaimpact:["4M","5M"],gunkshot:["4T","5T"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icepunch:["4T","5T"],icywind:["4T","5T"],knockoff:["4T","5T"],lowkick:["4T","5T"],lowsweep:["5M"],mudbomb:["4L29","5L29"],mudslap:["4L1","4L3","4T","5L1","5L3"],nastyplot:["4L36","5L41"],naturalgift:["4M"],payback:["4M","5M"],poisonjab:["4M","4L41","5M","5L49"],poisonsting:["4L1","4L8","5L1","5L8"],protect:["4M","5M"],pursuit:["4L15","5L15"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],revenge:["4L22","5L22"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],roleplay:["4T","5T"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],sleeptalk:["4M","5T"],sludgebomb:["4M","4L49","5M","5L54"],sludgewave:["5M"],snatch:["4M","5T"],snore:["4T","5T"],spite:["4T","5T"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],suckerpunch:["4L31","4T","5L31"],sunnyday:["4M","5M"],superfang:["4T","5T"],swagger:["4M","4L24","5M","5L24"],swordsdance:["4M","5M"],taunt:["4M","4L10","5M","5L10"],thief:["4M","5M"],thunderpunch:["4T","5T"],torment:["4M","5M"],toxic:["4M","5M"],vacuumwave:["4T"],venoshock:["5M","5L36"],workup:["5M"],xscissor:["4M","5M"],dualchop:["5T"],foulplay:["5T"],drainpunch:["5T"]}}, - carnivine:{learnset:{attract:["4M","5M"],bind:["4L1","5L1","5T"],bite:["4L7","5L7","5D"],bugbite:["4T","5T"],bulletseed:["4M"],captivate:["4M"],crunch:["4L37","5L41"],cut:["4M","5M"],doubleteam:["4M","5M"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],faintattack:["4L27","5L27"],flash:["4M","5M"],fling:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],gastroacid:["4T","5T","5D"],gigadrain:["4M","5E","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],grasswhistle:["5E"],growth:["4L1","5L1"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],ingrain:["4L21","5L21"],knockoff:["4T","5T"],leaftornado:["5L31"],leechseed:["4E","5E"],magicalleaf:["4E","5E"],mudslap:["4T"],naturalgift:["4M"],payback:["4M","5M"],powerwhip:["4L47","5L51"],protect:["4M","5M"],ragepowder:["5E","5D"],razorleaf:["4E","5E"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],seedbomb:["4T","5T"],slam:["4E","5E"],sleeppowder:["4E","5E"],sleeptalk:["4M","5T"],sludgebomb:["4M","5M"],snore:["4T","5T"],solarbeam:["4M","5M"],spitup:["4L31","5L37"],stockpile:["4L31","5L37"],stunspore:["4E","5E"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swallow:["4L31","5L37"],sweetscent:["4L17","5L17"],swordsdance:["4M","5M"],synthesis:["4E","4T","5E","5T"],thief:["4M","5M"],toxic:["4M","5M"],vinewhip:["4L11","5L11"],worryseed:["4E","4T","5E","5T"],wringout:["4L41","5L47"]}}, - finneon:{learnset:{agility:["4E","5E"],aircutter:["4T"],aquaring:["4L33","5L33"],aquatail:["4E","4T","5E","5T"],attract:["4M","4L10","5M","5L10","5D"],aurorabeam:["5E"],blizzard:["4M","5M"],bounce:["4L45","4T","5L45","5T"],brine:["4M","5E"],captivate:["4M","4L26","5L26"],charm:["4E","5E"],defog:["4M"],dive:["4T","5M"],doubleteam:["4M","5M"],endure:["4M"],facade:["4M","5M"],flail:["4E","5E"],flash:["4M","5M"],frustration:["4M","5M"],gust:["4L17","5L17"],hail:["4M","5M"],hiddenpower:["4M","5M"],icebeam:["4M","5M"],icywind:["4T","5T"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","5M"],pound:["4L1","5L1"],protect:["4M","5M"],psybeam:["4E","5E"],psychup:["4M","5M"],raindance:["4M","4L13","5M","5L13"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],safeguard:["4M","4L29","5M","5L29"],scald:["5M"],secretpower:["4M"],signalbeam:["5E","5T"],silverwind:["4M","4L49","5L49"],sleeptalk:["4M","5T"],snore:["4T","5T"],soak:["5L54"],splash:["4E","5E"],substitute:["4M","5M"],surf:["4M","5M"],swagger:["4M","5M"],sweetkiss:["4E","5E","5D"],swift:["4T"],tailwind:["4T","5T"],tickle:["4E","5E"],toxic:["4M","5M"],twister:["4T"],uturn:["4M","4L42","5M","5L42"],waterfall:["4M","5M"],watergun:["4L6","5L6"],waterpulse:["4M","4L22","5L22","5D"],whirlpool:["4L38","4M","5L38"]}}, - lumineon:{learnset:{aircutter:["4T"],aquaring:["4L35","5L35"],aquatail:["4T","5T"],attract:["4M","4L1","4L10","5M","5L1","5L10"],blizzard:["4M","5M"],bounce:["4L53","4T","5L53","5T"],brine:["4M"],captivate:["4M","4L26","5L26"],defog:["4M"],dive:["4T","5M"],doubleteam:["4M","5M"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],gust:["4L17","5L17"],hail:["4M","5M"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],icywind:["4T","5T"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","5M"],pound:["4L1","5L1"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","4L13","5M","5L13"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],safeguard:["4M","4L29","5M","5L29"],scald:["5M"],secretpower:["4M"],silverwind:["4M","4L59","5L59"],sleeptalk:["4M","5T"],snore:["4T","5T"],soak:["5L66"],substitute:["4M","5M"],surf:["4M","5M"],swagger:["4M","5M"],swift:["4T"],tailwind:["4T","5T"],toxic:["4M","5M"],twister:["4T"],uturn:["4M","4L48","5M","5L48"],waterfall:["4M","5M"],watergun:["4L1","4L6","5L1","5L6"],waterpulse:["4M","4L22","5L22"],whirlpool:["4L42","4M","5L42"],signalbeam:["5T"]}}, - snover:{learnset:{attract:["4M","5M","6M"],avalanche:["4M","5E","5D"],blizzard:["4M","4L41","5M","5L41"],bulletseed:["4M","5E"],captivate:["4M"],doubleedge:["4E","5E"],doubleteam:["4M","5M"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],flash:["4M","5M","6M"],frostbreath:["5M"],frustration:["4M","5M","6M"],gigadrain:["4M","5T","5D"],grassknot:["4M","5M","6M"],grasswhistle:["4L13","5L13"],growth:["4E","5E"],hail:["4M","5M"],headbutt:["4T"],hiddenpower:["4M","5M"],icebeam:["4M","5M","6M"],icepunch:["4T","5T"],iceshard:["4L26","5L26"],icywind:["4L9","4T","5L9","5T"],ingrain:["4L31","5L31"],irontail:["4M","5T"],leechseed:["4E","5E"],leer:["4L1","5L1"],lightscreen:["4M","5M","6M"],magicalleaf:["4E","5E"],mist:["4E","4L21","5E","5L21"],mudslap:["4T"],naturalgift:["4M","5E"],powdersnow:["4L1","5L1"],protect:["4M","5M","6M"],raindance:["4M","5M"],razorleaf:["4L5","5L5","5D"],rest:["4M","5M"],"return":["4M","5M","6M"],roleplay:["4T","5T"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],seedbomb:["4E","4T","5E","5T"],shadowball:["4M","5M"],sheercold:["4L46","5L46"],skullbash:["4E","5E"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],stomp:["4E","5E"],substitute:["4M","5M"],swagger:["4M","4L17","5M","5L17"],swordsdance:["4M","5M","6M"],synthesis:["4T","5T"],toxic:["4M","5M","6M"],waterpulse:["4M"],woodhammer:["4L36","5L36"],worryseed:["4T","5T"]}}, - abomasnow:{learnset:{attract:["4M","5M"],avalanche:["4M"],blizzard:["4M","4L47","5M","5L47"],block:["4T","5T"],brickbreak:["4M","5M"],bulldoze:["5M","6M"],bulletseed:["4M"],captivate:["4M"],doubleteam:["4M","5M"],earthquake:["4M","5M"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],flash:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frostbreath:["5M"],frustration:["4M","5M"],gigadrain:["4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],grasswhistle:["4L13","5L13"],hail:["4M","5M"],headbutt:["4T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],icepunch:["4L1","4T","5L1","5T","6T"],iceshard:["4L26","5L26"],icywind:["4L1","4L9","4T","5L1","5L9","5T"],ingrain:["4L31","5L31"],irontail:["4M","5T"],leer:["4L1","5L1"],lightscreen:["4M","5M"],mist:["4L21","5L21"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T"],powdersnow:["4L1","5L1"],protect:["4M","5M"],raindance:["4M","5M"],razorleaf:["4L1","4L5","5L1","5L5"],rest:["4M","5M"],"return":["4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],roleplay:["4T","5T"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],seedbomb:["4T","5T"],shadowball:["4M","5M"],sheercold:["4L58","5L58"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],strength:["4M","5M","6M"],substitute:["4M","5M"],swagger:["4M","4L17","5M","5L17"],swordsdance:["4M","5M"],synthesis:["4T","5T"],toxic:["4M","5M"],waterpulse:["4M"],woodhammer:["4L36","5L36"],worryseed:["4T","5T"]}}, - rotom:{learnset:{astonish:["4L1","5L1","5S0"],charge:["4L43","5L57"],chargebeam:["4M","5M"],confuseray:["4L1","5L1"],darkpulse:["4M","5T"],discharge:["4L50","5L64"],doubleteam:["4M","4L15","5M","5L15"],dreameater:["4M","5M"],electroball:["5L43"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],hex:["5L50"],hiddenpower:["4M","5M"],lightscreen:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4L29","4T","5L29"],painsplit:["4T","5T"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M","4L22","5L22","5D"],signalbeam:["4T","5D","5T"],sleeptalk:["4M","5T"],snatch:["4M","5T"],snore:["4T","5T"],spite:["4T","5T"],substitute:["4M","4L36","5M","5L36"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thundershock:["4L1","4T","5T","5L1","5S0"],thunderwave:["4M","4L1","5M","5L1","5D"],toxic:["4M","5M"],trick:["4L1","4T","5L1","5T","5S0"],uproar:["4L8","5L8","5T","5S0"],voltswitch:["5M"],willowisp:["4M","5M"],electroweb:["5T"]}}, - rotomheat:{learnset:{astonish:["4L1","5L1","5S0"],charge:["4L43","5L57"],chargebeam:["4M","5M"],confuseray:["4L1","5L1"],darkpulse:["4M"],discharge:["4L50","5L64"],doubleteam:["4M","4L15","5M","5L15"],dreameater:["4M","5M"],electroball:["5L43"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],hex:["5L50"],hiddenpower:["4M","5M"],lightscreen:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T","4L29","5L29"],overheat:["4T","5T"],painsplit:["4T"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M","4L22","5L22"],signalbeam:["4T"],sleeptalk:["4M"],snatch:["4M"],snore:["4T"],spite:["4T"],substitute:["4M","4L36","5M","5L36"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thundershock:["4L1","5L1","5S0"],thunderwave:["4M","4L1","5M","5L1"],toxic:["4M","5M"],trick:["4T","4L1","5L1","5S0"],uproar:["4L8","5L8","5S0"],voltswitch:["5M"],willowisp:["4M","5M"]}}, - rotomwash:{learnset:{astonish:["4L1","5L1","5S0"],charge:["4L43","5L57"],chargebeam:["4M","5M"],confuseray:["4L1","5L1"],darkpulse:["4M"],discharge:["4L50","5L64"],doubleteam:["4M","4L15","5M","5L15"],dreameater:["4M","5M"],electroball:["5L43"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],hex:["5L50"],hiddenpower:["4M","5M"],hydropump:["4T","5T"],lightscreen:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T","4L29","5L29"],painsplit:["4T"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M","4L22","5L22"],signalbeam:["4T"],sleeptalk:["4M"],snatch:["4M"],snore:["4T"],spite:["4T"],substitute:["4M","4L36","5M","5L36"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thundershock:["4L1","5L1","5S0"],thunderwave:["4M","4L1","5M","5L1"],toxic:["4M","5M"],trick:["4T","4L1","5L1","5S0"],uproar:["4L8","5L8","5S0"],voltswitch:["5M"],willowisp:["4M","5M"]}}, - rotomfrost:{learnset:{astonish:["4L1","5L1","5S0"],blizzard:["4T","5T"],charge:["4L43","5L57"],chargebeam:["4M","5M"],confuseray:["4L1","5L1"],darkpulse:["4M"],discharge:["4L50","5L64"],doubleteam:["4M","4L15","5M","5L15"],dreameater:["4M","5M"],electroball:["5L43"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],hex:["5L50"],hiddenpower:["4M","5M"],lightscreen:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T","4L29","5L29"],painsplit:["4T"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M","4L22","5L22"],signalbeam:["4T"],sleeptalk:["4M"],snatch:["4M"],snore:["4T"],spite:["4T"],substitute:["4M","4L36","5M","5L36"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thundershock:["4L1","5L1","5S0"],thunderwave:["4M","4L1","5M","5L1"],toxic:["4M","5M"],trick:["4T","4L1","5L1","5S0"],uproar:["4L8","5L8","5S0"],voltswitch:["5M"],willowisp:["4M","5M"]}}, - rotomfan:{learnset:{airslash:["4T","5T","5S0"],astonish:["4L1","5L1"],charge:["4L43","5L57"],chargebeam:["4M","5M"],confuseray:["4L1","5L1"],darkpulse:["4M"],discharge:["4L50","5L64"],doubleteam:["4M","4L15","5M","5L15"],dreameater:["4M","5M"],electroball:["5L43"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],hex:["5L50"],hiddenpower:["4M","5M"],lightscreen:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T","4L29","5L29"],painsplit:["4T"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M","4L22","5L22"],signalbeam:["4T"],sleeptalk:["4M"],snatch:["4M"],snore:["4T"],spite:["4T"],substitute:["4M","4L36","5M","5L36"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thundershock:["4L1","5L1","5S0"],thunderwave:["4M","4L1","5M","5L1"],toxic:["4M","5M"],trick:["4T","4L1","5L1","5S0"],uproar:["4L8","5L8","5S0"],voltswitch:["5M"],willowisp:["4M","5M"]}}, - rotommow:{learnset:{astonish:["4L1","5L1","5S0"],charge:["4L43","5L57"],chargebeam:["4M","5M"],confuseray:["4L1","5L1"],darkpulse:["4M"],discharge:["4L50","5L64"],doubleteam:["4M","4L15","5M","5L15"],dreameater:["4M","5M"],electroball:["5L43"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],hex:["5L50"],hiddenpower:["4M","5M"],leafstorm:["4T","5T"],lightscreen:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T","4L29","5L29"],painsplit:["4T"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M","4L22","5L22"],signalbeam:["4T"],sleeptalk:["4M"],snatch:["4M"],snore:["4T"],spite:["4T"],substitute:["4M","4L36","5M","5L36"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thundershock:["4L1","5L1","5S0"],thunderwave:["4M","4L1","5M","5L1"],toxic:["4M","5M"],trick:["4T","4L1","5L1","5S0"],uproar:["4L8","5L8","5S0"],voltswitch:["5M"],willowisp:["4M","5M"]}}, - uxie:{learnset:{acrobatics:["5M"],amnesia:["4L46","5L46"],calmmind:["4M","5M"],chargebeam:["4M","5M"],confusion:["4L21","4L1","5L1"],doubleteam:["4M","5M"],dreameater:["4M","5M"],endure:["4M","4L16","5L16"],energyball:["4M","5M"],extrasensory:["4L51","5L51"],facade:["4M","5M"],firepunch:["4T","5T"],flail:["4L61","5L61"],flash:["4M","5M"],fling:["4M","5M"],frustration:["4M","5M"],futuresight:["4L36","5L36"],gigadrain:["4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icepunch:["4T","5T"],imprison:["4L6","5L6"],irontail:["4M","5T"],knockoff:["4T","5T"],lightscreen:["4M","5M"],magiccoat:["4T","5T"],memento:["4L76","5L76"],mudslap:["4T"],naturalgift:["4M","4L66","5L66"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],psyshock:["5M"],raindance:["4M","5M"],recycle:["4M","5T"],reflect:["4M","5M"],rest:["4M","4L1","5M","5L1"],"return":["4M","5M"],roleplay:["4T","5T"],round:["5M"],safeguard:["4M","5M"],sandstorm:["4M","5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],stealthrock:["4M","5T"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4L21","5L21"],telekinesis:["5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4T","5T"],thunderwave:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],uturn:["4M","5M"],waterpulse:["4M"],yawn:["4L31","5L31"],zenheadbutt:["4T","5T"],foulplay:["5T"],magicroom:["5T"],wonderroom:["5T"]}}, - mesprit:{learnset:{acrobatics:["5M"],blizzard:["4M","5M"],calmmind:["4M","5M"],chargebeam:["4M","5M"],charm:["4L46","5L46"],confusion:["4L21","4L1","5L1"],copycat:["4L61","5L61"],doubleteam:["4M","5M"],dreameater:["4M","5M"],endure:["4M"],energyball:["4M","5M"],extrasensory:["4L51","5L51"],facade:["4M","5M"],firepunch:["4T","5T"],flash:["4M","5M"],fling:["4M","5M"],frustration:["4M","5M"],futuresight:["4L36","5L36"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["4T"],healingwish:["4L76","5L76"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],icepunch:["4T","5T"],imprison:["4L6","5L6"],irontail:["4M","5T"],knockoff:["4T","5T"],lightscreen:["4M","5M"],luckychant:["4L31","5L31"],magiccoat:["4T","5T"],mudslap:["4T"],naturalgift:["4M","4L66","5L66"],protect:["4M","4L16","5M","5L16"],psychic:["4M","5M"],psychup:["4M","5M"],psyshock:["5M"],raindance:["4M","5M"],recycle:["4M","5T"],reflect:["4M","5M"],rest:["4M","4L1","5M","5L1"],"return":["4M","5M"],roleplay:["4T","5T"],round:["5M"],safeguard:["4M","5M"],sandstorm:["4M","5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T","4L21","5L21"],telekinesis:["5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4T","5T"],thunderwave:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],uturn:["4M","5M"],waterpulse:["4M"],zenheadbutt:["4T","5T"],magicroom:["5T"],wonderroom:["5T"]}}, - azelf:{learnset:{acrobatics:["5M"],calmmind:["4M","5M"],chargebeam:["4M","5M"],confusion:["4L21","4L1","5L1"],detect:["4L16","5L16"],doubleteam:["4M","5M"],dreameater:["4M","5M"],endure:["4M"],energyball:["4M","5M"],explosion:["4M","4L76","5M","5L76"],extrasensory:["4L51","5L51"],facade:["4M","5M"],fireblast:["4M","5M"],firepunch:["4T","5T"],flamethrower:["4M","5M"],flash:["4M","5M"],fling:["4M","5M"],frustration:["4M","5M"],futuresight:["4L36","5L36"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icepunch:["4T","5T"],imprison:["4L6","5L6"],incinerate:["5M"],irontail:["4M","5T"],knockoff:["4T","5T"],lastresort:["4L61","4T","5L61","5T"],lightscreen:["4M","5M"],magiccoat:["4T","5T"],mudslap:["4T"],nastyplot:["4L46","5L46"],naturalgift:["4M","4L66","5L66"],payback:["4M","5M"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],psyshock:["5M"],raindance:["4M","5M"],recycle:["4M","5T"],reflect:["4M","5M"],rest:["4M","4L1","5M","5L1"],"return":["4M","5M"],roleplay:["4T","5T"],round:["5M"],safeguard:["4M","5M"],sandstorm:["4M","5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T","4L21","5L21"],taunt:["4M","5M"],telekinesis:["5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4T","5T"],thunderwave:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],uproar:["4L31","4T","5L31","5T"],uturn:["4M","5M"],waterpulse:["4M"],zenheadbutt:["4T","5T"],magicroom:["5T"],wonderroom:["5T"]}}, - dialga:{learnset:{aerialace:["4M","5M"],ancientpower:["4L20","4T","4L10","5L10"],aurasphere:["4L90","4L37","5L37","5S0"],blizzard:["4M","5M"],brickbreak:["4M","5M"],bulkup:["4M","5M"],bulldoze:["5M"],cut:["4M","5M"],doubleteam:["4M","5M"],dracometeor:["4T","5T","5S0"],dragonbreath:["4L1","5L1"],dragonclaw:["4M","4L30","4L28","5M","5L28"],dragonpulse:["4M","5T","5S0"],dragontail:["5M"],earthpower:["4L60","4T","4L33","5L33","5T"],earthquake:["4M","5M"],echoedvoice:["5M"],endure:["4M"],facade:["4M","5M"],fireblast:["4M","5M"],flamethrower:["4M","5M"],flash:["4M","5M"],flashcannon:["4M","4L80","4L42","5M","5L50"],frustration:["4M","5M"],furycutter:["4T"],gigaimpact:["4M","5M"],gravity:["4T","5T"],headbutt:["4T"],healblock:["4L50"],hiddenpower:["4M","5M"],honeclaws:["5M"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],incinerate:["5M"],irondefense:["4T","5T"],ironhead:["4T","5T"],irontail:["4M","5L42","5T"],magnetrise:["4T","5T"],metalburst:["4L24","5L24"],metalclaw:["4L10","4L6","5L6"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T"],overheat:["4M","5M"],powergem:["4L19","5L19"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],roaroftime:["4L40","4L46","5L46","5S0"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],safeguard:["4M","5M"],sandstorm:["4M","5M"],scaryface:["4L1","5L1"],secretpower:["4M"],shadowclaw:["4M","5M"],shockwave:["4M"],slash:["4L70","4L15","5L15"],sleeptalk:["4M","5T"],snore:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderwave:["4M","5M"],toxic:["4M","5M"],trickroom:["4M","5M"],twister:["4T"],hypervoice:["5T"]}}, - palkia:{learnset:{aerialace:["4M","5M"],ancientpower:["4L20","4T","4L10","5L10"],aquatail:["4L80","4T","4L24","5L24","5L42","5T"],aurasphere:["4L90","4L37","5L37","5S0"],avalanche:["4M"],blizzard:["4M","5M"],brickbreak:["4M","5M"],brine:["4M"],bulkup:["4M","5M"],bulldoze:["5M"],cut:["4M","5M"],dive:["4T","5M"],doubleteam:["4M","5M"],dracometeor:["4T","5T","5S0"],dragonbreath:["4L1","5L1"],dragonclaw:["4M","4L30","4L28","5M","5L28"],dragonpulse:["4M","5T"],dragontail:["5M"],earthpower:["4L60","4T","4L33","5L33","5T"],earthquake:["4M","5M"],echoedvoice:["5M"],endure:["4M"],facade:["4M","5M"],fireblast:["4M","5M"],flamethrower:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],furycutter:["4T"],gigaimpact:["4M","5M"],gravity:["4T","5T"],hail:["4M","5M"],headbutt:["4T"],healblock:["4L50"],hiddenpower:["4M","5M"],honeclaws:["5M"],hydropump:["4L42","5L50","5S0"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],incinerate:["5M"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T"],powergem:["4L19","5L19"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],safeguard:["4M","5M"],sandstorm:["4M","5M"],scaryface:["4L1","5L1"],secretpower:["4M"],shadowclaw:["4M","5M"],shockwave:["4M"],slash:["4L70","4L15","5L15"],sleeptalk:["4M","5T"],snore:["4T","5T"],spacialrend:["4L40","4L46","5L46","5S0"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],surf:["4M","5M"],swagger:["4M","5M"],swift:["4T"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderwave:["4M","5M"],toxic:["4M","5M"],trickroom:["4M","5M"],twister:["4T"],waterpulse:["4M","4L10","4L6","5L6"],whirlpool:["4M"],hypervoice:["5T"]}}, - heatran:{learnset:{ancientpower:["4L1","4T","5L1","4S0"],attract:["4M","5M"],bugbite:["4T","5T"],bulldoze:["5M"],captivate:["4M"],crunch:["4L33","5L33"],darkpulse:["4M","5T"],dig:["4M","5M"],doubleteam:["4M","5M"],dragonpulse:["4M","5T"],earthpower:["4L73","4T","5L73","4S0","5T"],earthquake:["4M","5M"],endure:["4M"],eruption:["4S0"],explosion:["4M","5M"],facade:["4M","5M"],fireblast:["4M","5M"],firefang:["4L17","5L17"],firespin:["4L57","5L57"],flamecharge:["5M"],flamethrower:["4M","5M"],flashcannon:["4M","5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],headbutt:["4T"],heatwave:["4L81","4T","5L81","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],incinerate:["5M"],irondefense:["4T","5T"],ironhead:["4L65","4T","5L65","5T"],lavaplume:["4L49","5L49"],leer:["4L9","5L9"],magmastorm:["4L96","5L96","4S0"],metalsound:["4L25","5L25"],mudslap:["4T"],naturalgift:["4M"],overheat:["4M","5M"],payback:["4M","5M"],protect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],scaryface:["4L41","5L41"],secretpower:["4M"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],stealthrock:["4M","5T"],stoneedge:["4M","4L88","5M","5L88"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],taunt:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],uproar:["4T","5T"],willowisp:["4M","5M"]}}, - regigigas:{learnset:{aerialace:["4M","5M"],ancientpower:["4T"],avalanche:["4M"],block:["4T","5T"],brickbreak:["4M","5M"],bulldoze:["5M"],confuseray:["4L1","5L1"],crushgrip:["4L75","5L75","4S0"],dizzypunch:["4L1","5L1"],doubleteam:["4M","5M"],drainpunch:["4M","5T"],earthpower:["4T","5T"],earthquake:["4M","5M"],endure:["4M"],facade:["4M","5M"],firepunch:["4L1","4T","5L1","5T"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],foresight:["4L1","5L1"],frustration:["4M","5M"],gigaimpact:["4M","4L100","5M","5L100"],gravity:["4T","5T"],headbutt:["4T"],heavyslam:["5L90"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icepunch:["4L1","4T","5L1","5T"],icywind:["4T","4S0","5T"],ironhead:["4T","4S0","5T"],knockoff:["4L1","5L1","5T"],megapunch:["4L1"],mudslap:["4T"],naturalgift:["4M"],payback:["5M","5L65"],psychup:["4M","5M"],raindance:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],revenge:["4L25","5L25"],rockclimb:["4M"],rockpolish:["4M","5M"],rockslide:["4M","5M","4S0"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],shockwave:["4M"],sleeptalk:["4M","5T"],smackdown:["5M"],snore:["4T","5T"],stomp:["4L1"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],superpower:["4L25","4T","5T"],swagger:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderpunch:["4L1","4T","5L1","5T"],thunderwave:["4M","5M"],toxic:["4M","5M"],wideguard:["5L40"],zenheadbutt:["4L50","4T","5L50","5T"]}}, - giratina:{learnset:{aerialace:["4M","5M"],aircutter:["4T"],ancientpower:["4L20","4T","4L10","5L10"],aquatail:["4T","5T"],aurasphere:["4L90","4L37","5L37","5S0"],bulldoze:["5M"],calmmind:["4M","5M"],chargebeam:["4M","5M"],cut:["4M","5M"],darkpulse:["4M","5T"],defog:["4M"],destinybond:["4L24","5L24"],doubleteam:["4M","5M"],dracometeor:["4T","5T"],dragonbreath:["4L1","5L1"],dragonclaw:["4M","4L30","4L28","5M","5L28","5S0"],dragonpulse:["4M","5T","5S0"],dragontail:["5M"],dreameater:["4M","5M"],earthpower:["4L60","4T","4L33","5L33","5T"],earthquake:["4M","5M"],echoedvoice:["5M"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],fly:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],gigaimpact:["4M","5M"],gravity:["4T","5T"],headbutt:["4T"],healblock:["4L50"],hex:["5L50"],hiddenpower:["4M","5M"],honeclaws:["5M"],hyperbeam:["4M","5M"],icywind:["4T","5T"],ironhead:["4T","5T"],irontail:["4M","5T"],magiccoat:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4L10","4T","4L6","5L6"],outrage:["4T","5T"],painsplit:["4T","5T"],payback:["4M","5M"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],roar:["4M","5M"],rockclimb:["4M"],rocksmash:["4M","5M"],round:["5M"],safeguard:["4M","5M"],scaryface:["4L1","5L1"],secretpower:["4M"],shadowball:["4M","5M"],shadowclaw:["4M","4L80","4L42","5M","5L42"],shadowforce:["4L40","4L46","5L46","5S0"],shadowsneak:["4L19","5L19"],shockwave:["4M"],silverwind:["4M"],slash:["4L70","4L15","5L15"],sleeptalk:["4M","5T"],snore:["4T","5T"],spite:["4T","5T"],steelwing:["4M"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],tailwind:["4T","5T"],telekinesis:["5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderwave:["4M","5M"],toxic:["4M","5M"],twister:["4T"],willowisp:["4M","5M"],hypervoice:["5T"]}}, - cresselia:{learnset:{attract:["4M","5M"],aurorabeam:["4L29","5L29"],calmmind:["4M","5M"],captivate:["4M"],chargebeam:["4M","5M"],confusion:["4L1","5L1"],doubleteam:["4M","4L1","5M","5L1"],dreameater:["4M","5M"],endure:["4M"],energyball:["4M","5M","5S0"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],futuresight:["4L38","5L38"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","5S0"],hyperbeam:["4M","5M"],icebeam:["4M","5M","5S0"],icywind:["4T","5T"],lightscreen:["4M","5M"],lunardance:["4L84","5L84"],magiccoat:["4T","5T"],mist:["4L20","5L20"],moonlight:["4L57","5L57"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M"],psychic:["4M","4L93","5M","5L93"],psychocut:["4L66","5L66"],psychoshift:["4L75","5L75"],psychup:["4M","5M"],psyshock:["5M","5S0"],raindance:["4M","5M"],recycle:["4M","5T"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],safeguard:["4M","4L11","5M","5L11"],secretpower:["4M"],shadowball:["4M","5M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],slash:["4L47","5L47"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],telekinesis:["5M"],thunderwave:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],zenheadbutt:["4T","5T"],magicroom:["5T"]}}, - phione:{learnset:{acidarmor:["4L31","5L31"],ancientpower:["4T"],aquaring:["4L54","5L54"],blizzard:["4M","5M"],bounce:["4T","5T"],brine:["4M"],bubble:["4L1","5L1"],bubblebeam:["4L24","5L24"],charm:["4L9","5L9"],dive:["4L61","4T","5M","5L61"],doubleteam:["4M","5M"],endure:["4M"],facade:["4M","5M"],fling:["4M","5M"],frustration:["4M","5M"],grassknot:["4M","5M","4S0"],hail:["4M","5M"],healbell:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],icebeam:["4M","5M"],icywind:["4T","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","4L69","5M","5L69","4S0"],rest:["4M","5M","4S0"],"return":["4M","5M"],round:["5M"],safeguard:["4M","5M"],scald:["5M"],secretpower:["4M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],substitute:["4M","5M"],supersonic:["4L16","5L16"],surf:["4M","5M","4S0"],swagger:["4M","5M"],swift:["4T"],toxic:["4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"],waterfall:["4M","5M"],waterpulse:["4M","4L46","5L46"],watersport:["4L1","5L1"],whirlpool:["4L39","4M","5L39"],covet:["5T"]}}, - manaphy:{learnset:{acidarmor:["4L31","5L31","4S2","4S3","4S4"],ancientpower:["4T"],aquaring:["4L54","5L54","4S5"],blizzard:["4M","5M"],bounce:["4T","5T"],brine:["4M"],bubble:["4L1","5L1","4S0","4S1"],bubblebeam:["4L24","5L24"],calmmind:["4M","5M"],charm:["4L9","5L9"],dive:["4L61","4T","5M","5L61"],doubleteam:["4M","5M"],endure:["4M"],energyball:["4M","5M"],facade:["4M","5M"],flash:["4M","5M"],fling:["4M","5M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],hail:["4M","5M"],healbell:["4T","5T"],heartswap:["4L76","5L76","4S2","4S3","4S4","4S5"],helpinghand:["4T","5T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],icebeam:["4M","5M"],icywind:["4T","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],lightscreen:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],raindance:["4M","4L69","5M","5L69"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],safeguard:["4M","5M"],scald:["5M"],secretpower:["4M"],shadowball:["4M","5M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T"],snore:["4T","5T"],substitute:["4M","5M"],supersonic:["4L16","5L16"],surf:["4M","5M"],swagger:["4M","5M"],swift:["4T"],tailglow:["4L1","5L1","4S0","4S1"],toxic:["4M","5M"],uproar:["4T","5T"],uturn:["4M","5M"],waterfall:["4M","5M"],waterpulse:["4M","4L46","5L46","4S2","4S3","4S4","4S5"],watersport:["4L1","5L1","4S0","4S1","4S5"],whirlpool:["4L39","4M","5L39","4S2","4S3","4S4"],covet:["5T"]}}, - darkrai:{learnset:{aerialace:["4M","5M"],blizzard:["4M","5M"],brickbreak:["4M","5M"],calmmind:["4M","5M"],chargebeam:["4M","5M"],cut:["4M","5M"],darkpulse:["4M","4L93","5L93","4S1","5T"],darkvoid:["4L66","5L66","4S1","5S4"],disable:["4L1","5L1"],doubleteam:["4M","4L47","5M","5L47","4S1","4S3"],drainpunch:["4M","5T"],dreameater:["4M","4L84","5M","5L84"],embargo:["4M","4L75","5M"],endure:["4M"],facade:["4M","5M"],faintattack:["4L29","5L29","4S3","5S4"],flash:["4M","5M"],fling:["4M","5M"],focusblast:["4M","5M"],focuspunch:["4M"],frustration:["4M","5M"],gigaimpact:["4M","5M"],haze:["4L57","5L57"],headbutt:["4T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],hypnosis:["4L20","5L20","4S0","4S2","4S3"],icebeam:["4M","5M"],icywind:["4T","5T"],incinerate:["5M"],knockoff:["4T","5T"],lastresort:["4T","5T"],mudslap:["4T"],nastyplot:["4L75","5L75"],naturalgift:["4M"],nightmare:["4L38","5L38","4S0","4S2","4S3","5S4"],nightshade:["4L1"],ominouswind:["4T","4L1","5L1","5S4"],payback:["4M","5M"],poisonjab:["4M","5M"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],pursuit:["4L29"],quickattack:["4L11","5L11"],raindance:["4M","5M"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],roaroftime:["4S0","4S2"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M","4S1"],shadowclaw:["4M","5M"],shockwave:["4M"],sleeptalk:["4M","5T"],sludgebomb:["4M","5M"],snarl:["5M"],snatch:["4M","5T"],snore:["4T","5T"],spacialrend:["4S0","4S2"],spite:["4T","5T"],strength:["4M","5M"],substitute:["4M","5M"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],swordsdance:["4M","5M"],taunt:["4M","5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderwave:["4M","5M"],torment:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],willowisp:["4M","5M"],xscissor:["4M","5M"],foulplay:["5T"],wonderroom:["5T"]}}, - shaymin:{learnset:{aromatherapy:["4L64","5L64","4S0"],bulletseed:["4M"],defensecurl:["4L1"],doubleteam:["4M","5M"],earthpower:["4T","5T"],endeavor:["4T","5T"],endure:["4M"],energyball:["4M","4L73","5M","5L73","4S0"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],gigadrain:["4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],grasswhistle:["4L82"],growth:["4L1","5L1","4S1","4S2"],headbutt:["4T"],healingwish:["4L91","5L91"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],lastresort:["4T","5T"],leechseed:["4L19","5L19","4S1","4S2","5S3"],luckychant:["4L91"],magicalleaf:["4L10","5L10","4S1","4S2"],mudslap:["4T"],naturalgift:["4M","4L46","5L46"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],seedbomb:["4T","5T"],seedflare:["4L100","5L100","4S0","5S3"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],substitute:["4M","5M","4S0"],sunnyday:["4M","5M"],swagger:["4M","5M"],sweetkiss:["4L82","5L82"],sweetscent:["4L37","5L37","5S3"],swift:["4T"],swordsdance:["4M","5M"],synthesis:["4L28","4T","5L28","4S1","4S2","5S3","5T"],toxic:["4M","5M"],worryseed:["4L55","4T","5L55","5T"],zenheadbutt:["4T","5T"],covet:["5T"]}}, - shayminsky:{learnset:{aircutter:["4T"],airslash:["4L64","5L64"],aromatherapy:["4S0"],bulletseed:["4M"],doubleteam:["4M","5M"],endure:["4M"],energyball:["4M","4L73","5M","5L73","4S0"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],gigadrain:["4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],growth:["4L1","5L1","4S1","4S2"],headbutt:["4T"],hiddenpower:["4M","5M"],hyperbeam:["4M","5M"],lastresort:["4T","5T"],leafstorm:["4L91","5L91"],leechseed:["4L19","5L19","4S1","4S2","5S3"],magicalleaf:["4L10","5L10","4S1","4S2"],mudslap:["4T"],naturalgift:["4M","4L46","5L46"],ominouswind:["4T"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],quickattack:["4L28","5L28"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],safeguard:["4M","5M"],secretpower:["4M"],seedbomb:["4T","5T"],seedflare:["4L100","5L100","4S0","5S3"],sleeptalk:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M"],substitute:["4M","5M","4S0"],sunnyday:["4M","5M"],swagger:["4M","5M"],sweetkiss:["4L82","5L82"],sweetscent:["4L37","5L37","5S3"],swift:["4T"],swordsdance:["4M","5M"],synthesis:["4T","4S1","4S2","5S3","5T"],tailwind:["4T","5T"],toxic:["4M","5M"],worryseed:["4L55","4T","5L55","5T"],zenheadbutt:["4T","5T"],covet:["5T"]}}, - arceus:{learnset:{aerialace:["4M","5M"],ancientpower:["4T"],aquatail:["4T","5T"],avalanche:["4M"],blizzard:["4M","5M"],brickbreak:["4M","5M"],brine:["4M"],bulldoze:["5M"],bulletseed:["4M"],calmmind:["4M","5M"],chargebeam:["4M","5M"],cosmicpower:["4L1","5L1"],cut:["4M","5M"],darkpulse:["4M","5T"],defog:["4M"],dive:["4T"],doubleteam:["4M","5M"],dracometeor:["4T","5T"],dragonclaw:["4M","5M"],dragonpulse:["4M","5T"],dreameater:["4M","5M"],earthpower:["4L20","4T","5L20","5T"],earthquake:["4M","5M"],echoedvoice:["5M"],endure:["4M"],energyball:["4M","5M"],extremespeed:["4L40","5L40"],facade:["4M","5M"],fireblast:["4M","5M"],flamethrower:["4M","5M"],flash:["4M","5M"],flashcannon:["4M","5M"],fly:["4M","5M"],focusblast:["4M","5M"],frustration:["4M","5M"],furycutter:["4T"],futuresight:["4L60","5L60"],gigadrain:["4M","5T"],gigaimpact:["4M","5M"],grassknot:["4M","5M"],gravity:["4L10","4T","5L10","5T"],hail:["4M","5M"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["4M","5M"],honeclaws:["5M"],hyperbeam:["4M","4L80","5M","5L80","5S1"],hypervoice:["4L30","5L30","5T"],icebeam:["4M","5M"],icywind:["4T","5T"],incinerate:["5M"],irondefense:["4T","5T"],ironhead:["4T","5T"],irontail:["4M","5T"],judgment:["4L100","5L100","4S0","5S1"],lastresort:["4T","5T"],lightscreen:["4M","5M"],magiccoat:["5T"],mudslap:["4T"],naturalgift:["4M","4L1","5L1"],ominouswind:["4T"],outrage:["4T","5T"],overheat:["4M","5M"],payback:["4M","5M"],perishsong:["4L90","5L90","5S1"],poisonjab:["4M","5M"],protect:["4M","5M"],psychic:["4M","5M"],psychup:["4M","5M"],psyshock:["5M"],punishment:["4L1","5L1"],quash:["5M"],raindance:["4M","5M"],recover:["4L70","5L70","5S1"],recycle:["4M","5T"],reflect:["4M","5M"],refresh:["4L50","5L50"],rest:["4M","5M"],retaliate:["5M"],"return":["4M","5M"],roar:["4M","5M"],roaroftime:["4S0"],rockclimb:["4M"],rockslide:["4M","5M"],rocksmash:["4M","5M"],rocktomb:["4M","5M"],roleplay:["4T"],round:["5M"],safeguard:["4M","5M"],sandstorm:["4M","5M"],secretpower:["4M"],seismictoss:["4L1","5L1"],shadowball:["4M","5M"],shadowclaw:["4M","5M"],shadowforce:["4S0"],shockwave:["4M"],signalbeam:["4T","5T"],silverwind:["4M"],sleeptalk:["4M","5T"],sludgebomb:["4M","5M"],snarl:["5M"],snore:["4T","5T"],solarbeam:["4M","5M"],spacialrend:["4S0"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["4M","5M"],substitute:["4M","5M"],sunnyday:["4M","5M"],surf:["4M","5M"],swagger:["4M","5M"],swift:["4T"],swordsdance:["4M","5M"],tailwind:["4T","5T"],telekinesis:["5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thunderwave:["4M","5M"],toxic:["4M","5M"],trick:["4T","5T"],trickroom:["4M","5M"],twister:["4T"],waterfall:["4M","5M"],waterpulse:["4M"],whirlpool:["4M"],willowisp:["4M","5M"],workup:["5M"],xscissor:["4M","5M"],zenheadbutt:["4T","5T"]}}, - victini:{learnset:{blueflare:["5S2"],boltstrike:["5S2"],brickbreak:["5M"],chargebeam:["5M"],confusion:["5L1","5S0"],doubleedge:["5L65"],doubleteam:["5M"],embargo:["5M"],endure:["5L9","5S0"],energyball:["5M"],facade:["5M"],finalgambit:["5L81"],fireblast:["5M"],flameburst:["5L41"],flamecharge:["5M","5L25"],flamethrower:["5M"],flareblitz:["5L73"],flash:["5M"],fling:["5M"],focusblast:["5M"],focusenergy:["5L1"],frustration:["5M"],fusionbolt:["5S1"],fusionflare:["5S1"],gigaimpact:["5M"],glaciate:["5S2"],grassknot:["5M"],headbutt:["5L17"],hiddenpower:["5M"],hyperbeam:["5M"],incinerate:["5M","5L1","5S0"],inferno:["5L57"],lightscreen:["5M"],overheat:["5M","5L97"],protect:["5M"],psychic:["5M"],psychup:["5M"],psyshock:["5M"],quickattack:["5L1","5S0"],rest:["5M"],"return":["5M"],reversal:["5L33"],rocksmash:["5M"],round:["5M"],safeguard:["5M"],searingshot:["5L1","5S1"],shadowball:["5M"],solarbeam:["5M"],storedpower:["5L89"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],taunt:["5M"],telekinesis:["5M"],thunder:["5M"],thunderbolt:["5M"],thunderwave:["5M"],toxic:["5M"],trickroom:["5M"],uturn:["5M"],vcreate:["5S1","5S2"],wildcharge:["5M"],willowisp:["5M"],workup:["5M"],zenheadbutt:["5L49","5T"],signalbeam:["5T"],bounce:["5T"],uproar:["5T"],thunderpunch:["5T"],firepunch:["5T"],magiccoat:["5T"],lastresort:["5T"],snore:["5T"],heatwave:["5T"],roleplay:["5T"],helpinghand:["5T"],trick:["5T"],sleeptalk:["5T"],skillswap:["5T"]}}, - snivy:{learnset:{aerialace:["5M"],aromatherapy:["5S0"],attract:["5M"],calmmind:["5M"],captivate:["5E"],coil:["5L31"],cut:["5M"],doubleteam:["5M"],energyball:["5M","5S0"],facade:["5M"],flash:["5M"],frustration:["5M"],gastroacid:["5L40","5T"],gigadrain:["5L34","5T"],glare:["5E"],grassknot:["5M"],grasspledge:["5T"],growth:["5L13","5S0"],hiddenpower:["5M"],irontail:["5E","5T"],leafblade:["5L28"],leafstorm:["5L43"],leaftornado:["5L16"],leechseed:["5L19"],leer:["5L4"],lightscreen:["5M"],magicalleaf:["5E"],meanlook:["5E"],megadrain:["5L22"],mirrorcoat:["5E"],naturalgift:["5E"],protect:["5M"],pursuit:["5E"],reflect:["5M"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],slam:["5L25"],solarbeam:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],sweetscent:["5E"],swordsdance:["5M"],synthesis:["5S0","5T"],tackle:["5L1"],taunt:["5M"],torment:["5M"],toxic:["5M"],twister:["5E"],vinewhip:["5L7"],wrap:["5L10"],wringout:["5L37"],seedbomb:["5T"],aquatail:["5T"],bind:["5T"],snore:["5T"],knockoff:["5T"],worryseed:["5T"],snatch:["5T"],sleeptalk:["5T"]}}, - servine:{learnset:{aerialace:["5M"],attract:["5M"],calmmind:["5M"],coil:["5L36"],cut:["5M"],doubleteam:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],frustration:["5M"],gastroacid:["5L48","5T"],gigadrain:["5L40","5T"],grassknot:["5M"],grasspledge:["5T"],growth:["5L13"],hiddenpower:["5M"],leafblade:["5L32"],leafstorm:["5L52"],leaftornado:["5L16"],leechseed:["5L20"],leer:["5L1","5L4"],lightscreen:["5M"],megadrain:["5L24"],protect:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],slam:["5L28"],solarbeam:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swordsdance:["5M"],tackle:["5L1"],taunt:["5M"],torment:["5M"],toxic:["5M"],vinewhip:["5L1","5L7"],wrap:["5L1","5L10"],wringout:["5L44"],seedbomb:["5T"],aquatail:["5T"],irontail:["5T"],bind:["5T"],snore:["5T"],knockoff:["5T"],synthesis:["5T"],worryseed:["5T"],snatch:["5T"],sleeptalk:["5T"]}}, - serperior:{learnset:{aerialace:["5M"],attract:["5M"],calmmind:["5M"],coil:["5L38"],cut:["5M"],doubleteam:["5M"],dragontail:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],frenzyplant:["5T"],frustration:["5M"],gastroacid:["5L56","5T"],gigadrain:["5L44","5T","5S0"],gigaimpact:["5M"],grassknot:["5M"],grasspledge:["5T"],growth:["5L13"],hiddenpower:["5M"],hyperbeam:["5M"],leafblade:["5L32"],leafstorm:["5L62","5S0"],leaftornado:["5L16"],leechseed:["5L20","5S0"],leer:["5L1","5L4"],lightscreen:["5M"],megadrain:["5L24"],protect:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],rocksmash:["5M"],round:["5M"],safeguard:["5M"],slam:["5L28"],solarbeam:["5M"],strength:["5M"],substitute:["5M","5S0"],sunnyday:["5M"],swagger:["5M"],swordsdance:["5M"],tackle:["5L1"],taunt:["5M"],torment:["5M"],toxic:["5M"],vinewhip:["5L1","5L7"],wrap:["5L1","5L10"],wringout:["5L50"],seedbomb:["5T"],aquatail:["5T"],dragonpulse:["5T"],irontail:["5T"],bind:["5T"],snore:["5T"],knockoff:["5T"],synthesis:["5T"],worryseed:["5T"],outrage:["5T"],snatch:["5T"],sleeptalk:["5T"]}}, - tepig:{learnset:{assurance:["5L31"],attract:["5M"],bodyslam:["5E"],covet:["5E","5T"],curse:["5E"],defensecurl:["5L13"],doubleteam:["5M"],echoedvoice:["5M"],ember:["5L7"],endeavor:["5E","5T"],facade:["5M"],fireblast:["5M"],firepledge:["5T"],flamecharge:["5M","5L15"],flamethrower:["5M","5L33"],flareblitz:["5L43"],frustration:["5M"],grassknot:["5M"],gyroball:["5M"],headsmash:["5L37"],heatcrash:["5L27"],heavyslam:["5E"],hiddenpower:["5M"],incinerate:["5M"],magnitude:["5E"],odorsleuth:["5L9"],overheat:["5M"],protect:["5M"],rest:["5M"],"return":["5M"],roar:["5M","5L39"],rocksmash:["5M"],rocktomb:["5M"],rollout:["5L21"],round:["5M"],sleeptalk:["5E","5T"],smog:["5L19"],solarbeam:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],superpower:["5E","5T"],swagger:["5M"],tackle:["5L1"],tailwhip:["5L3"],takedown:["5L25"],taunt:["5M"],thrash:["5E"],toxic:["5M"],wildcharge:["5M"],willowisp:["5M"],yawn:["5E"],irontail:["5T"],snore:["5T"],heatwave:["5T"],helpinghand:["5T"]}}, - pignite:{learnset:{armthrust:["5L17"],assurance:["5L36"],attract:["5M"],brickbreak:["5M"],bulldoze:["5M"],defensecurl:["5L13"],doubleteam:["5M"],echoedvoice:["5M"],ember:["5L1","5L7"],facade:["5M"],fireblast:["5M"],firepledge:["5T"],flamecharge:["5M","5L15"],flamethrower:["5M","5L39"],flareblitz:["5L52"],fling:["5M"],focusblast:["5M"],frustration:["5M"],grassknot:["5M"],gyroball:["5M"],headsmash:["5L44"],heatcrash:["5L31"],hiddenpower:["5M"],incinerate:["5M"],lowsweep:["5M"],odorsleuth:["5L1","5L9"],overheat:["5M"],poisonjab:["5M"],protect:["5M"],rest:["5M"],"return":["5M"],roar:["5M","5L47"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],rollout:["5L23"],round:["5M"],smog:["5L20"],solarbeam:["5M"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],tackle:["5L1"],tailwhip:["5L1","5L3"],takedown:["5L28"],taunt:["5M"],toxic:["5M"],wildcharge:["5M"],willowisp:["5M"],workup:["5M"],covet:["5T"],lowkick:["5T"],thunderpunch:["5T"],firepunch:["5T"],superpower:["5T"],irontail:["5T"],snore:["5T"],heatwave:["5T"],helpinghand:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - emboar:{learnset:{armthrust:["5L17"],assurance:["5L38"],attract:["5M"],blastburn:["5T"],brickbreak:["5M"],bulkup:["5M"],bulldoze:["5M"],defensecurl:["5L13"],doubleteam:["5M"],earthquake:["5M"],echoedvoice:["5M"],ember:["5L1","5L7"],facade:["5M"],fireblast:["5M"],firepledge:["5T"],flamecharge:["5M","5L15"],flamethrower:["5M","5L43"],flareblitz:["5L62","5S0"],fling:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],gyroball:["5M"],hammerarm:["5L1","5S0"],headsmash:["5L50","5S0"],heatcrash:["5L31"],hiddenpower:["5M"],hyperbeam:["5M"],incinerate:["5M"],lowsweep:["5M"],odorsleuth:["5L1","5L9"],overheat:["5M"],poisonjab:["5M"],protect:["5M"],rest:["5M"],"return":["5M"],roar:["5M","5L55"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],rollout:["5L23"],round:["5M"],scald:["5M"],smackdown:["5M"],smog:["5L20"],solarbeam:["5M"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],tackle:["5L1"],tailwhip:["5L1","5L3"],takedown:["5L28"],taunt:["5M"],toxic:["5M"],wildcharge:["5M","5S0"],willowisp:["5M"],workup:["5M"],covet:["5T"],ironhead:["5T"],lowkick:["5T"],thunderpunch:["5T"],firepunch:["5T"],block:["5T"],superpower:["5T"],irontail:["5T"],snore:["5T"],heatwave:["5T"],helpinghand:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - oshawott:{learnset:{aerialace:["5M"],airslash:["5E"],aquajet:["5L29"],aquatail:["5L35","5T"],assurance:["5E"],attract:["5M"],blizzard:["5M"],brine:["5E"],copycat:["5E"],cut:["5M"],detect:["5E"],dig:["5M"],dive:["5M"],doubleteam:["5M"],encore:["5L31"],facade:["5M"],falseswipe:["5M"],fling:["5M"],focusenergy:["5L13"],frustration:["5M"],furycutter:["5L19"],grassknot:["5M"],hail:["5M"],hiddenpower:["5M"],hydropump:["5L43"],icebeam:["5M"],nightslash:["5E"],protect:["5M"],raindance:["5M"],razorshell:["5L17"],rest:["5M"],retaliate:["5M","5L37"],"return":["5M"],revenge:["5L25"],rocksmash:["5M"],round:["5M"],scald:["5M"],screech:["5E"],substitute:["5M"],surf:["5M"],swagger:["5M"],swordsdance:["5M","5L41"],tackle:["5L1"],tailwhip:["5L5"],taunt:["5M"],toxic:["5M"],trumpcard:["5E"],waterfall:["5M"],watergun:["5L7"],waterpledge:["5T"],waterpulse:["5L23"],watersport:["5L11"],xscissor:["5M"],covet:["5T"],icywind:["5T"],irontail:["5T"],snore:["5T"],helpinghand:["5T"],sleeptalk:["5T"]}}, - dewott:{learnset:{aerialace:["5M"],aquajet:["5L33"],aquatail:["5L41","5T"],attract:["5M"],blizzard:["5M"],cut:["5M"],dig:["5M"],dive:["5M"],doubleteam:["5M"],encore:["5L36"],facade:["5M"],falseswipe:["5M"],fling:["5M"],focusenergy:["5L13"],frustration:["5M"],furycutter:["5L20"],grassknot:["5M"],hail:["5M"],hiddenpower:["5M"],hydropump:["5L52"],icebeam:["5M"],protect:["5M"],raindance:["5M"],razorshell:["5L17"],rest:["5M"],retaliate:["5M","5L44"],"return":["5M"],revenge:["5L28"],rocksmash:["5M"],round:["5M"],scald:["5M"],substitute:["5M"],surf:["5M"],swagger:["5M"],swordsdance:["5M","5L49"],tackle:["5L1"],tailwhip:["5L1","5L5"],taunt:["5M"],toxic:["5M"],waterfall:["5M"],watergun:["5L1","5L7"],waterpledge:["5T"],waterpulse:["5L25"],watersport:["5L1","5L11"],xscissor:["5M"],covet:["5T"],icywind:["5T"],irontail:["5T"],snore:["5T"],helpinghand:["5T"],sleeptalk:["5T"]}}, - samurott:{learnset:{aerialace:["5M"],aquajet:["5L33"],aquatail:["5L45","5T"],attract:["5M"],blizzard:["5M"],cut:["5M"],dig:["5M"],dive:["5M"],doubleteam:["5M"],dragontail:["5M"],encore:["5L38"],facade:["5M"],falseswipe:["5M"],fling:["5M"],focusenergy:["5L13"],frustration:["5M"],furycutter:["5L20"],gigaimpact:["5M"],grassknot:["5M"],hail:["5M"],hiddenpower:["5M"],hydrocannon:["5T"],hydropump:["5L62","5S0"],hyperbeam:["5M"],icebeam:["5M","5S0"],megahorn:["5L1","5S0"],protect:["5M"],raindance:["5M"],razorshell:["5L17"],rest:["5M"],retaliate:["5M","5L50"],"return":["5M"],revenge:["5L28"],rocksmash:["5M"],round:["5M"],scald:["5M"],slash:["5L36"],strength:["5M"],substitute:["5M"],surf:["5M"],swagger:["5M"],swordsdance:["5M","5L57"],tackle:["5L1"],tailwhip:["5L1","5L5"],taunt:["5M"],toxic:["5M"],waterfall:["5M"],watergun:["5L1","5L7"],waterpledge:["5T"],waterpulse:["5L25"],watersport:["5L1","5L11"],xscissor:["5M"],block:["5T"],covet:["5T"],superpower:["5T","5S0"],icywind:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],helpinghand:["5T"],sleeptalk:["5T"]}}, - patrat:{learnset:{afteryou:["5L23","5T"],assurance:["5E"],attract:["5M"],batonpass:["5L33"],bide:["5L8"],bite:["5L6"],crunch:["5L16"],cut:["5M"],detect:["5L11"],dig:["5M"],doubleteam:["5M"],facade:["5M"],flail:["5E"],fling:["5M"],foresight:["5E"],frustration:["5M"],grassknot:["5M"],hiddenpower:["5M"],hyperfang:["5L28"],hypnosis:["5L18"],irontail:["5E","5T"],leer:["5L3"],meanlook:["5L31"],protect:["5M"],pursuit:["5E"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],revenge:["5E"],round:["5M"],sandattack:["5L13"],screech:["5E"],shadowball:["5M"],slam:["5L36"],substitute:["5M"],sunnyday:["5M"],superfang:["5L21","5T"],swagger:["5M"],swordsdance:["5M"],tackle:["5L1"],thunderbolt:["5M"],toxic:["5M"],workup:["5M","5L26"],covet:["5T"],seedbomb:["5T"],lowkick:["5T"],gunkshot:["5T"],lastresort:["5T"],aquatail:["5T"],zenheadbutt:["5T"],snore:["5T"],helpinghand:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - watchog:{learnset:{afteryou:["5L25","5T"],attract:["5M"],batonpass:["5L39"],bide:["5L8"],bite:["5L1","5L6"],confuseray:["5L20"],crunch:["5L16"],cut:["5M"],detect:["5L11"],dig:["5M"],doubleteam:["5M"],dreameater:["5M"],facade:["5M"],flamethrower:["5M"],flash:["5M"],fling:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],hiddenpower:["5M"],hyperbeam:["5M"],hyperfang:["5L32"],hypnosis:["5L18"],leer:["5L1","5L3"],lightscreen:["5M"],lowkick:["5L1","5T"],meanlook:["5L36"],protect:["5M"],psychup:["5M","5L29"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],rocksmash:["5M"],round:["5M"],sandattack:["5L13"],shadowball:["5M"],slam:["5L43"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],superfang:["5L22","5T"],swagger:["5M"],swordsdance:["5M"],tackle:["5L1"],thunder:["5M"],thunderbolt:["5M"],thunderwave:["5M"],toxic:["5M"],workup:["5M"],covet:["5T"],signalbeam:["5T"],seedbomb:["5T"],gunkshot:["5T"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],lastresort:["5T"],aquatail:["5T"],zenheadbutt:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],helpinghand:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - lillipup:{learnset:{aerialace:["5M"],attract:["5M"],bite:["5L8"],charm:["5E"],crunch:["5L22"],dig:["5M"],doubleteam:["5M"],endure:["5E"],facade:["5M"],firefang:["5E"],frustration:["5M"],gigaimpact:["5M","5L40"],helpinghand:["5L12","5T"],hiddenpower:["5M"],howl:["5E"],icefang:["5E"],lastresort:["5L36","5T"],leer:["5L1"],lick:["5E"],mudslap:["5E"],odorsleuth:["5L5"],protect:["5M"],pursuit:["5E"],raindance:["5M"],rest:["5M"],retaliate:["5M","5L29"],"return":["5M"],reversal:["5L33"],roar:["5M","5L26"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],sandattack:["5E"],shadowball:["5M"],snarl:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],tackle:["5L1"],takedown:["5L15"],thunderbolt:["5M"],thunderfang:["5E"],thunderwave:["5M"],toxic:["5M"],wildcharge:["5M"],workup:["5M","5L19"],yawn:["5E"],covet:["5T"],uproar:["5T"],hypervoice:["5T"],snore:["5T"],sleeptalk:["5T"]}}, - herdier:{learnset:{aerialace:["5M"],attract:["5M"],bite:["5L1","5L8"],crunch:["5L24"],dig:["5M"],doubleteam:["5M"],facade:["5M"],frustration:["5M"],gigaimpact:["5M","5L47"],helpinghand:["5L12","5T"],hiddenpower:["5M"],lastresort:["5L42","5T"],leer:["5L1"],odorsleuth:["5L1","5L5"],payback:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M","5L33"],"return":["5M"],reversal:["5L38"],roar:["5M","5L29"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],shadowball:["5M"],snarl:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],surf:["5M"],swagger:["5M"],tackle:["5L1"],takedown:["5L15"],thunderbolt:["5M"],thunderwave:["5M"],toxic:["5M"],wildcharge:["5M"],workup:["5M","5L20"],covet:["5T"],uproar:["5T"],hypervoice:["5T"],snore:["5T"],sleeptalk:["5T"]}}, - stoutland:{learnset:{aerialace:["5M"],attract:["5M"],bite:["5L1","5L8"],crunch:["5L24"],dig:["5M"],doubleteam:["5M"],facade:["5M"],firefang:["5L1"],frustration:["5M"],gigaimpact:["5M","5L59"],helpinghand:["5L12","5T"],hiddenpower:["5M"],hyperbeam:["5M"],icefang:["5L1"],lastresort:["5L51","5T"],leer:["5L1"],odorsleuth:["5L1","5L5"],payback:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M","5L36"],"return":["5M"],reversal:["5L42"],roar:["5M","5L29"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],shadowball:["5M"],snarl:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],surf:["5M"],swagger:["5M"],tackle:["5L1"],takedown:["5L15"],thunder:["5M"],thunderbolt:["5M"],thunderfang:["5L1"],thunderwave:["5M"],toxic:["5M"],wildcharge:["5M"],workup:["5M","5L20"],covet:["5T"],ironhead:["5T"],uproar:["5T"],superpower:["5T"],hypervoice:["5T"],snore:["5T"],sleeptalk:["5T"]}}, - purrloin:{learnset:{aerialace:["5M"],assist:["5L6"],assurance:["5L28"],attract:["5M"],captivate:["5L33"],charm:["5E"],covet:["5E","5T"],cut:["5M"],doubleteam:["5M"],dreameater:["5M"],echoedvoice:["5M"],embargo:["5M"],encore:["5E"],facade:["5M"],faintattack:["5E"],fakeout:["5L21"],faketears:["5E"],foulplay:["5E","5T"],frustration:["5M"],furyswipes:["5L12"],grassknot:["5M"],growl:["5L3"],hiddenpower:["5M"],honeclaws:["5M","5L24"],nastyplot:["5L42"],nightslash:["5L37"],payback:["5M"],payday:["5E"],protect:["5M"],psychup:["5M"],pursuit:["5L15"],raindance:["5M"],rest:["5M"],"return":["5M"],round:["5M"],sandattack:["5L10"],scratch:["5L1"],shadowball:["5M"],shadowclaw:["5M"],slash:["5L30"],snarl:["5M"],snatch:["5L39","5T"],substitute:["5M"],suckerpunch:["5L46"],sunnyday:["5M"],swagger:["5M"],taunt:["5M"],thief:["5M"],thunderwave:["5M"],torment:["5M","5L19"],toxic:["5M"],uturn:["5M"],yawn:["5E"],seedbomb:["5T"],gunkshot:["5T"],darkpulse:["5T"],hypervoice:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T"]}}, - liepard:{learnset:{aerialace:["5M"],assist:["5L1","5L6"],assurance:["5L31"],attract:["5M"],cut:["5M"],doubleteam:["5M"],dreameater:["5M"],echoedvoice:["5M"],embargo:["5M"],encore:["5S0"],facade:["5M"],fakeout:["5L22","5S0"],frustration:["5M"],furyswipes:["5L12"],gigaimpact:["5M"],grassknot:["5M"],growl:["5L1","5L3"],hiddenpower:["5M"],honeclaws:["5M","5L26"],hyperbeam:["5M"],nastyplot:["5L50"],nightslash:["5L43"],payback:["5M"],protect:["5M"],psychup:["5M"],pursuit:["5L15"],raindance:["5M"],rest:["5M"],"return":["5M"],rocksmash:["5M"],round:["5M"],sandattack:["5L1","5L10"],scratch:["5L1"],shadowball:["5M"],shadowclaw:["5M"],slash:["5L34"],snarl:["5M"],snatch:["5L47","5T"],substitute:["5M"],suckerpunch:["5L55"],sunnyday:["5M"],swagger:["5M","5S0"],taunt:["5M","5L38"],thief:["5M"],thunderwave:["5M"],torment:["5M","5L19"],toxic:["5M"],uturn:["5M"],covet:["5T"],seedbomb:["5T"],gunkshot:["5T"],foulplay:["5T","5S0"],darkpulse:["5T"],hypervoice:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T"]}}, - pansage:{learnset:{acrobatics:["5M","5L31"],astonish:["5E"],attract:["5M"],bite:["5L19","5S0"],bulletseed:["5E","5S0"],covet:["5E","5T"],crunch:["5L43"],cut:["5M"],dig:["5M","5S0","5S2"],doubleteam:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],fling:["5M","5L28"],frustration:["5M"],furyswipes:["5L13"],grassknot:["5M","5L34"],grasswhistle:["5E"],hiddenpower:["5M"],honeclaws:["5M"],leafstorm:["5E","5S1"],leechseed:["5L16"],leer:["5L4","5S1"],lick:["5L7","5S1"],lowkick:["5E","5T"],lowsweep:["5M"],magicalleaf:["5E"],nastyplot:["5E"],naturalgift:["5L40"],payback:["5M"],protect:["5M"],recycle:["5L37","5T"],rest:["5M"],"return":["5M"],rocksmash:["5M"],rocktomb:["5M","5S2"],roleplay:["5E","5T"],round:["5M"],scratch:["5L1"],seedbomb:["5L22","5T","5S2"],shadowclaw:["5M"],solarbeam:["5M","5S0","5S2"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],taunt:["5M"],thief:["5M"],tickle:["5E"],torment:["5M","5L25"],toxic:["5M"],vinewhip:["5L10","5S1"],workup:["5M"],gunkshot:["5T"],uproar:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],synthesis:["5T"],gigadrain:["5T"],worryseed:["5T"],helpinghand:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - simisage:{learnset:{acrobatics:["5M"],attract:["5M"],brickbreak:["5M"],cut:["5M"],dig:["5M"],doubleteam:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],fling:["5M"],focusblast:["5M"],frustration:["5M"],furyswipes:["5L1"],gigaimpact:["5M"],grassknot:["5M"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],leer:["5L1"],lick:["5L1"],lowsweep:["5M"],payback:["5M"],protect:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],seedbomb:["5L1","5T"],shadowclaw:["5M"],solarbeam:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],taunt:["5M"],thief:["5M"],torment:["5M"],toxic:["5M"],workup:["5M"],covet:["5T"],lowkick:["5T"],gunkshot:["5T"],uproar:["5T"],superpower:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],synthesis:["5T"],roleplay:["5T"],gigadrain:["5T"],worryseed:["5T"],helpinghand:["5T"],endeavor:["5T"],recycle:["5T"],sleeptalk:["5T"]}}, - pansear:{learnset:{acrobatics:["5M","5L31"],amnesia:["5L25"],astonish:["5E"],attract:["5M"],bite:["5L19"],covet:["5E","5T"],crunch:["5L43"],cut:["5M"],dig:["5M"],doubleteam:["5M"],facade:["5M"],fireblast:["5M","5L34"],firepunch:["5E","5T"],firespin:["5E"],flameburst:["5L22"],flamecharge:["5M"],flamethrower:["5M"],fling:["5M","5L28"],frustration:["5M"],furyswipes:["5L13"],grassknot:["5M"],heatwave:["5E","5T","5S0"],hiddenpower:["5M"],honeclaws:["5M"],incinerate:["5M","5L10","5S0"],leer:["5L4","5S0"],lick:["5L7","5S0"],lowkick:["5E","5T"],lowsweep:["5M"],nastyplot:["5E"],naturalgift:["5L40"],overheat:["5M"],payback:["5M"],protect:["5M"],recycle:["5L37","5T"],rest:["5M"],"return":["5M"],rocksmash:["5M"],rocktomb:["5M"],roleplay:["5E","5T"],round:["5M"],scratch:["5L1"],shadowclaw:["5M"],sleeptalk:["5E","5T"],solarbeam:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],taunt:["5M"],thief:["5M"],tickle:["5E"],torment:["5M"],toxic:["5M"],willowisp:["5M"],workup:["5M"],yawn:["5L16"],gunkshot:["5T"],uproar:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],helpinghand:["5T"],endeavor:["5T"]}}, - simisear:{learnset:{acrobatics:["5M"],attract:["5M"],brickbreak:["5M"],cut:["5M"],dig:["5M"],doubleteam:["5M"],facade:["5M"],fireblast:["5M"],flameburst:["5L1"],flamecharge:["5M"],flamethrower:["5M"],fling:["5M"],focusblast:["5M"],frustration:["5M"],furyswipes:["5L1"],gigaimpact:["5M"],grassknot:["5M"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],incinerate:["5M"],leer:["5L1"],lick:["5L1"],lowsweep:["5M"],overheat:["5M"],payback:["5M"],protect:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],shadowclaw:["5M"],solarbeam:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],taunt:["5M"],thief:["5M"],torment:["5M"],toxic:["5M"],willowisp:["5M"],workup:["5M"],covet:["5T"],lowkick:["5T"],gunkshot:["5T"],uproar:["5T"],firepunch:["5T"],superpower:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],heatwave:["5T"],roleplay:["5T"],helpinghand:["5T"],endeavor:["5T"],recycle:["5T"],sleeptalk:["5T"]}}, - panpour:{learnset:{acrobatics:["5M","5L31"],aquaring:["5E"],aquatail:["5E","5T"],astonish:["5E"],attract:["5M"],bite:["5L19"],blizzard:["5M"],brine:["5L34"],covet:["5E","5T"],crunch:["5L43"],cut:["5M"],dig:["5M"],dive:["5M"],doubleteam:["5M"],facade:["5M"],fling:["5M","5L28"],frustration:["5M"],furyswipes:["5L13"],grassknot:["5M"],hail:["5M"],hiddenpower:["5M"],honeclaws:["5M"],hydropump:["5E","5S0"],icebeam:["5M"],leer:["5L4","5S0"],lick:["5L7","5S0"],lowkick:["5E","5T"],lowsweep:["5M"],mudsport:["5E"],nastyplot:["5E"],naturalgift:["5L40"],payback:["5M"],protect:["5M"],raindance:["5M"],recycle:["5L37","5T"],rest:["5M"],"return":["5M"],rocksmash:["5M"],rocktomb:["5M"],roleplay:["5E","5T"],round:["5M"],scald:["5M","5L22"],scratch:["5L1"],shadowclaw:["5M"],substitute:["5M"],surf:["5M"],swagger:["5M"],taunt:["5M","5L25"],thief:["5M"],tickle:["5E"],torment:["5M"],toxic:["5M"],waterfall:["5M"],watergun:["5L10","5S0"],watersport:["5L16"],workup:["5M"],gunkshot:["5T"],uproar:["5T"],icepunch:["5T"],icywind:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],helpinghand:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - simipour:{learnset:{acrobatics:["5M"],attract:["5M"],blizzard:["5M"],brickbreak:["5M"],cut:["5M"],dig:["5M"],dive:["5M"],doubleteam:["5M"],facade:["5M"],fling:["5M"],focusblast:["5M"],frustration:["5M"],furyswipes:["5L1"],gigaimpact:["5M"],grassknot:["5M"],hail:["5M"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],icebeam:["5M"],leer:["5L1"],lick:["5L1"],lowsweep:["5M"],payback:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],scald:["5M","5L1"],shadowclaw:["5M"],substitute:["5M"],surf:["5M"],swagger:["5M"],taunt:["5M"],thief:["5M"],torment:["5M"],toxic:["5M"],waterfall:["5M"],workup:["5M"],covet:["5T"],lowkick:["5T"],gunkshot:["5T"],uproar:["5T"],icepunch:["5T"],superpower:["5T"],icywind:["5T"],aquatail:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],helpinghand:["5T"],endeavor:["5T"],recycle:["5T"],sleeptalk:["5T"]}}, - munna:{learnset:{attract:["5M"],barrier:["5E"],batonpass:["5E"],calmmind:["5M","5L35"],chargebeam:["5M"],curse:["5E"],defensecurl:["5L1"],doubleteam:["5M"],dreameater:["5M","5L41"],energyball:["5M"],facade:["5M"],flash:["5M"],frustration:["5M"],futuresight:["5L31"],gyroball:["5M"],helpinghand:["5E","5T"],hiddenpower:["5M"],hypnosis:["5L19"],imprison:["5L13"],lightscreen:["5M"],luckychant:["5L5"],magiccoat:["5E","5T"],moonlight:["5L17"],nightmare:["5L29"],protect:["5M"],psybeam:["5L11"],psychic:["5M","5L37"],psychup:["5M"],psyshock:["5M"],psywave:["5L1"],raindance:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocktomb:["5M"],round:["5M"],safeguard:["5M"],secretpower:["5E"],shadowball:["5M"],sleeptalk:["5E","5T"],sonicboom:["5E"],storedpower:["5L47"],substitute:["5M"],swagger:["5M"],swift:["5E"],synchronoise:["5L25"],telekinesis:["5M","5L43"],thunderwave:["5M"],torment:["5M"],toxic:["5M"],trickroom:["5M"],yawn:["5L7"],zenheadbutt:["5L23","5T"],signalbeam:["5T"],gravity:["5T"],snore:["5T"],healbell:["5T"],painsplit:["5T"],worryseed:["5T"],afteryou:["5T"],trick:["5T"],wonderroom:["5T"],skillswap:["5T"]}}, - musharna:{learnset:{attract:["5M"],calmmind:["5M"],chargebeam:["5M"],defensecurl:["5L1","5S0"],doubleteam:["5M"],dreameater:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],frustration:["5M"],gigaimpact:["5M"],gyroball:["5M"],hiddenpower:["5M"],hyperbeam:["5M"],hypnosis:["5L1","5S0"],lightscreen:["5M"],luckychant:["5L1","5S0"],protect:["5M"],psybeam:["5L1","5S0"],psychic:["5M"],psychup:["5M"],psyshock:["5M"],raindance:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocktomb:["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M"],substitute:["5M"],swagger:["5M"],telekinesis:["5M"],thunderwave:["5M"],torment:["5M"],toxic:["5M"],trickroom:["5M"],signalbeam:["5T"],magiccoat:["5T"],gravity:["5T"],zenheadbutt:["5T"],snore:["5T"],healbell:["5T"],painsplit:["5T"],worryseed:["5T"],afteryou:["5T"],helpinghand:["5T"],trick:["5T"],wonderroom:["5T"],sleeptalk:["5T"],skillswap:["5T"]}}, - pidove:{learnset:{aerialace:["5M"],aircutter:["5L15","5S0"],airslash:["5L29"],attract:["5M"],bestow:["5E"],detect:["5L22"],doubleteam:["5M"],echoedvoice:["5M"],facade:["5M","5L43"],featherdance:["5L36"],fly:["5M"],frustration:["5M"],growl:["5L4"],gust:["5L1","5S0","5D"],hiddenpower:["5M"],hypnosis:["5E","5D"],leer:["5L8"],luckychant:["5E"],morningsun:["5E","5D"],pluck:["5M"],protect:["5M"],quickattack:["5L11","5S0"],raindance:["5M"],razorwind:["5L32"],rest:["5M"],"return":["5M"],roost:["5L18","5T"],round:["5M"],skyattack:["5L50","5T"],steelwing:["5E"],substitute:["5M"],sunnyday:["5M"],swagger:["5M","5L39"],tailwind:["5L46","5T"],taunt:["5M","5L25"],toxic:["5M"],uproar:["5E","5T"],uturn:["5M"],wish:["5E"],workup:["5M"],snore:["5T"],heatwave:["5T"],sleeptalk:["5T"]}}, - tranquill:{learnset:{aerialace:["5M"],aircutter:["5L15"],airslash:["5L32"],attract:["5M"],detect:["5L23"],doubleteam:["5M"],echoedvoice:["5M"],facade:["5M","5L50"],featherdance:["5L41"],fly:["5M"],frustration:["5M"],growl:["5L1","5L4"],gust:["5L1"],hiddenpower:["5M"],leer:["5L1","5L8"],pluck:["5M"],protect:["5M"],quickattack:["5L1","5L11"],raindance:["5M"],razorwind:["5L36"],rest:["5M"],"return":["5M"],roost:["5L18","5T"],round:["5M"],skyattack:["5L59","5T"],substitute:["5M"],sunnyday:["5M"],swagger:["5M","5L45"],tailwind:["5L54","5T"],taunt:["5M","5L27"],toxic:["5M"],uturn:["5M"],workup:["5M"],uproar:["5T"],snore:["5T"],heatwave:["5T"],sleeptalk:["5T"]}}, - unfezant:{learnset:{aerialace:["5M"],aircutter:["5L15"],airslash:["5L33"],attract:["5M"],detect:["5L23"],doubleteam:["5M"],echoedvoice:["5M"],facade:["5M","5L55"],featherdance:["5L44"],fly:["5M"],frustration:["5M"],gigaimpact:["5M"],growl:["5L1","5L4"],gust:["5L1"],hiddenpower:["5M"],hyperbeam:["5M"],leer:["5L1","5L8"],pluck:["5M"],protect:["5M"],psychup:["5M"],quickattack:["5L1","5L11"],raindance:["5M"],razorwind:["5L38"],rest:["5M"],"return":["5M"],roost:["5L18","5T"],round:["5M"],skyattack:["5L66","5T"],substitute:["5M"],sunnyday:["5M"],swagger:["5M","5L49"],tailwind:["5L60","5T"],taunt:["5M","5L27"],toxic:["5M"],uturn:["5M"],workup:["5M"],uproar:["5T"],snore:["5T"],heatwave:["5T"],sleeptalk:["5T"]}}, - blitzle:{learnset:{agility:["5L36"],attract:["5M"],charge:["5L8"],chargebeam:["5M"],discharge:["5L32"],doubleedge:["5E"],doublekick:["5E"],doubleteam:["5M"],endure:["5E"],facade:["5M"],flamecharge:["5M","5L18"],flash:["5M"],frustration:["5M"],hiddenpower:["5M"],lightscreen:["5M"],mefirst:["5E"],protect:["5M"],pursuit:["5L22"],quickattack:["5L1"],rage:["5E"],raindance:["5M"],rest:["5M"],"return":["5M"],round:["5M"],sandattack:["5E"],screech:["5E"],shockwave:["5E","5L11"],spark:["5L25"],stomp:["5L29"],substitute:["5M"],swagger:["5M"],tailwhip:["5L4"],takedown:["5E"],thrash:["5L43"],thunder:["5M"],thunderbolt:["5M"],thunderwave:["5M","5L15"],toxic:["5M"],voltswitch:["5M"],wildcharge:["5M","5L39"],signalbeam:["5T"],bounce:["5T"],magnetrise:["5T"],snore:["5T"],sleeptalk:["5T"]}}, - zebstrika:{learnset:{agility:["5L42"],attract:["5M"],charge:["5L1","5L8"],chargebeam:["5M"],discharge:["5L36"],doubleteam:["5M"],facade:["5M"],flamecharge:["5M","5L18"],flash:["5M"],frustration:["5M"],gigaimpact:["5M"],hiddenpower:["5M"],hyperbeam:["5M"],lightscreen:["5M"],overheat:["5M"],protect:["5M"],pursuit:["5L22"],quickattack:["5L1"],raindance:["5M"],rest:["5M"],"return":["5M"],rocksmash:["5M"],round:["5M"],shockwave:["5L11"],spark:["5L25"],stomp:["5L31"],substitute:["5M"],swagger:["5M"],tailwhip:["5L1","5L4"],thrash:["5L53"],thunder:["5M"],thunderbolt:["5M"],thunderwave:["5M","5L1","5L15"],toxic:["5M"],voltswitch:["5M"],wildcharge:["5M","5L47"],signalbeam:["5T"],bounce:["5T"],magnetrise:["5T"],snore:["5T"],sleeptalk:["5T"]}}, - roggenrola:{learnset:{attract:["5M"],autotomize:["5E"],bulldoze:["5M"],curse:["5E"],doubleteam:["5M"],earthquake:["5M"],explosion:["5M","5L40"],facade:["5M"],flashcannon:["5M"],frustration:["5M"],gravity:["5E","5T"],harden:["5L4"],headbutt:["5L10"],heavyslam:["5E"],hiddenpower:["5M"],irondefense:["5L20","5T"],lockon:["5E"],magnitude:["5E"],mudslap:["5L17"],protect:["5M"],rest:["5M"],"return":["5M"],rockblast:["5L14"],rockpolish:["5M"],rockslide:["5M","5L27"],rocksmash:["5M"],rocktomb:["5E","5M"],round:["5M"],sandattack:["5L7"],sandstorm:["5M","5L33"],smackdown:["5M","5L23"],stealthrock:["5L30","5T"],stoneedge:["5M","5L36"],strength:["5M"],substitute:["5M"],swagger:["5M"],tackle:["5L1"],takedown:["5E"],toxic:["5M"],block:["5T"],earthpower:["5T"],snore:["5T"],sleeptalk:["5T"]}}, - boldore:{learnset:{attract:["5M"],bulldoze:["5M"],doubleteam:["5M"],earthquake:["5M"],explosion:["5M","5L55"],facade:["5M"],flashcannon:["5M"],frustration:["5M"],harden:["5L1","5L4"],headbutt:["5L1","5L10"],hiddenpower:["5M"],irondefense:["5L20","5T"],mudslap:["5L17"],powergem:["5L25"],protect:["5M"],rest:["5M"],"return":["5M"],rockblast:["5L14"],rockpolish:["5M"],rockslide:["5M","5L30"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],sandattack:["5L1","5L7"],sandstorm:["5M","5L42"],smackdown:["5M","5L23","5D"],stealthrock:["5L36","5T"],stoneedge:["5M","5L48"],strength:["5M"],substitute:["5M"],swagger:["5M"],tackle:["5L1"],toxic:["5M"],block:["5T"],earthpower:["5T"],gravity:["5T"],snore:["5T"],sleeptalk:["5T"],curse:["5D"],heavyslam:["5D"]}}, - gigalith:{learnset:{attract:["5M"],bulldoze:["5M"],doubleteam:["5M"],earthquake:["5M"],explosion:["5M","5L55"],facade:["5M"],flashcannon:["5M"],frustration:["5M"],gigaimpact:["5M"],harden:["5L1","5L4"],headbutt:["5L1","5L10"],hiddenpower:["5M"],hyperbeam:["5M"],irondefense:["5L20","5T"],mudslap:["5L17"],powergem:["5L25"],protect:["5M"],rest:["5M"],"return":["5M"],rockblast:["5L14"],rockpolish:["5M"],rockslide:["5M","5L30"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],sandattack:["5L1","5L7"],sandstorm:["5M","5L42"],smackdown:["5M","5L23"],solarbeam:["5M"],stealthrock:["5L36","5T"],stoneedge:["5M","5L48"],strength:["5M"],substitute:["5M"],swagger:["5M"],tackle:["5L1"],toxic:["5M"],ironhead:["5T"],block:["5T"],earthpower:["5T"],gravity:["5T"],superpower:["5T"],snore:["5T"],sleeptalk:["5T"]}}, - woobat:{learnset:{acrobatics:["5M"],aerialace:["5M"],aircutter:["5L21"],airslash:["5L32"],amnesia:["5L29"],assurance:["5L12"],attract:["5M","5L25"],calmmind:["5M","5L29"],chargebeam:["5M"],charm:["5E"],confusion:["5L1"],doubleteam:["5M"],dreameater:["5M"],embargo:["5M"],endeavor:["5L47","5T"],energyball:["5M"],facade:["5M"],faketears:["5E"],flash:["5M"],flatter:["5E"],fly:["5M"],frustration:["5M"],futuresight:["5L36"],gust:["5L8"],gyroball:["5M"],heartstamp:["5L15"],helpinghand:["5E","5T"],hiddenpower:["5M"],imprison:["5L19"],knockoff:["5E","5T"],lightscreen:["5M"],odorsleuth:["5L4"],pluck:["5M"],protect:["5M"],psychic:["5M","5L41"],psychup:["5M"],psyshock:["5M"],raindance:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],roost:["5E","5T"],round:["5M"],safeguard:["5M"],shadowball:["5M"],storedpower:["5E"],substitute:["5M"],supersonic:["5E"],swagger:["5M"],synchronoise:["5E"],taunt:["5M"],telekinesis:["5M"],thief:["5M"],thunderwave:["5M"],torment:["5M"],toxic:["5M"],trickroom:["5M"],uturn:["5M"],superfang:["5T"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],zenheadbutt:["5T"],snore:["5T"],heatwave:["5T"],tailwind:["5T"],gigadrain:["5T"],afteryou:["5T"],trick:["5T"],sleeptalk:["5T"],skillswap:["5T"]}}, - swoobat:{learnset:{acrobatics:["5M"],aerialace:["5M"],aircutter:["5L21"],airslash:["5L32"],amnesia:["5L29"],assurance:["5L1","5L12"],attract:["5M","5L25"],calmmind:["5M","5L29"],chargebeam:["5M"],confusion:["5L1"],doubleteam:["5M"],dreameater:["5M"],embargo:["5M"],endeavor:["5L47","5T"],energyball:["5M"],facade:["5M"],flash:["5M"],fly:["5M"],frustration:["5M"],futuresight:["5L36"],gigaimpact:["5M"],gust:["5L1","5L8"],gyroball:["5M"],heartstamp:["5L15"],hiddenpower:["5M"],hyperbeam:["5M"],imprison:["5L19"],lightscreen:["5M"],odorsleuth:["5L1","5L4"],pluck:["5M"],protect:["5M"],psychic:["5M","5L41"],psychup:["5M"],psyshock:["5M"],raindance:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M"],substitute:["5M"],swagger:["5M"],taunt:["5M"],telekinesis:["5M"],thief:["5M"],thunderwave:["5M"],torment:["5M"],toxic:["5M"],trickroom:["5M"],uturn:["5M"],superfang:["5T"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],zenheadbutt:["5T"],snore:["5T"],knockoff:["5T"],heatwave:["5T"],tailwind:["5T"],skyattack:["5T"],gigadrain:["5T"],roost:["5T"],afteryou:["5T"],helpinghand:["5T"],trick:["5T"],sleeptalk:["5T"],skillswap:["5T"]}}, - drilbur:{learnset:{aerialace:["5M"],attract:["5M"],brickbreak:["5M"],bulldoze:["5M"],crushclaw:["5E"],cut:["5M"],dig:["5M","5L19"],doubleteam:["5M"],drillrun:["5L43","5T"],earthpower:["5E","5T"],earthquake:["5M","5L33"],facade:["5M"],fissure:["5L47"],fling:["5M"],frustration:["5M"],furyswipes:["5L12"],hiddenpower:["5M"],honeclaws:["5M","5L22"],irondefense:["5E","5T"],metalclaw:["5L15"],metalsound:["5E","5D"],mudslap:["5L8"],mudsport:["5L1"],poisonjab:["5M"],protect:["5M"],rapidspin:["5E","5L5","5D"],rest:["5M"],"return":["5M"],rockclimb:["5E","5D"],rockslide:["5M","5L29"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],sandstorm:["5M","5L40"],scratch:["5L1"],shadowclaw:["5M"],skullbash:["5E"],slash:["5L26"],sludgebomb:["5M"],strength:["5M"],submission:["5E"],substitute:["5M"],swagger:["5M"],swordsdance:["5M","5L36"],toxic:["5M"],xscissor:["5M"],snore:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - excadrill:{learnset:{aerialace:["5M"],attract:["5M"],brickbreak:["5M"],bulldoze:["5M"],cut:["5M"],dig:["5M","5L19"],doubleteam:["5M"],drillrun:["5L55","5T"],earthquake:["5M","5L36"],facade:["5M"],fissure:["5L62"],fling:["5M"],focusblast:["5M"],frustration:["5M"],furyswipes:["5L12"],gigaimpact:["5M"],hiddenpower:["5M"],honeclaws:["5M","5L22"],horndrill:["5L31"],hyperbeam:["5M"],metalclaw:["5L15"],mudslap:["5L1","5L8"],mudsport:["5L1"],poisonjab:["5M"],protect:["5M"],rapidspin:["5L1","5L5"],rest:["5M"],"return":["5M"],rockslide:["5M","5L29"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],sandstorm:["5M","5L49"],scratch:["5L1"],shadowclaw:["5M"],slash:["5L26"],sludgebomb:["5M"],strength:["5M"],substitute:["5M"],swagger:["5M"],swordsdance:["5M","5L42"],toxic:["5M"],xscissor:["5M"],ironhead:["5T"],earthpower:["5T"],magnetrise:["5T"],irondefense:["5T"],snore:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - audino:{learnset:{afteryou:["5L40","5T"],amnesia:["5E"],attract:["5M","5L15"],bestow:["5E"],blizzard:["5M"],calmmind:["5M"],chargebeam:["5M"],dig:["5M"],doubleedge:["5L50"],doubleslap:["5L10","5S0"],doubleteam:["5M"],dreameater:["5M"],echoedvoice:["5M"],encore:["5E","5D"],entrainment:["5L25"],facade:["5M"],fireblast:["5M"],flamethrower:["5M"],flash:["5M"],fling:["5M"],frustration:["5M"],grassknot:["5M"],growl:["5L1"],healbell:["5E","5T"],healingwish:["5E"],healpulse:["5L35","5S0","5S1"],helpinghand:["5L1","5S0","5S1","5T","5D"],hiddenpower:["5M"],hyperbeam:["5M"],icebeam:["5M"],incinerate:["5M"],lastresort:["5L55","5T"],lightscreen:["5M"],luckychant:["5E"],pound:["5L1"],present:["5S1"],protect:["5M"],psychic:["5M"],psychup:["5M"],psyshock:["5M"],raindance:["5M"],reflect:["5M"],refresh:["5L5","5S0","5S1"],rest:["5M"],retaliate:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],secretpower:["5L20"],shadowball:["5M"],simplebeam:["5L45"],sleeptalk:["5E","5T"],solarbeam:["5M"],substitute:["5M"],sunnyday:["5M"],surf:["5M"],swagger:["5M"],sweetkiss:["5E"],takedown:["5L30"],telekinesis:["5M"],thunder:["5M"],thunderbolt:["5M"],thunderwave:["5M"],toxic:["5M"],trickroom:["5M"],wildcharge:["5M"],wish:["5E"],workup:["5M"],yawn:["5E","5D"],covet:["5T"],signalbeam:["5T"],lowkick:["5T"],uproar:["5T"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],magiccoat:["5T"],gravity:["5T"],icywind:["5T"],zenheadbutt:["5T"],hypervoice:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],painsplit:["5T"],drainpunch:["5T"],snatch:["5T"],skillswap:["5T"]}}, - timburr:{learnset:{attract:["5M"],bide:["5L8"],brickbreak:["5M"],bulkup:["5M","5L28"],chipaway:["5L24"],cometpunch:["5E"],counter:["5E"],detect:["5E"],dig:["5M"],doubleteam:["5M"],drainpunch:["5E","5T"],dynamicpunch:["5L34"],endure:["5E"],facade:["5M"],fling:["5M"],focusblast:["5M"],focusenergy:["5L4"],focuspunch:["5L46"],forcepalm:["5E"],foresight:["5E"],frustration:["5M"],grassknot:["5M"],hammerarm:["5L40"],hiddenpower:["5M"],leer:["5L1"],lowkick:["5L12","5T"],lowsweep:["5M"],machpunch:["5E"],payback:["5M"],poisonjab:["5M"],pound:["5L1"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],reversal:["5E"],rockslide:["5M","5L31"],rocksmash:["5M"],rockthrow:["5L16"],rocktomb:["5M"],round:["5M"],scaryface:["5L37"],smackdown:["5M"],smellingsalt:["5E"],stoneedge:["5M","5L43"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],superpower:["5L49","5T"],swagger:["5M"],taunt:["5M"],toxic:["5M"],wakeupslap:["5L20"],wideguard:["5E"],workup:["5M"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],block:["5T"],snore:["5T"],knockoff:["5T"],helpinghand:["5T"],sleeptalk:["5T"]}}, - gurdurr:{learnset:{attract:["5M"],bide:["5L1","5L8"],brickbreak:["5M"],bulkup:["5M","5L29"],chipaway:["5L24"],dig:["5M"],doubleteam:["5M"],dynamicpunch:["5L37"],facade:["5M"],fling:["5M"],focusblast:["5M"],focusenergy:["5L1","5L4"],focuspunch:["5L53"],frustration:["5M"],grassknot:["5M"],hammerarm:["5L45"],hiddenpower:["5M"],leer:["5L1"],lowkick:["5L12","5T","5D"],lowsweep:["5M"],machpunch:["5D"],payback:["5M"],poisonjab:["5M"],pound:["5L1"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],rockslide:["5M","5L33"],rocksmash:["5M"],rockthrow:["5L16"],rocktomb:["5M"],round:["5M"],scaryface:["5L41"],smackdown:["5M"],stoneedge:["5M","5L49"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],superpower:["5L57","5T"],swagger:["5M"],taunt:["5M"],toxic:["5M"],wakeupslap:["5L20"],workup:["5M"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],block:["5T"],snore:["5T"],knockoff:["5T"],drainpunch:["5T","5D"],helpinghand:["5T"],sleeptalk:["5T"]}}, - conkeldurr:{learnset:{attract:["5M"],bide:["5L1","5L8"],brickbreak:["5M"],bulkup:["5M","5L29"],bulldoze:["5M"],chipaway:["5L24"],dig:["5M"],doubleteam:["5M"],dynamicpunch:["5L37"],earthquake:["5M"],facade:["5M"],fling:["5M"],focusblast:["5M"],focusenergy:["5L1","5L4"],focuspunch:["5L53"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],hammerarm:["5L45"],hiddenpower:["5M"],hyperbeam:["5M"],leer:["5L1"],lowkick:["5L12","5T"],lowsweep:["5M"],payback:["5M"],poisonjab:["5M"],pound:["5L1"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],rockslide:["5M","5L33"],rocksmash:["5M"],rockthrow:["5L16"],rocktomb:["5M"],round:["5M"],scaryface:["5L41"],smackdown:["5M"],stoneedge:["5M","5L49"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],superpower:["5L57","5T"],swagger:["5M"],taunt:["5M"],toxic:["5M"],wakeupslap:["5L20"],workup:["5M"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],block:["5T"],snore:["5T"],knockoff:["5T"],drainpunch:["5T"],helpinghand:["5T"],sleeptalk:["5T"]}}, - tympole:{learnset:{aquaring:["5L20"],attract:["5M"],bubble:["5L1"],bubblebeam:["5L12"],doubleteam:["5M"],earthpower:["5E","5T","5D"],echoedvoice:["5M","5L38"],facade:["5M"],flail:["5L34"],frustration:["5M"],growl:["5L1"],hail:["5M"],hiddenpower:["5M"],hydropump:["5L42"],hypervoice:["5L45","5T"],mist:["5E"],mudbomb:["5E"],muddywater:["5L27"],mudshot:["5L16"],mudsport:["5E"],protect:["5M"],raindance:["5M","5L31"],refresh:["5E"],rest:["5M"],"return":["5M"],round:["5M","5L9","5D"],scald:["5M"],sleeptalk:["5E","5T"],sludgebomb:["5M"],sludgewave:["5M"],snore:["5E","5T"],substitute:["5M"],supersonic:["5L5"],surf:["5M"],swagger:["5M"],toxic:["5M"],uproar:["5L23","5T"],waterpulse:["5E","5D"],bounce:["5T"],icywind:["5T"],endeavor:["5T"]}}, - palpitoad:{learnset:{aquaring:["5L20"],attract:["5M"],bubble:["5L1"],bubblebeam:["5L12"],bulldoze:["5M"],doubleteam:["5M"],echoedvoice:["5M","5L42"],facade:["5M"],flail:["5L37"],frustration:["5M"],growl:["5L1"],hail:["5M"],hiddenpower:["5M"],hydropump:["5L47"],hypervoice:["5L51","5T"],muddywater:["5L28"],mudshot:["5L16"],protect:["5M"],raindance:["5M","5L33"],rest:["5M"],"return":["5M"],rocksmash:["5M"],round:["5M","5L1","5L9"],scald:["5M"],sludgebomb:["5M"],sludgewave:["5M"],substitute:["5M"],supersonic:["5L1","5L5"],surf:["5M"],swagger:["5M"],toxic:["5M"],uproar:["5L23","5T"],bounce:["5T"],earthpower:["5T"],icywind:["5T"],snore:["5T"],gastroacid:["5T"],endeavor:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - seismitoad:{learnset:{acid:["5L36"],aquaring:["5L20"],attract:["5M"],brickbreak:["5M"],bubble:["5L1"],bubblebeam:["5L12"],bulldoze:["5M"],dig:["5M"],doubleteam:["5M"],drainpunch:["5L44","5T"],earthquake:["5M"],echoedvoice:["5M","5L49"],facade:["5M"],flail:["5L39"],fling:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],growl:["5L1"],hail:["5M"],hiddenpower:["5M"],hydropump:["5L53"],hyperbeam:["5M"],hypervoice:["5L59","5T"],muddywater:["5L28"],mudshot:["5L16"],payback:["5M"],poisonjab:["5M"],protect:["5M"],raindance:["5M","5L33"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M","5L1","5L9"],scald:["5M"],sludgebomb:["5M"],sludgewave:["5M"],strength:["5M"],substitute:["5M"],supersonic:["5L1","5L5"],surf:["5M"],swagger:["5M"],toxic:["5M"],uproar:["5L23","5T"],venoshock:["5M"],bounce:["5T"],lowkick:["5T"],icepunch:["5T"],earthpower:["5T"],icywind:["5T"],snore:["5T"],knockoff:["5T"],gastroacid:["5T"],endeavor:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - throh:{learnset:{attract:["5M"],bide:["5L5"],bind:["5L1","5T","5D"],bodyslam:["5L29"],brickbreak:["5M"],bulkup:["5M","5L33"],bulldoze:["5M"],circlethrow:["5L37"],dig:["5M"],doubleteam:["5M"],earthquake:["5M"],endure:["5L41"],facade:["5M"],fling:["5M"],focusblast:["5M"],focusenergy:["5L9"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],hiddenpower:["5M"],leer:["5L1"],lowsweep:["5M"],payback:["5M"],poisonjab:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],revenge:["5L21"],reversal:["5L53"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],seismictoss:["5L13"],stoneedge:["5M"],stormthrow:["5L25"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],superpower:["5L49","5T","5D"],swagger:["5M"],taunt:["5M"],toxic:["5M"],vitalthrow:["5L17"],wideguard:["5L45"],workup:["5M"],lowkick:["5T"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T","5D"],block:["5T"],snore:["5T"],knockoff:["5T"],painsplit:["5T"],helpinghand:["5T"],sleeptalk:["5T"]}}, - sawk:{learnset:{attract:["5M"],bide:["5L5"],brickbreak:["5M","5L29"],bulkup:["5M","5L33"],bulldoze:["5M"],closecombat:["5L49"],counter:["5L21"],dig:["5M"],doublekick:["5L13"],doubleteam:["5M"],earthquake:["5M"],endure:["5L41"],facade:["5M"],fling:["5M"],focusblast:["5M"],focusenergy:["5L9"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],hiddenpower:["5M"],karatechop:["5L25"],leer:["5L1"],lowsweep:["5M","5L17"],payback:["5M"],poisonjab:["5M"],protect:["5M"],quickguard:["5L45"],raindance:["5M"],rest:["5M"],retaliate:["5M","5L37"],"return":["5M"],reversal:["5L53"],rockslide:["5M"],rocksmash:["5M","5L1","5D"],rocktomb:["5M"],round:["5M"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],taunt:["5M"],toxic:["5M"],workup:["5M"],dualchop:["5T","5D"],lowkick:["5T"],thunderpunch:["5T","5D"],firepunch:["5T"],icepunch:["5T"],block:["5T"],superpower:["5T"],snore:["5T"],knockoff:["5T"],painsplit:["5T"],helpinghand:["5T"],sleeptalk:["5T"]}}, - sewaddle:{learnset:{agility:["5E"],airslash:["5E"],attract:["5M"],batonpass:["5E"],bugbite:["5L8","5T"],bugbuzz:["5L36"],calmmind:["5M"],camouflage:["5E"],cut:["5M"],doubleteam:["5M"],dreameater:["5M"],endure:["5L29"],energyball:["5M"],facade:["5M"],flail:["5L43"],flash:["5M"],frustration:["5M"],grassknot:["5M"],hiddenpower:["5M"],lightscreen:["5M"],mefirst:["5E"],mindreader:["5E"],payback:["5M"],protect:["5M"],razorleaf:["5L15"],razorwind:["5E"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],screech:["5E"],silverwind:["5E"],solarbeam:["5M"],stringshot:["5L1"],strugglebug:["5M","5L22"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],tackle:["5L1"],toxic:["5M"],signalbeam:["5T"],seedbomb:["5T"],magiccoat:["5T"],irondefense:["5T"],electroweb:["5T"],snore:["5T"],synthesis:["5T"],gigadrain:["5T"],worryseed:["5T"],sleeptalk:["5T"]}}, - swadloon:{learnset:{attract:["5M"],bugbite:["5L1","5T"],calmmind:["5M"],cut:["5M"],doubleteam:["5M"],dreameater:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],frustration:["5M"],grassknot:["5M"],grasswhistle:["5L1"],hiddenpower:["5M"],lightscreen:["5M"],payback:["5M"],protect:["5M","5L20"],razorleaf:["5L1"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],solarbeam:["5M"],stringshot:["5L1"],strugglebug:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],tackle:["5L1"],toxic:["5M"],signalbeam:["5T"],seedbomb:["5T"],magiccoat:["5T"],irondefense:["5T"],electroweb:["5T"],snore:["5T"],synthesis:["5T"],gigadrain:["5T"],worryseed:["5T"],sleeptalk:["5T"]}}, - leavanny:{learnset:{aerialace:["5M"],attract:["5M"],bugbite:["5L1","5L8","5T"],calmmind:["5M"],cut:["5M"],doubleteam:["5M"],dreameater:["5M"],energyball:["5M"],entrainment:["5L43"],facade:["5M"],falseswipe:["5M","5L1"],flash:["5M"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],helpinghand:["5L32","5T"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],leafblade:["5L36"],leafstorm:["5L50"],lightscreen:["5M"],payback:["5M"],poisonjab:["5M"],protect:["5M"],razorleaf:["5L1","5L15"],reflect:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],shadowclaw:["5M"],slash:["5L29"],solarbeam:["5M"],stringshot:["5L1"],strugglebug:["5M","5L22"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swordsdance:["5M","5L46"],tackle:["5L1"],toxic:["5M"],xscissor:["5M","5L39"],signalbeam:["5T"],seedbomb:["5T"],magiccoat:["5T"],irondefense:["5T"],electroweb:["5T"],snore:["5T"],knockoff:["5T"],synthesis:["5T"],healbell:["5T"],gigadrain:["5T"],worryseed:["5T"],sleeptalk:["5T"]}}, - venipede:{learnset:{agility:["5L29"],attract:["5M"],bugbite:["5L22","5T"],defensecurl:["5L1"],doubleedge:["5L43"],doubleteam:["5M"],facade:["5M"],frustration:["5M"],gyroball:["5M"],hiddenpower:["5M"],payback:["5M"],pinmissile:["5E"],poisonjab:["5M"],poisonsting:["5L5"],poisontail:["5L19"],protect:["5M","5L15"],pursuit:["5L12"],rest:["5M"],"return":["5M"],rockclimb:["5E","5L40"],rocksmash:["5M"],rollout:["5L1"],round:["5M"],screech:["5L8"],sludgebomb:["5M"],solarbeam:["5M"],spikes:["5E"],steamroller:["5L33"],strugglebug:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],takedown:["5E"],toxic:["5M","5L36"],toxicspikes:["5E"],twineedle:["5E"],venoshock:["5M","5L26"],irondefense:["5T"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - whirlipede:{learnset:{agility:["5L32"],attract:["5M"],bugbite:["5L23","5T"],defensecurl:["5L1"],doubleedge:["5L50"],doubleteam:["5M"],facade:["5M"],frustration:["5M"],gyroball:["5M"],hiddenpower:["5M"],irondefense:["5L22","5T"],payback:["5M"],poisonjab:["5M"],poisonsting:["5L1","5L5"],poisontail:["5L19"],protect:["5M","5L15"],pursuit:["5L12"],rest:["5M"],"return":["5M"],rockclimb:["5L46"],rocksmash:["5M"],rollout:["5L1"],round:["5M"],screech:["5L1","5L8"],sludgebomb:["5M"],solarbeam:["5M"],steamroller:["5L37"],strugglebug:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],toxic:["5M","5L41"],venoshock:["5M","5L28"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - scolipede:{learnset:{agility:["5L33"],attract:["5M"],batonpass:["5L30"],bugbite:["5L23","5T"],bulldoze:["5M"],cut:["5M"],defensecurl:["5L1"],dig:["5M"],doubleedge:["5L55"],doubleteam:["5M"],earthquake:["5M"],facade:["5M"],frustration:["5M"],gigaimpact:["5M"],gyroball:["5M"],hiddenpower:["5M"],hyperbeam:["5M"],megahorn:["5L1"],payback:["5M"],poisonjab:["5M"],poisonsting:["5L1","5L5"],poisontail:["5L19","5D"],protect:["5M","5L15"],pursuit:["5L12"],rest:["5M"],"return":["5M"],rockclimb:["5L50"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],rollout:["5L1"],round:["5M"],screech:["5L1","5L8"],sludgebomb:["5M"],solarbeam:["5M"],steamroller:["5L39"],strength:["5M"],strugglebug:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swordsdance:["5M"],toxic:["5M","5L44"],venoshock:["5M","5L28"],xscissor:["5M"],irondefense:["5T"],superpower:["5T","5D"],aquatail:["5T"],irontail:["5T"],snore:["5T"],endeavor:["5T"],snatch:["5T"],sleeptalk:["5T"],toxicspikes:["5D"]}}, - cottonee:{learnset:{absorb:["5L1"],attract:["5M"],beatup:["5E"],charm:["5L28"],cottonguard:["5L37"],cottonspore:["5L17"],doubleteam:["5M"],dreameater:["5M"],encore:["5E","5D"],endeavor:["5L44","5T"],energyball:["5M","5L35"],facade:["5M"],faketears:["5E"],flash:["5M"],frustration:["5M"],gigadrain:["5L26","5T"],grassknot:["5M"],grasswhistle:["5E"],growth:["5L4"],helpinghand:["5L31","5T"],hiddenpower:["5M"],leechseed:["5L8","5D"],megadrain:["5L13"],memento:["5E"],naturalgift:["5E"],poisonpowder:["5L22"],protect:["5M"],razorleaf:["5L19"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],solarbeam:["5M","5L46"],stunspore:["5L10"],substitute:["5M"],sunnyday:["5M","5L40"],swagger:["5M"],switcheroo:["5E"],taunt:["5M"],tickle:["5E"],toxic:["5M"],worryseed:["5E","5T","5D"],covet:["5T"],seedbomb:["5T"],snore:["5T"],knockoff:["5T"],tailwind:["5T"],sleeptalk:["5T"]}}, - whimsicott:{learnset:{attract:["5M"],beatup:["5S0"],cottonspore:["5L1"],doubleteam:["5M"],dreameater:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],fling:["5M"],frustration:["5M"],gigadrain:["5S0","5T"],gigaimpact:["5M"],grassknot:["5M"],growth:["5L1"],gust:["5L10"],helpinghand:["5S0","5T"],hiddenpower:["5M"],hurricane:["5L46"],hyperbeam:["5M"],leechseed:["5L1"],lightscreen:["5M"],megadrain:["5L1"],protect:["5M"],psychic:["5M"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M"],solarbeam:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M","5S0"],tailwind:["5L28","5T"],taunt:["5M"],thief:["5M"],toxic:["5M"],trickroom:["5M"],uturn:["5M"],covet:["5T"],seedbomb:["5T"],snore:["5T"],knockoff:["5T"],worryseed:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - petilil:{learnset:{absorb:["5L1"],afteryou:["5L44","5T"],aromatherapy:["5L28"],attract:["5M"],bide:["5E"],charm:["5E","5D"],cut:["5M"],doubleteam:["5M"],dreameater:["5M"],endure:["5E"],energyball:["5M","5L35"],entrainment:["5L37"],facade:["5M"],flash:["5M"],frustration:["5M"],gigadrain:["5L26","5T"],grassknot:["5M"],grasswhistle:["5E"],growth:["5L4"],healingwish:["5E"],helpinghand:["5L31","5T"],hiddenpower:["5M"],ingrain:["5E"],leafstorm:["5L46"],leechseed:["5L8"],magicalleaf:["5L19"],megadrain:["5L13"],naturalgift:["5E"],protect:["5M"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],sleeppowder:["5L10","5D"],solarbeam:["5M"],stunspore:["5L22"],substitute:["5M"],sunnyday:["5M","5L40"],swagger:["5M"],sweetscent:["5E","5D"],synthesis:["5L17","5T"],toxic:["5M"],worryseed:["5E","5T"],covet:["5T"],seedbomb:["5T"],snore:["5T"],healbell:["5T"],sleeptalk:["5T"]}}, - lilligant:{learnset:{attract:["5M"],cut:["5M"],doubleteam:["5M"],dreameater:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],growth:["5L1"],hiddenpower:["5M"],hyperbeam:["5M"],leechseed:["5L1"],lightscreen:["5M"],megadrain:["5L1"],petaldance:["5L46"],protect:["5M"],quiverdance:["5L28"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],solarbeam:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swordsdance:["5M"],synthesis:["5L1","5T"],teeterdance:["5L10"],toxic:["5M"],covet:["5T"],seedbomb:["5T"],snore:["5T"],roleplay:["5T"],healbell:["5T"],gigadrain:["5T"],worryseed:["5T"],afteryou:["5T"],helpinghand:["5T"],sleeptalk:["5T"]}}, - basculin:{learnset:{agility:["5E","5D"],aquajet:["5L13"],aquatail:["5L28","5T"],attract:["5M"],bite:["5L10"],brine:["5E"],bubblebeam:["5E"],chipaway:["5L16"],crunch:["5L24"],cut:["5M"],dive:["5M"],doubleedge:["5L36"],doubleteam:["5M"],facade:["5M"],finalgambit:["5L51"],flail:["5L46"],frustration:["5M"],hail:["5M"],headbutt:["5L7","5D"],hiddenpower:["5M"],icebeam:["5M"],muddywater:["5E"],mudshot:["5E"],protect:["5M"],rage:["5E"],raindance:["5M"],rest:["5M"],"return":["5M"],revenge:["5E"],round:["5M"],scald:["5M"],scaryface:["5L41"],soak:["5L32"],substitute:["5M"],surf:["5M"],swagger:["5M"],swift:["5E"],tackle:["5L1"],takedown:["5L20"],taunt:["5M"],thrash:["5L56"],toxic:["5M"],uproar:["5L4","5T"],waterfall:["5M"],watergun:["5L1"],whirlpool:["5E"],bounce:["5T"],superpower:["5T"],icywind:["5T"],zenheadbutt:["5T","5D"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - sandile:{learnset:{assurance:["5L16"],attract:["5M"],beatup:["5E"],bite:["5L4"],bulldoze:["5M"],counter:["5E"],crunch:["5L28"],cut:["5M"],dig:["5M","5L31"],doubleedge:["5E"],doubleteam:["5M"],earthquake:["5M","5L43"],embargo:["5M","5L22"],facade:["5M"],firefang:["5E"],focusenergy:["5E"],foulplay:["5L37","5T"],frustration:["5M"],hiddenpower:["5M"],honeclaws:["5M"],incinerate:["5M"],leer:["5L1"],meanlook:["5E"],mudslap:["5L19"],payback:["5M"],protect:["5M"],pursuit:["5E"],rage:["5L1"],rest:["5M"],retaliate:["5M"],"return":["5M"],roar:["5M"],rockclimb:["5E"],rockslide:["5M"],rocktomb:["5M"],round:["5M"],sandattack:["5L7"],sandstorm:["5M","5L40"],sandtomb:["5L13"],scaryface:["5L34"],sludgebomb:["5M"],snarl:["5M"],stoneedge:["5M"],substitute:["5M"],swagger:["5M","5L25"],taunt:["5M"],thief:["5M"],thrash:["5L46"],thunderfang:["5E"],torment:["5M","5L10"],toxic:["5M"],uproar:["5E","5T"],aquatail:["5T"],darkpulse:["5T"],earthpower:["5T"],irontail:["5T"],sleeptalk:["5T"],snatch:["5T"],snore:["5T"],spite:["5T"],stealthrock:["5T"]}}, - krokorok:{learnset:{assurance:["5L16"],attract:["5M"],bite:["5L1","5L4"],brickbreak:["5M"],bulldoze:["5M"],crunch:["5L28"],cut:["5M"],dig:["5M","5L32"],doubleteam:["5M"],earthquake:["5M","5L48"],embargo:["5M","5L22"],facade:["5M"],fling:["5M"],foulplay:["5L40","5T"],frustration:["5M"],grassknot:["5M"],hiddenpower:["5M"],honeclaws:["5M"],incinerate:["5M"],leer:["5L1"],lowsweep:["5M"],mudslap:["5L19"],payback:["5M"],protect:["5M"],rage:["5L1"],rest:["5M"],retaliate:["5M"],"return":["5M"],roar:["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],sandattack:["5L1","5L7"],sandstorm:["5M","5L44"],sandtomb:["5L13"],scaryface:["5L36"],shadowclaw:["5M"],sludgebomb:["5M"],snarl:["5M"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],swagger:["5M","5L25"],taunt:["5M"],thief:["5M"],thrash:["5L52"],torment:["5M","5L10"],toxic:["5M"],lowkick:["5T"],uproar:["5T"],earthpower:["5T"],aquatail:["5T"],darkpulse:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],spite:["5T"],snatch:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - krookodile:{learnset:{aerialace:["5M"],assurance:["5L16"],attract:["5M"],bite:["5L1","5L4"],brickbreak:["5M"],bulkup:["5M"],bulldoze:["5M"],crunch:["5L28","5D"],cut:["5M"],dig:["5M","5L32"],doubleteam:["5M"],dragonclaw:["5M"],dragontail:["5M"],earthquake:["5M","5L54"],embargo:["5M","5L22"],facade:["5M"],fling:["5M"],focusblast:["5M"],foulplay:["5L42","5T"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],incinerate:["5M"],leer:["5L1"],lowsweep:["5M"],mudslap:["5L19"],outrage:["5L60","5T"],payback:["5M"],protect:["5M"],rage:["5L1"],rest:["5M"],retaliate:["5M"],"return":["5M"],roar:["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],sandattack:["5L1","5L7"],sandstorm:["5M","5L48"],sandtomb:["5L13"],scaryface:["5L36"],shadowclaw:["5M"],sludgebomb:["5M"],smackdown:["5M"],snarl:["5M"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],swagger:["5M","5L25"],taunt:["5M"],thief:["5M"],torment:["5M","5L10"],toxic:["5M"],lowkick:["5T"],uproar:["5T"],block:["5T"],earthpower:["5T"],superpower:["5T"],aquatail:["5T"],darkpulse:["5T"],dragonpulse:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],spite:["5T"],snatch:["5T"],stealthrock:["5T"],sleeptalk:["5T"],counter:["5D"],meanlook:["5D"]}}, - darumaka:{learnset:{attract:["5M"],bellydrum:["5L30"],brickbreak:["5M"],dig:["5M"],doubleteam:["5M"],encore:["5E"],endure:["5E"],facade:["5M","5L19"],fireblast:["5M"],firefang:["5L11"],firepunch:["5L22","5T"],flamecharge:["5M"],flamethrower:["5M"],flamewheel:["5E"],flareblitz:["5L33"],fling:["5M"],focusenergy:["5E"],focuspunch:["5E"],frustration:["5M"],grassknot:["5M"],gyroball:["5M"],hammerarm:["5E"],headbutt:["5L14"],hiddenpower:["5M"],incinerate:["5M","5L6"],overheat:["5M","5L42"],protect:["5M"],rage:["5L9"],rest:["5M"],"return":["5M"],roar:["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],rollout:["5L3"],round:["5M"],sleeptalk:["5E","5T"],solarbeam:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],superpower:["5L39","5T"],swagger:["5M"],tackle:["5L1"],takedown:["5E"],taunt:["5M","5L35"],thief:["5M"],thrash:["5L27"],toxic:["5M"],uproar:["5L17","5T"],uturn:["5M"],willowisp:["5M"],workup:["5M","5L25"],yawn:["5E"],zenheadbutt:["5T"],snore:["5T"],heatwave:["5T"],endeavor:["5T"]}}, - darmanitan:{learnset:{attract:["5M"],bellydrum:["5L30","5S0"],brickbreak:["5M"],bulkup:["5M"],bulldoze:["5M"],dig:["5M"],doubleteam:["5M"],earthquake:["5M"],facade:["5M","5L19"],fireblast:["5M"],firefang:["5L11"],firepunch:["5L22","5T"],flamecharge:["5M"],flamethrower:["5M"],flareblitz:["5L33","5S0"],fling:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],gyroball:["5M"],hammerarm:["5L35","5S0"],headbutt:["5L14"],hiddenpower:["5M"],hyperbeam:["5M"],incinerate:["5M","5L1","5L6"],overheat:["5M","5L54"],payback:["5M"],protect:["5M"],psychic:["5M"],rage:["5L1","5L9"],rest:["5M"],"return":["5M"],roar:["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],rollout:["5L1","5L3"],round:["5M"],smackdown:["5M"],solarbeam:["5M"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],superpower:["5L47","5T"],swagger:["5M","5L17"],tackle:["5L1"],taunt:["5M","5L39"],thief:["5M"],thrash:["5L27","5S0"],torment:["5M"],toxic:["5M"],uturn:["5M"],willowisp:["5M"],workup:["5M","5L25"],uproar:["5T"],zenheadbutt:["5T"],snore:["5T"],heatwave:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - maractus:{learnset:{absorb:["5L1"],acupressure:["5L29"],aerialace:["5M"],afteryou:["5L57","5T"],attract:["5M"],bounce:["5E","5T"],bulletseed:["5E"],cottonguard:["5L55"],cottonspore:["5L18"],doubleteam:["5M"],energyball:["5M"],facade:["5M"],frustration:["5M"],gigadrain:["5L26","5T"],grassknot:["5M"],grasswhistle:["5E"],growth:["5L6"],hiddenpower:["5M"],ingrain:["5L33"],leechseed:["5E","5D"],megadrain:["5L13"],needlearm:["5L22"],peck:["5L1"],petaldance:["5L38"],pinmissile:["5L10","5D"],poisonjab:["5M"],protect:["5M"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],seedbomb:["5E","5T"],solarbeam:["5M","5L50"],spikes:["5E","5D"],substitute:["5M"],suckerpunch:["5L42"],sunnyday:["5M","5L45"],swagger:["5M"],sweetscent:["5L3"],synthesis:["5L15","5T"],toxic:["5M"],woodhammer:["5E"],worryseed:["5E","5T"],uproar:["5T"],hypervoice:["5T"],snore:["5T"],knockoff:["5T"],drainpunch:["5T"],helpinghand:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - dwebble:{learnset:{aerialace:["5M"],attract:["5M"],block:["5E","5T"],bugbite:["5L23","5T"],bulldoze:["5M"],counter:["5E"],curse:["5E"],cut:["5M"],dig:["5M"],doubleteam:["5M"],earthquake:["5M"],endure:["5E"],facade:["5M"],faintattack:["5L13"],flail:["5L41"],frustration:["5M"],furycutter:["5L1"],hiddenpower:["5M"],honeclaws:["5M"],irondefense:["5E","5T"],nightslash:["5E"],poisonjab:["5M"],protect:["5M"],rest:["5M"],"return":["5M"],rockblast:["5L5"],rockpolish:["5M","5L19"],rockslide:["5M","5L29"],rocksmash:["5M"],rocktomb:["5M"],rockwrecker:["5L43"],round:["5M"],sandattack:["5L11"],sandstorm:["5M"],sandtomb:["5E"],shadowclaw:["5M"],shellsmash:["5L37"],slash:["5L31"],smackdown:["5M","5L17"],solarbeam:["5M"],spikes:["5E"],stealthrock:["5L24","5T"],stoneedge:["5M"],strength:["5M"],strugglebug:["5M"],substitute:["5M"],swagger:["5M"],swordsdance:["5M"],toxic:["5M"],withdraw:["5L7"],xscissor:["5M","5L35"],snore:["5T"],knockoff:["5T"],sleeptalk:["5T"]}}, - crustle:{learnset:{aerialace:["5M"],attract:["5M"],bugbite:["5L23","5T"],bulldoze:["5M"],cut:["5M"],dig:["5M"],doubleteam:["5M"],earthquake:["5M"],facade:["5M"],faintattack:["5L13"],flail:["5L50"],frustration:["5M"],gigaimpact:["5M"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],poisonjab:["5M"],protect:["5M"],rest:["5M"],"return":["5M"],rockblast:["5L1","5L5"],rockpolish:["5M","5L19"],rockslide:["5M","5L29","5D"],rocksmash:["5M"],rocktomb:["5M"],rockwrecker:["5L55"],round:["5M"],sandattack:["5L1","5L11"],sandstorm:["5M"],shadowclaw:["5M"],shellsmash:["5L1","5L43"],slash:["5L31"],smackdown:["5M","5L17"],solarbeam:["5M"],stealthrock:["5L24","5T"],stoneedge:["5M"],strength:["5M"],strugglebug:["5M"],substitute:["5M"],swagger:["5M"],swordsdance:["5M"],toxic:["5M"],withdraw:["5L1","5L7"],xscissor:["5M","5L38"],block:["5T"],irondefense:["5T"],snore:["5T"],knockoff:["5T"],sleeptalk:["5T"],counter:["5D"],nightslash:["5D"]}}, - scraggy:{learnset:{amnesia:["5E"],attract:["5M"],brickbreak:["5M","5L20"],bulkup:["5M"],chipaway:["5L27"],counter:["5E"],crunch:["5L38"],detect:["5E"],dig:["5M"],doubleteam:["5M"],dragonclaw:["5M"],dragondance:["5E"],dragontail:["5M"],drainpunch:["5E","5T","5D"],facade:["5M","5L42"],faintattack:["5E","5L9"],fakeout:["5E","5D"],firepunch:["5E","5T"],fling:["5M"],focusblast:["5M"],focuspunch:["5L49"],frustration:["5M"],grassknot:["5M"],headbutt:["5L12","5S0"],headsmash:["5L53"],hiddenpower:["5M"],hijumpkick:["5L31","5S0"],icepunch:["5E","5T"],incinerate:["5M"],leer:["5L1","5S0"],lowkick:["5L1","5S0","5T","5D"],lowsweep:["5M"],payback:["5M","5L23"],poisonjab:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],roar:["5M"],rockclimb:["5L45"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],sandattack:["5L5"],scaryface:["5L34"],sludgebomb:["5M"],smackdown:["5M"],snarl:["5M"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M","5L16"],taunt:["5M"],thunderpunch:["5E","5T"],torment:["5M"],toxic:["5M"],workup:["5M"],zenheadbutt:["5E","5T"],superfang:["5T"],dualchop:["5T"],ironhead:["5T"],foulplay:["5T"],irondefense:["5T"],darkpulse:["5T"],dragonpulse:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],spite:["5T"],snatch:["5T"],sleeptalk:["5T"]}}, - scrafty:{learnset:{attract:["5M"],brickbreak:["5M","5L20"],bulkup:["5M"],chipaway:["5L27"],crunch:["5L38"],dig:["5M"],doubleteam:["5M"],dragonclaw:["5M"],dragontail:["5M"],drainpunch:["5S0","5T"],facade:["5M","5L45"],faintattack:["5L1","5L9"],firepunch:["5S0","5T"],fling:["5M"],focusblast:["5M"],focuspunch:["5L58"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],headbutt:["5L12"],headsmash:["5L65"],hiddenpower:["5M"],hijumpkick:["5L31"],hyperbeam:["5M"],incinerate:["5M"],leer:["5L1"],lowkick:["5L1","5T"],lowsweep:["5M"],payback:["5M","5L23","5S0"],poisonjab:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],roar:["5M"],rockclimb:["5L51"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],sandattack:["5L1","5L5"],scaryface:["5L34"],sludgebomb:["5M"],smackdown:["5M"],snarl:["5M"],stoneedge:["5M"],strength:["5M"],substitute:["5M","5S0"],sunnyday:["5M"],swagger:["5M","5L16"],taunt:["5M"],thief:["5M"],torment:["5M"],toxic:["5M"],workup:["5M"],superfang:["5T"],dualchop:["5T"],ironhead:["5T"],thunderpunch:["5T"],icepunch:["5T"],foulplay:["5T"],irondefense:["5T"],darkpulse:["5T"],zenheadbutt:["5T"],dragonpulse:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],spite:["5T"],outrage:["5T"],snatch:["5T"],sleeptalk:["5T"]}}, - sigilyph:{learnset:{aerialace:["5M"],aircutter:["5L21"],airslash:["5L41"],ancientpower:["5E"],attract:["5M"],calmmind:["5M"],chargebeam:["5M"],cosmicpower:["5L48"],doubleteam:["5M"],dreameater:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],flashcannon:["5M"],fly:["5M"],frustration:["5M"],gravity:["5L38","5T"],gust:["5L1"],hiddenpower:["5M"],hyperbeam:["5M"],hypnosis:["5L4","5D"],icebeam:["5M"],lightscreen:["5M","5L24"],miracleeye:["5L1"],mirrormove:["5L34"],pluck:["5M"],protect:["5M"],psybeam:["5L18"],psychic:["5M","5L44"],psychoshift:["5E"],psychup:["5M"],psyshock:["5M"],psywave:["5L8"],raindance:["5M"],reflect:["5M","5L28"],rest:["5M"],"return":["5M"],roost:["5E","5T"],round:["5M"],safeguard:["5M"],shadowball:["5M"],skillswap:["5E","5T"],skyattack:["5L51","5T"],smackdown:["5M"],solarbeam:["5M"],steelwing:["5E"],storedpower:["5E","5D"],substitute:["5M"],swagger:["5M"],synchronoise:["5L31"],tailwind:["5L11","5T"],telekinesis:["5M"],thief:["5M"],thunderwave:["5M"],toxic:["5M"],trickroom:["5M"],whirlwind:["5L14"],signalbeam:["5T"],magiccoat:["5T"],icywind:["5T"],darkpulse:["5T"],zenheadbutt:["5T"],snore:["5T"],heatwave:["5T","5D"],trick:["5T"],magicroom:["5T"],sleeptalk:["5T"]}}, - yamask:{learnset:{astonish:["5L1"],attract:["5M"],calmmind:["5M"],curse:["5L29"],destinybond:["5L49"],disable:["5E","5L5"],doubleteam:["5M"],dreameater:["5M"],embargo:["5M"],endure:["5E"],energyball:["5M"],facade:["5M"],faketears:["5E"],flash:["5M"],frustration:["5M"],grudge:["5L41"],guardsplit:["5L33"],haze:["5L9"],healblock:["5E"],hex:["5L17"],hiddenpower:["5M"],imprison:["5E"],meanlook:["5L45"],memento:["5E"],nastyplot:["5E"],nightmare:["5E"],nightshade:["5L13"],ominouswind:["5L25"],payback:["5M"],powersplit:["5L33"],protect:["5M","5L1"],psychic:["5M"],psychup:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M","5L37"],substitute:["5M"],swagger:["5M"],telekinesis:["5M"],thief:["5M"],toxic:["5M"],trickroom:["5M"],willowisp:["5M","5L21"],magiccoat:["5T"],block:["5T"],irondefense:["5T"],darkpulse:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],painsplit:["5T"],spite:["5T"],afteryou:["5T"],trick:["5T"],wonderroom:["5T"],snatch:["5T"],sleeptalk:["5T"],skillswap:["5T"]}}, - cofagrigus:{learnset:{astonish:["5L1"],attract:["5M"],calmmind:["5M"],curse:["5L29"],destinybond:["5L57"],disable:["5L1","5L5"],doubleteam:["5M"],dreameater:["5M"],embargo:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],grudge:["5L45"],guardsplit:["5L33"],haze:["5L1","5L9"],hex:["5L17"],hiddenpower:["5M"],hyperbeam:["5M"],meanlook:["5L51"],nightshade:["5L13"],ominouswind:["5L25"],payback:["5M"],powersplit:["5L33"],protect:["5M","5L1"],psychic:["5M"],psychup:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],scaryface:["5L34"],shadowball:["5M","5L39"],substitute:["5M"],swagger:["5M"],telekinesis:["5M"],thief:["5M"],toxic:["5M"],trickroom:["5M"],willowisp:["5M","5L21"],magiccoat:["5T"],block:["5T"],irondefense:["5T"],darkpulse:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],painsplit:["5T"],spite:["5T"],afteryou:["5T"],trick:["5T"],wonderroom:["5T"],snatch:["5T"],sleeptalk:["5T"],skillswap:["5T"]}}, - tirtouga:{learnset:{ancientpower:["5L18"],aquajet:["5L15","5S0"],aquatail:["5L41","5T"],attract:["5M"],bide:["5E","5L1"],bite:["5L8","5S0"],blizzard:["5M"],bodyslam:["5E","5S0"],brine:["5L28"],bulldoze:["5M"],crunch:["5L21"],curse:["5L35"],dig:["5M"],dive:["5M"],doubleteam:["5M"],earthquake:["5M"],facade:["5M"],flail:["5E","5D"],frustration:["5M"],hiddenpower:["5M"],hydropump:["5L51"],icebeam:["5M"],irondefense:["5E","5T","5D"],knockoff:["5E"],protect:["5M","5L11","5S0"],raindance:["5M","5L48"],rest:["5M"],"return":["5M"],rockpolish:["5M"],rockslide:["5M","5L45"],rocksmash:["5M"],rockthrow:["5E"],rocktomb:["5M"],rollout:["5L5","5D"],round:["5M"],sandstorm:["5M"],scald:["5M"],shellsmash:["5L38"],slam:["5E"],smackdown:["5M","5L31"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],surf:["5M"],swagger:["5M"],toxic:["5M"],waterfall:["5M"],watergun:["5L1"],waterpulse:["5E"],whirlpool:["5E"],wideguard:["5L25"],withdraw:["5L1"],block:["5T"],earthpower:["5T"],icywind:["5T"],irontail:["5T"],snore:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - carracosta:{learnset:{ancientpower:["5L18"],aquajet:["5L15"],aquatail:["5L45","5T"],attract:["5M"],bide:["5L1"],bite:["5L8"],blizzard:["5M"],brine:["5L28"],bulldoze:["5M"],crunch:["5L21"],curse:["5L35"],dig:["5M"],dive:["5M"],doubleteam:["5M"],earthquake:["5M"],facade:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],hiddenpower:["5M"],hydropump:["5L61"],hyperbeam:["5M"],icebeam:["5M"],protect:["5M","5L11"],raindance:["5M","5L56"],rest:["5M"],"return":["5M"],rockpolish:["5M"],rockslide:["5M","5L51"],rocksmash:["5M"],rocktomb:["5M"],rollout:["5L1","5L5"],round:["5M"],sandstorm:["5M"],scald:["5M"],shellsmash:["5L40"],smackdown:["5M","5L31"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],surf:["5M"],swagger:["5M"],toxic:["5M"],waterfall:["5M"],watergun:["5L1"],wideguard:["5L25"],withdraw:["5L1"],ironhead:["5T"],lowkick:["5T"],block:["5T"],earthpower:["5T"],irondefense:["5T"],superpower:["5T"],icywind:["5T"],irontail:["5T"],snore:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - archen:{learnset:{acrobatics:["5M","5L28"],aerialace:["5M"],agility:["5L21"],ancientpower:["5L18"],attract:["5M"],bite:["5E"],bulldoze:["5M"],crunch:["5L35"],cut:["5M"],defog:["5E"],dig:["5M"],doubleteam:["5M","5L8","5S0"],dragonbreath:["5L31"],dragonclaw:["5M","5L48"],dragonpulse:["5E","5T"],earthpower:["5E","5T"],earthquake:["5M"],endeavor:["5L38","5T"],facade:["5M"],frustration:["5M"],headsmash:["5E","5S0"],hiddenpower:["5M"],honeclaws:["5M"],knockoff:["5E"],leer:["5L1"],pluck:["5M","5L15"],protect:["5M"],quickattack:["5L1"],quickguard:["5L25"],rest:["5M"],"return":["5M"],roar:["5M"],rockpolish:["5M"],rockslide:["5M","5L45"],rocksmash:["5M"],rockthrow:["5L5"],rocktomb:["5M"],round:["5M"],sandstorm:["5M"],scaryface:["5L11","5S0"],shadowclaw:["5M"],smackdown:["5M"],steelwing:["5E"],stoneedge:["5M"],substitute:["5M"],swagger:["5M"],taunt:["5M"],thrash:["5L51"],torment:["5M"],toxic:["5M"],uturn:["5M","5L41"],wingattack:["5L1","5S0"],bounce:["5T"],uproar:["5T"],irondefense:["5T"],aquatail:["5T"],irontail:["5T"],snore:["5T"],heatwave:["5T"],tailwind:["5T"],roost:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - archeops:{learnset:{acrobatics:["5M","5L28"],aerialace:["5M"],agility:["5L21"],ancientpower:["5L18"],attract:["5M"],bulldoze:["5M"],crunch:["5L35"],cut:["5M"],dig:["5M"],doubleteam:["5M","5L8"],dragonbreath:["5L31"],dragonclaw:["5M","5L56"],dragontail:["5M"],earthquake:["5M"],endeavor:["5L40","5T"],facade:["5M"],fly:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],leer:["5L1"],pluck:["5M","5L15"],protect:["5M"],quickattack:["5L1"],quickguard:["5L25"],rest:["5M"],"return":["5M"],roar:["5M"],rockpolish:["5M"],rockslide:["5M","5L51"],rocksmash:["5M"],rockthrow:["5L1","5L5"],rocktomb:["5M"],round:["5M"],sandstorm:["5M"],scaryface:["5L11"],shadowclaw:["5M"],smackdown:["5M"],stoneedge:["5M"],substitute:["5M"],swagger:["5M"],taunt:["5M"],thrash:["5L61"],torment:["5M"],toxic:["5M"],uturn:["5M","5L45"],wingattack:["5L1"],bounce:["5T"],uproar:["5T"],earthpower:["5T"],irondefense:["5T"],aquatail:["5T"],dragonpulse:["5T"],irontail:["5T"],snore:["5T"],heatwave:["5T"],tailwind:["5T"],skyattack:["5T"],roost:["5T"],outrage:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - trubbish:{learnset:{acidspray:["5L12"],amnesia:["5L40"],attract:["5M"],clearsmog:["5L34"],curse:["5E"],doubleslap:["5L14"],doubleteam:["5M"],explosion:["5M","5L47"],facade:["5M"],frustration:["5M"],gunkshot:["5L45","5T"],haze:["5E"],hiddenpower:["5M"],mudsport:["5E"],payback:["5M"],poisongas:["5L1"],pound:["5L1"],protect:["5M"],raindance:["5M"],recycle:["5L3","5T"],rest:["5M"],"return":["5M"],rockblast:["5E"],rollout:["5E"],round:["5M"],sandattack:["5E"],selfdestruct:["5E"],sludge:["5L18"],sludgebomb:["5M","5L29"],sludgewave:["5M"],spikes:["5E"],stockpile:["5L23"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swallow:["5L23"],takedown:["5L25"],thief:["5M"],toxic:["5M","5L36"],toxicspikes:["5L7"],venoshock:["5M"],seedbomb:["5T"],darkpulse:["5T"],snore:["5T"],painsplit:["5T"],gigadrain:["5T"],drainpunch:["5T"],spite:["5T"],sleeptalk:["5T"]}}, - garbodor:{learnset:{acidspray:["5L12"],amnesia:["5L46"],attract:["5M"],bodyslam:["5L25"],clearsmog:["5L34"],doubleslap:["5L14"],doubleteam:["5M"],explosion:["5M","5L59"],facade:["5M"],fling:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],gunkshot:["5L54","5T"],hiddenpower:["5M"],hyperbeam:["5M"],payback:["5M"],poisongas:["5L1"],pound:["5L1"],protect:["5M"],psychic:["5M"],raindance:["5M"],recycle:["5L1","5L3","5T"],rest:["5M"],"return":["5M"],rockpolish:["5M"],round:["5M"],sludge:["5L18"],sludgebomb:["5M","5L29"],sludgewave:["5M"],smackdown:["5M"],solarbeam:["5M"],stockpile:["5L23"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swallow:["5L23"],thief:["5M"],thunderbolt:["5M"],toxic:["5M","5L39"],toxicspikes:["5L1","5L7"],venoshock:["5M"],seedbomb:["5T"],darkpulse:["5T"],snore:["5T"],painsplit:["5T"],gigadrain:["5T"],drainpunch:["5T"],spite:["5T"],sleeptalk:["5T"]}}, - zorua:{learnset:{aerialace:["5M"],agility:["5L37"],attract:["5M"],calmmind:["5M"],captivate:["5E"],counter:["5E"],cut:["5M"],darkpulse:["5E","5T"],detect:["5E"],dig:["5M"],doubleteam:["5M"],embargo:["5M","5L41"],extrasensory:["5E"],facade:["5M"],faintattack:["5L17"],faketears:["5L9"],fling:["5M"],foulplay:["5L29","5T"],frustration:["5M"],furyswipes:["5L13"],grassknot:["5M"],hiddenpower:["5M"],honeclaws:["5M"],imprison:["5L53"],incinerate:["5M"],leer:["5L1"],memento:["5E"],nastyplot:["5L49"],nightdaze:["5L57"],payback:["5M"],protect:["5M"],psychup:["5M"],punishment:["5L45"],pursuit:["5L5"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],roar:["5M"],round:["5M"],scaryface:["5L21"],scratch:["5L1"],shadowball:["5M"],snarl:["5M"],snatch:["5E","5T"],substitute:["5M"],suckerpunch:["5E"],sunnyday:["5M"],swagger:["5M"],swordsdance:["5M"],taunt:["5M","5L25"],thief:["5M"],torment:["5M","5L33"],toxic:["5M"],uturn:["5M"],covet:["5T"],bounce:["5T"],uproar:["5T"],hypervoice:["5T"],snore:["5T"],knockoff:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T"]}}, - zoroark:{learnset:{aerialace:["5M"],agility:["5L39","5S0"],attract:["5M"],calmmind:["5M"],cut:["5M"],dig:["5M"],doubleteam:["5M"],embargo:["5M","5L44","5S0"],facade:["5M"],faintattack:["5L17"],flamethrower:["5M"],fling:["5M"],focusblast:["5M"],foulplay:["5L29","5T"],frustration:["5M"],furyswipes:["5L13"],gigaimpact:["5M"],grassknot:["5M"],hiddenpower:["5M"],honeclaws:["5M","5L1","5L9"],hyperbeam:["5M"],imprison:["5L59"],incinerate:["5M"],leer:["5L1"],lowsweep:["5M"],nastyplot:["5L54"],nightdaze:["5L64"],nightslash:["5L30"],payback:["5M"],protect:["5M"],psychup:["5M"],punishment:["5L49","5S0"],pursuit:["5L1","5L5"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],roar:["5M"],rocksmash:["5M"],round:["5M"],scaryface:["5L21"],scratch:["5L1"],shadowball:["5M"],shadowclaw:["5M"],snarl:["5M","5S0"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swordsdance:["5M"],taunt:["5M","5L25"],thief:["5M"],torment:["5M","5L34"],toxic:["5M"],uturn:["5M","5L1"],covet:["5T"],bounce:["5T"],lowkick:["5T"],uproar:["5T"],darkpulse:["5T"],hypervoice:["5T"],snore:["5T"],knockoff:["5T"],spite:["5T"],trick:["5T"],snatch:["5T"],sleeptalk:["5T"]}}, - minccino:{learnset:{afteryou:["5L49","5T"],aquatail:["5E","5T"],attract:["5M"],calmmind:["5M"],captivate:["5L39"],charm:["5L27"],dig:["5M"],doubleslap:["5L13"],doubleteam:["5M"],echoedvoice:["5M","5L33"],encore:["5L15"],endure:["5E"],facade:["5M"],faketears:["5E"],flail:["5E"],fling:["5M"],frustration:["5M"],grassknot:["5M"],growl:["5L3"],helpinghand:["5L7","5T"],hiddenpower:["5M"],hypervoice:["5L43","5T"],irontail:["5E","5T"],knockoff:["5E","5T"],lastresort:["5L45","5T"],mudslap:["5E"],pound:["5L1"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],sing:["5L21"],slam:["5L37"],sleeptalk:["5E","5T"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swift:["5L19"],tailslap:["5L25"],tailwhip:["5E"],thief:["5M"],thunderbolt:["5M"],thunderwave:["5M"],tickle:["5L9"],toxic:["5M"],uturn:["5M"],wakeupslap:["5L31"],workup:["5M"],covet:["5T"],seedbomb:["5T"],gunkshot:["5T"],uproar:["5T"],snore:["5T"]}}, - cinccino:{learnset:{attract:["5M"],bulletseed:["5L1"],calmmind:["5M"],dig:["5M"],doubleteam:["5M"],echoedvoice:["5M"],facade:["5M"],fling:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],helpinghand:["5L1","5T"],hiddenpower:["5M"],hyperbeam:["5M"],lightscreen:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],rockblast:["5L1"],round:["5M"],safeguard:["5M"],sing:["5L1"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],tailslap:["5L1"],thief:["5M"],thunder:["5M"],thunderbolt:["5M"],thunderwave:["5M"],tickle:["5L1"],toxic:["5M"],uturn:["5M"],workup:["5M"],covet:["5T"],seedbomb:["5T"],gunkshot:["5T"],uproar:["5T"],lastresort:["5T"],aquatail:["5T"],hypervoice:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],afteryou:["5T"],sleeptalk:["5T"]}}, - gothita:{learnset:{attract:["5M"],calmmind:["5M"],captivate:["5E"],chargebeam:["5M"],charm:["5L46"],confusion:["5L3"],darkpulse:["5E"],doubleslap:["5L14"],doubleteam:["5M"],dreameater:["5M"],embargo:["5M","5L19"],energyball:["5M"],facade:["5M"],faintattack:["5L24"],faketears:["5L10"],flash:["5M"],flatter:["5L28"],fling:["5M"],frustration:["5M"],futuresight:["5L31"],grassknot:["5M"],healblock:["5L33"],hiddenpower:["5M"],lightscreen:["5M"],magicroom:["5L48","5T"],meanlook:["5E"],miracleeye:["5E"],mirrorcoat:["5E"],payback:["5M"],pound:["5L1"],protect:["5M"],psybeam:["5L16"],psychic:["5M","5L37"],psychup:["5M"],psyshock:["5M","5L25"],raindance:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocktomb:["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M"],substitute:["5M"],swagger:["5M"],taunt:["5M"],telekinesis:["5M","5L40"],thief:["5M"],thunderbolt:["5M"],thunderwave:["5M"],tickle:["5L7"],torment:["5M"],toxic:["5M"],trickroom:["5M"],uproar:["5E","5T"],covet:["5T"],signalbeam:["5T"],magiccoat:["5T"],foulplay:["5T"],gravity:["5T"],zenheadbutt:["5T"],snore:["5T"],roleplay:["5T"],healbell:["5T"],helpinghand:["5T"],trick:["5T"],recycle:["5T"],snatch:["5T"],sleeptalk:["5T"],skillswap:["5T"]}}, - gothorita:{learnset:{attract:["5M"],calmmind:["5M"],chargebeam:["5M"],charm:["5L50"],confusion:["5L1","5L3"],doubleslap:["5L14"],doubleteam:["5M"],dreameater:["5M"],embargo:["5M","5L19"],energyball:["5M"],facade:["5M"],faintattack:["5L24"],faketears:["5L1","5L10"],flash:["5M"],flatter:["5L28","5S0","5S1"],fling:["5M"],frustration:["5M"],futuresight:["5L31","5S0","5S1"],grassknot:["5M"],healblock:["5L34"],hiddenpower:["5M"],imprison:["5S1"],lightscreen:["5M"],magicroom:["5L53","5T"],payback:["5M"],pound:["5L1"],protect:["5M"],psybeam:["5L16"],psychic:["5M","5L39"],psychup:["5M"],psyshock:["5M","5L25","5S0","5S1"],raindance:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocktomb:["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M"],substitute:["5M"],swagger:["5M"],taunt:["5M"],telekinesis:["5M","5L43"],thief:["5M"],thunderbolt:["5M"],thunderwave:["5M"],tickle:["5L1","5L7"],torment:["5M"],toxic:["5M"],trickroom:["5M"],covet:["5T"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],foulplay:["5T"],gravity:["5T"],zenheadbutt:["5T"],snore:["5T"],roleplay:["5T"],healbell:["5T"],helpinghand:["5T"],trick:["5T"],recycle:["5T"],snatch:["5T"],sleeptalk:["5T"],skillswap:["5T"],mirrorcoat:["5S0"]}}, - gothitelle:{learnset:{attract:["5M"],brickbreak:["5M"],calmmind:["5M"],chargebeam:["5M"],charm:["5L54"],confusion:["5L1","5L3"],doubleslap:["5L14"],doubleteam:["5M"],dreameater:["5M"],embargo:["5M","5L19"],energyball:["5M"],facade:["5M"],faintattack:["5L24"],faketears:["5L1","5L10"],flash:["5M"],flatter:["5L28"],fling:["5M"],frustration:["5M"],futuresight:["5L31"],gigaimpact:["5M"],grassknot:["5M"],healblock:["5L34"],hiddenpower:["5M"],hyperbeam:["5M"],lightscreen:["5M"],lowsweep:["5M"],magicroom:["5L59","5T"],payback:["5M"],pound:["5L1"],protect:["5M"],psybeam:["5L16"],psychic:["5M","5L39"],psychup:["5M"],psyshock:["5M","5L25"],raindance:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocktomb:["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M"],substitute:["5M"],swagger:["5M"],taunt:["5M"],telekinesis:["5M","5L45"],thief:["5M"],thunderbolt:["5M"],thunderwave:["5M"],tickle:["5L1","5L7"],torment:["5M"],toxic:["5M"],trickroom:["5M"],covet:["5T"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],foulplay:["5T"],gravity:["5T"],zenheadbutt:["5T"],snore:["5T"],roleplay:["5T"],healbell:["5T"],helpinghand:["5T"],trick:["5T"],recycle:["5T"],snatch:["5T"],sleeptalk:["5T"],skillswap:["5T"]}}, - solosis:{learnset:{acidarmor:["5E"],astonish:["5E"],attract:["5M"],calmmind:["5M"],charm:["5L19"],confuseray:["5E"],doubleteam:["5M"],dreameater:["5M"],embargo:["5M"],endeavor:["5L28","5T"],energyball:["5M"],explosion:["5M"],facade:["5M"],flash:["5M"],flashcannon:["5M"],frustration:["5M"],futuresight:["5L31"],gyroball:["5M"],healblock:["5L46"],hiddenpower:["5M","5L14"],imprison:["5E"],lightscreen:["5M","5L16"],nightshade:["5E"],painsplit:["5L33","5T"],protect:["5M"],psychic:["5M","5L37"],psychup:["5M"],psyshock:["5M","5L25"],psywave:["5L1"],raindance:["5M"],recover:["5L24"],reflect:["5M","5L3"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocktomb:["5M"],rollout:["5L7"],round:["5M"],safeguard:["5M"],secretpower:["5E"],shadowball:["5M"],skillswap:["5L40","5T"],snatch:["5L10","5T"],substitute:["5M"],swagger:["5M"],telekinesis:["5M"],thunder:["5M"],thunderwave:["5M"],toxic:["5M"],trick:["5E","5T"],trickroom:["5M"],wonderroom:["5L48","5T"],signalbeam:["5T"],magiccoat:["5T"],gravity:["5T"],zenheadbutt:["5T"],snore:["5T"],roleplay:["5T"],afteryou:["5T"],sleeptalk:["5T"]}}, - duosion:{learnset:{attract:["5M"],calmmind:["5M"],charm:["5L19"],doubleteam:["5M"],dreameater:["5M"],embargo:["5M"],endeavor:["5L28","5T"],energyball:["5M"],explosion:["5M"],facade:["5M"],flash:["5M"],flashcannon:["5M"],frustration:["5M"],futuresight:["5L31"],gyroball:["5M"],healblock:["5L50"],hiddenpower:["5M","5L14"],lightscreen:["5M","5L16"],painsplit:["5L34","5T"],protect:["5M"],psychic:["5M","5L39"],psychup:["5M"],psyshock:["5M","5L25"],psywave:["5L1"],raindance:["5M"],recover:["5L24","5D"],reflect:["5M","5L1","5L3"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocktomb:["5M"],rollout:["5L1","5L7"],round:["5M"],safeguard:["5M"],shadowball:["5M"],skillswap:["5L43","5T"],snatch:["5L1","5L10","5T"],substitute:["5M"],swagger:["5M"],telekinesis:["5M"],thunder:["5M"],thunderwave:["5M"],toxic:["5M"],trickroom:["5M"],wonderroom:["5L53","5T"],signalbeam:["5T"],magiccoat:["5T"],gravity:["5T"],zenheadbutt:["5T"],snore:["5T"],roleplay:["5T"],afteryou:["5T"],trick:["5T","5D"],sleeptalk:["5T"],imprison:["5D"]}}, - reuniclus:{learnset:{attract:["5M"],calmmind:["5M"],charm:["5L19"],dizzypunch:["5L41"],doubleteam:["5M"],dreameater:["5M"],embargo:["5M"],endeavor:["5L28","5T"],energyball:["5M"],explosion:["5M"],facade:["5M"],flash:["5M"],flashcannon:["5M"],fling:["5M"],focusblast:["5M"],frustration:["5M"],futuresight:["5L31"],gigaimpact:["5M"],grassknot:["5M"],gyroball:["5M"],healblock:["5L54"],hiddenpower:["5M","5L14"],hyperbeam:["5M"],lightscreen:["5M","5L16"],painsplit:["5L34","5T"],protect:["5M"],psychic:["5M","5L39"],psychup:["5M"],psyshock:["5M","5L25"],psywave:["5L1"],raindance:["5M"],recover:["5L24"],reflect:["5M","5L1","5L3"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],rollout:["5L1","5L7"],round:["5M"],safeguard:["5M"],shadowball:["5M"],skillswap:["5L45","5T"],snatch:["5L1","5L10","5T"],strength:["5M"],substitute:["5M"],swagger:["5M"],telekinesis:["5M"],thunder:["5M"],thunderwave:["5M"],toxic:["5M"],trickroom:["5M"],wonderroom:["5L59","5T"],signalbeam:["5T"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],magiccoat:["5T"],gravity:["5T"],superpower:["5T"],zenheadbutt:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],drainpunch:["5T"],afteryou:["5T"],helpinghand:["5T"],trick:["5T"],sleeptalk:["5T"]}}, - ducklett:{learnset:{aerialace:["5M","5L15"],aircutter:["5E"],airslash:["5L27"],aquaring:["5L24"],attract:["5M"],bravebird:["5L41"],brine:["5E","5D"],bubblebeam:["5L19"],defog:["5L6","5D"],dive:["5M"],doubleteam:["5M"],facade:["5M"],featherdance:["5L21"],fly:["5M"],frustration:["5M"],gust:["5E"],hail:["5M"],hiddenpower:["5M"],hurricane:["5L46"],icebeam:["5M"],luckychant:["5E"],mefirst:["5E","5D"],mirrormove:["5E"],pluck:["5M"],protect:["5M"],raindance:["5M","5L34"],rest:["5M"],"return":["5M"],roost:["5L30","5T"],round:["5M"],scald:["5M"],steelwing:["5E"],substitute:["5M"],surf:["5M"],swagger:["5M"],tailwind:["5L37","5T"],toxic:["5M"],watergun:["5L1"],waterpulse:["5L13"],watersport:["5L3"],wingattack:["5L9"],uproar:["5T"],icywind:["5T"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - swanna:{learnset:{aerialace:["5M","5L15"],airslash:["5L27"],aquaring:["5L24"],attract:["5M"],bravebird:["5L47"],bubblebeam:["5L19"],defog:["5L1","5L6"],dive:["5M"],doubleteam:["5M"],facade:["5M"],featherdance:["5L21"],fly:["5M"],frustration:["5M"],gigaimpact:["5M"],hail:["5M"],hiddenpower:["5M"],hurricane:["5L55"],hyperbeam:["5M"],icebeam:["5M"],pluck:["5M"],protect:["5M"],raindance:["5M","5L34"],rest:["5M"],"return":["5M"],roost:["5L30","5T"],round:["5M"],scald:["5M"],substitute:["5M"],surf:["5M"],swagger:["5M"],tailwind:["5L40","5T"],toxic:["5M"],watergun:["5L1"],waterpulse:["5L13"],watersport:["5L1","5L3"],wingattack:["5L1","5L9"],uproar:["5T"],icywind:["5T"],snore:["5T"],skyattack:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - vanillite:{learnset:{acidarmor:["5L31"],astonish:["5L7"],attract:["5M"],autotomize:["5E"],avalanche:["5L19"],blizzard:["5M","5L49"],doubleteam:["5M"],explosion:["5M"],facade:["5M"],flashcannon:["5M"],frostbreath:["5M"],frustration:["5M"],hail:["5M","5L40"],harden:["5L4"],hiddenpower:["5M"],icebeam:["5M","5L35"],iceshard:["5E"],iciclespear:["5L1"],icywind:["5L13","5T"],imprison:["5E"],irondefense:["5E","5T"],lightscreen:["5M"],magnetrise:["5E","5T"],mirrorcoat:["5L44"],mirrorshot:["5L26"],mist:["5L16"],naturalgift:["5E"],powdersnow:["5E"],protect:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],round:["5M"],sheercold:["5L53"],substitute:["5M"],swagger:["5M"],taunt:["5M","5L22"],toxic:["5M"],uproar:["5L10","5T"],waterpulse:["5E"],signalbeam:["5T"],magiccoat:["5T"],snore:["5T"],sleeptalk:["5T"]}}, - vanillish:{learnset:{acidarmor:["5L31"],astonish:["5L1","5L7"],attract:["5M"],avalanche:["5L19"],blizzard:["5M","5L53"],doubleteam:["5M"],explosion:["5M"],facade:["5M"],flashcannon:["5M"],frostbreath:["5M"],frustration:["5M"],hail:["5M","5L42"],harden:["5L1","5L4"],hiddenpower:["5M"],icebeam:["5M","5L36"],iciclespear:["5L1"],icywind:["5L13","5T"],lightscreen:["5M"],mirrorcoat:["5L47"],mirrorshot:["5L26","5D"],mist:["5L16"],protect:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],round:["5M"],sheercold:["5L58"],substitute:["5M"],swagger:["5M"],taunt:["5M","5L22"],toxic:["5M"],uproar:["5L1","5L10","5T"],signalbeam:["5T"],magiccoat:["5T"],magnetrise:["5T"],irondefense:["5T"],snore:["5T"],sleeptalk:["5T"],iceshard:["5D"],imprison:["5D"]}}, - vanilluxe:{learnset:{acidarmor:["5L31"],astonish:["5L1","5L7"],attract:["5M"],avalanche:["5L19"],blizzard:["5M","5L59"],doubleteam:["5M"],explosion:["5M"],facade:["5M"],flashcannon:["5M"],frostbreath:["5M"],frustration:["5M"],gigaimpact:["5M"],hail:["5M","5L42"],harden:["5L1","5L4"],hiddenpower:["5M"],hyperbeam:["5M"],icebeam:["5M","5L36"],iciclespear:["5L1"],icywind:["5L13","5T"],lightscreen:["5M"],mirrorcoat:["5L50"],mirrorshot:["5L26"],mist:["5L16"],protect:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],round:["5M"],sheercold:["5L67"],substitute:["5M"],swagger:["5M"],taunt:["5M","5L22"],toxic:["5M"],uproar:["5L1","5L10","5T"],weatherball:["5L1"],signalbeam:["5T"],magiccoat:["5T"],magnetrise:["5T"],irondefense:["5T"],snore:["5T"],sleeptalk:["5T"]}}, - deerling:{learnset:{agility:["5E"],aromatherapy:["5L28","5S0"],attract:["5M"],batonpass:["5E"],camouflage:["5L1"],charm:["5L36"],doubleedge:["5L46"],doublekick:["5L10"],doubleteam:["5M"],echoedvoice:["5M"],energyball:["5M","5L32"],facade:["5M"],faintattack:["5L16","5S0"],faketears:["5E"],flash:["5M"],frustration:["5M"],grassknot:["5M"],grasswhistle:["5E"],growl:["5L4"],hiddenpower:["5M"],jumpkick:["5L24","5S0"],leechseed:["5L13"],lightscreen:["5M"],naturalgift:["5E"],naturepower:["5L41"],odorsleuth:["5E"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],sandattack:["5L7"],shadowball:["5M"],sleeptalk:["5E","5T"],solarbeam:["5M","5L51"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],synthesis:["5E","5T"],tackle:["5L1"],takedown:["5L20","5S0"],thunderwave:["5M"],toxic:["5M"],wildcharge:["5M"],workup:["5M"],worryseed:["5E","5T"],seedbomb:["5T"],bounce:["5T"],lastresort:["5T"],snore:["5T"],gigadrain:["5T"]}}, - sawsbuck:{learnset:{aromatherapy:["5L28"],attract:["5M"],camouflage:["5L1"],charm:["5L36"],cut:["5M"],doubleedge:["5L52"],doublekick:["5L10"],doubleteam:["5M"],echoedvoice:["5M"],energyball:["5M","5L32"],facade:["5M"],faintattack:["5L16"],flash:["5M"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],growl:["5L1","5L4"],hiddenpower:["5M"],hornleech:["5L37"],hyperbeam:["5M"],jumpkick:["5L24"],leechseed:["5L13"],lightscreen:["5M"],megahorn:["5L1"],naturepower:["5L44"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],rocksmash:["5M"],round:["5M"],safeguard:["5M"],sandattack:["5L1","5L7"],shadowball:["5M"],solarbeam:["5M","5L60"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swordsdance:["5M"],tackle:["5L1"],takedown:["5L20"],thunderwave:["5M"],toxic:["5M"],wildcharge:["5M"],workup:["5M"],seedbomb:["5T"],bounce:["5T"],lastresort:["5T"],snore:["5T"],synthesis:["5T"],gigadrain:["5T"],worryseed:["5T"],sleeptalk:["5T"]}}, - emolga:{learnset:{acrobatics:["5M","5L30"],aerialace:["5M"],agility:["5L46"],airslash:["5E","5D"],astonish:["5E"],attract:["5M"],batonpass:["5E"],charge:["5L10"],chargebeam:["5M"],charm:["5E","5D"],covet:["5E","5T"],cut:["5M"],discharge:["5L50"],doubleteam:["5M","5L19"],electroball:["5L26"],encore:["5L38"],facade:["5M"],flash:["5M"],fling:["5M"],frustration:["5M"],hiddenpower:["5M"],irontail:["5E","5T"],lightscreen:["5M","5L34"],protect:["5M"],pursuit:["5L16"],quickattack:["5L4","5D"],raindance:["5M"],rest:["5M"],"return":["5M"],roost:["5E","5T"],round:["5M"],shockwave:["5E","5L22"],spark:["5L13"],substitute:["5M"],swagger:["5M"],tailwhip:["5L7"],taunt:["5M"],thunder:["5M"],thunderbolt:["5M"],thundershock:["5L1"],thunderwave:["5M"],tickle:["5E"],toxic:["5M"],uturn:["5M"],voltswitch:["5M","5L42"],wildcharge:["5M"],signalbeam:["5T"],lastresort:["5T"],snore:["5T"],knockoff:["5T"],tailwind:["5T"],helpinghand:["5T"],sleeptalk:["5T"]}}, - karrablast:{learnset:{aerialace:["5M"],attract:["5M"],bugbite:["5E","5T","5D"],bugbuzz:["5L28","5S0"],counter:["5E"],cut:["5M"],doubleedge:["5L56"],doubleteam:["5M"],endure:["5L8","5D"],energyball:["5M"],facade:["5M"],faintattack:["5E"],falseswipe:["5M","5L25","5S0"],flail:["5L49","5S1"],frustration:["5M"],furyattack:["5L16","5S0"],furycutter:["5L13"],headbutt:["5L20","5S0"],hiddenpower:["5M"],hornattack:["5E"],knockoff:["5E","5T"],leer:["5L4"],megahorn:["5E","5S1","5D"],peck:["5L1"],poisonjab:["5M"],protect:["5M"],pursuit:["5E"],raindance:["5M"],rest:["5M"],"return":["5M"],round:["5M"],scaryface:["5L40"],screech:["5E"],slash:["5L32"],strugglebug:["5M"],substitute:["5M"],swagger:["5M"],swordsdance:["5M","5L52"],takedown:["5L37","5S1"],toxic:["5M"],xscissor:["5M","5L44","5S1"],irondefense:["5T"],snore:["5T"],gigadrain:["5T"],sleeptalk:["5T"]}}, - escavalier:{learnset:{aerialace:["5M"],attract:["5M"],bugbuzz:["5L28"],cut:["5M"],doubleteam:["5M"],energyball:["5M"],facade:["5M"],falseswipe:["5M","5L25"],focusblast:["5M"],frustration:["5M"],furyattack:["5L16"],gigaimpact:["5M","5L56"],headbutt:["5L20"],hiddenpower:["5M"],hyperbeam:["5M"],irondefense:["5L40","5T"],ironhead:["5L37","5T"],leer:["5L1","5L4"],peck:["5L1"],poisonjab:["5M"],protect:["5M"],quickguard:["5L1","5L8"],raindance:["5M"],rest:["5M"],"return":["5M"],reversal:["5L49"],rocksmash:["5M"],round:["5M"],slash:["5L32"],strugglebug:["5M"],substitute:["5M"],swagger:["5M"],swordsdance:["5M","5L52"],toxic:["5M"],twineedle:["5L1","5L13"],xscissor:["5M","5L44"],bugbite:["5T"],snore:["5T"],knockoff:["5T"],gigadrain:["5T"],sleeptalk:["5T"]}}, - foongus:{learnset:{absorb:["5L1"],astonish:["5L8"],attract:["5M"],bide:["5L12"],bodyslam:["5E"],clearsmog:["5L39"],defensecurl:["5E"],doubleteam:["5M"],endure:["5E"],energyball:["5M"],facade:["5M"],faintattack:["5L20"],flash:["5M"],frustration:["5M"],gastroacid:["5E","5T"],gigadrain:["5L28","5T"],grassknot:["5M"],growth:["5E","5L6"],hiddenpower:["5M"],ingrain:["5L18"],megadrain:["5L15"],payback:["5M"],poisonpowder:["5E"],protect:["5M"],ragepowder:["5L45"],raindance:["5M"],rest:["5M"],"return":["5M"],rollout:["5E"],round:["5M"],sludgebomb:["5M"],solarbeam:["5M","5L43"],spore:["5L50"],stunspore:["5E"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],sweetscent:["5L24"],synthesis:["5L35","5T"],toxic:["5M","5L32"],venoshock:["5M"],seedbomb:["5T"],foulplay:["5T"],snore:["5T"],worryseed:["5T"],afteryou:["5T"],sleeptalk:["5T"]}}, - amoonguss:{learnset:{absorb:["5L1"],astonish:["5L1","5L8"],attract:["5M"],bide:["5L1","5L12"],clearsmog:["5L43"],doubleteam:["5M"],energyball:["5M"],facade:["5M"],faintattack:["5L20"],flash:["5M"],frustration:["5M"],gigadrain:["5L28","5T"],gigaimpact:["5M"],grassknot:["5M"],growth:["5L1","5L6"],hiddenpower:["5M"],hyperbeam:["5M"],ingrain:["5L18"],megadrain:["5L15"],payback:["5M"],protect:["5M"],ragepowder:["5L54"],raindance:["5M"],rest:["5M"],"return":["5M"],round:["5M"],sludgebomb:["5M"],solarbeam:["5M","5L49"],spore:["5L62"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],sweetscent:["5L24"],synthesis:["5L35","5T"],toxic:["5M","5L32"],venoshock:["5M"],seedbomb:["5T"],foulplay:["5T"],snore:["5T"],gastroacid:["5T"],worryseed:["5T"],afteryou:["5T"],sleeptalk:["5T"]}}, - frillish:{learnset:{absorb:["5L5"],acidarmor:["5E"],attract:["5M"],blizzard:["5M"],brine:["5L32"],bubble:["5L1"],bubblebeam:["5L13"],confuseray:["5E"],constrict:["5E"],dive:["5M"],doubleteam:["5M"],dreameater:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],frustration:["5M"],hail:["5M"],hex:["5L43"],hiddenpower:["5M"],hydropump:["5L49"],icebeam:["5M"],mist:["5E"],nightshade:["5L9"],ominouswind:["5L27"],painsplit:["5E","5T"],protect:["5M"],psychic:["5M"],psychup:["5M"],raindance:["5M","5L37"],recover:["5E","5L17"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],scald:["5M"],shadowball:["5M"],sludgebomb:["5M"],sludgewave:["5M"],substitute:["5M"],surf:["5M"],swagger:["5M"],taunt:["5M"],toxic:["5M"],trickroom:["5M"],waterfall:["5M"],waterpulse:["5L22"],watersport:["5L1"],waterspout:["5L61"],willowisp:["5M"],wringout:["5L55"],magiccoat:["5T"],icywind:["5T"],darkpulse:["5T"],bind:["5T"],snore:["5T"],gigadrain:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T"]}}, - jellicent:{learnset:{absorb:["5L1","5L5"],attract:["5M"],blizzard:["5M"],brine:["5L32","5S0"],bubble:["5L1"],bubblebeam:["5L13"],dive:["5M"],doubleteam:["5M"],dreameater:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],frustration:["5M"],gigaimpact:["5M"],hail:["5M"],hex:["5L45"],hiddenpower:["5M"],hydropump:["5L53"],hyperbeam:["5M"],icebeam:["5M"],nightshade:["5L1","5L9"],ominouswind:["5L27","5S0"],protect:["5M"],psychic:["5M"],psychup:["5M"],raindance:["5M","5L37","5S0"],recover:["5L17"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],scald:["5M"],shadowball:["5M"],sludgebomb:["5M"],sludgewave:["5M"],substitute:["5M"],surf:["5M"],swagger:["5M"],taunt:["5M"],toxic:["5M"],trickroom:["5M"],waterfall:["5M"],waterpulse:["5L22","5S0"],watersport:["5L1"],waterspout:["5L69"],willowisp:["5M"],wringout:["5L61"],magiccoat:["5T"],icywind:["5T"],darkpulse:["5T"],bind:["5T"],snore:["5T"],painsplit:["5T"],gigadrain:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T"]}}, - alomomola:{learnset:{aquajet:["5L9"],aquaring:["5L5","5D"],attract:["5M"],blizzard:["5M"],brine:["5L41"],calmmind:["5M"],dive:["5M"],doubleslap:["5L13"],doubleteam:["5M"],endure:["5E"],facade:["5M"],frustration:["5M"],hail:["5M"],healingwish:["5L57"],healpulse:["5L17"],helpinghand:["5L49","5T"],hiddenpower:["5M"],hydropump:["5L61"],icebeam:["5M"],lightscreen:["5M"],mirrorcoat:["5E","5D"],mist:["5E"],painsplit:["5E","5T","5D"],pound:["5L1"],protect:["5M","5L21"],psychic:["5M"],psychup:["5M"],raindance:["5M"],refresh:["5E"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M","5L45"],scald:["5M"],shadowball:["5M"],soak:["5L33"],substitute:["5M"],surf:["5M"],swagger:["5M"],tickle:["5E"],toxic:["5M"],wakeupslap:["5L29"],waterfall:["5M"],waterpulse:["5L25"],watersport:["5L1"],wideguard:["5L53"],wish:["5L37"],bounce:["5T"],magiccoat:["5T"],icywind:["5T"],snore:["5T"],knockoff:["5T"],sleeptalk:["5T"]}}, - joltik:{learnset:{agility:["5L37"],attract:["5M"],bugbite:["5L18","5T"],bugbuzz:["5L48"],chargebeam:["5M"],crosspoison:["5E"],cut:["5M"],disable:["5E"],discharge:["5L45"],doubleteam:["5M"],electroball:["5L29"],electroweb:["5L15","5T"],energyball:["5M"],facade:["5M"],faintattack:["5E"],flash:["5M"],frustration:["5M"],furycutter:["5L12"],gastroacid:["5L23","5T"],hiddenpower:["5M"],leechlife:["5L1"],lightscreen:["5M"],pinmissile:["5E"],poisonjab:["5M"],poisonsting:["5E"],protect:["5M"],pursuit:["5E"],raindance:["5M"],rest:["5M"],"return":["5M"],rockclimb:["5E"],round:["5M"],screech:["5L7"],signalbeam:["5L34","5T"],slash:["5L26"],spiderweb:["5L1"],stringshot:["5L1"],strugglebug:["5M"],substitute:["5M"],suckerpunch:["5L40"],swagger:["5M"],thief:["5M"],thunderbolt:["5M"],thunderwave:["5M","5L4"],toxic:["5M"],voltswitch:["5M"],wildcharge:["5M"],xscissor:["5M"],bounce:["5T"],magnetrise:["5T"],snore:["5T"],gigadrain:["5T"],sleeptalk:["5T"]}}, - galvantula:{learnset:{agility:["5L40"],attract:["5M"],bugbite:["5L18","5T"],bugbuzz:["5L60"],chargebeam:["5M"],cut:["5M"],discharge:["5L54"],doubleteam:["5M"],electroball:["5L29","5D"],electroweb:["5L15","5T"],energyball:["5M"],facade:["5M"],flash:["5M"],frustration:["5M"],furycutter:["5L12"],gastroacid:["5L23","5T"],gigaimpact:["5M"],hiddenpower:["5M"],hyperbeam:["5M"],leechlife:["5L1"],lightscreen:["5M"],poisonjab:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],round:["5M"],screech:["5L7"],signalbeam:["5L34","5T"],slash:["5L26"],spiderweb:["5L1"],stringshot:["5L1"],strugglebug:["5M"],substitute:["5M"],suckerpunch:["5L46"],swagger:["5M"],thief:["5M"],thunder:["5M"],thunderbolt:["5M"],thunderwave:["5M","5L1","5L4"],toxic:["5M"],voltswitch:["5M"],wildcharge:["5M"],xscissor:["5M"],bounce:["5T"],magnetrise:["5T"],snore:["5T"],gigadrain:["5T"],sleeptalk:["5T"],pursuit:["5D"],disable:["5D"]}}, - ferroseed:{learnset:{bulletseed:["5E"],curse:["5L9"],doubleteam:["5M"],energyball:["5M"],explosion:["5M","5L55"],facade:["5M"],flash:["5M"],flashcannon:["5M","5L52"],frustration:["5M"],gravity:["5E","5T"],gyroball:["5M","5L21"],harden:["5L1"],hiddenpower:["5M"],honeclaws:["5M"],ingrain:["5L35"],irondefense:["5L26","5T"],ironhead:["5L43","5T"],leechseed:["5E"],metalclaw:["5L14"],mirrorshot:["5L30"],payback:["5M","5L47"],pinmissile:["5L18"],poisonjab:["5M"],protect:["5M"],rest:["5M"],"return":["5M"],rockclimb:["5E"],rockpolish:["5M"],rocksmash:["5M"],rollout:["5L6"],round:["5M"],seedbomb:["5E","5T"],selfdestruct:["5L38"],solarbeam:["5M"],spikes:["5E"],stealthrock:["5E","5T"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],tackle:["5L1"],thunderbolt:["5M"],thunderwave:["5M"],toxic:["5M"],worryseed:["5E","5T"],magnetrise:["5T"],snore:["5T"],gigadrain:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - ferrothorn:{learnset:{aerialace:["5M"],bulldoze:["5M"],curse:["5L1","5L9"],cut:["5M"],doubleteam:["5M"],energyball:["5M"],explosion:["5M","5L67"],facade:["5M"],flash:["5M"],flashcannon:["5M","5L61"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],gyroball:["5M","5L21"],harden:["5L1"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],ingrain:["5L35"],irondefense:["5L26","5T"],ironhead:["5L46","5T"],metalclaw:["5L14"],mirrorshot:["5L30"],payback:["5M","5L53"],pinmissile:["5L18"],poisonjab:["5M"],powerwhip:["5L40"],protect:["5M"],rest:["5M"],"return":["5M"],rockclimb:["5L1"],rockpolish:["5M"],rocksmash:["5M"],rollout:["5L1","5L6"],round:["5M"],sandstorm:["5M"],selfdestruct:["5L38"],shadowclaw:["5M"],solarbeam:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swordsdance:["5M"],tackle:["5L1"],thunder:["5M"],thunderbolt:["5M"],thunderwave:["5M"],toxic:["5M"],seedbomb:["5T"],gravity:["5T"],magnetrise:["5T"],snore:["5T"],knockoff:["5T"],gigadrain:["5T"],worryseed:["5T"],endeavor:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - klink:{learnset:{autotomize:["5L31"],bind:["5L21","5T"],charge:["5L6"],chargebeam:["5M","5L26"],discharge:["5L42"],doubleteam:["5M"],facade:["5M"],flashcannon:["5M"],frustration:["5M"],geargrind:["5L16"],hiddenpower:["5M"],hyperbeam:["5M","5L57"],lockon:["5L51"],metalsound:["5L45"],mirrorshot:["5L36"],protect:["5M"],rest:["5M"],"return":["5M"],rockpolish:["5M"],rocksmash:["5M"],round:["5M"],sandstorm:["5M"],screech:["5L39"],shiftgear:["5L48"],substitute:["5M"],swagger:["5M"],thunderbolt:["5M"],thundershock:["5L11"],thunderwave:["5M"],toxic:["5M"],vicegrip:["5L1"],voltswitch:["5M"],wildcharge:["5M"],zapcannon:["5L54"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],gravity:["5T"],magnetrise:["5T"],irondefense:["5T"],snore:["5T"],recycle:["5T"],sleeptalk:["5T"]}}, - klang:{learnset:{autotomize:["5L31"],bind:["5L21","5T"],charge:["5L1","5L6"],chargebeam:["5M","5L26","5D"],discharge:["5L44"],doubleteam:["5M"],facade:["5M"],flashcannon:["5M"],frustration:["5M"],geargrind:["5L1","5L16"],hiddenpower:["5M"],hyperbeam:["5M","5L64"],lockon:["5L56"],metalsound:["5L48"],mirrorshot:["5L36"],protect:["5M"],rest:["5M"],"return":["5M"],rockpolish:["5M"],rocksmash:["5M"],round:["5M"],sandstorm:["5M"],screech:["5L40"],shiftgear:["5L52"],substitute:["5M"],swagger:["5M"],thunderbolt:["5M"],thundershock:["5L1","5L11"],thunderwave:["5M"],toxic:["5M"],vicegrip:["5L1"],voltswitch:["5M"],wildcharge:["5M"],zapcannon:["5L60"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],gravity:["5T","5D"],magnetrise:["5T","5D"],irondefense:["5T"],snore:["5T"],recycle:["5T"],sleeptalk:["5T"]}}, - klinklang:{learnset:{autotomize:["5L31"],bind:["5L21","5T"],charge:["5L1","5L6"],chargebeam:["5M","5L25"],discharge:["5L44"],doubleteam:["5M"],facade:["5M"],flashcannon:["5M"],frustration:["5M"],geargrind:["5L1","5L16"],gigaimpact:["5M"],hiddenpower:["5M"],hyperbeam:["5M","5L72"],lockon:["5L60"],metalsound:["5L48"],mirrorshot:["5L36"],protect:["5M"],rest:["5M"],"return":["5M"],rockpolish:["5M"],rocksmash:["5M"],round:["5M"],sandstorm:["5M"],screech:["5L40"],shiftgear:["5L54"],substitute:["5M"],swagger:["5M"],thunder:["5M"],thunderbolt:["5M"],thundershock:["5L1","5L11"],thunderwave:["5M"],toxic:["5M"],trickroom:["5M"],vicegrip:["5L1"],voltswitch:["5M"],wildcharge:["5M"],zapcannon:["5L66"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],gravity:["5T"],magnetrise:["5T"],irondefense:["5T"],snore:["5T"],recycle:["5T"],sleeptalk:["5T"]}}, - tynamo:{learnset:{chargebeam:["5L1"],spark:["5L1"],tackle:["5L1"],thunderwave:["5L1"],magnetrise:["5T"]}}, - eelektrik:{learnset:{acid:["5L19"],acidspray:["5L49"],acrobatics:["5M"],attract:["5M"],bind:["5L9","5T"],chargebeam:["5M","5L1"],coil:["5L54"],crunch:["5L39"],discharge:["5L29"],doubleteam:["5M"],facade:["5M"],flash:["5M"],flashcannon:["5M"],frustration:["5M"],gastroacid:["5L64","5T"],headbutt:["5L1"],hiddenpower:["5M"],lightscreen:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],round:["5M"],spark:["5L1"],substitute:["5M"],swagger:["5M"],thrash:["5L74"],thunder:["5M"],thunderbolt:["5M","5L44"],thunderwave:["5M","5L1"],toxic:["5M"],uturn:["5M"],voltswitch:["5M"],wildcharge:["5M","5L59"],zapcannon:["5L69"],superfang:["5T"],signalbeam:["5T"],bounce:["5T"],magnetrise:["5T"],aquatail:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],gigadrain:["5T"],sleeptalk:["5T"]}}, - eelektross:{learnset:{acid:["5L1"],acrobatics:["5M"],attract:["5M"],brickbreak:["5M"],chargebeam:["5M"],crunch:["5L1"],crushclaw:["5L1"],cut:["5M"],discharge:["5L1"],doubleteam:["5M"],dragonclaw:["5M"],dragontail:["5M"],facade:["5M"],flamethrower:["5M"],flash:["5M"],flashcannon:["5M"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],headbutt:["5L1"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],lightscreen:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],roar:["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],strength:["5M"],substitute:["5M"],swagger:["5M"],thunder:["5M"],thunderbolt:["5M"],thunderwave:["5M"],toxic:["5M"],uturn:["5M"],voltswitch:["5M"],wildcharge:["5M"],superfang:["5T"],signalbeam:["5T"],bounce:["5T"],thunderpunch:["5T"],firepunch:["5T"],magnetrise:["5T"],superpower:["5T"],aquatail:["5T"],irontail:["5T"],bind:["5T"],snore:["5T"],knockoff:["5T"],gigadrain:["5T"],drainpunch:["5T"],gastroacid:["5T"],sleeptalk:["5T"]}}, - elgyem:{learnset:{allyswitch:["5M"],astonish:["5E"],attract:["5M"],barrier:["5E","5D"],calmmind:["5M","5L43"],chargebeam:["5M"],confusion:["5L1"],disable:["5E"],doubleteam:["5M"],dreameater:["5M"],echoedvoice:["5M"],embargo:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],frustration:["5M"],growl:["5L4"],guardsplit:["5L50"],guardswap:["5E"],headbutt:["5L18"],healblock:["5L8","5D"],hiddenpower:["5M","5L22"],imprison:["5L25"],lightscreen:["5M"],miracleeye:["5L11"],nastyplot:["5E","5D"],powersplit:["5L50"],powerswap:["5E"],protect:["5M"],psybeam:["5L15"],psychic:["5M","5L39"],psychup:["5M","5L36"],psyshock:["5M"],raindance:["5M"],recover:["5L46"],reflect:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocktomb:["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M"],simplebeam:["5L29"],skillswap:["5E","5T"],substitute:["5M"],swagger:["5M"],synchronoise:["5L53"],telekinesis:["5M"],teleport:["5E"],thief:["5M"],thunderbolt:["5M"],thunderwave:["5M"],toxic:["5M"],trickroom:["5M"],wonderroom:["5L56","5T"],zenheadbutt:["5L32","5T"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],gravity:["5T"],darkpulse:["5T"],snore:["5T"],roleplay:["5T"],painsplit:["5T"],afteryou:["5T"],trick:["5T"],recycle:["5T"],snatch:["5T"],sleeptalk:["5T"]}}, - beheeyem:{learnset:{allyswitch:["5M"],attract:["5M"],calmmind:["5M","5L45"],chargebeam:["5M"],confusion:["5L1"],doubleteam:["5M"],dreameater:["5M"],echoedvoice:["5M"],embargo:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],frustration:["5M"],gigaimpact:["5M"],growl:["5L1","5L4"],guardsplit:["5L56"],headbutt:["5L18"],healblock:["5L1","5L8"],hiddenpower:["5M","5L22"],hyperbeam:["5M"],imprison:["5L25"],lightscreen:["5M"],miracleeye:["5L1","5L11"],powersplit:["5L58"],protect:["5M"],psybeam:["5L15"],psychic:["5M","5L39"],psychup:["5M","5L36"],psyshock:["5M"],raindance:["5M"],recover:["5L50"],reflect:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocktomb:["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M"],simplebeam:["5L29"],substitute:["5M"],swagger:["5M"],synchronoise:["5L63"],telekinesis:["5M"],thief:["5M"],thunderbolt:["5M"],thunderwave:["5M"],toxic:["5M"],trickroom:["5M"],wonderroom:["5L68","5T"],zenheadbutt:["5L32","5T"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],gravity:["5T"],darkpulse:["5T"],snore:["5T"],roleplay:["5T"],painsplit:["5T"],afteryou:["5T"],trick:["5T"],recycle:["5T"],snatch:["5T"],sleeptalk:["5T"],skillswap:["5T"]}}, - litwick:{learnset:{acid:["5E"],acidarmor:["5E"],astonish:["5L1"],attract:["5M"],calmmind:["5M"],captivate:["5E"],clearsmog:["5E"],confuseray:["5L10"],curse:["5L43"],doubleteam:["5M"],dreameater:["5M"],embargo:["5M"],ember:["5L1"],endure:["5E"],energyball:["5M"],facade:["5M"],fireblast:["5M"],firespin:["5L7"],flameburst:["5L20"],flamecharge:["5M"],flamethrower:["5M"],flash:["5M"],frustration:["5M"],haze:["5E"],heatwave:["5E","5T"],hex:["5L28"],hiddenpower:["5M"],imprison:["5L24"],incinerate:["5M"],inferno:["5L38"],memento:["5L33"],minimize:["5L3"],nightshade:["5L13"],overheat:["5M","5L61"],painsplit:["5L55","5T"],payback:["5M"],protect:["5M"],psychic:["5M"],psychup:["5M"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M","5L49"],smog:["5L5"],solarbeam:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],taunt:["5M"],telekinesis:["5M"],thief:["5M"],toxic:["5M"],trickroom:["5M"],willowisp:["5M","5L16"],darkpulse:["5T"],snore:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T"]}}, - lampent:{learnset:{astonish:["5L1"],attract:["5M"],calmmind:["5M"],confuseray:["5L10"],curse:["5L45"],doubleteam:["5M"],dreameater:["5M"],embargo:["5M"],ember:["5L1"],energyball:["5M"],facade:["5M"],fireblast:["5M"],firespin:["5L7"],flameburst:["5L20"],flamecharge:["5M"],flamethrower:["5M"],flash:["5M"],frustration:["5M"],hex:["5L28"],hiddenpower:["5M"],imprison:["5L24"],incinerate:["5M"],inferno:["5L38"],memento:["5L33"],minimize:["5L1","5L3"],nightshade:["5L13"],overheat:["5M","5L69"],painsplit:["5L61","5T"],payback:["5M"],protect:["5M"],psychic:["5M"],psychup:["5M"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M","5L53"],smog:["5L1","5L5"],solarbeam:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],taunt:["5M"],telekinesis:["5M"],thief:["5M"],toxic:["5M"],trickroom:["5M"],willowisp:["5M","5L16"],darkpulse:["5T"],snore:["5T"],heatwave:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T"]}}, - chandelure:{learnset:{attract:["5M"],calmmind:["5M"],confuseray:["5L1"],doubleteam:["5M"],dreameater:["5M"],embargo:["5M"],energyball:["5M","5S0"],facade:["5M"],fireblast:["5M"],flameburst:["5L1"],flamecharge:["5M"],flamethrower:["5M"],flash:["5M"],frustration:["5M"],gigaimpact:["5M"],heatwave:["5S0","5T"],hex:["5L1"],hiddenpower:["5M"],hyperbeam:["5M"],incinerate:["5M"],overheat:["5M"],payback:["5M"],protect:["5M"],psychic:["5M","5S0"],psychup:["5M"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M","5S0"],smog:["5L1"],solarbeam:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],taunt:["5M"],telekinesis:["5M"],thief:["5M"],toxic:["5M"],trickroom:["5M"],willowisp:["5M"],darkpulse:["5T"],snore:["5T"],painsplit:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T"]}}, - axew:{learnset:{aerialace:["5M"],assurance:["5L7"],attract:["5M"],counter:["5E","5D"],cut:["5M"],dig:["5M"],doubleteam:["5M"],dracometeor:["5T"],dragonclaw:["5M","5L28","5S1"],dragondance:["5L32"],dragonpulse:["5E","5L41","5T"],dragonrage:["5L10","5S0","5S1","5D","5S2"],dualchop:["5L13","5T"],endeavor:["5E","5T"],endure:["5E","5S1"],facade:["5M"],falseswipe:["5M","5L24"],fling:["5M"],focusenergy:["5E"],frustration:["5M"],gigaimpact:["5M","5L61","5S2"],guillotine:["5L51"],harden:["5E"],hiddenpower:["5M"],honeclaws:["5M"],incinerate:["5M"],irontail:["5E","5T"],leer:["5L4"],nightslash:["5E","5D"],outrage:["5L56","5T","5S2"],payback:["5M"],poisonjab:["5M"],protect:["5M"],raindance:["5M"],razorwind:["5E"],rest:["5M"],"return":["5M","5S1"],reversal:["5E"],roar:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],scaryface:["5L16"],scratch:["5L1","5S0","5S2"],slash:["5L20"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swordsdance:["5M","5L46"],taunt:["5M","5L36"],toxic:["5M"],xscissor:["5M"],superpower:["5T"],aquatail:["5T"],snore:["5T"],sleeptalk:["5T"]}}, - fraxure:{learnset:{aerialace:["5M"],assurance:["5L1","5L7"],attract:["5M"],cut:["5M"],dig:["5M"],doubleteam:["5M"],dracometeor:["5T"],dragonclaw:["5M","5L28"],dragondance:["5L32"],dragonpulse:["5L42","5T"],dragonrage:["5L1","5L10"],dragontail:["5M"],dualchop:["5L13","5T"],facade:["5M"],falseswipe:["5M","5L24"],fling:["5M"],frustration:["5M"],gigaimpact:["5M","5L66"],guillotine:["5L54"],hiddenpower:["5M"],honeclaws:["5M"],incinerate:["5M"],leer:["5L1","5L4"],outrage:["5L60","5T"],payback:["5M"],poisonjab:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],roar:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],scaryface:["5L16"],scratch:["5L1"],shadowclaw:["5M"],slash:["5L20"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swordsdance:["5M","5L48"],taunt:["5M","5L36"],toxic:["5M"],xscissor:["5M"],lowkick:["5T"],superpower:["5T"],aquatail:["5T"],irontail:["5T"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - haxorus:{learnset:{aerialace:["5M"],assurance:["5L1","5L7"],attract:["5M"],brickbreak:["5M"],bulldoze:["5M"],cut:["5M"],dig:["5M"],doubleteam:["5M"],dracometeor:["5T"],dragonclaw:["5M","5L28"],dragondance:["5L32","5S0"],dragonpulse:["5L42","5T"],dragonrage:["5L1","5L10"],dragontail:["5M"],dualchop:["5L13","5T","5S0"],earthquake:["5M","5S0"],facade:["5M"],falseswipe:["5M","5L24"],fling:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M","5L74"],grassknot:["5M"],guillotine:["5L58"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],incinerate:["5M"],leer:["5L1","5L4"],outrage:["5L66","5T"],payback:["5M"],poisonjab:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],roar:["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],scaryface:["5L16"],scratch:["5L1"],shadowclaw:["5M"],slash:["5L20"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],surf:["5M"],swagger:["5M"],swordsdance:["5M","5L50"],taunt:["5M","5L36"],toxic:["5M"],xscissor:["5M","5S0"],lowkick:["5T"],superpower:["5T"],aquatail:["5T"],irontail:["5T"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - cubchoo:{learnset:{aerialace:["5M"],assurance:["5E"],attract:["5M"],avalanche:["5E"],bide:["5L9","5S0"],blizzard:["5M","5L45"],brine:["5L21"],charm:["5L29"],cut:["5M"],dig:["5M"],doubleteam:["5M"],echoedvoice:["5M"],encore:["5E"],endure:["5L25"],facade:["5M"],flail:["5L36"],fling:["5M"],focuspunch:["5E"],frostbreath:["5M"],frustration:["5M"],furyswipes:["5L17"],grassknot:["5M"],growl:["5L5","5S0"],hail:["5M","5L49"],hiddenpower:["5M"],honeclaws:["5M"],icebeam:["5M"],icepunch:["5E","5T"],icywind:["5L13","5S0","5T"],nightslash:["5E"],powdersnow:["5L1","5S0"],protect:["5M"],raindance:["5M"],rest:["5M","5L41"],"return":["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],shadowclaw:["5M"],sheercold:["5L57"],slash:["5L33"],sleeptalk:["5E","5T"],strength:["5M"],substitute:["5M"],surf:["5M"],swagger:["5M"],thrash:["5L53"],toxic:["5M"],yawn:["5E"],covet:["5T"],lowkick:["5T"],superpower:["5T"],snore:["5T"]}}, - beartic:{learnset:{aerialace:["5M"],aquajet:["5L1"],attract:["5M"],bide:["5L1","5L9"],blizzard:["5M","5L45"],brickbreak:["5M"],brine:["5L21"],bulkup:["5M"],bulldoze:["5M"],cut:["5M"],dig:["5M"],dive:["5M"],doubleteam:["5M"],echoedvoice:["5M"],endure:["5L25"],facade:["5M"],flail:["5L36"],fling:["5M"],focusblast:["5M"],frostbreath:["5M"],frustration:["5M"],furyswipes:["5L17"],gigaimpact:["5M"],grassknot:["5M"],growl:["5L1","5L5"],hail:["5M","5L53"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],icebeam:["5M"],iciclecrash:["5L37"],icywind:["5L1","5L13","5T"],powdersnow:["5L1"],protect:["5M"],raindance:["5M"],rest:["5M","5L41"],"return":["5M"],roar:["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],shadowclaw:["5M"],sheercold:["5L66"],slash:["5L33"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],superpower:["5L1","5T"],surf:["5M"],swagger:["5M","5L29"],swordsdance:["5M"],taunt:["5M"],thrash:["5L59"],toxic:["5M"],covet:["5T"],lowkick:["5T"],icepunch:["5T"],snore:["5T"],sleeptalk:["5T"]}}, - cryogonal:{learnset:{acidarmor:["5L29"],acrobatics:["5M"],attract:["5M"],aurorabeam:["5L25"],bind:["5L1","5T"],blizzard:["5M"],confuseray:["5L45"],doubleteam:["5M"],explosion:["5M"],facade:["5M"],flashcannon:["5M"],frostbreath:["5M"],frustration:["5M"],hail:["5M"],haze:["5L21"],hiddenpower:["5M"],hyperbeam:["5M"],icebeam:["5M","5L33"],iceshard:["5L5"],icywind:["5L17","5T"],lightscreen:["5M","5L37"],mist:["5L21"],nightslash:["5L57"],poisonjab:["5M"],protect:["5M"],raindance:["5M"],rapidspin:["5L13"],recover:["5L49"],reflect:["5M","5L37"],rest:["5M"],"return":["5M"],round:["5M"],sharpen:["5L9"],sheercold:["5L61"],slash:["5L41"],solarbeam:["5M","5L53"],substitute:["5M"],swagger:["5M"],toxic:["5M"],signalbeam:["5T"],magiccoat:["5T"],irondefense:["5T"],snore:["5T"],knockoff:["5T"],sleeptalk:["5T"]}}, - shelmet:{learnset:{acid:["5L4","5D"],acidarmor:["5L32"],attract:["5M"],batonpass:["5E","5D"],bide:["5L8"],bodyslam:["5L40","5S1"],bugbuzz:["5L44","5S1"],curse:["5L13"],doubleedge:["5E"],doubleteam:["5M"],encore:["5E","5S1","5D"],endure:["5E"],energyball:["5M"],facade:["5M"],feint:["5E"],finalgambit:["5L56"],frustration:["5M"],gigadrain:["5L37","5S1","5T"],guardsplit:["5E"],guardswap:["5L52"],hiddenpower:["5M"],leechlife:["5L1"],megadrain:["5L20","5S0"],mindreader:["5E"],mudslap:["5E"],protect:["5M","5L28","5S0"],pursuit:["5E"],raindance:["5M"],recover:["5L49"],rest:["5M"],"return":["5M"],round:["5M"],sludgebomb:["5M"],spikes:["5E"],strugglebug:["5M","5L16","5S0"],substitute:["5M"],swagger:["5M"],toxic:["5M"],venoshock:["5M"],yawn:["5L25","5S0"],bugbite:["5T"],signalbeam:["5T"],snore:["5T"],gastroacid:["5T"],sleeptalk:["5T"]}}, - accelgor:{learnset:{acidspray:["5L1","5L4"],agility:["5L32"],attract:["5M"],bugbuzz:["5L44"],doubleteam:["5M","5L1","5L8"],energyball:["5M"],facade:["5M"],finalgambit:["5L56"],focusblast:["5M"],frustration:["5M"],gigadrain:["5L37","5T"],gigaimpact:["5M"],hiddenpower:["5M"],hyperbeam:["5M"],leechlife:["5L1"],mefirst:["5L28"],megadrain:["5L20"],powerswap:["5L52"],protect:["5M"],quickattack:["5L1","5L13"],raindance:["5M"],recover:["5L49"],rest:["5M"],"return":["5M"],round:["5M"],sandstorm:["5M"],sludgebomb:["5M"],strugglebug:["5M","5L16"],substitute:["5M"],swagger:["5M"],swift:["5L25"],toxic:["5M"],uturn:["5M","5L40"],venoshock:["5M"],bugbite:["5T"],signalbeam:["5T"],snore:["5T"],knockoff:["5T"],gastroacid:["5T"],sleeptalk:["5T"]}}, - stunfisk:{learnset:{astonish:["5E"],attract:["5M"],bide:["5L5"],bounce:["5L35","5T"],bulldoze:["5M"],camouflage:["5L17"],curse:["5E","5D"],dig:["5M"],discharge:["5L25"],doubleteam:["5M"],earthpower:["5E","5T"],earthquake:["5M"],endure:["5L30"],facade:["5M"],fissure:["5L61"],flail:["5L55"],flash:["5M"],frustration:["5M"],hiddenpower:["5M"],mudbomb:["5L21"],muddywater:["5L40"],mudshot:["5L13"],mudslap:["5L1","5D"],mudsport:["5L1"],painsplit:["5E","5T"],payback:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],revenge:["5L50"],rockslide:["5M"],rocktomb:["5M"],round:["5M"],sandstorm:["5M"],scald:["5M"],shockwave:["5E"],sleeptalk:["5E","5T"],sludgebomb:["5M"],sludgewave:["5M"],spark:["5E"],spite:["5E","5T"],stoneedge:["5M"],substitute:["5M"],surf:["5M"],swagger:["5M"],thunder:["5M"],thunderbolt:["5M","5L45"],thundershock:["5L9"],thunderwave:["5M"],toxic:["5M"],yawn:["5E","5D"],uproar:["5T"],foulplay:["5T"],magnetrise:["5T"],electroweb:["5T"],aquatail:["5T"],snore:["5T"],endeavor:["5T"],stealthrock:["5T"]}}, - mienfoo:{learnset:{acrobatics:["5M"],aerialace:["5M"],attract:["5M"],aurasphere:["5L61"],batonpass:["5E"],bounce:["5L49","5T"],brickbreak:["5M"],bulkup:["5M"],calmmind:["5M","5L25"],detect:["5L9"],dig:["5M"],doubleslap:["5L17"],doubleteam:["5M"],drainpunch:["5L33","5T"],endure:["5E"],facade:["5M"],fakeout:["5L13"],feint:["5E"],fling:["5M"],focusblast:["5M"],forcepalm:["5L29"],frustration:["5M"],grassknot:["5M"],hiddenpower:["5M"],hijumpkick:["5L53"],jumpkick:["5L37"],knockoff:["5E","5T"],lowkick:["5E","5T"],lowsweep:["5M"],meditate:["5L5"],mefirst:["5E"],payback:["5M"],poisonjab:["5M"],pound:["5L1"],protect:["5M"],psychup:["5M"],quickguard:["5L45"],raindance:["5M"],reflect:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],reversal:["5L57"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],smellingsalt:["5E"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swift:["5L21"],swordsdance:["5M"],taunt:["5M"],toxic:["5M"],uturn:["5M","5L41"],vitalthrow:["5E"],workup:["5M"],dualchop:["5T"],snore:["5T"],roleplay:["5T"],helpinghand:["5T"],sleeptalk:["5T"]}}, - mienshao:{learnset:{acrobatics:["5M"],aerialace:["5M"],attract:["5M"],aurasphere:["5L70"],bounce:["5L49","5T"],brickbreak:["5M"],bulkup:["5M"],calmmind:["5M","5L25"],detect:["5L1","5L9"],dig:["5M"],doubleslap:["5L17"],doubleteam:["5M"],drainpunch:["5L33","5T"],facade:["5M"],fakeout:["5L1","5L13"],fling:["5M"],focusblast:["5M"],forcepalm:["5L29"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],hiddenpower:["5M"],hijumpkick:["5L56"],hyperbeam:["5M"],jumpkick:["5L37"],lowsweep:["5M"],meditate:["5L1","5L5"],payback:["5M"],poisonjab:["5M"],pound:["5L1"],protect:["5M"],psychup:["5M"],raindance:["5M"],reflect:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],reversal:["5L63"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swift:["5L21"],swordsdance:["5M"],taunt:["5M"],toxic:["5M"],uturn:["5M","5L41"],wideguard:["5L45"],workup:["5M"],dualchop:["5T"],lowkick:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],helpinghand:["5T"],sleeptalk:["5T"]}}, - druddigon:{learnset:{aerialace:["5M"],attract:["5M"],bite:["5L9","5D"],bulldoze:["5M"],chargebeam:["5M"],chipaway:["5L31"],crunch:["5L25"],crushclaw:["5E"],cut:["5M"],dig:["5M"],doubleteam:["5M"],dracometeor:["5T"],dragonclaw:["5M","5L27"],dragonrage:["5L18"],dragontail:["5M","5L45"],earthquake:["5M"],facade:["5M"],faintattack:["5E"],firefang:["5E","5D"],flamethrower:["5M"],flashcannon:["5M"],fling:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],glare:["5E"],hiddenpower:["5M"],honeclaws:["5M","5L5"],hyperbeam:["5M"],incinerate:["5M"],irontail:["5E","5T"],leer:["5L1","5S0"],metalclaw:["5E"],nightslash:["5L40"],outrage:["5L62","5T"],payback:["5M"],poisontail:["5E"],protect:["5M"],pursuit:["5E"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],revenge:["5L35"],roar:["5M"],rockclimb:["5L49"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],scaryface:["5L13"],scratch:["5L1","5S0"],shadowclaw:["5M"],slash:["5L21"],sludgebomb:["5M"],smackdown:["5M"],snarl:["5M"],snatch:["5E","5T"],strength:["5M"],substitute:["5M"],suckerpunch:["5E","5D"],sunnyday:["5M"],superpower:["5L55","5T"],surf:["5M"],swagger:["5M"],taunt:["5M"],thunderfang:["5E"],torment:["5M"],toxic:["5M"],ironhead:["5T"],gunkshot:["5T"],thunderpunch:["5T"],firepunch:["5T"],aquatail:["5T"],darkpulse:["5T"],dragonpulse:["5T"],snore:["5T"],heatwave:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - golett:{learnset:{astonish:["5L1"],brickbreak:["5M"],bulldoze:["5M"],curse:["5L40"],defensecurl:["5L1"],doubleteam:["5M"],dynamicpunch:["5L30"],earthquake:["5M","5L45"],facade:["5M"],flash:["5M"],fling:["5M"],focusblast:["5M"],focuspunch:["5L55"],frustration:["5M"],grassknot:["5M"],gyroball:["5M"],hammerarm:["5L50"],hiddenpower:["5M"],icebeam:["5M"],irondefense:["5L17","5T"],lowsweep:["5M"],magnitude:["5L25"],megapunch:["5L21"],mudslap:["5L5"],nightshade:["5L35"],pound:["5L1"],protect:["5M"],psychic:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],rockpolish:["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],rollout:["5L9","5D"],round:["5M"],safeguard:["5M"],shadowball:["5M"],shadowpunch:["5L13"],strength:["5M"],substitute:["5M"],swagger:["5M"],telekinesis:["5M"],thief:["5M"],toxic:["5M"],signalbeam:["5T"],lowkick:["5T"],thunderpunch:["5T","5D"],firepunch:["5T","5D"],icepunch:["5T"],magiccoat:["5T"],block:["5T"],earthpower:["5T"],gravity:["5T"],superpower:["5T"],icywind:["5T"],snore:["5T"],drainpunch:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - golurk:{learnset:{astonish:["5L1"],brickbreak:["5M"],bulldoze:["5M"],chargebeam:["5M"],curse:["5L40"],defensecurl:["5L1"],doubleteam:["5M"],dynamicpunch:["5L30"],earthquake:["5M","5L50"],facade:["5M"],flash:["5M"],flashcannon:["5M"],fling:["5M"],fly:["5M"],focusblast:["5M"],focuspunch:["5L70"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],gyroball:["5M","5S0"],hammerarm:["5L60","5S0"],heavyslam:["5L43"],hiddenpower:["5M"],hyperbeam:["5M","5S0"],icebeam:["5M"],irondefense:["5L17","5T"],lowsweep:["5M"],magnitude:["5L25"],megapunch:["5L21"],mudslap:["5L1","5L5"],nightshade:["5L35"],pound:["5L1"],protect:["5M"],psychic:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],rockpolish:["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],rollout:["5L9"],round:["5M"],safeguard:["5M"],shadowball:["5M"],shadowpunch:["5L13","5S0"],solarbeam:["5M"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],swagger:["5M"],telekinesis:["5M"],thief:["5M"],thunderbolt:["5M"],toxic:["5M"],signalbeam:["5T"],lowkick:["5T"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],magiccoat:["5T"],block:["5T"],earthpower:["5T"],gravity:["5T"],superpower:["5T"],icywind:["5T"],zenheadbutt:["5T"],snore:["5T"],drainpunch:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - pawniard:{learnset:{aerialace:["5M"],assurance:["5L33"],attract:["5M"],brickbreak:["5M"],cut:["5M"],dig:["5M"],doubleteam:["5M"],embargo:["5M","5L41"],facade:["5M"],faintattack:["5L17"],falseswipe:["5M"],fling:["5M"],frustration:["5M"],furycutter:["5L9","5D"],grassknot:["5M"],guillotine:["5L62"],headbutt:["5E"],hiddenpower:["5M"],honeclaws:["5M"],irondefense:["5L46","5T"],ironhead:["5L54","5T"],leer:["5L6"],lowsweep:["5M"],meanlook:["5E"],metalclaw:["5L25"],metalsound:["5L38"],nightslash:["5L49"],payback:["5M"],poisonjab:["5M"],protect:["5M"],psychocut:["5E","5D"],pursuit:["5E"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],revenge:["5E"],rockpolish:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],sandstorm:["5M"],scaryface:["5L22"],scratch:["5L1"],shadowclaw:["5M"],slash:["5L30"],snarl:["5M"],stealthrock:["5E","5T"],substitute:["5M"],suckerpunch:["5E","5D"],swagger:["5M"],swordsdance:["5M","5L57"],taunt:["5M"],thief:["5M"],thunderwave:["5M"],torment:["5M","5L14"],toxic:["5M"],xscissor:["5M"],dualchop:["5T"],lowkick:["5T"],foulplay:["5T"],magnetrise:["5T"],darkpulse:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],spite:["5T"],snatch:["5T"],sleeptalk:["5T"]}}, - bisharp:{learnset:{aerialace:["5M"],assurance:["5L33"],attract:["5M"],brickbreak:["5M"],cut:["5M"],dig:["5M"],doubleteam:["5M"],embargo:["5M","5L41"],facade:["5M"],faintattack:["5L17"],falseswipe:["5M"],fling:["5M"],focusblast:["5M"],frustration:["5M"],furycutter:["5L1","5L9"],gigaimpact:["5M"],grassknot:["5M"],guillotine:["5L71"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],irondefense:["5L46","5T"],ironhead:["5L57","5T"],leer:["5L1","5L6"],lowsweep:["5M"],metalburst:["5L1"],metalclaw:["5L25"],metalsound:["5L38"],nightslash:["5L49"],payback:["5M"],poisonjab:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],rockpolish:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],sandstorm:["5M"],scaryface:["5L22"],scratch:["5L1"],shadowclaw:["5M"],slash:["5L30"],snarl:["5M"],stoneedge:["5M"],substitute:["5M"],swagger:["5M"],swordsdance:["5M","5L63"],taunt:["5M"],thief:["5M"],thunderwave:["5M"],torment:["5M","5L1","5L14"],toxic:["5M"],xscissor:["5M"],dualchop:["5T"],lowkick:["5T"],foulplay:["5T"],magnetrise:["5T"],darkpulse:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],spite:["5T"],snatch:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - bouffalant:{learnset:{aerialace:["5M"],amnesia:["5E"],attract:["5M"],bulldoze:["5M"],cut:["5M"],doubleteam:["5M"],earthquake:["5M"],facade:["5M"],focusenergy:["5L36"],frustration:["5M"],furyattack:["5L11"],gigaimpact:["5M","5L61"],headbutt:["5E"],headcharge:["5L31"],hiddenpower:["5M"],hornattack:["5L16"],ironhead:["5E","5T"],leer:["5L1"],megahorn:["5L41"],mudshot:["5E"],mudslap:["5E"],payback:["5M"],poisonjab:["5M"],protect:["5M"],pursuit:["5L1"],rage:["5L6"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],revenge:["5L26"],reversal:["5L46"],rockclimb:["5E"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],scaryface:["5L21"],skullbash:["5E"],stomp:["5E"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],surf:["5M"],swagger:["5M"],swordsdance:["5M","5L56"],taunt:["5M"],thrash:["5L51"],toxic:["5M"],wildcharge:["5M"],workup:["5M"],uproar:["5T"],superpower:["5T"],zenheadbutt:["5T"],snore:["5T"],endeavor:["5T"],outrage:["5T"],sleeptalk:["5T"]}}, - rufflet:{learnset:{aerialace:["5M","5L23"],airslash:["5L41"],attract:["5M"],bravebird:["5L59"],bulkup:["5M"],crushclaw:["5L46"],cut:["5M"],defog:["5L32"],doubleteam:["5M"],facade:["5M"],fly:["5M"],frustration:["5M"],furyattack:["5L5"],hiddenpower:["5M"],honeclaws:["5M","5L14"],leer:["5L1"],peck:["5L1"],pluck:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],scaryface:["5L19"],shadowclaw:["5M"],skydrop:["5M","5L50"],slash:["5L28"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],tailwind:["5L37","5T"],thrash:["5L64"],toxic:["5M"],uturn:["5M"],whirlwind:["5L55"],wingattack:["5L10"],workup:["5M"],superpower:["5T"],snore:["5T"],heatwave:["5T"],roost:["5T"],sleeptalk:["5T"]}}, - braviary:{learnset:{aerialace:["5M","5L23","5S0"],airslash:["5L41"],attract:["5M"],bravebird:["5L63"],bulkup:["5M"],crushclaw:["5L46"],cut:["5M"],defog:["5L32"],doubleteam:["5M"],facade:["5M"],fly:["5M"],frustration:["5M"],furyattack:["5L1","5L5"],gigaimpact:["5M"],hiddenpower:["5M"],honeclaws:["5M","5L14","5S0"],hyperbeam:["5M"],leer:["5L1"],peck:["5L1"],pluck:["5M"],protect:["5M"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],scaryface:["5L19","5S0"],shadowclaw:["5M"],skydrop:["5M","5L50"],slash:["5L28"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],superpower:["5L51","5T"],swagger:["5M"],tailwind:["5L37","5T"],thrash:["5L70"],toxic:["5M"],uturn:["5M"],whirlwind:["5L57"],wingattack:["5L1","5L10","5S0"],workup:["5M"],snore:["5T"],heatwave:["5T"],skyattack:["5T"],roost:["5T"],sleeptalk:["5T"]}}, - vullaby:{learnset:{aerialace:["5M"],airslash:["5L41"],attract:["5M"],bravebird:["5L59"],cut:["5M"],darkpulse:["5L46","5T"],defog:["5L32"],doubleteam:["5M"],embargo:["5M","5L50"],facade:["5M"],faintattack:["5L23"],faketears:["5E"],flatter:["5L19"],fly:["5M"],frustration:["5M"],furyattack:["5L5"],gust:["5L1"],hiddenpower:["5M"],incinerate:["5M"],knockoff:["5E","5T"],leer:["5L1"],meanlook:["5E"],mirrormove:["5L64"],nastyplot:["5L14"],payback:["5M"],pluck:["5M","5L10"],protect:["5M"],psychup:["5M"],punishment:["5L28"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],rocksmash:["5M"],rocktomb:["5M"],roost:["5E","5T"],round:["5M"],scaryface:["5E"],shadowball:["5M"],snarl:["5M"],steelwing:["5E"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],tailwind:["5L37","5T"],taunt:["5M"],thief:["5M"],torment:["5M"],toxic:["5M"],uturn:["5M"],whirlwind:["5L55"],block:["5T"],foulplay:["5T"],irondefense:["5T"],snore:["5T"],heatwave:["5T"],snatch:["5T"],sleeptalk:["5T"]}}, - mandibuzz:{learnset:{aerialace:["5M"],airslash:["5L41"],attract:["5M"],bonerush:["5L51"],bravebird:["5L63"],cut:["5M"],darkpulse:["5L46","5T"],defog:["5L32"],doubleteam:["5M"],embargo:["5M","5L50"],facade:["5M"],faintattack:["5L23","5S0"],flatter:["5L19","5S0"],fly:["5M"],frustration:["5M"],furyattack:["5L1","5L5"],gigaimpact:["5M"],gust:["5L1"],hiddenpower:["5M"],hyperbeam:["5M"],incinerate:["5M"],leer:["5L1"],mirrormove:["5L70"],nastyplot:["5L14","5S0"],payback:["5M"],pluck:["5M","5L1","5L10","5S0"],protect:["5M"],psychup:["5M"],punishment:["5L28"],raindance:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],shadowball:["5M"],snarl:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],tailwind:["5L37","5T"],taunt:["5M"],thief:["5M"],torment:["5M"],toxic:["5M"],uturn:["5M"],whirlwind:["5L57"],block:["5T"],foulplay:["5T"],irondefense:["5T"],snore:["5T"],knockoff:["5T"],heatwave:["5T"],skyattack:["5T"],roost:["5T"],snatch:["5T"],sleeptalk:["5T"]}}, - heatmor:{learnset:{aerialace:["5M"],amnesia:["5L46"],attract:["5M"],bind:["5L11","5T"],bodyslam:["5E"],bugbite:["5L36","5T"],curse:["5E"],cut:["5M"],dig:["5M"],doubleteam:["5M"],facade:["5M"],faintattack:["5E"],fireblast:["5M"],firespin:["5L16"],flameburst:["5L31"],flamethrower:["5M","5L51"],fling:["5M"],focusblast:["5M"],frustration:["5M"],furyswipes:["5L21"],gigaimpact:["5M"],heatwave:["5E","5T","5D"],hiddenpower:["5M"],honeclaws:["5M"],incinerate:["5M","5L1","5D"],inferno:["5L61"],lick:["5L1"],nightslash:["5E"],odorsleuth:["5L6"],protect:["5M"],pursuit:["5E"],raindance:["5M"],rest:["5M"],"return":["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],shadowclaw:["5M"],slash:["5L41"],sleeptalk:["5E","5T"],snatch:["5L26","5T"],solarbeam:["5M"],spitup:["5L56"],stockpile:["5L56"],substitute:["5M"],suckerpunch:["5E"],sunnyday:["5M"],swagger:["5M"],swallow:["5L56"],taunt:["5M"],thief:["5M"],tickle:["5E"],toxic:["5M"],willowisp:["5M"],wrap:["5E"],lowkick:["5T"],thunderpunch:["5T"],firepunch:["5T"],superpower:["5T"],snore:["5T"],knockoff:["5T"],gigadrain:["5T","5D"],gastroacid:["5T"],recycle:["5T"]}}, - durant:{learnset:{aerialace:["5M"],agility:["5L16"],attract:["5M"],batonpass:["5E"],bite:["5L11"],bugbite:["5L26","5T"],crunch:["5L31"],cut:["5M"],dig:["5M","5L41"],doubleteam:["5M"],endure:["5E","5D"],energyball:["5M"],entrainment:["5L46"],facade:["5M"],faintattack:["5E"],flashcannon:["5M"],frustration:["5M"],furycutter:["5L6","5D"],gigaimpact:["5M"],guillotine:["5L61"],hiddenpower:["5M"],honeclaws:["5M"],irondefense:["5L56","5T"],ironhead:["5L36","5T"],metalclaw:["5L21"],metalsound:["5L66"],protect:["5M"],rest:["5M"],retaliate:["5M"],"return":["5M"],rockclimb:["5E"],rockpolish:["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],sandattack:["5L1"],sandstorm:["5M"],screech:["5E"],shadowclaw:["5M"],stoneedge:["5M"],strength:["5M"],strugglebug:["5M"],substitute:["5M"],swagger:["5M"],thunderfang:["5E","5D"],thunderwave:["5M"],toxic:["5M"],vicegrip:["5L1"],xscissor:["5M","5L51"],superpower:["5T"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - deino:{learnset:{assurance:["5E"],astonish:["5E"],attract:["5M"],bite:["5L9"],bodyslam:["5L48"],crunch:["5L25"],darkpulse:["5E","5T"],doublehit:["5E"],doubleteam:["5M"],dracometeor:["5T"],dragonbreath:["5L17"],dragonpulse:["5L32","5T"],dragonrage:["5L1","5S0"],dragonrush:["5L42"],dragontail:["5M"],earthpower:["5E","5T"],facade:["5M"],firefang:["5E"],focusenergy:["5L4"],frustration:["5M"],headbutt:["5L12"],headsmash:["5E"],hiddenpower:["5M"],hypervoice:["5L58","5T"],icefang:["5E"],incinerate:["5M"],outrage:["5L62","5T"],protect:["5M"],psychup:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],roar:["5M","5L20"],rocksmash:["5M"],round:["5M"],scaryface:["5L52"],screech:["5E"],slam:["5L28"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],tackle:["5L1","5S0"],taunt:["5M"],thief:["5M"],thunderfang:["5E"],thunderwave:["5M"],torment:["5M"],toxic:["5M"],workup:["5M","5L38"],uproar:["5T"],superpower:["5T"],aquatail:["5T"],zenheadbutt:["5T"],snore:["5T"],spite:["5T"],sleeptalk:["5T"]}}, - zweilous:{learnset:{attract:["5M"],bite:["5L1","5L9"],bodyslam:["5L48"],crunch:["5L25"],doublehit:["5L1"],doubleteam:["5M"],dracometeor:["5T"],dragonbreath:["5L17"],dragonpulse:["5L32","5T"],dragonrage:["5L1"],dragonrush:["5L42"],dragontail:["5M"],facade:["5M"],focusenergy:["5L1","5L4"],frustration:["5M"],headbutt:["5L12"],hiddenpower:["5M"],hypervoice:["5L64","5T"],incinerate:["5M"],outrage:["5L71","5T"],protect:["5M"],psychup:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],roar:["5M","5L20"],rocksmash:["5M"],round:["5M"],scaryface:["5L55"],slam:["5L28"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],taunt:["5M"],thief:["5M"],thunderwave:["5M"],torment:["5M"],toxic:["5M"],workup:["5M","5L38"],uproar:["5T"],earthpower:["5T"],superpower:["5T"],aquatail:["5T"],darkpulse:["5T"],zenheadbutt:["5T"],snore:["5T"],spite:["5T"],sleeptalk:["5T"]}}, - hydreigon:{learnset:{acrobatics:["5M"],attract:["5M"],bite:["5L1","5L9"],bodyslam:["5L48"],bulldoze:["5M"],chargebeam:["5M"],crunch:["5L25"],doubleteam:["5M"],dracometeor:["5T"],dragonbreath:["5L17","5S0"],dragonpulse:["5L32","5T"],dragonrage:["5L1"],dragonrush:["5L42"],dragontail:["5M"],earthquake:["5M"],echoedvoice:["5M"],facade:["5M"],fireblast:["5M"],flamethrower:["5M","5S0"],flashcannon:["5M"],fly:["5M"],focusblast:["5M","5S0"],focusenergy:["5L1","5L4"],frustration:["5M"],gigaimpact:["5M"],headbutt:["5L12"],hiddenpower:["5M"],hyperbeam:["5M"],hypervoice:["5L68","5S0","5T"],incinerate:["5M"],outrage:["5L79","5T"],payback:["5M"],protect:["5M"],psychup:["5M"],raindance:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],roar:["5M","5L20"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],scaryface:["5L55"],slam:["5L28"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],surf:["5M"],swagger:["5M"],taunt:["5M"],thief:["5M"],thunderwave:["5M"],torment:["5M"],toxic:["5M"],triattack:["5L1"],uturn:["5M"],workup:["5M","5L38"],signalbeam:["5T"],uproar:["5T"],earthpower:["5T"],superpower:["5T"],aquatail:["5T"],darkpulse:["5T"],zenheadbutt:["5T"],irontail:["5T"],snore:["5T"],heatwave:["5T"],tailwind:["5T"],roost:["5T"],spite:["5T"],sleeptalk:["5T"]}}, - larvesta:{learnset:{acrobatics:["5M"],amnesia:["5L80"],bugbite:["5L40","5T"],bugbuzz:["5L70"],calmmind:["5M"],doubleedge:["5L50"],doubleteam:["5M"],ember:["5L1"],endure:["5E"],facade:["5M"],fireblast:["5M"],flamecharge:["5M","5L30"],flamethrower:["5M"],flamewheel:["5L60"],flareblitz:["5L100"],foresight:["5E"],frustration:["5M"],harden:["5E"],hiddenpower:["5M"],incinerate:["5M"],leechlife:["5L10"],lightscreen:["5M"],magnetrise:["5E","5T"],morningsun:["5E"],overheat:["5M"],protect:["5M"],psychic:["5M"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],solarbeam:["5M"],stringshot:["5E","5L1"],strugglebug:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],takedown:["5L20"],thrash:["5L90"],toxic:["5M"],uturn:["5M"],wildcharge:["5M"],willowisp:["5M"],zenheadbutt:["5E","5T"],signalbeam:["5T"],snore:["5T"],heatwave:["5T"],gigadrain:["5T"],sleeptalk:["5T"]}}, - volcarona:{learnset:{acrobatics:["5M"],aerialace:["5M"],bugbuzz:["5L70","5S1"],calmmind:["5M"],doubleteam:["5M"],ember:["5L1"],facade:["5M"],fierydance:["5L100"],fireblast:["5M"],firespin:["5L30","5S0"],flamecharge:["5M"],flamethrower:["5M"],fly:["5M"],frustration:["5M"],gigaimpact:["5M"],gust:["5L1","5L20","5S0"],heatwave:["5L60","5T"],hiddenpower:["5M"],hurricane:["5L90"],hyperbeam:["5M","5S1"],incinerate:["5M"],leechlife:["5L1","5L10","5S0"],lightscreen:["5M"],overheat:["5M","5S1"],poisonjab:["5M"],protect:["5M"],psychic:["5M"],quiverdance:["5L59","5S1"],ragepowder:["5L80"],rest:["5M"],"return":["5M"],round:["5M"],safeguard:["5M"],silverwind:["5L50"],solarbeam:["5M"],stringshot:["5L1","5S0"],strugglebug:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],toxic:["5M"],uturn:["5M"],whirlwind:["5L40"],wildcharge:["5M"],willowisp:["5M"],bugbite:["5T"],signalbeam:["5T"],magnetrise:["5T"],zenheadbutt:["5T"],snore:["5T"],tailwind:["5T"],gigadrain:["5T"],roost:["5T"],sleeptalk:["5T"]}}, - cobalion:{learnset:{aerialace:["5M"],calmmind:["5M"],closecombat:["5L73"],cut:["5M"],doublekick:["5L7"],doubleteam:["5M"],facade:["5M"],falseswipe:["5M"],flashcannon:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],helpinghand:["5L25","5T"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],ironhead:["5L37","5T"],leer:["5L1"],metalburst:["5L67"],metalclaw:["5L13"],poisonjab:["5M"],protect:["5M"],psychup:["5M"],quickattack:["5L1"],quickguard:["5L55"],reflect:["5M"],rest:["5M"],retaliate:["5M","5L31"],"return":["5M"],roar:["5M"],rockpolish:["5M"],rocksmash:["5M"],round:["5M"],sacredsword:["5L42"],safeguard:["5M"],sandstorm:["5M"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],swagger:["5M"],swordsdance:["5M","5L49"],takedown:["5L19"],taunt:["5M"],thunderwave:["5M"],toxic:["5M"],voltswitch:["5M"],workup:["5M","5L61"],xscissor:["5M"],bounce:["5T"],block:["5T"],magnetrise:["5T"],irondefense:["5T"],superpower:["5T"],zenheadbutt:["5T"],snore:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - terrakion:{learnset:{aerialace:["5M"],bulldoze:["5M"],calmmind:["5M"],closecombat:["5L73"],cut:["5M"],doublekick:["5L7"],doubleteam:["5M"],earthquake:["5M"],facade:["5M"],falseswipe:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],helpinghand:["5L25","5T"],hiddenpower:["5M"],hyperbeam:["5M"],leer:["5L1"],poisonjab:["5M"],protect:["5M"],psychup:["5M"],quickattack:["5L1"],quickguard:["5L55"],reflect:["5M"],rest:["5M"],retaliate:["5M","5L31"],"return":["5M"],roar:["5M"],rockpolish:["5M"],rockslide:["5M","5L37"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],sacredsword:["5L42"],safeguard:["5M"],sandstorm:["5M"],smackdown:["5M","5L13"],stoneedge:["5M","5L67"],strength:["5M"],substitute:["5M"],swagger:["5M"],swordsdance:["5M","5L49"],takedown:["5L19"],taunt:["5M"],toxic:["5M"],workup:["5M","5L61"],xscissor:["5M"],ironhead:["5T"],block:["5T"],earthpower:["5T"],superpower:["5T"],zenheadbutt:["5T"],snore:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - virizion:{learnset:{aerialace:["5M"],calmmind:["5M"],closecombat:["5L73"],cut:["5M"],doublekick:["5L7"],doubleteam:["5M"],energyball:["5M"],facade:["5M"],falseswipe:["5M"],flash:["5M"],focusblast:["5M"],frustration:["5M"],gigadrain:["5L37","5T"],gigaimpact:["5M"],grassknot:["5M"],helpinghand:["5L25","5T"],hiddenpower:["5M"],hyperbeam:["5M"],leafblade:["5L67"],leer:["5L1"],lightscreen:["5M"],magicalleaf:["5L13"],protect:["5M"],psychup:["5M"],quickattack:["5L1"],quickguard:["5L55"],reflect:["5M"],rest:["5M"],retaliate:["5M","5L31"],"return":["5M"],roar:["5M"],rocksmash:["5M"],round:["5M"],sacredsword:["5L42"],safeguard:["5M"],solarbeam:["5M"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],swordsdance:["5M","5L49"],takedown:["5L19"],taunt:["5M"],toxic:["5M"],workup:["5M","5L61"],xscissor:["5M"],seedbomb:["5T"],bounce:["5T"],block:["5T"],superpower:["5T"],zenheadbutt:["5T"],snore:["5T"],synthesis:["5T"],worryseed:["5T"],sleeptalk:["5T"]}}, - tornadus:{learnset:{acrobatics:["5M"],aerialace:["5M"],agility:["5L37"],aircutter:["5L25"],airslash:["5L43","5S0"],astonish:["5L1"],attract:["5M"],bite:["5L13"],brickbreak:["5M"],bulkup:["5M"],crunch:["5L49"],darkpulse:["5L73","5T"],doubleteam:["5M"],embargo:["5M"],extrasensory:["5L31"],facade:["5M"],fling:["5M"],fly:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],gust:["5L1"],hammerarm:["5L79","5S0"],hiddenpower:["5M","5S0"],hurricane:["5L67","5S0"],hyperbeam:["5M"],incinerate:["5M"],payback:["5M"],protect:["5M"],psychic:["5M"],raindance:["5M","5L61"],rest:["5M"],"return":["5M"],revenge:["5L19"],rocksmash:["5M"],round:["5M"],skydrop:["5M"],sludgebomb:["5M"],sludgewave:["5M"],smackdown:["5M"],strength:["5M"],substitute:["5M"],swagger:["5M","5L7"],tailwind:["5L55","5T"],taunt:["5M"],thief:["5M"],thrash:["5L85"],torment:["5M"],toxic:["5M"],uproar:["5L1","5T"],uturn:["5M"],foulplay:["5T"],superpower:["5T"],icywind:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],heatwave:["5T"],roleplay:["5T"],sleeptalk:["5T"]}}, - thundurus:{learnset:{agility:["5L37"],astonish:["5L1"],attract:["5M"],bite:["5L13"],brickbreak:["5M"],bulkup:["5M"],charge:["5L55"],chargebeam:["5M"],crunch:["5L49"],darkpulse:["5L73","5T"],discharge:["5L43"],doubleteam:["5M"],embargo:["5M"],facade:["5M"],flashcannon:["5M"],fling:["5M"],fly:["5M"],focusblast:["5M","5S0"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],hammerarm:["5L79","5S0"],healblock:["5L31"],hiddenpower:["5M"],hyperbeam:["5M"],incinerate:["5M"],nastyplot:["5L61"],payback:["5M"],protect:["5M"],psychic:["5M"],raindance:["5M"],rest:["5M"],"return":["5M"],revenge:["5L19"],rocksmash:["5M"],round:["5M"],shockwave:["5L25"],skydrop:["5M"],sludgebomb:["5M"],sludgewave:["5M"],smackdown:["5M"],strength:["5M"],substitute:["5M"],swagger:["5M","5L7"],taunt:["5M"],thief:["5M"],thrash:["5L85"],thunder:["5M","5L67","5S0"],thunderbolt:["5M"],thundershock:["5L1"],thunderwave:["5M"],torment:["5M"],toxic:["5M"],uproar:["5L1","5T"],uturn:["5M"],voltswitch:["5M"],wildcharge:["5M","5S0"],thunderpunch:["5T"],foulplay:["5T"],superpower:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],sleeptalk:["5T"]}}, - reshiram:{learnset:{ancientpower:["5L15"],blueflare:["5L100","5S0"],crunch:["5L71"],cut:["5M"],doubleteam:["5M"],dracometeor:["5T","5S0"],dragonbreath:["5L29"],dragonclaw:["5M"],dragonpulse:["5L54","5T"],dragonrage:["5L1"],dragontail:["5M"],echoedvoice:["5M"],extrasensory:["5L43"],facade:["5M"],fireblast:["5M","5L78"],firefang:["5L1"],flamecharge:["5M"],flamethrower:["5M","5L22"],fling:["5M"],fly:["5M"],focusblast:["5M"],frustration:["5M"],fusionflare:["5L50","5S0"],gigaimpact:["5M"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],hypervoice:["5L92","5T"],imprison:["5L8","5L64"],incinerate:["5M"],lightscreen:["5M"],mist:["5S0"],outrage:["5L85","5T"],overheat:["5M"],payback:["5M"],protect:["5M"],psychic:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M"],shadowclaw:["5M"],slash:["5L36"],solarbeam:["5M"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],toxic:["5M"],willowisp:["5M"],earthpower:["5T"],zenheadbutt:["5T"],snore:["5T"],heatwave:["5T"],tailwind:["5T"],roost:["5T"],sleeptalk:["5T"]}}, - zekrom:{learnset:{ancientpower:["5L15"],boltstrike:["5L100","5S0"],chargebeam:["5M"],crunch:["5L71"],cut:["5M"],doubleteam:["5M"],dracometeor:["5T"],dragonbreath:["5L29"],dragonclaw:["5M","5L54"],dragonrage:["5L1"],dragontail:["5M"],echoedvoice:["5M"],facade:["5M"],flash:["5M"],flashcannon:["5M"],fling:["5M"],fly:["5M"],focusblast:["5M"],frustration:["5M"],fusionbolt:["5L50","5S0"],gigaimpact:["5M"],haze:["5S0"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],hypervoice:["5L92","5T"],imprison:["5L8","5L64"],lightscreen:["5M"],outrage:["5L85","5S0","5T"],payback:["5M"],protect:["5M"],psychic:["5M"],raindance:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M"],shadowclaw:["5M"],slash:["5L36"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],swagger:["5M"],thunder:["5M","5L78"],thunderbolt:["5M","5L22"],thunderfang:["5L1"],thunderwave:["5M"],toxic:["5M"],voltswitch:["5M"],wildcharge:["5M"],zenheadbutt:["5L43","5T"],signalbeam:["5T"],thunderpunch:["5T"],earthpower:["5T"],magnetrise:["5T"],dragonpulse:["5T"],snore:["5T"],tailwind:["5T"],roost:["5T"],sleeptalk:["5T"]}}, - landorus:{learnset:{attract:["5M"],block:["5L1","5T"],brickbreak:["5M"],bulkup:["5M"],bulldoze:["5M","5L19"],calmmind:["5M"],dig:["5M"],doubleteam:["5M"],earthpower:["5L43","5T"],earthquake:["5M","5L55"],explosion:["5M"],extrasensory:["5L31"],facade:["5M"],fissure:["5L67"],fling:["5M"],fly:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],hammerarm:["5L79"],hiddenpower:["5M"],hyperbeam:["5M"],imprison:["5L7"],mudshot:["5L1"],outrage:["5L85","5T"],payback:["5M"],protect:["5M"],psychic:["5M"],punishment:["5L13"],rest:["5M"],"return":["5M"],rockpolish:["5M"],rockslide:["5M","5L49"],rocksmash:["5M"],rockthrow:["5L25"],rocktomb:["5M","5L1"],round:["5M"],sandstorm:["5M","5L61"],sludgebomb:["5M"],sludgewave:["5M"],smackdown:["5M"],stoneedge:["5M","5L73"],strength:["5M"],substitute:["5M"],swagger:["5M"],swordsdance:["5M","5L37"],toxic:["5M"],uturn:["5M"],gravity:["5T"],superpower:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],stealthrock:["5T"],sleeptalk:["5T"]}}, - kyurem:{learnset:{ancientpower:["5L15"],blizzard:["5M","5L78"],cut:["5M"],doubleteam:["5M"],dracometeor:["5T"],dragonbreath:["5L29"],dragonclaw:["5M"],dragonpulse:["5L57","5T"],dragonrage:["5L1"],dragontail:["5M"],echoedvoice:["5M"],endeavor:["5L71","5T"],facade:["5M"],flashcannon:["5M"],fling:["5M"],fly:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],glaciate:["5L50"],hail:["5M"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],hypervoice:["5L92","5T"],icebeam:["5M","5L22"],icywind:["5L1","5T"],imprison:["5L8","5L64"],lightscreen:["5M"],outrage:["5L85","5T"],payback:["5M"],protect:["5M"],psychic:["5M"],raindance:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],safeguard:["5M"],scaryface:["5L43"],shadowball:["5M"],shadowclaw:["5M"],slash:["5L36"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],toxic:["5M"],signalbeam:["5T"],ironhead:["5T"],earthpower:["5T"],zenheadbutt:["5T"],snore:["5T"],roost:["5T"],sleeptalk:["5T"]}}, - kyuremblack:{learnset:{ancientpower:["5L15"],blizzard:["5M","5L78"],cut:["5M"],doubleteam:["5M"],dracometeor:["5T"],dragonbreath:["5L29"],dragonclaw:["5M"],dragonpulse:["5L57","5T"],dragonrage:["5L1"],dragontail:["5M"],echoedvoice:["5M"],endeavor:["5L71","5T"],facade:["5M"],flashcannon:["5M"],fling:["5M"],fly:["5M"],focusblast:["5M"],freezeshock:["5L43"],frustration:["5M"],fusionbolt:["5L50"],gigaimpact:["5M"],hail:["5M"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],hypervoice:["5L92","5T"],icebeam:["5M","5L22"],icywind:["5L1","5T"],imprison:["5L8","5L64"],lightscreen:["5M"],outrage:["5L85","5T"],payback:["5M"],protect:["5M"],psychic:["5M"],raindance:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M"],shadowclaw:["5M"],slash:["5L36"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],toxic:["5M"],signalbeam:["5T"],ironhead:["5T"],earthpower:["5T"],zenheadbutt:["5T"],snore:["5T"],roost:["5T"],sleeptalk:["5T"]}}, - kyuremwhite:{learnset:{ancientpower:["5L15"],blizzard:["5M","5L78"],cut:["5M"],doubleteam:["5M"],dracometeor:["5T"],dragonbreath:["5L29"],dragonclaw:["5M"],dragonpulse:["5L57","5T"],dragonrage:["5L1"],dragontail:["5M"],echoedvoice:["5M"],endeavor:["5L71","5T"],facade:["5M"],flashcannon:["5M"],fling:["5M"],fly:["5M"],focusblast:["5M"],frustration:["5M"],fusionflare:["5L50"],gigaimpact:["5M"],hail:["5M"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],hypervoice:["5L92","5T"],icebeam:["5M","5L22"],iceburn:["5L43"],icywind:["5L1","5T"],imprison:["5L8","5L64"],lightscreen:["5M"],outrage:["5L85","5T"],payback:["5M"],protect:["5M"],psychic:["5M"],raindance:["5M"],reflect:["5M"],rest:["5M"],"return":["5M"],rockslide:["5M"],rocksmash:["5M"],rocktomb:["5M"],round:["5M"],safeguard:["5M"],shadowball:["5M"],shadowclaw:["5M"],slash:["5L36"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],toxic:["5M"],signalbeam:["5T"],ironhead:["5T"],earthpower:["5T"],zenheadbutt:["5T"],snore:["5T"],roost:["5T"],sleeptalk:["5T"]}}, - keldeo:{learnset:{aerialace:["5M"],aquajet:["5L1","5S0","5S1"],aquatail:["5L37","5T"],bubblebeam:["5L13","5S0"],calmmind:["5M"],closecombat:["5L73"],cut:["5M"],doublekick:["5L7","5S0"],doubleteam:["5M"],facade:["5M"],falseswipe:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],hail:["5M"],helpinghand:["5L25","5T"],hiddenpower:["5M"],hydropump:["5L67","5S1"],hyperbeam:["5M"],leer:["5L1","5S0"],poisonjab:["5M"],protect:["5M"],psychup:["5M"],quickguard:["5L55"],raindance:["5M"],reflect:["5M"],rest:["5M"],retaliate:["5M","5L31"],"return":["5M"],roar:["5M"],rocksmash:["5M"],round:["5M"],sacredsword:["5L43","5S1"],safeguard:["5M"],scald:["5M"],secretsword:["5T"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],surf:["5M"],swagger:["5M"],swordsdance:["5M","5L49","5S1"],takedown:["5L19"],taunt:["5M"],toxic:["5M"],workup:["5M","5L61"],xscissor:["5M"],covet:["5T"],bounce:["5T"],lastresort:["5T"],superpower:["5T"],icywind:["5T"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T"]}}, - meloetta:{learnset:{acrobatics:["5M","5L26"],brickbreak:["5M"],calmmind:["5M"],chargebeam:["5M"],closecombat:["5L78","5S1"],confusion:["5L11","5S0"],doubleteam:["5M"],dreameater:["5M"],echoedvoice:["5M","5L36"],embargo:["5M"],energyball:["5M"],facade:["5M"],flash:["5M"],fling:["5M"],focusblast:["5M"],frustration:["5M"],gigaimpact:["5M"],grassknot:["5M"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M"],hypervoice:["5L64","5T"],lightscreen:["5M"],lowsweep:["5M"],payback:["5M"],perishsong:["5L85"],protect:["5M"],psybeam:["5L31"],psychic:["5M","5L57","5S1"],psychup:["5M"],psyshock:["5M"],quickattack:["5L6","5S0"],raindance:["5M"],relicsong:["5T"],rest:["5M"],retaliate:["5M"],"return":["5M"],rocksmash:["5M"],roleplay:["5L71","5T"],round:["5M","5L1","5S0","5S1"],safeguard:["5M"],shadowball:["5M"],shadowclaw:["5M"],sing:["5L16"],stoneedge:["5M"],strength:["5M"],substitute:["5M"],sunnyday:["5M"],swagger:["5M"],teeterdance:["5L21","5S1"],telekinesis:["5M"],thunder:["5M"],thunderbolt:["5M"],thunderwave:["5M"],toxic:["5M"],trickroom:["5M"],uturn:["5M","5L43"],wakeupslap:["5L50"],workup:["5M"],covet:["5T"],dualchop:["5T"],signalbeam:["5T"],lowkick:["5T"],uproar:["5T"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],magiccoat:["5T"],gravity:["5T"],lastresort:["5T"],zenheadbutt:["5T"],snore:["5T"],knockoff:["5T"],healbell:["5T"],drainpunch:["5T"],helpinghand:["5T"],trick:["5T"],magicroom:["5T"],wonderroom:["5T"],recycle:["5T"],snatch:["5T"],sleeptalk:["5T"],skillswap:["5T"]}}, - genesect:{learnset:{aerialace:["5M"],blazekick:["5S2"],blizzard:["5M"],bugbite:["5T"],bugbuzz:["5L55"],chargebeam:["5M"],darkpulse:["5T"],doubleteam:["5M"],electroweb:["5T"],energyball:["5M"],explosion:["5M"],extremespeed:["5S2"],facade:["5M"],flamecharge:["5M","5L18"],flamethrower:["5M"],flash:["5M"],flashcannon:["5M"],fly:["5M"],frustration:["5M"],furycutter:["5L7"],gigadrain:["5T"],gigaimpact:["5M"],gravity:["5T"],gunkshot:["5T"],hiddenpower:["5M"],honeclaws:["5M"],hyperbeam:["5M","5L73"],icebeam:["5M"],irondefense:["5T"],ironhead:["5T"],lastresort:["5T"],lightscreen:["5M"],lockon:["5L11"],magiccoat:["5T"],magnetbomb:["5L22","5S0","5S1"],magnetrise:["5L1","5T"],metalclaw:["5L1"],metalsound:["5L33"],protect:["5M"],psychic:["5M"],quickattack:["5L1"],recycle:["5T"],reflect:["5M"],rest:["5M"],"return":["5M"],rockpolish:["5M"],round:["5M"],screech:["5L1"],selfdestruct:["5L77"],shadowclaw:["5M"],shiftgear:["5S2"],signalbeam:["5L40","5T","5S0","5S1"],simplebeam:["5L62"],slash:["5L29"],sleeptalk:["5T"],snore:["5T"],solarbeam:["5M","5S0","5S1"],strugglebug:["5M"],substitute:["5M"],swagger:["5M"],technoblast:["5L1","5S0","5S1","5S2"],thunder:["5M"],thunderbolt:["5M"],thunderwave:["5M"],toxic:["5M"],triattack:["5L44"],uturn:["5M"],xscissor:["5M","5L51"],zapcannon:["5L66"],zenheadbutt:["5T"]}}, - chespin:{learnset:{bite:["6L11"],growl:["6L0"],leechseed:["6L15"],mudshot:["6L0"],rollout:["6L8"],solarbeam:["6L0"],tackle:["6L0"],vinewhip:["6L0"],woodhammer:["6L0"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - quilladin:{learnset:{cut:["6M"],honeclaws:["6M"],naturepower:["6M"],needlearm:["6L26"],pinmissile:["6L20"],protect:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],seedbomb:["6L35"],shadowclaw:["6M"],sleeptalk:["6M"],takedown:["6L30"]}}, - chesnaught:{learnset:{aerialace:["6M"],bellydrum:["6L0"],bulldoze:["6M"],earthquake:["6M"],facade:["6M"],feint:["6L0"],flash:["6M"],focusblast:["6M"],gigaimpact:["6L70"],grassknot:["6M"],gyroball:["6M"],hammerarm:["6L60"],painsplit:["6L52"],rockslide:["6M"],rocktomb:["6M"],sludgebomb:["6M"],spikyshield:["6L36"],stoneedge:["6M"],strength:["6M"],sunnyday:["6M"],swordsdance:["6M"],taunt:["6M"],woodhammer:["6L55"]}}, - fennekin:{learnset:{ember:["6L0"],flamecharge:["6L14"],glowpunch:["6L0"],howl:["6L11"],psybeam:["6L17"],scratch:["6L1"],tailwhip:["6L1"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - braixen:{learnset:{cut:["6M"],firespin:["6L22"],lightscreen:["6L30"],luckychant:["6L27"],protect:["6M"],psybeam:["6L18"],psyshock:["6L34"],"return":["6M"],thief:["6M"]}}, - delphox:{learnset:{calmmind:["6M"],embargo:["6M"],facade:["6M"],flamethrower:["6L42"],futuresight:["6L0"],mysticalfire:["6L36"],psychic:["6L51"],psyshock:["6M"],rest:["6M"],roleplay:["6L0"],shadowball:["6M"],solarbeam:["6M"],sunnyday:["6L55"],switcheroo:["6L0"],willowisp:["6L47"]}}, - froakie:{learnset:{aerialace:["6L0"],bounce:["6L0"],bubble:["6L0"],darkpulse:["6L0"],growl:["6L0"],lick:["6L10"],pound:["6L0"],quickattack:["6L8"],rapidspin:["6L0"],smackdown:["6L0"],waterpulse:["6L14"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - frogadier:{learnset:{fling:["6L28"],smackdown:["6L33"],smokescreen:["6L20"],round:["6L23"]}}, - greninja:{learnset:{attract:["6M"],cut:["6M"],doubleteam:["6L52"],extrasensory:["6L49"],facade:["6M"],faintattack:["6L0"],grassknot:["6M"],haze:["6L56"],hydropump:["6L60"],icebeam:["6M"],matblock:["6L0"],nightslash:["6L0"],poweruppunch:["6M"],protect:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],roleplay:["6L0"],shadowsneak:["6L0"],sleeptalk:["6M"],spikes:["6L0"],strength:["6M"],surf:["6M"],uturn:["6M"],waterfall:["6M"],watershuriken:["6L36"]}}, - bunnelby:{learnset:{doublekick:["6L20"],doubleslap:["6L10"],mudshot:["6L18"],mudslap:["6L13"],quickattack:["6L7"],takedown:["6L15"],thief:["6M"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - diggersby:{learnset:{attract:["6M"],bounce:["6L42"],bulldoze:["6L0"],cut:["6M"],dig:["6L37"],earthquake:["6L57"],facade:["6L53"],flail:["6L31"],frustration:["6M"],hammerarm:["6L60"],naturepower:["6M"],odorsleuth:["6L26"],poweruppunch:["6M"],protect:["6M"],rest:["6M"],rocktomb:["6M"],rocksmash:["6M"],rototiller:["6L0"],sleeptalk:["6M"],strength:["6M"],superfang:["6L48"],surf:["6M"],swordsdance:["6L0"]}}, - fletchling:{learnset:{agility:["6L13"],flail:["6L16"],growl:["6L1"],peck:["6L0"],quickattack:["6L6"],"return":["6M"],tackle:["6L1"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - fletchinder:{learnset:{ember:["6L17"],naturalgift:["6L31"],protect:["6M"],razorwind:["6L27"],swordsdance:["6M"],rest:["6M"],roost:["6L25"],sleeptalk:["6M"],thief:["6M"]}}, - talonflame:{learnset:{acrobatics:["6L44"],aerialace:["6M"],attract:["6M"],bravebird:["6L64"],bulkup:["6M"],confide:["6M"],facade:["6M"],fireblast:["6M"],flamecharge:["6L39"],flamethrower:["6M"],flareblitz:["6L0"],fly:["6M"],frustration:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],mefirst:["6L49"],steelwing:["6L60"],tailwind:["6L55"],toxic:["6M"],uturn:["6M"],willowisp:["6M"]}}, - scatterbug:{learnset:{stringshot:["6L0"],stunspore:["6L6"],tackle:["6L0"]}}, - spewpa:{learnset:{harden:["6L0"],protect:["6L9"]}}, - vivillon:{learnset:{drainingkiss:["6L25"],gust:["6L0"],infestation:["6L0","6M"],hurricane:["6L50"],lightscreen:["6L0"],powder:["6L0","6L55"],psybeam:["6L17"],sleeppowder:["6L0"],strugglebug:["6L12"],supersonic:["6L21"],aromatherapy:["6L31"],bugbuzz:["6L35"],safeguard:["6L41"],quiverdance:["6L45"],thief:["6M"],calmmind:["6M"],sunnyday:["6M"],raindance:["6M"],flash:["6M"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - litleo:{learnset:{echoedvoice:["6L0"],ember:["6L0"],firefang:["6L23"],headbutt:["6L11"],leer:["6L0"],nobleroar:["6L17"],tackle:["6L0"],takedown:["6L20"],workup:["6L8"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - pyroar:{learnset:{attract:["6M"],crunch:["6L42"],flamethrower:["6L39"],hyperbeam:["6L0"],hypervoice:["6L48"],incinerate:["6L51"],overheat:["6L57"],protect:["6M"],"return":["6M"],rocksmash:["6M"],strength:["6M"]}}, - flabebe:{learnset:{dazzlinggleam:["6L0"],fairywind:["6L0"],luckychant:["6L10"],razorleaf:["6L15"],recover:["6L0"],protect:["6M"],tackle:["6L0"],vinewhip:["6L0"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - floette:{learnset:{aromatherapy:["6L38"],magicalleaf:["6L25"],mistyterrain:["6L43"],moonblast:["6L46"],petalblizzard:["6L33"],petaldance:["6L51"],solarbeam:["6L58"],wish:["6L20"]}}, - florges:{learnset:{disalarmingvoice:["6L0"],flowershield:["6L0"],grassknot:["6L0"],petaldance:["6L0"]}}, - skiddo:{learnset:{bulldoze:["6L26"],growth:["6L0"],naturepower:["6M"],protect:["6M"],razorleaf:["6L13"],rest:["6M"],"return":["6M"],rockslide:["6L0"],rocksmash:["6M"],seedbomb:["6L30"],sleeptalk:["6M"],strength:["6M"],synthesis:["6L20"],takedown:["6L22"],tackle:["6L0"],tailwhip:["6L0"],vinewhip:["6L0"],worryseed:["6L16"],toxic:["6M"],substitute:["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - gogoat:{learnset:{bulkup:["6L34"],doubleedge:["6L40"],earthquake:["6L60"],hornleech:["6L47"],leafblade:["6L55"],milkdrink:["6L58"]}}, - pancham:{learnset:{armthrust:["6L0"],bodyslam:["6L33"],circlethrow:["6L25"],cometpunch:["6L15"],cut:["6M"],falseswipe:["6M"],karatechop:["6L12"],leer:["6L0"],protect:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],shadowclaw:["6M"],slash:["6L20"],sleeptalk:["6M"],tackle:["6L0"],vitalthrow:["6L27"],workup:["6L10"],toxic:["6M"],substitute:["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - pangoro:{learnset:{bulkup:["6M"],crunch:["6L42"],dragonclaw:["6M"],earthquake:["6M"],embargo:["6M"],entrainment:["6L45"],grassknot:["6M"],hammerarm:["6L57"],honeclaws:["6M"],infestation:["6M"],lowsweep:["6M"],partingshot:["6L48"],payback:["6M"],poisonjab:["6M"],poweruppunch:["6M"],rocktomb:["6M"],skyuppercut:["6L52"],strength:["6M"],surf:["6M"]}}, - furfrou:{learnset:{babydolleyes:["6L9"],bite:["6L22"],charm:["6L38"],cottonguard:["6L48"],grassknot:["6M"],growl:["6L0"],headbutt:["6L12"],odorsleuth:["6L27"],protect:["6M"],retaliate:["6L33"],"return":["6M"],rocksmash:["6M"],sandattack:["6L0"],suckerpunch:["6L42"],surf:["6M"],tackle:["6L0"],tailwhip:["6L15"],takedown:["6L35"],thunderwave:["6M"],uturn:["6M"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],substitute:["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - espurr:{learnset:{confusion:["6L0"],covet:["6L0"],disalarmingvoice:["6L22"],fakeout:["6L19"],leer:["6L0"],lightscreen:["6L13"],psybeam:["6L17"],psyshock:["6L25"],scratch:["6L0"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - meowstic:{learnset:{calmmind:["6M"],charm:["6L28"],helpinghand:["6L0"],hiddenpower:["6M"],imprison:["6L45"],meanlook:["6L0"],miracleeye:["6L31"],mistyterrain:["6L50"],poweruppunch:["6M"],psychic:["6L40"],quickguard:["6L53"],reflect:["6L35"],roleplay:["6L43"],substitute:["6M"],suckerpunch:["6L48"],torment:["6M"],toxic:["6M"]}}, - meowsticf:{learnset:{chargebeam:["6L28"],extrasensory:["6L35"],futuresight:["6L50"],mefirst:["6L0"],magicalleaf:["6L0"],psychic:["6L40"],roleplay:["6L43"],suckerpunch:["6L48"],shadowball:["6L31"],signalbeam:["6L45"],storedpower:["6L53"]}}, - honedge:{learnset:{aerialace:["6L22"],autotomize:["6L18"],cut:["6M"],furycutter:["6L0"],gyroball:["6M"],headsmash:["6L0"],irondefense:["6L0"],ironhead:["6L0"],kingsshield:["6L0"],metalsound:["6L0"],nightslash:["6L0"],powertrick:["6L0"],pursuit:["6L13"],retaliate:["6L26"],sacredsword:["6L0"],shadowsneak:["6L20"],slash:["6L0"],metalsound:["6L0"],shadowclaw:["6M"],"return":["6M"],swordsdance:["6L0"],tackle:["6L0"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - doublade:{learnset:{brickbreak:["6M"]}}, - aegislash:{learnset:{aerialace:["6M"],attract:["6M"],brickbreak:["6M"],confide:["6M"],cut:["6M"],doubleteam:["6M"],facade:["6M"],falseswipe:["6M"],flashcannon:["6M"],frustration:["6M"],gigaimpact:["6M"],gyroball:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],retaliate:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],round:["6M"],shadowball:["6M"],shadowclaw:["6M"],sleeptalk:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],swordsdance:["6M"],toxic:["6M"]}}, - spritzee:{learnset:{aromatherapy:["6L25"],calmmind:["6L17"],drainingkiss:["6L21"],echoedvoice:["6L0"],fairywind:["6L0"],sweetkiss:["6L0"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - aromatisse:{learnset:{charm:["6L35"],flail:["6L38"],flash:["6M"],moonblast:["6L31"],protect:["6M"],rest:["6M"],"return":["6M"],skillswap:["6L44"],sleeptalk:["6M"],thunderbolt:["6M"]}}, - swirlix:{learnset:{cottonspore:["6L17"],drainingkiss:["6L0"],fairywind:["6L0"],faketears:["6L0"],playnice:["6L0"],round:["6L0"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - slurpuff:{learnset:{calmmind:["6M"],dazzlinggleam:["6M"],endeavor:["6L21"],flash:["6M"],lightscreen:["6L0"],playrough:["6L0"],psychic:["6M"],safeguard:["6L0"],surf:["6M"],thief:["6M"],thunderbolt:["6M"],wish:["6L0"]}}, - inkay:{learnset:{hypnosis:["6L18"],nightslash:["6L0"],payback:["6L27"],psychocut:["6L0"],reflect:["6L0"],switcheroo:["6L23"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - malamar:{learnset:{aerialace:["6M"],attract:["6M"],constrict:["6L0"],cut:["6M"],flash:["6M"],foulplay:["6L0"],frustration:["6M"],lightscreen:["6L0"],payback:["6L0","6M"],peck:["6L0"],pluck:["6L0"],protect:["6M"],psybeam:["6L0"],psywave:["6L0"],reflect:["6L0"],rest:["6M"],"return":["6M"],reversal:["6L0"],slash:["6L0"],sleeptalk:["6M"],superpower:["6L48"],swagger:["6L0"],switcheroo:["6L0"],tackle:["6L0"],thief:["6M"],thunderbolt:["6M"],torment:["6M"],topsyturvy:["6L0"],toxic:["6M"]}}, - binacle:{learnset:{clamp:["6L0"],furycutter:["6L0"],furyswipes:["6L0"],mudslap:["6L0"],rockpolish:["6L0"],slash:["6L0"],withdraw:["6L0"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - barbaracle:{learnset:{crosschop:["6L55"],nightslash:["6L44"],razorshell:["6L48"],sandattack:["6L0"],scratch:["6L0"],shellsmash:["6L0"],skullbash:["6L0"],stoneedge:["6L0"],watergun:["6L0"]}}, - skrelp:{learnset:{acid:["6L0"],aquatail:["6L35"],camouflage:["6L0"],doubleteam:["6L28"],hydropump:["6L42"],poisontail:["6L0"],sludgebomb:["6L38"],surf:["6L0"],toxic:["6L32"],waterpulse:["6L0"],rest:["6M"],sleeptalk:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - dragalge:{learnset:{dragonpulse:["6L53"],dragontail:["6L59"],scald:["6M"],twister:["6L0"]}}, - clauncher:{learnset:{crabhammer:["6L30"],waterpulse:["6L34"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - clawitzer:{learnset:{aquajet:["6L47"],attract:["6M"],aurasphere:["6L67"],bubblebeam:["6L0"],crabhammer:["6L0"],cut:["6M"],darkpulse:["6L0"],dragonpulse:["6L63"],flail:["6L0"],flashcannon:["6M"],focusblast:["6M"],frustration:["6M"],healpulse:["6L0"],muddywater:["6L53"],protect:["6M"],rest:["6M"],"return":["6M"],sleeptalk:["6M"],smackdown:["6L42"],splash:["6L0"],surf:["6M"],swordsdance:["6L0"],uturn:["6M"],venoshock:["6M"],vicegrip:["6L0"],watergun:["6L0"],watersport:["6L0"]}}, - helioptile:{learnset:{bulldoze:["6L35"],charge:["6L0"],cut:["6M"],electrify:["6L45"],magneticfield:["6L0"],mudslap:["6L0"],paraboliccharge:["6L25"],pound:["6L0"],protect:["6M"],quickattack:["6L17"],razorwind:["6L22"],"return":["6M"],rockslide:["6L0"],rocktomb:["6M"],surf:["6M"],tailwhip:["6L0"],thundershock:["6L0"],thunderbolt:["6L0"],thunderwave:["6L31"],uturn:["6M"],voltswitch:["6L40"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],substitute:["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - heliolisk:{learnset:{darkpulse:["6M"],eerieimpulse:["6L0"],electrify:["6L0"],grassknot:["6M"],surf:["6M"],thunder:["6L0"],uturn:["6M"]}}, - tyrunt:{learnset:{ancientpower:["6L26"],attract:["6M"],bide:["6L0"],bite:["6L0"],charm:["6L0"],crunch:["6L34"],dig:["6M"],dragonclaw:["6L37"],dragontail:["6L30"],earthquake:["6L44"],headsmash:["6L0"],honeclaws:["6M"],protect:["6M"],rest:["6M"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],stomp:["6L0"],sleeptalk:["6M"],strength:["6M"],thrash:["6L0"],toxic:["6M"],substitute:["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - tyrantrum:{learnset:{earthquake:["6L47"],frustration:["6M"],horndrill:["6L53"],rockslide:["6L68"],thrash:["6L42"]}}, - amaura:{learnset:{ancientpower:["6L26"],aurorabeam:["6L0"],avalanche:["6L34"],calmmind:["6M"],encore:["6L44"],growl:["6L0"],hail:["6L38"],hyperbeam:["6L57"],icebeam:["6L50"],icywind:["6L0"],lightscreen:["6L47"],mist:["6L0"],naturepower:["6L41"],powdersnow:["6L0"],rockthrow:["6L0"],round:["6L30"],stealthrock:["6L0"],takedown:["6L0"],thunderbolt:["6L0"],thunderwave:["6L0"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - aurorus:{learnset:{attract:["6M"],blizzard:["6M"],bulldoze:["6M"],calmmind:["6M"],chargebeam:["6M"],confide:["6M"],darkpulse:["6M"],doubleteam:["6M"],dragontail:["6M"],dreameater:["6M"],earthquake:["6M"],echoedvoice:["6M"],facade:["6M"],flash:["6M"],flashcannon:["6M"],freezedry:["6L0"],frostbreath:["6M"],frustration:["6M"],gigaimpact:["6M"],hail:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],icebeam:["6M"],lightscreen:["6M"],naturepower:["6M"],protect:["6M"],psychic:["6M"],psychup:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockpolish:["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],round:["6M"],safeguard:["6M"],sandstorm:["6M"],sleeptalk:["6M"],stoneedge:["6M"],substitute:["6M"],swagger:["6M"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"]}}, - sylveon:{learnset:{attract:["6M"],babydolleyes:["6L0"],bite:["6L0"],calmmind:["6M"],confide:["6M"],cut:["6M"],dazzlinggleam:["6M"],dig:["6M"],drainingkiss:["6L20"],echoedvoice:["6M"],facade:["6M"],fairywind:["6L0"],flash:["6M"],frustration:["6M"],gigaimpact:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],lastresort:["6L41"],lightscreen:["6L33","6M"],mistyterrain:["6L0"],moonblast:["6L37"],protect:["6M"],psychup:["6L45"],psyshock:["6M"],raindance:["6M"],reflect:["6M"],refresh:["6L0"],rest:["6M"],"return":["6M"],shadowball:["6M"],skillswap:["6L25"],sleeptalk:["6M"],sunnyday:["6M"],swift:["6L0"],toxic:["6M"]}}, - hawlucha:{learnset:{acrobatics:["6M"],aerialace:["6L0"],bounce:["6L32"],brickbreak:["6M"],bulkup:["6M"],confide:["6M"],dig:["6M"],encore:["6L20"],endeavor:["6L36"],facade:["6M"],falseswipe:["6M"],fling:["6L24"],flyingpress:["6L28"],focusblast:["6M"],frustration:["6M"],grassknot:["6M"],hiddenpower:["6M"],hijumpkick:["6L44"],honeclaws:["6M"],karatechop:["6L4"],payback:["6M"],poisonjab:["6M"],poweruppunch:["6L0"],protect:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],roost:["6L0"],skyattack:["6L48"],skydrop:["6M"],sleeptalk:["6M"],swordsdance:["6L60"],torment:["6M"],toxic:["6M"],uturn:["6M"],wingattack:["6L0"],substitute:["6M"]}}, - dedenne:{learnset:{aerialace:["6M"],attract:["6M"],charge:["6L11"],chargebeam:["6L34","6M"],charm:["6L14"],confide:["6M"],cut:["6M"],dig:["6M"],discharge:["6L50"],doubleteam:["6M"],entrainment:["6L39"],facade:["6M"],flash:["6M"],fling:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],hiddenpower:["6M"],nuzzle:["6L20"],paraboliccharge:["6L17"],playrough:["6L42"],protect:["6M"],raindance:["6M"],rest:["6L30","6M"],retaliate:["6M"],"return":["6M"],round:["6M"],sleeptalk:["6M"],snore:["6L31"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],tailwhip:["6L1"],thief:["6M"],thunder:["6L45","6M"],thunderbolt:["6M"],thundershock:["6L7"],thunderwave:["6L23","6M"],toxic:["6M"],uturn:["6M"],voltswitch:["6L26","6M"],wildcharge:["6M"]}}, - carbink:{learnset:{ancientpower:["6L31"],calmmind:["6M"],confide:["6M"],dazzlinggleam:["6M"],doubleteam:["6M"],explosion:["6M"],facade:["6M"],flail:["6L35"],flash:["6M"],frustration:["6M"],guardsplit:["6L27"],gyroball:["6M"],hail:["6M"],harden:["6L1"],hiddenpower:["6M"],lightscreen:["6L60","6M"],moonblast:["6L50"],naturepower:["6M"],powergem:["6L46"],protect:["6M"],psychic:["6M"],psychup:["6M"],reflect:["6L18","6M"],rest:["6M"],"return":["6M"],rockpolish:["6M"],rockslide:["6M"],rockthrow:["6L5"],rocktomb:["6M"],round:["6M"],safeguard:["6L70","6M"],sandstorm:["6M"],sharpen:["6L8"],skillswap:["6L40"],sleeptalk:["6M"],smackdown:["6L12"],stealthrock:["6L21"],stoneedge:["6L49","6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],toxic:["6M"],trickroom:["6M"]}}, - goomy:{learnset:{absorb:["6L0"],bide:["6L0"],bodyslam:["6L32"],dragonbreath:["6L0"],flail:["6L0"],muddywater:["6L0"],protect:["6M"],raindance:["6L0"],tackle:["6L0"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - sliggoo:{learnset:{dragonpulse:["6L47"],icebeam:["6M"],infestation:["6M"],protect:["6M"],"return":["6M"],thunderbolt:["6M"],toxic:["6M"]}}, - goodra:{learnset:{aquatail:["6L0"],attract:["6M"],blizzard:["6M"],bulldoze:["6M"],confide:["6M"],doubleteam:["6M"],dragontail:["6M"],earthquake:["6M"],facade:["6M"],feint:["6L0"],focusblast:["6M"],frustration:["6M"],hail:["6M"],hiddenpower:["6M"],icebeam:["6M"],infestation:["6M"],outrage:["6L63"],powerwhip:["6L0"],protect:["6M"],raindance:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],sleeptalk:["6M"],sludgebomb:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],thunderbolt:["6M"],toxic:["6M"]}}, - klefki:{learnset:{astonish:["6L8"],attract:["6M"],calmmind:["6M"],confide:["6M"],craftyshield:["6L23"],cut:["6M"],dazzlinggleam:["6M"],doubleteam:["6M"],drainingkiss:["6L18"],facade:["6M"],fairylock:["6L1"],fairywind:["6L5"],flashcannon:["6M"],foulplay:["6L27"],frustration:["6M"],gigaimpact:["6M"],healblock:["6L50"],hiddenpower:["6M"],hyperbeam:["6M"],imprison:["6L36"],lightscreen:["6M"],magicroom:["6L44"],metalsound:["6L12"],mirrorshot:["6L34"],playrough:["6L43"],protect:["6M"],psychic:["6M"],psychup:["6M"],psyshock:["6M"],raindance:["6M"],recycle:["6L40"],reflect:["6M"],rest:["6M"],"return":["6M"],round:["6M"],safeguard:["6M"],sleeptalk:["6M"],spikes:["6L15"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],tackle:["6L1"],thief:["6M"],thunderwave:["6M"],torment:["6L32","6M"],toxic:["6M"]}}, - phantump:{learnset:{rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - trevenant:{learnset:{astonish:["6L0"],attract:["6M"],calmmind:["6M"],confide:["6M"],confuseray:["6L0"],cut:["6M"],destinybond:["6L0"],doubleteam:["6M"],energyball:["6M"],facade:["6M"],forestscurse:["6L0"],grassknot:["6M"],honeclaws:["6M"],hornleech:["6L0"],naturepower:["6M"],phantomforce:["6L0"],poweruppunch:["6M"],protect:["6M"],psychic:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],rocktomb:["6M"],shadowclaw:["6M"],sleeptalk:["6M"],strength:["6M"],tackle:["6L0"],toxic:["6M"],willowisp:["6L0","6M"],woodhammer:["6L0"]}}, - pumpkaboo:{learnset:{astonish:["6L0"],bulletseed:["6L0"],confuseray:["6L0"],leechseed:["6L0"],painsplit:["6L42"],razorleaf:["6L0"],scaryface:["6L0"],seedbomb:["6L48"],shadowball:["6L0"],shadowsneak:["6L0"],trick:["6L0"],trickortreat:["6L0"],worryseed:["6L0"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],"return":["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - gourgeist:{learnset:{attract:["6M"],chargebeam:["6M"],confide:["6M"],darkpulse:["6M"],doubleteam:["6M"],dreameater:["6M"],energyball:["6M"],explosion:["6M"],facade:["6M"],fireblast:["6M"],flamecharge:["6M"],flamethrower:["6M"],flash:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],grassknot:["6M"],gyroball:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],incinerate:["6M"],lightscreen:["6M"],naturepower:["6M"],protect:["6M"],psychic:["6M"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],round:["6M"],safeguard:["6M"],shadowball:["6M"],sleeptalk:["6M"],sludgebomb:["6M"],solarbeam:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],thief:["6M"],toxic:["6M"],trickroom:["6M"],willowisp:["6M"]}}, - bergmite:{learnset:{avalanche:["6L0"],bite:["6L1"],confide:["6M"],curse:["6L0"],doubleteam:["6M"],flash:["6M"],harden:["6L1"],iceball:["6L0"],icebeam:["6M"],icefang:["6L0"],icywind:["6L10"],powdersnow:["6L5"],protect:["6M"],rapidspin:["6L0"],"return":["6M"],rocksmash:["6M"],rocktomb:["6M"],sharpen:["6L0"],strength:["6M"],surf:["6M"],tackle:["6L1"],takedown:["6L15"],toxic:["6M"],rest:["6M"],sleeptalk:["6M"],substitute:["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - avalugg:{learnset:{blizzard:["6L46"],recover:["6L51"]}}, - noibat:{learnset:{agility:["6L0"],aircutter:["6L0"],airslash:["6L0"],bite:["6L0"],boomburst:["6L0"],brickbreak:["6M"],cut:["6M"],dracometeor:["6L0"],fly:["6M"],gust:["6L0"],hurricane:["6L58"],leechlife:["6L0"],protect:["6M"],razorwind:["6L0"],"return":["6M"],roost:["6L0"],screech:["6L0"],shadowclaw:["6M"],superfang:["6L0"],supersonic:["6L0"],tackle:["6L0"],tailwind:["6L0"],toxic:["6M"],uturn:["6M"],whirlwind:["6L0"],wingattack:["6L0"],rest:["6M"],sleeptalk:["6M"],toxic:["6M"],protect:["6M"],substitute:["6M"],frustration:["6M"],hiddenpower:["6M"]}}, - noivern:{learnset:{acrobatics:["6M"],aerialace:["6M"],attract:["6M"],brickbreak:["6M"],confide:["6M"],cut:["6M"],darkpulse:["6M"],doubleteam:["6M"],dragonclaw:["6M"],dragonpulse:["6L0"],dreameater:["6M"],echoedvoice:["6M"],facade:["6M"],flamethrower:["6M"],fly:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hyperbeam:["6M"],protect:["6M"],psychic:["6M"],rest:["6M"],"return":["6M"],roost:["6M"],round:["6M"],shadowball:["6M"],shadowclaw:["6M"],sleeptalk:["6M"],solarbeam:["6M"],steelwing:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],taunt:["6M"],thief:["6M"],torment:["6M"],toxic:["6M"],uturn:["6M"],wildcharge:["6M"],xscissor:["6M"]}}, - xerneas:{learnset:{aromatherapy:["6L0"],aurorabeam:["6L0"],calmmind:["6M"],closecombat:["6L80"],confide:["6M"],cut:["6M"],dazzlinggleam:["6M"],doubleteam:["6M"],echoedvoice:["6M"],facade:["6M"],flash:["6M"],flashcannon:["6M"],focusblast:["6M"],frustration:["6M"],geomancy:["6L0"],gigaimpact:["6L88","6M"],grassknot:["6M"],gravity:["6L0"],hail:["6M"],healpulse:["6L0"],hiddenpower:["6M"],hornleech:["6L55"],hyperbeam:["6M"],ingrain:["6L0"],lightscreen:["6L0","6M"],megahorn:["6L0"],mistyterrain:["6L63"],moonblast:["6L0"],naturepower:["6L72","6M"],nightslash:["6L51"],outrage:["6L93"],protect:["6M"],psychic:["6M"],psychup:["6L59","6M"],psyshock:["6M"],raindance:["6M"],reflect:["6M"],rest:["6M"],"return":["6M"],roar:["6M"],rockslide:["6M"],round:["6M"],sleeptalk:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],takedown:["6L0"],thunder:["6M"],thunderbolt:["6M"],thunderwave:["6M"],toxic:["6M"]}}, - yveltal:{learnset:{acrobatics:["6M"],aerialace:["6M"],airslash:["6L0"],confide:["6M"],cut:["6M"],darkpulse:["6L0","6M"],disable:["6L0"],doubleteam:["6L0","6M"],dragonclaw:["6M"],dragonrush:["6L63"],dreameater:["6M"],embargo:["6M"],facade:["6M"],fly:["6M"],focusblast:["6L72","6M"],foulplay:["6L51"],frustration:["6M"],gigaimpact:["6M"],hiddenpower:["6M"],honeclaws:["6M"],hurricane:["6L0"],hyperbeam:["6L88","6M"],oblivionwing:["6L0"],phantomforce:["6L55"],protect:["6M"],psychic:["6L59","6M"],raindance:["6M"],razorwind:["6L0"],rest:["6M"],"return":["6M"],rockslide:["6M"],roost:["6L0","6M"],round:["6M"],shadowclaw:["6M"],shadowball:["6M"],skyattack:["6L93"],skydrop:["6M"],sleeptalk:["6M"],skyattack:["6L93"],snarl:["6L0","6M"],steelwing:["6M"],substitute:["6M"],suckerpunch:["6L80"],sunnyday:["6M"],swagger:["6M"],taunt:["6L0","6M"],thief:["6M"],torment:["6M"],toxic:["6M"],uturn:["6M"]}}, - zygarde:{learnset:{bind:["6L0"],bite:["6L0"],brickbreak:["6M"],bulldoze:["6L0","6M"],camouflage:["6L0"],coil:["6L80"],confide:["6M"],crunch:["6L0"],dig:["6L0","6M"],doubleteam:["6M"],dragonbreath:["6L0"],dragondance:["6L72"],dragonpulse:["6L0"],dragontail:["6M"],earthquake:["6L0","6M"],extremespeed:["6L88"],facade:["6M"],focusblast:["6M"],frustration:["6M"],gigaimpact:["6M"],glare:["6L0"],grassknot:["6M"],haze:["6L0"],hiddenpower:["6M"],hurricane:["6L0"],hyperbeam:["6M"],landswrath:["6L0"],outrage:["6L93"],protect:["6M"],razorwind:["6L0"],rest:["6M"],"return":["6M"],rockslide:["6M"],rocksmash:["6M"],round:["6M"],safeguard:["6L0","6M"],sandstorm:["6L0","6M"],sleeptalk:["6M"],sludgewave:["6M"],stoneedge:["6M"],strength:["6M"],substitute:["6M"],sunnyday:["6M"],swagger:["6M"],toxic:["6M"]}} -}; + pikachu:{learnset:{agility:["3L33","4L34","5L37","3S0","3S8","6L37"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","5S26","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],discharge:["4L37","5L42","6L42"],doubleedge:["3T"],doubleteam:["3M","3L15","4M","4L18","5M","5L21","4S13","6L21","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],electroball:["5L18","5S23","5S24","5S30","6L18"],encore:["5S23"],endure:["3T","4M"],extremespeed:["5S26"],facade:["3M","4M","5M","6M"],feint:["4L29","5L34","5S29","6L34"],flash:["3M","4M","5M","4S13","6M"],fling:["4M","5M","6M"],fly:["3S2","3S4","3S6","5S24","5S27"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],grassknot:["4M","5M","4S13","5S25","5S26","5S27","6M"],growl:["3L1","4L1","5L1","3S1","3S2","3S3","3S4","3S5","3S10","6L5"],headbutt:["4T","5S28"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],irontail:["3M","4M","4S21","5S24","5T","5S30"],knockoff:["4T","5T"],lastresort:["4S18"],lightscreen:["3M","3L50","4M","4L42","5M","5L45","3S0","3S6","3S7","3S8","4S11","6L45","6M"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],present:["4S12","4S15","4S17","4S18","4S20","4S22"],protect:["3M","4M","5M","4S14","4S16","5S27","6M"],quickattack:["3L11","4L13","5L13","4S11","4S12","4S15","4S17","4S18","4S20","4S21","4S22","5S24","5S25","5S29","5S30","6L10"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","4S19","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sing:["5S23"],slam:["3L20","4L21","5L26","6L26"],sleeptalk:["3T","4M","4S19","5T","6M"],snore:["3T","4T","4S19","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3S3","3S5","3S7","4S9","4S11","4S14","4S16"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwhip:["3L6","4L5","5L5","3S1","3S2","3S3","3S4","4S9","3S10","4S12","4S15","4S17","4S20","4S22","5S28","6L1"],teeterdance:["5S23"],thunder:["3M","3L41","4M","4L45","5M","5L50","3S0","3S6","3S7","3S8","4S14","4S16","5S25","6L50","6M"],thunderbolt:["3M","3L26","4M","4L26","5M","5L29","3S0","3S6","3S7","3S8","4S11","4S13","4S18","4S21","5S26","5S27","5S30","6L29","6M"],thunderpunch:["3T","4T","5T"],thundershock:["3L1","4L1","5L1","3S1","3S5","3S10","4S12","4S15","4S20","4S22","5S28","6L1"],thunderwave:["3L8","3T","4M","4L10","5M","5L10","3S1","3S2","3S3","3S4","3S5","4S9","3S10","4S17","5S28","6L13","6M"],toxic:["3M","4M","5M","6M"],voltswitch:["5M","5S29","6M"],volttackle:["4S9","4S21","5S25","5S29"],wildcharge:["5M","6M"],yawn:["4S19"],covet:["5T"],playnice:["6L7"],nuzzle:["6L23"],confide:["6M"]}}, + raichu:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lightscreen:["3M","4M","5M","6M"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],quickattack:["3L1","4L1","5L1","6L1"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwhip:["3L1","4L1","5L1","6L1"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","3L1","4M","4L1","5M","5L1","6L1","6M"],thunderpunch:["3T","4T","5T"],thundershock:["3L1","4L1","5L1","6L1"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],covet:["5T"],confide:["6M"]}}, + sandshrew:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5E","6E"],counter:["3E","3T","4E","5E","5D","6E"],crushclaw:["3E","4E","5E","6E"],cut:["3M","4M","5M","6M"],defensecurl:["3L6","3T","4L3","5L3","3S0","6L1"],dig:["3M","4M","5M","5L30","6L30","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","5L46","6L46","6M"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],flail:["3E","4E","5E","6E"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4L25","4T","5L25","6L14"],furyswipes:["3L37","4L19","5L19","6L20"],gyroball:["4M","4L33","5M","5L33","6L34","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],magnitude:["5L17","6L17"],metalclaw:["3E","4E","5E","6E"],mimic:["3T"],mudshot:["4E","5E","6E"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4E","5E","6E"],poisonjab:["4M","5M","6M"],poisonsting:["3L17","4L9","5L9","3S0","6L5"],protect:["3M","4M","5M","6M"],rapidspin:["3E","4E","4L13","5E","5L13","6L9","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M","5E","6E"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4L21","4T","5L21","6L7"],round:["5M","6M"],safeguard:["3E","4E","5M","6M"],sandattack:["3L11","4L7","5L7","5D","3S0","6L3"],sandstorm:["3M","3L53","4M","4L37","5M","5L37","6L42","6M"],sandtomb:["3L45","4L27","5L27","6L23"],scratch:["3L1","4L1","5L1","3S0","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],slash:["3L23","4L31","5L31","6L26"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T","5D"],swagger:["3T","4M","5M","6M"],swift:["3L30","3T","4L15","4T","5L15","6L11"],swordsdance:["3E","3T","4E","4M","5M","5L38","6L38","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],xscissor:["4M","5M","6M"],covet:["5T"],confide:["6M"]}}, + sandslash:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],crushclaw:["4L22","5L22","6L22"],cut:["3M","4M","5M","6M"],defensecurl:["3L1","3L6","3T","4L1","4L3","5L1","5L3","6L1"],dig:["3M","4M","5M","5L30","6L30","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","5L46","6L46","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4L28","4T","5L28","6L14"],furyswipes:["3L42","4L19","5L19","6L20"],gigaimpact:["4M","5M","6M"],gyroball:["4M","4L45","5M","5L45","6L34","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],magnitude:["5L17","6L17"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],poisonjab:["4M","5M","6M"],poisonsting:["3L17","4L9","5L9","6L1","6L5"],protect:["3M","4M","5M","6M"],rapidspin:["4L13","5L13","6L9"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4L21","4T","5L21","6L7"],round:["5M","6M"],safeguard:["5M","6M"],sandattack:["3L1","3L11","4L1","4L7","5L1","5L7","6L1","6L3"],sandstorm:["3M","3L62","4M","4L52","5M","5L52","6L42","6M"],sandtomb:["3L52","4L33","5L33","6L23"],scratch:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],slash:["3L24","4L40","5L40","6L26"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],swagger:["3T","4M","5M","6M"],swift:["3L33","3T","4L15","4T","5L15","6L11"],swordsdance:["3T","4M","5M","5L38","6L38","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],xscissor:["4M","5M","6M"],covet:["5T"],confide:["6M"]}}, + nidoranf:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],beatup:["3E","4E","5E","6E"],bite:["3L20","4L21","5L21","6L21"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M","4L43","5L43","6L43"],charm:["3E","4E","5E","6E"],chipaway:["5E","6E"],counter:["3E","3T","4E","5E","6E"],crunch:["3L47","4L37","5L37","6L37"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],disable:["3E","4E","5E","6E"],doubleedge:["3T"],doublekick:["3L12","4L9","5L9","6L9"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],flatter:["3L38","4L33","5L33","6L33"],focusenergy:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],furyswipes:["3L30","4L19","5L19","6L19"],growl:["3L1","4L1","5L1","6L1"],headbutt:["4T"],helpinghand:["3L23","4L25","5L25","5T","6L25"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],icebeam:["3M","4M","5M","6M"],irontail:["3M","4M","5E","5T","6E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],poisonfang:["4L45","5L45","6L45"],poisonjab:["4M","5M","6M"],poisonsting:["3L17","4L13","5L13","6L13"],poisontail:["5E","6E"],protect:["3M","4M","5M","6M"],pursuit:["4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],scratch:["3L1","4L1","5L1","5D","6L1"],secretpower:["3M","4M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],skullbash:["4E","5E","6E"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["5D"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5D","5T"],supersonic:["3E","4E","5E","6E"],swagger:["3T","4M","5M","6M"],tailwhip:["3L8","4L7","5L7","6L7"],takedown:["3E","4E","5E","6E"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],toxicspikes:["4L31","5L31","6L31"],venoshock:["5M","6M"],waterpulse:["3M","4M"],echoedvoice:["6M"],confide:["6M"],venomdrench:["6E"]}}, + nidorina:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bite:["3L22","4L23","5L23","6L23"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M","4L50","5L50","6L50"],counter:["3T"],crunch:["3L53","4L43","5L43","6L43"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doublekick:["3L12","4L9","5L9","6L9"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flatter:["3L43","4L38","5L38","6L38"],frustration:["3M","4M","5M","6M"],furyswipes:["3L34","4L20","5L20","6L20"],growl:["3L1","4L1","5L1","6L1"],headbutt:["4T"],helpinghand:["3L26","4L28","4T","5L28","5T","6L28"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],icebeam:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],poisonfang:["4L58","5L58","6L58"],poisonjab:["4M","5M","6M"],poisonsting:["3L18","4L13","5L13","6L13"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],scratch:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],swagger:["3T","4M","5M","6M"],tailwhip:["3L8","4L7","5L7","6L7"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],toxicspikes:["4L35","5L35","6L35"],venoshock:["5M","6M"],waterpulse:["3M","4M"],confide:["6M"]}}, + nidoqueen:{learnset:{aerialace:["3M","4M","5M","6M"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3L23","3T","3L22","4L23","5L35","6L35"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L23","6L23"],counter:["3T"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doublekick:["3L1","4L1","5L1","6L1"],doubleteam:["3M","4M","5M","6M"],dragonpulse:["4M","5T"],dragontail:["5M","6M"],dynamicpunch:["3T"],earthpower:["4L43","4T","5L43","5T","6L43"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],poisonjab:["4M","5M","6M"],poisonsting:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],quash:["5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scratch:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5M","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],superpower:["3L43","4L58","4T","5L58","5T","6L1","6L58"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tailwhip:["3L1","4L1","5L1","6L1"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],venoshock:["5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],poweruppunch:["6M"],confide:["6M"]}}, + nidoranm:{learnset:{amnesia:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],beatup:["3E","4E","5E","6E"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M","4L43","5L43","6L43"],chipaway:["5E","6E"],confusion:["3E","4E","5E","6E"],counter:["3E","3T","4E","5E","5D","6E"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],disable:["3E","4E","5E","6E"],doubleedge:["3T"],doublekick:["3L12","4L9","5L9","6L9"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],flatter:["3L38","4L33","5L33","6L33"],focusenergy:["3L8","4L7","5L7","6L7"],frustration:["3M","4M","5M","6M"],furyattack:["3L30","4L19","5L19","6L19"],headbutt:["4T"],headsmash:["4E","5E","6E"],helpinghand:["3L23","4L25","4T","5L25","5T","6L25"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hornattack:["3L20","4L21","5L21","6L21"],horndrill:["3L47","4L45","5L45","6L45"],icebeam:["3M","4M","5M","6M"],irontail:["3M","4M","5E","5T","6E"],leer:["3L1","4L1","5L1","6L1"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],peck:["3L1","4L1","5L1","5D","6L1"],poisonjab:["4M","4L37","5M","5L37","6L37","6M"],poisonsting:["3L17","4L13","5L13","6L13"],poisontail:["5E","6E"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4E","4T","5E","6E"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5D","5T"],supersonic:["3E","4E","5E","6E"],swagger:["3T","4M","5M","6M"],takedown:["3E","4E","5E","6E"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],toxicspikes:["4L31","5L31","6L31"],venoshock:["5M","6M"],waterpulse:["3M","4M"],drillrun:["5T"],confide:["6M"],venomdrench:["6E"]}}, + nidorino:{learnset:{attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M","4L50","5L50","6L50"],counter:["3T"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doublekick:["3L12","4L9","5L9","6L9"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flatter:["3L43","4L38","5L38","6L38"],focusenergy:["3L8","4L7","5L7","6L7"],frustration:["3M","4M","5M","6M"],furyattack:["3L34","4L20","5L20","6L20"],headbutt:["4T"],helpinghand:["3L26","4L28","4T","5L28","5T","6L28"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hornattack:["3L22","4L23","5L23","6L23"],horndrill:["3L53","4L58","5L58","6L58"],icebeam:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","6L1"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],peck:["3L1","4L1","5L1","6L1"],poisonjab:["4M","4L43","5M","5L43","6L43","6M"],poisonsting:["3L18","4L13","5L13","6L13"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],toxicspikes:["4L35","5L35","6L35"],venoshock:["5M","6M"],waterpulse:["3M","4M"],drillrun:["5T"],confide:["6M"]}}, + nidoking:{learnset:{aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L23","6L23"],counter:["3T"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doublekick:["3L1","4L1","5L1","6L1"],doubleteam:["3M","4M","5M","6M"],dragonpulse:["4M","5T"],dragontail:["5M","6M"],dynamicpunch:["3T"],earthpower:["4L43","4T","5L43","5T","6L43"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focusenergy:["3L1","4L1","5L1","6L1"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],megahorn:["3L43","4L58","5L58","6L1","6L58"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],peck:["3L1","4L1","5L1","6L1"],poisonjab:["4M","5M","6M"],poisonsting:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],quash:["5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5M","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thrash:["3L23","3L22","4L23","5L35","6L35"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],venoshock:["5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],drillrun:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + cleffa:{learnset:{amnesia:["3E","4E","5E","6E"],aromatherapy:["4E","5E","5D","6E"],attract:["3M","4M","5M","6M"],bellydrum:["3E","4E","5E","6E"],bodyslam:["3T"],captivate:["4M"],charm:["3L1","4L1","5L1","6L1"],copycat:["4L13","5L13","6L13"],counter:["3T"],covet:["4E","5E","5T","6E"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],echoedvoice:["5M","6M"],encore:["3L4","4L4","5L4","5D","6L4"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],faketears:["4E","5E","6E"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M","6M"],magicalleaf:["3L17","4L16","5L16","6L16"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3E","3T","4E","5E","6E"],mimic:["3E","3T","4E","5E","6E"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],pound:["3L1","4L1","5L1","6L1"],present:["3E","4E","5E","6E"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["4T","5T"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sing:["3L8","4L7","5L7","6L7"],sleeptalk:["3T","4M","5T","5D","6M"],snore:["3T","4T","5T"],softboiled:["3T"],solarbeam:["3M","4M","5M","6M"],splash:["3E","4E","5E","6E"],storedpower:["5E","6E"],substitute:["3E","3T","4E","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetkiss:["3L13","4L10","5L10","6L10"],telekinesis:["5M"],thunderwave:["3T","4M","5M","6M"],tickle:["5E","6E"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],uproar:["4T","5T"],waterpulse:["3M","4M"],wish:["3E","4E","5E","6E"],workup:["5M"],zenheadbutt:["4T","5T"],hypervoice:["5T"],afteryou:["5T"],wonderroom:["5T"],confide:["6M"],healpulse:["6E"],mistyterrain:["6E"]}}, + clefairy:{learnset:{afteryou:["5L52","5T","6L1","6L58"],attract:["3M","4M","5M","6M"],bestow:["5L25","6L19"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T","5L40","6L40"],bounce:["4T","5T"],brickbreak:["3M","4M","5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],cosmicpower:["3L33","4L25","5L28","6L34"],counter:["3T"],defensecurl:["3L25","3T","4L13","5L13","6L13"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleslap:["3L13","4L10","5L10","6L10"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],encore:["3L5","4L4","5L4","6L1"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],followme:["3L17","4L16","5L16","6L16"],frustration:["3M","4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4L34","4T","5L37","5T","6L49"],growl:["3L1","4L1","5L1","6L1"],headbutt:["4T"],healbell:["4T","5T"],healingwish:["4L46","5L49","6L1","6L55"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","3L41","4M","4L40","5M","5L46","6M"],luckychant:["4L28","5L31","6L37"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],meteormash:["3L45","4L43","5L55","6L50"],metronome:["3L29","3T","4L31","5L34","6L31"],mimic:["3T"],minimize:["3L21","4L19","5L19","6L25"],moonlight:["3L37","4L37","5L40","6L43"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],pound:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["4M","5M","6M"],roleplay:["4T","5T"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sing:["3L9","4L7","5L7","6L7"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],softboiled:["3T"],solarbeam:["3M","4M","5M","6M"],stealthrock:["4M","5T"],storedpower:["5L43","6L28"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],telekinesis:["5M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],wakeupslap:["4L22","5L22","6L22"],waterpulse:["3M","4M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],wonderroom:["5T"],disarmingvoice:["6L1"],moonblast:["6L46"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + clefable:{learnset:{attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4T","5T"],brickbreak:["3M","4M","5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleslap:["3L1","4L1","5L1","6L1"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3L1","3T","4L1","5L1","6L1"],mimic:["3T"],minimize:["3L1","4L1","5L1","6L1"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["4M","5M","6M"],roleplay:["4T","5T"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sing:["3L1","4L1","5L1","6L1"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],softboiled:["3T"],solarbeam:["3M","4M","5M","6M"],stealthrock:["4M","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],telekinesis:["5M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],waterpulse:["3M","4M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],afteryou:["5T"],wonderroom:["5T"],disarmingvoice:["6L1"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + vulpix:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M","4L37","5L41","6L47"],charm:["3S1"],confuseray:["3L21","4L17","5L17","6L15"],darkpulse:["4M","5D","5T","6M"],dig:["3M","4M","5M","3S1","6M"],disable:["3E","4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],ember:["3L1","4L1","5L1","3S1","6L1"],endure:["3T","4M"],energyball:["4E","5M","6M"],extrasensory:["4E","4L44","5E","5L51","6L39","6E"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","5L20","6L20","6E"],fireblast:["3M","4M","4L47","5M","5L54","6L42","6M"],firespin:["3L41","4L34","5L14","6L12"],flail:["3E","4E","5E","6E"],flameburst:["5L24","6L23"],flamecharge:["5M","6M"],flamethrower:["3M","3L29","4M","4L24","5M","5L37","6L34","6M"],flareblitz:["4E","5E","6E"],frustration:["3M","4M","5M","6M"],grudge:["3L37","4L41","5L47","6L44"],headbutt:["4T"],heatwave:["3E","4E","4T","5E","5D","5T","3S1","6E"],hex:["5E","5L28","6L28","6E"],hiddenpower:["3M","4M","5M","6M"],howl:["3E","4E","5E","6E"],hypnosis:["3E","4E","5E","6E"],imprison:["3L25","4L21","5L21","6L18"],incinerate:["5M","6M"],inferno:["5L44","6L50"],irontail:["3M","4M","5T"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],overheat:["3M","4M","5M","6M"],painsplit:["4T","5T"],payback:["4M","4L31","5M","5L34","6L31","6M"],powerswap:["4E","5E","6E"],protect:["3M","4M","5M","6M"],psychup:["3E","4E","4M","5M","6M"],quickattack:["3L13","4L11","5L11","3S0","6L10"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L9","4M","4L7","5M","5L7","5D","3S0","6L7","6M"],roleplay:["4T","5T"],round:["5M","6M"],safeguard:["3M","3L33","4M","4L27","5M","5L27","6L36","6M"],secretpower:["3M","4M","5E","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spite:["3E","4E","4T","5E","5T","6E"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailslap:["5E","6E"],tailwhip:["3L5","4L4","5L4","3S0","6L4"],toxic:["3M","4M","5M","6M"],willowisp:["3L17","4M","4L14","5M","5L31","3S0","6L26","6M"],zenheadbutt:["4T","5T"],covet:["5T"],foulplay:["5T"],babydolleyes:["6L9"],confide:["6M"]}}, + ninetales:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],calmmind:["4M","5M","6M"],captivate:["4M"],confuseray:["3L1","4L1","5L1","6L1"],darkpulse:["4M","5T","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["4M","5M","6M"],ember:["3L1","4L1","5L1"],endure:["3T","4M"],energyball:["5M","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firespin:["3L45"],flamecharge:["5M","6M"],flamethrower:["3M","4M","5M","6L1","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],heatwave:["4T","5S0","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],mimic:["3T"],nastyplot:["4L1","5L1","6L1"],naturalgift:["4M"],ominouswind:["4T"],overheat:["3M","4M","5M","6M"],painsplit:["4T","5T"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychup:["4M","5M","6M"],psyshock:["5M","5S0","6M"],quickattack:["3L1","4L1","5L1","6L1"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],safeguard:["3M","3L1","4M","4L1","5M","5L1","6L1","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["4M","5M","5S0","6M"],spite:["4T","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],toxic:["3M","4M","5M","6M"],willowisp:["4M","5M","5S0","6M"],zenheadbutt:["4T","5T"],covet:["5T"],foulplay:["5T"],imprison:["6L1"],confide:["6M"]}}, + igglybuff:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4T","5T"],captivate:["4M","5E","6E"],charm:["3L1","4L1","5L1","3S0","6L1"],copycat:["4L17","5L17","6L17"],counter:["3T"],covet:["4E","5E","5T","6E"],defensecurl:["3L4","3T","4L5","5L5","3S0","6L5"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],echoedvoice:["5M","6M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","6E"],faketears:["3E","4E","5E","5D","6E"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4E","4T","5E","5T","6E"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4T","5D","5T"],hiddenpower:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],lastresort:["4E","4T","5E","5T","6E"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],perishsong:["3E","4E","5E","6E"],pound:["3L9","4L9","5L9","6L9"],present:["3E","4E","5E","6E"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],punishment:["5E","6E"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["4T","5T"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sing:["3L1","4L1","5L1","5D","3S0","6L1"],sleeptalk:["3T","4M","5E","5T","6M","6E"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetkiss:["3L14","4L13","5L13","6L13"],thunderwave:["3T","4M","5M","6M"],tickle:["3S0"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],waterpulse:["3M","4M"],wildcharge:["5M","6M"],wish:["3E","4E","5E","6E"],workup:["5M"],hypervoice:["5T"],confide:["6M"],mistyterrain:["6E"]}}, + jigglypuff:{learnset:{attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3L34","3T","4L29","5L33","6L33"],bounce:["4T","5T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],counter:["3T"],defensecurl:["3L4","3T","4L5","5L5","6L5"],dig:["3M","4M","5M","6M"],disable:["3L14","4L13","5L13","6L13"],doubleedge:["3L49","3T","4L49","5L53","6L53"],doubleslap:["3L24","4L21","5L25","6L25"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],gyroball:["4M","4L33","5M","5L37","6L37","6M"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hypervoice:["3L44","4L45","5L49","5T","6L48"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],incinerate:["5M","6M"],knockoff:["4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3L39","3T","4L41","5L45","6L45"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],pound:["3L9","4L9","5L9","6L7"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","3L29","4M","4L25","5M","5L29","6L29","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["4T","5T"],rollout:["3L19","3T","4L17","4T","5L21","6L21"],round:["5M","5L17","6L17","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sing:["3L1","4L1","5L1","6L1"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stealthrock:["4M","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],wakeupslap:["4L37","5L41","6L41"],waterpulse:["3M","4M"],wildcharge:["5M","6M"],workup:["5M"],covet:["5T"],playnice:["6L10"],disarmingvoice:["6L50"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + wigglytuff:{learnset:{attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4T","5T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],counter:["3T"],defensecurl:["3L1","3T","4L1","5L1","6L1"],dig:["3M","4M","5M","6M"],disable:["3L1","4L1","5L1","6L1"],doubleedge:["3T","6L1"],doubleslap:["3L1","4L1","5L1","6L1"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],gyroball:["4M","5M","6M"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],incinerate:["5M","6M"],knockoff:["4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["4T","5T"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sing:["3L1","4L1","5L1","6L1"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stealthrock:["4M","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],wildcharge:["5M","6M"],workup:["5M"],covet:["5T"],hypervoice:["5T"],magicroom:["5T"],playrough:["6L1"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + zubat:{learnset:{acrobatics:["5M","5L33","6L30","6M"],aerialace:["3M","4M","5M","6M"],aircutter:["3L31","4L25","4T","5L25","6L26"],airslash:["4L41","5L45","6L45"],astonish:["3L11","3L6","4L9","5L9","6L8"],attract:["3M","4M","5M","6M"],bite:["3L16","4L13","5L13","6L12"],bravebird:["4E","5E","6E"],captivate:["4M"],confuseray:["3L26","4L21","5L21","6L19"],curse:["3E","4E","5E","6E"],defog:["4M","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","6E"],fly:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5E","5T","6E"],gust:["3E","4E","5E","6E"],haze:["3L46","4L37","5L41","6L41"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hypnosis:["4E","5E","5D","6E"],leechlife:["3L1","4L1","5L1","6L1"],meanlook:["3L36","4L29","5L29","6L34"],mimic:["3T"],nastyplot:["4E","5E","6E"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","5M","6M"],pluck:["4M","5M"],poisonfang:["3L41","4L33","5L37","6L37"],protect:["3M","4M","5M","6M"],pursuit:["3E","4E","5E","6E"],quickattack:["3E","4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M","5E","6M","6E"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5D","5T"],supersonic:["3L6","3L11","4L5","5L5","5D","6L4"],swagger:["3T","4M","5M","6M"],swift:["3T","4T","5L24","6L23"],tailwind:["4T","5T"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uproar:["4T","5T"],uturn:["4M","5M","6M"],venoshock:["5M","6M"],whirlwind:["3E","4E","5E","6E"],wingattack:["3L21","4L17","5L17","6L15"],zenheadbutt:["4E","4T","5E","5T","6E"],confide:["6M"],venomdrench:["6E"]}}, + golbat:{learnset:{acrobatics:["5M","5L39","6L33","6M"],aerialace:["3M","4M","5M","6M"],aircutter:["3L35","4L27","4T","5L27","6L28"],airslash:["4L51","5L57","6L52"],astonish:["3L1","3L11","3L6","4L1","4L9","5L1","5L9","6L1","6L8"],attract:["3M","4M","5M","6M"],bite:["3L16","4L13","5L13","6L12"],captivate:["4M"],confuseray:["3L28","4L21","5L21","6L19"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fly:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],haze:["3L56","4L45","5L51","6L47"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],leechlife:["3L1","4L1","5L1","6L1"],meanlook:["3L42","4L33","5L33","6L38"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","5M","6M"],pluck:["4M","5M"],poisonfang:["3L49","4L39","5L45","6L42"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],screech:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],supersonic:["3L1","3L6","3L11","4L1","4L5","5L1","5L5","6L1","6L4"],swagger:["3T","4M","5M","6M"],swift:["3T","4T","5L24","6L24"],tailwind:["4T","5T"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uproar:["4T","5T"],uturn:["4M","5M","6M"],venoshock:["5M","6M"],wingattack:["3L21","4L17","5L17","6L15"],zenheadbutt:["4T","5T"],confide:["6M"]}}, + crobat:{learnset:{acrobatics:["5M","5L39","6L33","6M"],aerialace:["3M","4M","5M","6M"],aircutter:["3L35","4L27","4T","5L27","6L28"],airslash:["4L51","5L57","4S0","6L52"],astonish:["3L1","3L11","3L6","4L1","4L9","5L1","5L9","6L1","6L8"],attract:["3M","4M","5M","6M"],bite:["3L16","4L13","5L13","6L12"],captivate:["4M"],confuseray:["3L28","4L21","5L21","6L19"],crosspoison:["4L1","5L1","6L1"],darkpulse:["4M","5T","6M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],haze:["3L56","4L45","5L51","6L47"],heatwave:["4T","4S0","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],leechlife:["3L1","4L1","5L1","6L1"],meanlook:["3L42","4L33","5L33","6L38"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","5M","6M"],pluck:["4M","5M"],poisonfang:["3L49","4L39","5L45","6L42"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],screech:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],skyattack:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","4S0","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","4S0","5T"],supersonic:["3L1","3L6","3L11","4L1","4L5","5L1","5L5","6L1","6L4"],swagger:["3T","4M","5M","6M"],swift:["3T","4T","5L24","6L24"],tailwind:["4T","5T"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uproar:["4T","5T"],uturn:["4M","5M","6M"],venoshock:["5M","6M"],wingattack:["3L21","4L17","5L17","6L15"],xscissor:["4M","5M","6M"],zenheadbutt:["4T","5T"],confide:["6M"]}}, + oddish:{learnset:{absorb:["3L1","4L1","5L1","3S1","6L1"],acid:["3L23","4L9","5L9","3S0","6L9"],afteryou:["5E","5T","6E"],attract:["3M","4M","5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],charm:["3E","4E","5E","6E"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flail:["3E","4E","5E","6E"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gastroacid:["4T","5T"],gigadrain:["3M","4M","4L37","5L37","5D","5T","6L37"],grassknot:["4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],ingrain:["3E","4E","5E","6E"],leechseed:["3S1"],luckychant:["4L25","5L25","6L25"],megadrain:["4L21","5L21","6L21"],mimic:["3T"],moonlight:["3L32","4L33","5L33","6L33"],naturalgift:["4M","4L29","5L29","6L29"],naturepower:["5E","6M","6E"],petaldance:["3L39","4L41","5L41","6L41"],poisonpowder:["3L14","4L13","5L13","3S0","6L13"],protect:["3M","4M","5M","6M"],razorleaf:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M","5E","6E"],seedbomb:["4T","5T"],sleeppowder:["3L18","4L17","5L17","3S0","6L17"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stunspore:["3L16","4L15","5L15","3S0","6L15"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3L7","4L5","5L5","5D","6L5"],swordsdance:["3E","3T","4E","4M","5M","6M"],synthesis:["3E","4E","4T","5E","5T","6E"],teeterdance:["4E","5E","5D","6E"],tickle:["4E","5E","6E"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],worryseed:["4T","5T"],grassyterrain:["6L45"],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + gloom:{learnset:{absorb:["3L1","4L1","5L1","6L1"],acid:["3L24","4L1","4L9","5L1","5L9","3S0","6L1","6L9"],attract:["3M","4M","5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gastroacid:["4T","5T"],gigadrain:["3M","4M","4L47","5L47","5T","6L47"],grassknot:["4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],luckychant:["4L29","5L29","6L29"],megadrain:["4L23","5L23","6L23"],mimic:["3T"],moonlight:["3L35","4L41","5L41","3S0","6L41"],naturalgift:["4M","4L35","5L35","6L35"],petaldance:["3L44","4L53","5L53","3S0","6L53"],poisonpowder:["3L1","3L14","4L13","5L13","6L13"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeppowder:["3L18","4L17","5L17","3S0","6L17"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stunspore:["3L16","4L15","5L15","6L15"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3L1","3L7","4L1","4L5","5L1","5L5","6L1","6L5"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],worryseed:["4T","5T"],afteryou:["5T"],petalblizzard:["6L50"],grassyterrain:["6L56"],infestation:["6M"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + vileplume:{learnset:{absorb:["3L1"],aromatherapy:["3L1","4L1","5L1","6L1"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gastroacid:["4T","5T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],megadrain:["3L1","4L1","5L1","6L1"],mimic:["3T"],naturalgift:["4M"],petaldance:["3L44","4L53","5L53","6L53"],poisonpowder:["4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","4L65","5M","5L65","6L65","6M"],stunspore:["3L1","4L1","5L1","6L1"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],worryseed:["4T","5T"],afteryou:["5T"],petalblizzard:["6L50"],safeguard:["6M"],infestation:["6M"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + bellossom:{learnset:{absorb:["3L1"],attract:["3M","4M","5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gastroacid:["4T","5T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],leafblade:["4L1","5L1","6L1"],leafstorm:["4L53","5L53","6L1","6L53"],magicalleaf:["3L1","4L23","5L23","6L23"],megadrain:["4L1","5L1","6L1"],mimic:["3T"],naturalgift:["4M"],petaldance:["3L44"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","3L55","4M","5M","6M"],stunspore:["3L1","4L1","5L1","6L1"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","4L1","5M","5L1","6L1","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3L1","4L1","5L1","6L1"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],venoshock:["5M","6M"],worryseed:["4T","5T"],afteryou:["5T"],petalblizzard:["6L50"],infestation:["6M"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + paras:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["4E","5E","6E"],aromatherapy:["3L49","4L38","5L43","6L43"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["4M","5M","6M"],bugbite:["4E","4T","5E","5T","6E"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3E","3T","4E","5E","6E"],crosspoison:["4E","5E","5D","6E"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M","5E","6E"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],falseswipe:["3E","4E","4M","5M","3S0","6M"],flail:["3E","4E","5E","6E"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T","5L17","6L17"],gigadrain:["3M","3L43","4M","4L33","5L38","5T","6L38"],grassknot:["4M","5M","6M"],growth:["3L37","4L27","5L33","6L33"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],knockoff:["4T","5T"],leechlife:["3L19","4L11","5L11","6L11"],leechseed:["5E","6E"],lightscreen:["3E","4E","5M","6M"],metalclaw:["4E","5E","6E"],mimic:["3T"],naturalgift:["4M","5E","6E"],poisonpowder:["3L13","4L6","5L6","6L6"],protect:["3M","4M","5M","6M"],psybeam:["3E","4E","5E","6E"],pursuit:["3E","4E","5E","6E"],ragepowder:["5L49","6L49"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],scratch:["3L1","4L1","5L1","6L1"],screech:["3E","4E","5E","6E"],secretpower:["3M","4M"],seedbomb:["4T","5T"],slash:["3L31","4L22","5L27","3S0","6L27"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spore:["3L25","4L17","5L22","3S0","6L22"],stringshot:["4T"],strugglebug:["5M","6M"],stunspore:["3L7","4L6","5L6","5D","6L6"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3E","4E","5E","6E"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T","5D"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],worryseed:["4T","5T"],xscissor:["4M","4L43","5M","5L54","6L54","6M"],afteryou:["5T"],naturepower:["6M"],confide:["6M"],fellstinger:["6E"]}}, + parasect:{learnset:{aerialace:["3M","4M","5M","6M"],aromatherapy:["3L59","4L47","5L51","6L51"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["4M","5M","6M"],bugbite:["4T","5T"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],crosspoison:["4L1","5L1","6L1"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],falseswipe:["4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T","5L17","6L17"],gigadrain:["3M","3L51","4M","4L39","5L44","5T","6L44"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growth:["3L43","4L30","5L37","6L37"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],knockoff:["4T","5T"],leechlife:["3L19","4L1","4L11","5L1","5L11","6L1","6L11"],lightscreen:["5M","6M"],mimic:["3T"],naturalgift:["4M"],poisonpowder:["3L1","3L13","4L1","4L6","5L1","5L6","6L1","6L6"],protect:["3M","4M","5M","6M"],ragepowder:["5L59","6L59"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],scratch:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],seedbomb:["4T","5T"],slash:["3L35","4L22","5L29","6L29"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spore:["3L27","4L17","5L22","6L22"],stringshot:["4T"],strugglebug:["5M","6M"],stunspore:["3L1","3L7","4L1","4L6","5L1","5L6","6L1","6L6"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],worryseed:["4T","5T"],xscissor:["4M","4L55","5M","5L66","6L66","6M"],afteryou:["5T"],naturepower:["6M"],confide:["6M"]}}, + venonat:{learnset:{agility:["4E","5E","6E"],attract:["3M","4M","5M","6M"],batonpass:["3E","4E","5E","5D","6E"],bugbite:["4E","4T","5E","5T","6E"],captivate:["4M"],confusion:["3L17","4L11","5L11","6L11"],disable:["3L1","4L1","5L1","5D","6L1"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],foresight:["3L1","4L1","5L1","6L1"],frustration:["3M","4M","5M","6M"],gigadrain:["3E","3M","4E","4M","5E","5T","6E"],hiddenpower:["3M","4M","5M","6M"],leechlife:["3L25","4L17","5L17","6L17"],mimic:["3T"],morningsun:["4E","5E","6E"],naturalgift:["4M"],poisonfang:["4L41","5L41","6L41"],poisonpowder:["3L20","4L13","5L13","6L13"],protect:["3M","4M","5M","6M"],psybeam:["3L33","4L25","5L25","6L25"],psychic:["3M","3L41","4M","4L47","5M","5L47","6L47","6M"],ragepowder:["5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],screech:["3E","4E","5E","6E"],secretpower:["3M","4M","5E","6E"],signalbeam:["3E","4E","4L35","4T","5E","5L35","5T","6L35","6E"],skillswap:["3M","4M","5E","5T","5D","6E"],sleeppowder:["3L36","4L29","5L29","6L29"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],stunspore:["3L28","4L23","5L23","6L23"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3L9","4L5","5L5","6L5"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],toxicspikes:["4E","5E","6E"],venoshock:["5M","6M"],zenheadbutt:["4L37","4T","5L37","5T","6L37"],infestation:["6M"],confide:["6M"]}}, + venomoth:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],aircutter:["4T"],attract:["3M","4M","5M","6M"],bugbite:["4T","5T"],bugbuzz:["4L59","5L59","6L1","6L59"],captivate:["4M"],confusion:["3L17","4L11","5L11","6L11"],defog:["4M"],disable:["3L1","4L1","5L1","6L1"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],foresight:["3L1","4L1","5L1","6L1"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],gust:["3L31","4L31","5L31","6L31"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],leechlife:["3L25","4L17","5L17","6L17"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],poisonfang:["4L47","5L47","6L47"],poisonpowder:["3L20","4L13","5L13","6L13"],protect:["3M","4M","5M","6M"],psybeam:["3L36","4L25","5L25","6L25"],psychic:["3M","3L52","4M","4L55","5M","5L55","3S0","6L55","6M"],quiverdance:["5L63","6L1","6L63"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],secretpower:["3M","4M"],signalbeam:["4L37","4T","5L37","5T","6L37"],silverwind:["3L1","4M","4L1","5L1","3S0","6L1"],skillswap:["3M","4M","5T"],sleeppowder:["3L42","4L29","5L29","6L29"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],stunspore:["3L28","4L23","5L23","6L23"],substitute:["3T","4M","5M","3S0","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3L1","3L9","4L1","4L5","5L1","5L5","6L1","6L5"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],tailwind:["4T","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],venoshock:["5M","6M"],zenheadbutt:["4L41","4T","5L41","5T","6L41"],infestation:["6M"],confide:["6M"]}}, + diglett:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["3E","4E","5E","6E"],astonish:["4E","4L7","5E","5L7","6L7","6E"],attract:["3M","4M","5M","6M"],beatup:["3E","4E","5E","5D","6E"],bodyslam:["3T"],bulldoze:["5M","5L18","6L18","6M"],captivate:["4M"],cut:["3M","4M","5M","6M"],dig:["3M","3L17","4M","4L18","5M","5L34","6L34","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4L26","4T","5L29","5T","6L29"],earthquake:["3M","3L41","4M","4L37","5M","5L40","6L40","6M"],echoedvoice:["5M","6M"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","6E"],finalgambit:["5E","6E"],fissure:["3L49","4L40","5L45","6L45"],frustration:["3M","4M","5M","6M"],furyswipes:["3L21"],growl:["3L5","4L4","5L4","6L4"],headbutt:["5E","6E"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],magnitude:["3L9","4L12","5L15","6L15"],memento:["5E","6E"],mimic:["3T"],mudbomb:["4E","4L29","5E","5L26","6L26","6E"],mudslap:["3L25","3T","4L15","4T","5L12","6L12"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],pursuit:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],reversal:["4E","5E","6E"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandattack:["3L1","4L1","5L1","5D","6L1"],sandstorm:["4M","5M","6M"],scratch:["3L1","4L1","5L1","6L1"],screech:["3E","4E","5E","6E"],secretpower:["3M","4M"],shadowclaw:["4M","5M","6M"],slash:["3L33","4L34","5L37","6L37"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T","5D"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L23","4T","5L23","6L23"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["3E","4E","5E","5T","6E"],confide:["6M"]}}, + dugtrio:{learnset:{aerialace:["3M","4M","5M","6M"],astonish:["4L7","5L7","6L7"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bulldoze:["5M","5L18","6L18","6M"],captivate:["4M"],charm:["3S0"],cut:["3M","4M","5M","6M"],dig:["3M","3L17","4M","4L18","5M","5L40","6L40","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4L28","4T","5L33","5T","6L33"],earthquake:["3M","3L51","4M","4L45","5M","5L50","3S0","6L50","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fissure:["3L64","4L50","5L57","6L57"],frustration:["3M","4M","5M","6M"],furyswipes:["3L21"],gigaimpact:["4M","5M","6M"],growl:["3L1","3L5","4L1","4L4","5L1","5L4","6L1","6L4"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],magnitude:["3L9","4L12","5L15","6L15"],mimic:["3T"],mudbomb:["4L33","5L28","6L28"],mudslap:["3L25","3T","4L15","4T","5L12","6L12"],naturalgift:["4M"],nightslash:["4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandattack:["3L1","4L1","5L1","6L1"],sandstorm:["3S0","4M","5M","6M"],sandtomb:["3L26","4L26","5L26","6L26"],scratch:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],shadowclaw:["4M","5M","6M"],slash:["3L38","4L40","5L45","6L45"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L23","4T","5L23","6L23"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],triattack:["3L1","4L1","5L1","3S0","6L1"],uproar:["5T"],rototiller:["6L1"],confide:["6M"]}}, + meowth:{learnset:{aerialace:["3M","4M","5M","6M"],amnesia:["3E","4E","5E","6E"],assist:["3E","4E","5E","4S5","6E"],assurance:["4L41","5L41","6L0"],attract:["3M","4M","5M","6M"],bite:["3L11","3L10","4L6","5L6","3S2","3S3","4S4","6L0"],bodyslam:["3T"],captivate:["4M","4L46","5L46","6L0"],charm:["3E","4E","5E","6E"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L28","3L25","4L22","5L22","6L0"],fakeout:["3L50","3L43","4L9","5L9","4S4","4S5","6L0"],feint:["4L54","5L54","6L0"],flail:["4E","5E","6E"],flash:["3M","4M","5M","6M"],foulplay:["5E","5T","6E"],frustration:["3M","4M","5M","6M"],furyswipes:["3L41","3L36","4L14","5L14","4S4","5S6","6L0"],growl:["3L1","4L1","5L1","3S0","3S1","3S2","6L0"],gunkshot:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hypnosis:["3E","4E","5E","5D","6E"],icywind:["3T","4T","5T"],irontail:["3M","4M","5E","5T","6E"],knockoff:["4T","5T"],lastresort:["4E","4T","5E","5T","6E"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L38","5L38","5S6","6L0"],naturalgift:["4M"],nightmare:["3T"],nightslash:["4L49","5L49","6L0"],odorsleuth:["4E","5E","6E"],payback:["4M","5M","6M"],payday:["3L20","3L18","4L30","5L30","3S3","4S5","6L0"],petaldance:["3S0"],protect:["3M","4M","5M","6M"],psychup:["3E","3T","4E","4M","5M","6M"],punishment:["4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scratch:["3L1","4L1","5L1","5D","3S0","3S1","3S2","4S5","6L0"],screech:["3L35","3L31","4L17","5L17","4S4","6L0"],secretpower:["3M","4M","5D"],seedbomb:["4T","5T"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sing:["3S3","5S6"],slash:["3L46","3L40","4L33","5L33","3S3","6L0"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5E","5T","5S6","6E"],snore:["3T","4T","5T"],spite:["3E","4E","4T","5E","5T","6E"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","3L45","4M","5M","6M"],swift:["3T","4T"],tailwhip:["4E","5E","6E"],taunt:["3M","4M","4L25","5M","5L25","6L0","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uturn:["4M","5M","6M"],waterpulse:["3M","4M"],workup:["5M"],covet:["5T"],uproar:["5T"],hypervoice:["5T"]}}, + persian:{learnset:{aerialace:["3M","4M","5M","6M"],assurance:["4L49","5L49","6L0"],attract:["3M","4M","5M","6M"],bite:["3L1","3L11","3L10","4L1","4L6","5L1","5L6","6L0","6L0"],bodyslam:["3T"],captivate:["4M","4L56","5L56","6L0"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],echoedvoice:["5M","6M"],embargo:["4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L29","3L25","4L22","5L22","6L0"],fakeout:["3L59","3L55","4L1","4L9","5L1","5L9","6L0","6L0"],feint:["4L68","5L68","6L0"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furyswipes:["3L46","3L42","4L14","5L14","6L0"],gigaimpact:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L0"],gunkshot:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L44","5L44","6L0"],naturalgift:["4M"],nightmare:["3T"],nightslash:["4L61","5L61","6L0"],payback:["4M","5M","6M"],payday:["3L20","3L18"],powergem:["4L32","5L32","6L0"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],round:["5M","6M"],scratch:["3L1","4L1","5L1","6L0"],screech:["3L38","3L34","4L17","5L17","6L0"],secretpower:["3M","4M"],seedbomb:["4T","5T"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],slash:["3L53","3L49","4L37","5L37","6L0"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","3L61","4M","5M","6M"],swift:["3T","4T","5L28","6L0"],switcheroo:["4L1","5L1","6L0"],taunt:["3M","4M","4L25","5M","5L25","6L0","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],waterpulse:["3M","4M"],workup:["5M"],covet:["5T"],foulplay:["5T"],hypervoice:["5T"]}}, + psyduck:{learnset:{aerialace:["3M","4M","5M","6M"],amnesia:["4L44","5L48","6L43"],aquatail:["4T","5T","5L32","6L32"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],brine:["4M","5D"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],confuseray:["4E","5E","6E"],confusion:["3L16","4L18","5L18","3S0","6L15"],counter:["3T"],crosschop:["3E","4E","5E","6E"],dig:["3M","4M","5M","6M"],disable:["3L10","4L14","5L14","3S0","6L11"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],encore:["4E","5E","5D","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],furyswipes:["3L40","4L27","5L27","6L22"],futuresight:["3E","4E","5E","6E"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hydropump:["3L50","4L48","5L53","6L46"],hypnosis:["3E","4E","5E","6E"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lightscreen:["3E","4E","5M","6M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudbomb:["4E","5E","6E"],mudslap:["3T","4T"],mudsport:["3S1"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psybeam:["3E","4E","5E","6E"],psychic:["3E","4E","4M","5M","6M"],psychup:["3L31","3T","4M","4L35","5M","5L40","6L39","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],refresh:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],scald:["5M","6M"],scratch:["3L1","4L1","5L1","3S1","6L1"],screech:["3L23","4L31","5L31","6L25"],secretpower:["3M","4M","5E","6E"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5E","5T","6M","6E"],snore:["3T","4T","5T"],soak:["5L35","6L36"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],synchronoise:["5E","6E"],tailwhip:["3L5","4L5","5L5","3S0","3S1","6L4"],telekinesis:["5M"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["4L9","5L9","6L8"],waterpulse:["3M","4M","4L22","5L22","6L18"],watersport:["3L1","4L1","5L1","5D","3S1","6L1"],whirlpool:["4M"],wonderroom:["5L57","5T","6L50"],worryseed:["4T","5T"],yawn:["4E","5E","6E"],zenheadbutt:["4L40","4T","5L44","5T","6L29"],poweruppunch:["6M"],confide:["6M"],simplebeam:["6E"]}}, + golduck:{learnset:{aerialace:["3M","4M","5M","6M"],amnesia:["4L50","5L56","6L49"],aquajet:["4L1","5L1","6L1"],aquatail:["4T","5T","5L32","6L32"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","3S0","6M"],brine:["4M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],charm:["3S0"],confusion:["3L16","4L18","5L18","6L15"],counter:["3T"],dig:["3M","4M","5M","6M"],disable:["3L1","3L10","4L14","5L14","6L11"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],furyswipes:["3L44","4L27","5L27","6L22"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hydropump:["3L58","4L56","5L63","6L54"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lightscreen:["5M","6M"],lowkick:["4T","5T"],lowsweep:["5M","6M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["3L31","3T","4M","4L37","5M","5L44","3S0","6L43","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rocksmash:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],scald:["5M","6M"],scratch:["3L1","4L1","5L1","6L1"],screech:["3L23","4L31","5L31","6L25"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],soak:["5L37","6L38"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwhip:["3L1","3L5","4L1","4L5","5L1","5L5","6L1","6L4"],telekinesis:["5M"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","3S0","6M"],watergun:["4L1","4L9","5L1","5L9","6L1","6L8"],waterpulse:["3M","4M","4L22","5L22","6L18"],watersport:["3L1","4L1","5L1","6L1"],whirlpool:["4M"],wonderroom:["5L69","5T","6L60"],worryseed:["4T","5T"],zenheadbutt:["4L44","4T","5L50","5T","6L29"],poweruppunch:["6M"],confide:["6M"]}}, + mankey:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],assurance:["4L25","5L25","6L25"],attract:["3M","4M","5M","6M"],beatup:["3E","4E","5E","6E"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],closecombat:["4E","4L49","5E","5L49","6L49","6E"],counter:["3E","3T","4E","5E","6E"],covet:["4L1","5L1","5T","6L1"],crosschop:["3L39","3L31","4L37","5L37","6L37"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],encore:["4E","5E","6E"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],finalgambit:["5L53","6L53"],firepunch:["3T","4T","5T"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focusenergy:["3L27","3L21","4L1","5L1","6L1"],focuspunch:["3M","4M","5E","6E"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],furyswipes:["3L21","3L16","4L9","5L9","6L9"],gunkshot:["4T","5T"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5T"],karatechop:["3L15","3L11","4L13","5L13","6L13"],leer:["3L1","4L1","5L1","6L1"],lowkick:["3L9","3L6","4L1","4T","5L1","5D","5T","6L1"],lowsweep:["5M","6M"],meditate:["3E","4E","5E","6E"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],overheat:["3M","4M","5M","6M"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychup:["3T"],punishment:["4L45","5L45","6L45"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],revenge:["3E","4E","5E","6E"],reversal:["3E","4E","5E","5D","6E"],rockclimb:["4M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],scratch:["3L1","4L1","5L1","6L1"],screech:["3L45","3L41","4L21","5L21","6L21"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3L33","3T","3L26","4L17","5L17","6L17"],sleeptalk:["3T","4M","5E","5T","6M","6E"],smackdown:["5M","6M"],smellingsalts:["3E","4E","5E","6E"],snore:["3T"],spite:["4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","3L36","4M","4L33","5M","5L33","6L33","6M"],swift:["3T","4T"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thrash:["3L51","3L46","4L41","5L41","6L41"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5D","5T"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],vacuumwave:["4T"],workup:["5M"],dualchop:["5T"],poweruppunch:["6M"],confide:["6M"],nightslash:["6E"]}}, + primeape:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],assurance:["4L25","5L25","6L25"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],closecombat:["4L59","5L59","6L59"],crosschop:["3L45","3L35","4L41","5L41","3S0","6L41"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],finalgambit:["5L63","6L1","6L63"],firepunch:["3T","4T","5T"],fling:["4M","4L1","5M","5L1","6L1","6M"],focusblast:["4M","5M","6M"],focusenergy:["3L27","3L21","4L1","5L1","3S0","6L1"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furyswipes:["3L21","3L16","4L9","5L9","6L9"],gigaimpact:["4M","5M","6M"],gunkshot:["4T","5T"],headbutt:["4T"],helpinghand:["4T","5T","3S0"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5T"],karatechop:["3L15","3L11","4L13","5L13","6L13"],leer:["3L1","4L1","5L1","6L1"],lowkick:["3L1","3L9","3L6","4L1","4T","5L1","5T","6L1"],lowsweep:["5M","6M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],overheat:["3M","4M","5M","6M"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychup:["3T"],punishment:["4L53","5L53","6L53"],rage:["3L1","3L28","4L28","5L28","6L28"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],reversal:["3S0"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],scratch:["3L1","4L1","5L1","6L1"],screech:["3L54","3L53","4L21","5L21","6L21"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3L36","3T","3L26","4L17","5L17","6L17"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T"],spite:["4T","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","3L44","4M","4L35","5M","5L35","6L35","6M"],swift:["3T","4T"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thrash:["3L63","3L62","4L47","5L47","6L47"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],vacuumwave:["4T"],workup:["5M"],covet:["5T"],dualchop:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + growlithe:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L43","4L39","5L42","6L30"],attract:["3M","4M","5M","6M"],bite:["3L1","4L1","5L1","5D","3S1","3S2","6L1"],bodyslam:["3E","3T","4E","5E","5D","6E"],captivate:["4M"],charm:["3S2"],closecombat:["5E","6E"],covet:["5E","5T","6E"],crunch:["3E","4E","4L42","5E","5L45","6L39","6E"],dig:["3M","4M","5M","6M"],doubleedge:["3T","4E","5E","6E"],doublekick:["5E","6E"],doubleteam:["3M","4M","5M","6M"],ember:["3L7","4L6","5L6","3S1","6L6"],endure:["3T","4M","5D"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firefang:["4L28","5L28","6L21"],firespin:["3E","4E","5E","6E"],flameburst:["5L31","6L28"],flamecharge:["5M","6M"],flamethrower:["3M","3L49","4M","4L34","5M","5L39","3S2","6L34","6M"],flamewheel:["3L31","4L20","5L20","3S0","6L17"],flareblitz:["4E","4L48","5E","5L56","6L45","6E"],frustration:["3M","4M","5M","6M"],headbutt:["4T"],heatwave:["3E","4E","4L45","4T","5E","5L51","5T","6L41","6E"],helpinghand:["3L37","4L17","4T","5L17","5T","6L12"],hiddenpower:["3M","4M","5M","6M"],howl:["3E","4E","5E","6E"],incinerate:["5M","6M"],irontail:["3M","4M","5E","5T","6E"],leer:["3L13","4L9","5L9","3S0","6L8"],mimic:["3T"],morningsun:["4E","5E","6E"],mudslap:["4T"],naturalgift:["4M"],odorsleuth:["3L19","4L14","5L14","3S0","6L10"],outrage:["5L43","5T","6L43"],overheat:["3M","4M","5M","6M"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","5L48","6L32","6M"],"return":["3M","4M","5M","6M"],reversal:["4L25","5L25","6L19"],roar:["3M","3L1","4M","4L1","5M","5L1","3S1","5D","6L1","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3E","4E","5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],takedown:["3L25","4L31","5L34","3S0","3S2","6L23"],thief:["3M","4M","5M","6M"],thrash:["3E","4E","5E","6E"],toxic:["3M","4M","5M","6M"],wildcharge:["5M","6M"],willowisp:["4M","5M","6M"],confide:["6M"]}}, + arcanine:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bite:["3L1","4L1","5L1","6L1"],bodyslam:["3T"],bulldoze:["5M","6M"],captivate:["4M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonpulse:["4M","5T"],ember:["3L1"],endure:["3T","4M"],extremespeed:["3L49","4L39","5L39","6L34"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firefang:["4L1","5L1","6L1"],flamecharge:["5M","6M"],flamethrower:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["4T"],naturalgift:["4M"],odorsleuth:["3L1","4L1","5L1","6L1"],overheat:["3M","4M","5M","6M"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L1","4M","4L1","5M","5L1","6L1","6M"],rockclimb:["4M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],thief:["3M","4M","5M","6M"],thunderfang:["4L1","5L1","6L1"],toxic:["3M","4M","5M","6M"],wildcharge:["5M","6M"],willowisp:["4M","5M","6M"],covet:["5T"],outrage:["5T"],confide:["6M"]}}, + poliwag:{learnset:{attract:["3M","4M","5M","6M"],bellydrum:["3L37","4L31","5L31","6L31"],blizzard:["3M","4M","5M","6M"],bodyslam:["3L31","3T","4L21","5L21","6L21"],bubble:["3L1","4L5","5L5","3S0","6L5"],bubblebeam:["3E","4E","4L25","5E","5L25","6L25","6E"],captivate:["4M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleslap:["3L19","4L15","5L15","6L15"],doubleteam:["3M","4M","5M","6M"],encore:["4E","5E","6E"],endeavor:["4E","5E","5T","6E"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],haze:["3E","4E","5E","6E"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L43","4L38","5L38","6L38"],hypnosis:["3L7","4L8","5L8","5D","6L8"],iceball:["3E","4E","5E","6E"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],mimic:["3T"],mindreader:["3E","4E","5E","6E"],mist:["3E","4E","5E","5D","6E"],mudbomb:["4L41","5L41","6L41"],mudshot:["4E","4L28","5E","5L28","6L28","6E"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],raindance:["3M","3L25","4M","4L18","5M","5L18","6L18","6M"],refresh:["4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5D","5T","6M"],snore:["3T","4T","5T"],splash:["3E","4E","5E","6E"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetkiss:["3S0"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],wakeupslap:["4L35","5L35","6L35"],waterfall:["3M","4M","5M","6M"],watergun:["3L13","4L11","5L11","6L11"],waterpulse:["3M","4M","5E","6E"],watersport:["3E","4E","4L1","5E","5L1","6L1","6E"],whirlpool:["4M"],helpinghand:["5T"],confide:["6M"]}}, + poliwhirl:{learnset:{attract:["3M","4M","5M","6M"],bellydrum:["3L43","4L37","5L37","6L37"],blizzard:["3M","4M","5M","6M"],bodyslam:["3L35","3T","4L21","5L21","6L21"],brickbreak:["3M","4M","5M","6M"],bubble:["3L1","4L1","4L5","5L1","5L5","6L1","6L5"],bubblebeam:["4L27","5L27","6L27"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleslap:["3L19","4L15","5L15","6L15"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L51","4L48","5L48","6L48"],hypnosis:["3L1","3L7","4L1","4L8","5L1","5L8","6L1","6L8"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudbomb:["4L53","5L53","6L53"],mudshot:["4L32","5L32","6L32"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],raindance:["3M","3L27","4M","4L18","5M","5L18","6L18","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],wakeupslap:["4L43","5L43","6L43"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","3L13","4L11","5L11","6L11"],waterpulse:["3M","4M"],watersport:["4L1","5L1","6L1"],whirlpool:["4M"],helpinghand:["5T"],endeavor:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + poliwrath:{learnset:{attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","3S0","6M"],bubblebeam:["4L1","5L1","6L1"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],circlethrow:["5L53","6L1","6L53"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleslap:["3L1","4L1","5L1","6L1"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T","4L43","5L32","6L32"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T","3S0"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3S0"],hyperbeam:["3M","4M","5M","6M"],hypnosis:["3L1","4L1","5L1","6L1"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],lowsweep:["5M","6M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mindreader:["3L51","4L53","5L43","6L43"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],raindance:["3M","4M","5M","3S0","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],submission:["3L1","3L35","4L1","5L1","6L1"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],vacuumwave:["4T"],waterfall:["3M","4M","5M","6M"],watergun:["3L1"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"],endeavor:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + politoed:{learnset:{attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4L43","4T","4L37","5L37","5T","6L37"],brickbreak:["3M","4M","5M","6M"],bubblebeam:["4L1","5L1","6L1"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleslap:["3L1","4L1","5L1","6L1"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],hypervoice:["4L48","5L48","5T","6L48"],hypnosis:["3L1","4L1","5L1","6L1"],icebeam:["3M","4M","5M","5S0","6M"],icywind:["3T","4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M","6M"],perishsong:["3L1","3L35","4L1","5L1","5S0","6L1"],protect:["3M","4M","5M","5S0","6M"],psychic:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","5S0","6M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3L51","3T","4M","4L53","4L27","5M","5L27","6L27","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L1"],waterpulse:["3M","4M"],whirlpool:["4M"],icepunch:["5T"],endeavor:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + abra:{learnset:{allyswitch:["5M","6E"],attract:["3M","4M","5M","6M"],barrier:["3E","4E","5E","6E"],bodyslam:["3T"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],counter:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],embargo:["4M","5M","6M"],encore:["3E","4E","5E","6E"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],firepunch:["3E","3T","4E","4T","5E","5T","6E"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5D","5T"],guardsplit:["5E","6E"],guardswap:["4E","5E","6E"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],icepunch:["3E","3T","4E","4T","5E","5T","6E"],irontail:["3M","4M","5T"],knockoff:["3E","4E","4T","5E","5T","6E"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],powertrick:["4E","5E","6E"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5E","5D","5T","6E"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],teleport:["3L1","4L1","5L1","5D","6L1"],thief:["3M","4M","5M","6M"],thunderpunch:["3E","3T","4E","4T","5E","5T","6E"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],zenheadbutt:["4T","5T"],foulplay:["5T"],magicroom:["5T"],wonderroom:["5T"],dazzlinggleam:["6M"],confide:["6M"],psychoshift:["6E"]}}, + kadabra:{learnset:{allyswitch:["5M","5L24","6L24"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],confusion:["3L1","3L16","4L1","4L16","5L1","5L16","6L1","6L16"],counter:["3T"],disable:["3L18","4L18","5L18","6L18"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],embargo:["4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],futuresight:["3L30","4L42","5L48","6L48"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5T"],kinesis:["3L1","4L1","5L1","6L1"],knockoff:["4T","5T"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],miracleeye:["4L22","5L22","6L22"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M","6M"],psybeam:["3L21","4L24","5L28","6L28"],psychic:["3M","3L36","4M","4L40","5M","5L46","6L46","6M"],psychocut:["4L34","5L40","6L40"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recover:["3L25","4L30","5L36","6L36"],recycle:["4M","5T"],reflect:["3M","3L23","4M","4L28","5M","5L30","6L30","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["3L33","4L36","4T","5L42","5T","6L42"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],telekinesis:["5M","5L34","6L34"],teleport:["3L1","4L1","5L1","6L1"],thief:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["3L43","4L46","4T","5L52","5T","6L50"],trickroom:["4M","5M","6M"],zenheadbutt:["4T","5T"],foulplay:["5T"],magicroom:["5T"],wonderroom:["5T"],dazzlinggleam:["6M"],confide:["6M"]}}, + alakazam:{learnset:{allyswitch:["5M","5L24","6L24"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],calmmind:["3M","3L33","4M","4L36","5M","5L42","3S0","6L42","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],confusion:["3L1","3L16","4L1","4L16","5L1","5L16","6L1","6L16"],counter:["3T"],disable:["3L18","4L18","5L18","6L18"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],embargo:["4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],futuresight:["3L30","4L42","5L48","3S0","6L48"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5T"],kinesis:["3L1","4L1","5L1","6L1"],knockoff:["4T","5T"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],miracleeye:["4L22","5L22","6L22"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M","6M"],psybeam:["3L21","4L24","5L28","6L28"],psychic:["3M","3L36","4M","4L40","5M","5L46","3S0","6L46","6M"],psychocut:["4L34","5L40","6L40"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recover:["3L25","4L30","5L36","6L36"],recycle:["4M","5T"],reflect:["3M","3L23","4M","4L28","5M","5L30","6L30","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],telekinesis:["5M","5L34","6L34"],teleport:["3L1","4L1","5L1","6L1"],thief:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["3L43","4L46","4T","5L52","3S0","5T","6L50"],trickroom:["4M","5M","6M"],zenheadbutt:["4T","5T"],foulplay:["5T"],magicroom:["5T"],wonderroom:["5T"],dazzlinggleam:["6M"],confide:["6M"]}}, + machop:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],bulletpunch:["4E","5E","5D","6E"],captivate:["4M"],closecombat:["4E","5E","6E"],counter:["3E","3T","4E","5E","6E"],crosschop:["3L40","4L37","5L43","6L43"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3L49","3T","4L46","5L49","6L49"],earthquake:["3M","4M","5M","6M"],encore:["3E","4E","5E","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4E","4T","5E","5T","6E"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focusenergy:["3L7","4L7","5L7","6L7"],focuspunch:["3M","4M"],foresight:["3L22","4L13","5L19","6L19"],frustration:["3M","4M","5M","6M"],headbutt:["4T"],heavyslam:["5E","6E"],helpinghand:["4T","5D","5T"],hiddenpower:["3M","4M","5M","6M"],icepunch:["3T","4E","4T","5E","5T","6E"],incinerate:["5M","6M"],karatechop:["3L13","4L10","5L10","6L10"],knockoff:["5E","5T","6E"],leer:["3L1","4L1","5L1","6L1"],lightscreen:["3E","4E","5M","6M"],lowkick:["3L1","4L1","4T","5L1","5D","5T","6L1"],lowsweep:["5M","5L13","6L13","6M"],meditate:["3E","4E","5E","6E"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],powertrick:["4E","5E","6E"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],revenge:["3L25","4L22","5L25","6L25"],rockclimb:["4M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4T","5T"],rollingkick:["3E","4E","5E","6E"],round:["5M","6M"],scaryface:["3L43","4L43","5L46","6L46"],secretpower:["3M","4M"],seismictoss:["3L19","3T","4L19","5L22","6L22"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],smellingsalts:["3E","4E","5E","6E"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],submission:["3L37","4L31","5L34","6L34"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunderpunch:["3T","4E","4T","5E","5T","6E"],tickle:["5E","6E"],toxic:["3M","4M","5M","6M"],vacuumwave:["4T"],vitalthrow:["3L31","4L25","5L31","6L31"],wakeupslap:["4L34","5L37","6L37"],workup:["5M"],dualchop:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + machoke:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],crosschop:["3L46","4L40","5L44","6L44"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3L59","3T","4L51","5L55","6L55"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focusenergy:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],focuspunch:["3M","4M"],foresight:["3L22","4L13","5L19","3S0","5S1","6L19"],frustration:["3M","4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],incinerate:["5M","6M"],karatechop:["3L13","4L10","5L1","5L10","6L1","6L10"],leer:["3L1","4L1","5L1","6L1"],lightscreen:["5M","6M"],lowkick:["3L1","4L1","4T","5L1","5T","6L1"],lowsweep:["5M","5L13","5S1","6L13","6M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],revenge:["3L25","4L22","5L25","3S0","5S1","6L25"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],scaryface:["3L51","4L44","5L51","6L51"],secretpower:["3M","4M"],seismictoss:["3L19","3T","4L19","5L22","3S0","5S1","6L22"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],submission:["3L41","4L32","5L36","6L36"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],vacuumwave:["4T"],vitalthrow:["3L33","4L25","5L32","3S0","6L32"],wakeupslap:["4L36","5L40","6L40"],workup:["5M"],dualchop:["5T"],knockoff:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + machamp:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],bulletpunch:["4C"],captivate:["4M"],counter:["3T"],crosschop:["3L46","4L40","5L44","6L44"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3L59","3T","4L51","5L55","6L55"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focusenergy:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],focuspunch:["3M","4M"],foresight:["3L22","4L13","5L19","6L19"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],incinerate:["5M","6M"],karatechop:["3L13","4L10","5L1","5L10","6L1","6L10"],leer:["3L1","4L1","5L1","6L1"],lightscreen:["5M","6M"],lowkick:["3L1","4L1","4T","5L1","5T","6L1"],lowsweep:["5M","5L13","6L13","6M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],revenge:["3L25","4L22","5L25","6L25"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],scaryface:["3L51","4L44","5L51","6L51"],secretpower:["3M","4M"],seismictoss:["3L19","3T","4L19","5L22","6L22"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],submission:["3L41","4L32","5L36","6L36"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],vacuumwave:["4T"],vitalthrow:["3L33","4L25","5L32","6L32"],wakeupslap:["4L36","5L40","6L40"],wideguard:["5L1","6L1"],workup:["5M"],dualchop:["5T"],knockoff:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + bellsprout:{learnset:{acid:["3L23","4L23","5L23","6L23"],attract:["3M","4M","5M","6M"],bulletseed:["3M","4M","5E","6E"],captivate:["4M"],clearsmog:["5E","6E"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],encore:["3E","4E","5E","6E"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gastroacid:["4L35","4T","5L35","5T","6L35"],gigadrain:["3M","4M","5E","5T","6E"],grassknot:["4M","5M","6M"],growth:["3L6","4L7","5L7","3S1","6L7"],hiddenpower:["3M","4M","5M","6M"],ingrain:["3E","4E","5E","6E"],knockoff:["4L27","4T","5L27","5T","6L27"],leechlife:["3E","4E","5E","6E"],magicalleaf:["3E","4E","5E","6E"],mimic:["3T"],naturalgift:["4M","5E","6E"],poisonpowder:["3L17","4L15","5L15","6L15"],powerwhip:["5E","6E"],protect:["3M","4M","5M","6M"],razorleaf:["3L37","4L39","5L39","6L39"],reflect:["3E","4E","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5D","5T"],slam:["3L45","4L41","5L41","6L41"],sleeppowder:["3L15","4L13","5L13","6L13"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stunspore:["3L19","4L17","5L17","6L17"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3L30","4L29","5L29","6L29"],swordsdance:["3E","3T","4E","4M","5M","6M"],synthesis:["3E","4E","4T","5E","5D","5T","6E"],teeterdance:["3S0"],thief:["3M","4M","5M","6M"],tickle:["4E","5E","6E"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],vinewhip:["3L1","4L1","5L1","5D","3S0","3S1","6L1"],weatherball:["4E","5E","6E"],worryseed:["4E","4T","5E","5T","6E"],wrap:["3L11","4L11","5L11","6L11"],wringout:["4L47","5L47","6L47"],bind:["5T"],infestation:["6M"],naturepower:["6M"],confide:["6M"],belch:["6E"],acidspray:["6E"]}}, + weepinbell:{learnset:{acid:["3L24","4L23","5L23","6L23"],attract:["3M","4M","5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gastroacid:["4L35","4T","5L35","5T","6L35"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M","6M"],growth:["3L1","3L6","4L1","4L7","5L1","5L7","6L1","6L7"],hiddenpower:["3M","4M","5M","6M"],knockoff:["4L27","4T","5L27","5T","6L27"],magicalleaf:["3S0"],mimic:["3T"],morningsun:["3S0"],naturalgift:["4M"],poisonpowder:["3L17","4L15","5L15","6L15"],protect:["3M","4M","5M","6M"],razorleaf:["3L42","4L39","5L39","6L39"],reflect:["5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],slam:["3L54","4L41","5L41","6L41"],sleeppowder:["3L15","4L13","5L13","6L13"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","3S0","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stunspore:["3L19","4L17","5L17","6L17"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3L33","4L29","5L29","3S0","6L29"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],vinewhip:["3L1","4L1","5L1","6L1"],worryseed:["4T","5T"],wrap:["3L1","3L11","4L1","4L11","5L1","5L11","6L1","6L11"],wringout:["4L47","5L47","6L47"],bugbite:["5T"],bind:["5T"],infestation:["6M"],naturepower:["6M"],confide:["6M"]}}, + victreebel:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gastroacid:["4T","5T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],knockoff:["4T","5T"],leafblade:["4L47","5L47","6L47"],leafstorm:["4L47","5L47","6L47"],leaftornado:["5L27","6L27"],mimic:["3T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],razorleaf:["3L1","4L1","5L1","6L1"],reflect:["5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeppowder:["3L1","4L1","5L1","6L1"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spitup:["3L1","4L1","5L1","6L1"],stockpile:["3L1","4L1","5L1","6L1"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["3L1","4L1","5L1","6L1"],sweetscent:["3L1","4L1","5L1","6L1"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],vinewhip:["3L1","4L1","5L1","6L1"],worryseed:["4T","5T"],bugbite:["5T"],bind:["5T"],infestation:["6M"],naturepower:["6M"],confide:["6M"]}}, + tentacool:{learnset:{acid:["3L19","4L12","5L12","6L12"],acidspray:["5L26","6L26"],acupressure:["4E","5E","5D","6E"],aquaring:["5E","6E"],attract:["3M","4M","5M","6M"],aurorabeam:["3E","4E","5E","6E"],barrier:["3L36","4L26","5L29","6L29"],blizzard:["3M","4M","5M","6M"],brine:["4M"],bubble:["5E","6E"],bubblebeam:["3L25","4L19","5L19","6L19"],captivate:["4M"],confuseray:["3E","4E","5E","6E"],constrict:["3L12","4L8","5L8","6L8"],cut:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5D","5T"],hail:["3M","4M","5M","6M"],haze:["3E","4E","5E","6E"],hex:["5L43","6L43"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L49","4L40","5L47","6L47"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],knockoff:["4E","4T","5E","5T","6E"],magiccoat:["4T","5T"],mimic:["3T"],mirrorcoat:["3E","4E","5E","6E"],muddywater:["4E","5E","6E"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonjab:["4M","4L33","5M","5L36","6L36","6M"],poisonsting:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rapidspin:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3E","4E","5M","6M"],scald:["5M","6M"],screech:["3L43","4L36","5L40","6L40"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5M","5L50","6L50","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],supersonic:["3L6","4L5","5L5","5D","6L5"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],tickle:["5E","6E"],toxic:["3M","4M","5M","6M"],toxicspikes:["4L15","5L15","6L15"],venoshock:["5M","6M"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M","4L29","5L33","6L33"],whirlpool:["4M"],wrap:["3L30","4L22","5L22","6L22"],wringout:["4L43","5L54","6L54"],bind:["5T"],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + tentacruel:{learnset:{acid:["3L19","4L12","5L12","6L12"],acidspray:["5L26","6L26"],attract:["3M","4M","5M","6M"],barrier:["3L38","4L26","5L29","6L29"],blizzard:["3M","4M","5M","6M"],brine:["4M"],bubblebeam:["3L25","4L19","5L19","6L19"],captivate:["4M"],constrict:["3L1","3L12","4L1","4L8","5L1","5L8","6L1","6L8"],cut:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],hex:["5L47","6L47"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L55","4L49","5L52","6L52"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],knockoff:["4T","5T"],magiccoat:["4T","5T"],mimic:["3T"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonjab:["4M","4L36","5M","5L38","6L38","6M"],poisonsting:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],scald:["5M","6M"],screech:["3L47","4L42","5L43","6L43"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5M","5L56","6L56","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],supersonic:["3L1","3L6","4L1","4L5","5L1","5L5","6L1","6L5"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],toxicspikes:["4L15","5L15","6L15"],venoshock:["5M","6M"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M","4L29","5L34","6L34"],whirlpool:["4M"],wrap:["3L30","4L22","5L22","6L22"],wringout:["4L55","5L61","6L1","6L61"],bind:["5T"],reflecttype:["6L1"],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + geodude:{learnset:{ancientpower:["4T"],attract:["3M","4M","5M","6M"],autotomize:["5E","6E"],block:["3E","4E","4T","5E","5T","6E"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","5L32","6L32","6M"],captivate:["4M"],counter:["3T"],curse:["4E","5E","6E"],defensecurl:["3L1","3T","4L1","5L1","5D","6L1"],dig:["3M","4M","5M","6M"],doubleedge:["3L46","3T","4L36","5L46","6L46"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L36","4M","4L29","5M","5L39","6L39","6M"],endure:["3T","4M","5E","6E"],explosion:["3L41","3T","4M","4L32","5M","5L43","6L43","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flail:["4E","5E","6E"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M","5E","6E"],frustration:["3M","4M","5M","6M"],gyroball:["4M","5M","6M"],hammerarm:["4E","5E","6E"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],incinerate:["5M","6M"],magnitude:["3L16","4L15","5L15","6L15"],megapunch:["3E","3T","4E","5E","6E"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3L6","4L4","5L4","6L4"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockblast:["3L31","4L25","5L22","6L22"],rockclimb:["4M","5E","5D","6E"],rockpolish:["4M","4L8","5M","5L8","6L8","6M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rockthrow:["3L11","4L11","5L11","6L11"],rocktomb:["3M","4M","5M","6M"],rollout:["3L26","3T","4L22","4T","5L18","6L18"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3L21","3T","4L18","5L29","6L29"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","5L25","6L25","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5L36","5T","5D","6L36"],stoneedge:["4M","4L39","5M","5L50","6L50","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],thunderpunch:["4T","5T"],toxic:["3M","4M","5M","6M"],irondefense:["5T"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + graveler:{learnset:{ancientpower:["4T"],attract:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","5L36","6L36","6M"],captivate:["4M"],counter:["3T"],defensecurl:["3L1","3T","4L1","5L1","6L1"],dig:["3M","4M","5M","6M"],doubleedge:["3L62","3T","4L44","5L58","6L58"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L45","4M","4L33","5M","5L47","6L47","6M"],endure:["3T","4M"],explosion:["3L53","3T","4M","4L38","5M","5L53","6L53","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gyroball:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],incinerate:["5M","6M"],magnitude:["3L16","4L15","5L15","6L15"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3L1","3L6","4L1","4L4","5L1","5L4","6L1","6L4"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockblast:["3L37","4L27","5L22","6L22"],rockclimb:["4M"],rockpolish:["4M","4L1","4L8","5M","5L1","5L8","6L1","6L8","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rockthrow:["3L1","3L11","4L11","5L11","6L11"],rocktomb:["3M","4M","5M","6M"],rollout:["3L29","3T","4L22","4T","5L18","6L18"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3L21","3T","4L18","5L31","6L31"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","5L27","6L27","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5L42","5T","6L42"],stoneedge:["4M","4L49","5M","5L64","6L64","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],thunderpunch:["4T","5T"],toxic:["3M","4M","5M","6M"],irondefense:["5T"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + golem:{learnset:{ancientpower:["4T"],attract:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","5L36","6L36","6M"],captivate:["4M"],counter:["3T"],defensecurl:["3L1","3T","4L1","5L1","6L1"],dig:["3M","4M","5M","6M"],doubleedge:["3L62","3T","4L44","5L58","6L58"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L45","4M","4L33","5M","5L47","6L47","6M"],endure:["3T","4M"],explosion:["3L53","3T","4M","4L38","5M","5L53","6L53","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],gyroball:["4M","5M","6M"],headbutt:["4T"],heavyslam:["5L69","6L1","6L69"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],ironhead:["4T","5T"],magnitude:["3L16","4L15","5L15","6L15"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3L1","3L6","4L1","4L4","5L1","5L4","6L1","6L4"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockblast:["3L37","4L27","5L22","6L22"],rockclimb:["4M"],rockpolish:["4M","4L1","4L8","5M","5L1","5L8","6L1","6L8","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rockthrow:["3L1","3L11","4L11","5L11","6L11"],rocktomb:["3M","4M","5M","6M"],rollout:["3L29","3T","4L22","4T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3L21","3T","4L18","5L31","6L31"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","5L27","6L27","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5L42","5T","6L42"],steamroller:["5L18","6L18"],stoneedge:["4M","4L49","5M","5L64","6L64","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],thunderpunch:["4T","5T"],toxic:["3M","4M","5M","6M"],irondefense:["5T"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + ponyta:{learnset:{agility:["3L38","4L34","4L33","5L37","6L37"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["3L45","4L44","4T","4L42","5L45","5T","6L45"],captivate:["4M","5E","6E"],charm:["3E","4E","5E","6E"],doubleedge:["3E","3T","4E","5E","6E"],doublekick:["3E","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],ember:["3L14","4L16","4L10","5L9","6L9"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","3L53","4M","4L38","4L37","5M","5L41","6L41","6M"],firespin:["3L25","4L25","4L24","5L25","6L25"],flamecharge:["5M","5L21","6L21","6M"],flamethrower:["3M","4M","5M","6M"],flamewheel:["3E","4E","4L15","5E","5L13","6L13","6E"],flareblitz:["4L48","4L46","5L49","6L49"],frustration:["3M","4M","5M","6M"],growl:["3L5","4L7","4L1","5L1","6L1"],headbutt:["4T"],heatwave:["4T","5D","5T"],hiddenpower:["3M","4M","5M","6M"],horndrill:["4E","5E","6E"],hypnosis:["3E","4E","5E","6E"],incinerate:["5M","6M"],inferno:["5L33","6L33"],irontail:["3M","4M","5T"],lowkick:["5E","5T","6E"],mimic:["3T"],morningsun:["4E","5E","6E"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],protect:["3M","4M","5M","6M"],quickattack:["3L1"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stomp:["3L19","4L19","5L17","6L17"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5D","6L1"],tailwhip:["3L9","4L10","4L6","5L4","6L4"],takedown:["3L31","4L28","5L29","6L29"],thrash:["3E","4E","5E","5D","6E"],toxic:["3M","4M","5M","6M"],wildcharge:["5M","6M"],willowisp:["4M","5M","6M"],confide:["6M"],allyswitch:["6E"]}}, + rapidash:{learnset:{agility:["3L38","4L34","4L33","5L37","6L37"],attract:["3M","4M","5M","6M"],batonpass:["3S0"],bodyslam:["3T"],bounce:["3L50","4L49","4T","4L47","5L45","5T","6L45"],captivate:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],ember:["3L1","3L14","4L1","4L16","4L10","5L1","5L9","6L1","6L9"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","3L63","4M","4L38","4L37","5M","5L41","6L41","6M"],firespin:["3L25","4L25","4L24","5L25","6L25"],flamecharge:["5M","5L21","6L21","6M"],flamethrower:["3M","4M","5M","3S0","6M"],flamewheel:["4L15","5L13","6L13"],flareblitz:["4L58","4L56","5L49","6L49"],frustration:["3M","4M","5M","6M"],furyattack:["3L40","4L40","5L40","6L40"],gigaimpact:["4M","5M","6M"],growl:["3L1","3L5","4L1","4L7","5L1","6L1"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],inferno:["5L33","6L33"],irontail:["3M","4M","5T"],megahorn:["4L1","5L1","6L1"],mimic:["3T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],poisonjab:["4M","4L1","5M","5L1","6L1","6M"],protect:["3M","4M","5M","6M"],quickattack:["3L1","4L1","5L1","6L1"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","3S0","6M"],stomp:["3L19","4L19","5L17","6L17"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","3S0","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1"],tailwhip:["3L1","3L9","4L1","4L10","4L6","5L1","5L4","6L1","6L4"],takedown:["3L31","4L28","5L29","6L29"],toxic:["3M","4M","5M","6M"],wildcharge:["5M","6M"],willowisp:["4M","5M","6M"],drillrun:["5T"],lowkick:["5T"],confide:["6M"]}}, + slowpoke:{learnset:{amnesia:["3L43","3L36","4L43","5L41","6L41"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],bellydrum:["3E","4E","5E","6E"],blizzard:["3M","4M","5M","6M"],block:["4E","4T","5E","5D","5T","6E"],bodyslam:["3T"],brine:["4M","5D"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],confusion:["3L20","3L17","4L15","5L14","3S0","5S2","6L14"],curse:["3L1","4L1","5L1","3S1","6L1"],dig:["3M","4M","5M","6M"],disable:["3L29","3L24","4L20","5L19","3S0","5S2","6L19"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["3E","4E","5E","6E"],grassknot:["4M","5M","6M"],growl:["3L6","4L6","5L5","3S1","6L5"],hail:["3M","4M","5M","6M"],headbutt:["3L34","3L29","4L25","4T","5L23","3S0","5S2","6L23"],healpulse:["5L58","6L58"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],lightscreen:["4M","5M","6M"],magiccoat:["4T","5T"],mefirst:["4E","5E","6E"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3E","4E","5E","6E"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M","6M"],psychic:["3M","3L48","3L40","4M","4L48","5M","5L45","6L45","6M"],psychup:["3T","3L47","4M","4L57","5M","5L54","6L54","6M"],psyshock:["5M","6M"],raindance:["3M","4M","4L53","5M","5L49","6L49","6M"],recycle:["4M","5T"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3E","3M","4E","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],slackoff:["4L39","5L36","6L36"],sleeptalk:["3E","3T","4E","4M","5E","5T","6M","6E"],snore:["3E","3T","4E","4T","5E","5T","6E"],stomp:["3E","4E","5E","6E"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S1","6L1"],telekinesis:["5M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],watergun:["3L15","3L13","4L11","5L9","3S0","6L9"],waterpulse:["3M","4M","4L29","5L28","5S2","6L28"],whirlpool:["4M"],wonderroom:["5E","5T","6E"],yawn:["3L1","4L1","5L1","5D","3S1","6L1"],zenheadbutt:["4E","4L34","4T","5E","5L32","5T","6L32","6E"],afteryou:["5T"],confide:["6M"],belch:["6E"]}}, + slowbro:{learnset:{aerialace:["5M","6M"],amnesia:["3L46","3L36","4L47","5L43","6L43"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],brine:["4M"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],confusion:["3L20","3L17","4L15","5L14","6L14"],counter:["3T"],curse:["3L1","4L1","5L1","6L1"],dig:["3M","4M","5M","6M"],disable:["3L29","3L24","4L20","5L19","6L19"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growl:["3L1","3L6","4L1","4L6","5L1","5L5","6L1","6L5"],hail:["3M","4M","5M","6M"],headbutt:["3L34","3L29","4L25","4T","5L23","6L23"],healpulse:["5L68","6L1","6L68"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irondefense:["4T","5T"],irontail:["3M","4M","5T"],lightscreen:["4M","5M","6M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M","6M"],psychic:["3M","3L54","3L44","4M","4L54","5M","5L49","6L49","6M"],psychup:["3T","3L55","4M","4L67","5M","5L62","6L62","6M"],psyshock:["5M","6M"],raindance:["3M","4M","4L61","5M","5L55","6L55","6M"],recycle:["4M","5T"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],slackoff:["4L41","5L36","6L36"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],telekinesis:["5M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],watergun:["3L15","3L13","4L11","5L9","6L9"],waterpulse:["3M","4M","4L29","5L28","6L28"],whirlpool:["4M"],withdraw:["3L37","4L37","5L37","6L37"],yawn:["3L1","4L1","5L1","6L1"],zenheadbutt:["4L34","4T","5L32","5T","6L32"],foulplay:["5T"],afteryou:["5T"],wonderroom:["5T"],confide:["6M"]}}, + slowking:{learnset:{aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],brine:["4M"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],confusion:["3L20","3L17","4L15","5L14","6L14"],counter:["3T"],curse:["3L1","4L1","5L1","6L1"],dig:["3M","4M","5M","6M"],disable:["3L29","3L24","4L20","5L19","6L19"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragontail:["5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growl:["3L6","4L6","5L5","6L5"],hail:["3M","4M","5M","6M"],headbutt:["3L34","3L29","4L25","4T","5L23","6L23"],healpulse:["5L58","6L1","6L58"],hiddenpower:["3M","4M","4L1","5M","5L1","6L1","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irondefense:["4T","5T"],irontail:["3M","4M","5T"],lightscreen:["4M","5M","6M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L39","5L36","6L36"],naturalgift:["4M"],nightmare:["3T"],powergem:["4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],psychic:["3M","3L48","3L40","4M","4L48","5M","5L45","6L45","6M"],psychup:["3T","3L47","4M","4L57","5M","5L54","6L54","6M"],psyshock:["5M","6M"],quash:["5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3L43","3T","3L36","4M","4L43","5M","5L41","6L41","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],telekinesis:["5M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],trumpcard:["4L53","5L49","6L49"],watergun:["3L15","3L13","4L11","5L9","6L9"],waterpulse:["3M","4M","4L29","5L28","6L28"],whirlpool:["4M"],yawn:["3L1","4L1","5L1","6L1"],zenheadbutt:["4L34","4T","5L32","5T","6L32"],foulplay:["5T"],afteryou:["5T"],wonderroom:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + magnemite:{learnset:{chargebeam:["4M","5M","6M"],discharge:["4L38","5L43","6L43"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],electroball:["5L27","6L32"],endure:["3T","4M"],explosion:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],flashcannon:["4M","5M","5L35","6L35","6M"],frustration:["3M","4M","5M","6M"],gravity:["4T","5D","5T"],gyroball:["4M","4L49","5M","5L54","6L53","6M"],hiddenpower:["3M","4M","5M","6M"],irondefense:["4T","5T"],lightscreen:["4M","5M","6M"],lockon:["3L32","4L27","5L30","6L46"],magiccoat:["4T","5T"],magnetbomb:["4L30","5L33","6L18"],magnetrise:["4L46","4T","5L49","5T","6L49"],metalsound:["3L1","4L1","5L1","5D","6L29"],mimic:["3T"],mirrorshot:["4L43","5L46","6L25"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5D","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],screech:["3L44","4L33","5L38","6L39"],secretpower:["3M","4M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],sonicboom:["3L16","4L14","5L14","6L11"],spark:["3L26","4L22","5L22","6L21"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3L11","4L11","5L11","6L4"],swagger:["3T","4M","5M","6M"],swift:["3L38","3T","4T"],tackle:["3L1","4L1","5L1","6L1"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thundershock:["3L6","4L6","5L6","5D","6L7"],thunderwave:["3L21","3T","4M","4L17","5M","5L17","6L15","6M"],toxic:["3M","4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],zapcannon:["3L50","4L54","5L59","6L57"],electroweb:["5T"],confide:["6M"]}}, + magneton:{learnset:{chargebeam:["4M","5M","6M"],discharge:["4L40","5L46","6L51"],doubleedge:["3T","3S0"],doubleteam:["3M","4M","5M","6M"],electroball:["5L27","6L34"],endure:["3T","4M"],explosion:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],flashcannon:["4M","5M","5L39","6L39","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gravity:["4T","5T"],gyroball:["4M","4L54","5M","5L60","6L67","6M"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],irondefense:["4T","5T"],lightscreen:["4M","5M","6M"],lockon:["3L35","4L27","5L30","6L56"],magiccoat:["4T","5T"],magnetbomb:["4L30","5L34","6L18"],magnetrise:["4L50","4T","5L54","5T","6L62"],metalsound:["3L1","4L1","5L1","6L29"],mimic:["3T"],mirrorshot:["4L46","5L50","6L25"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["3M","4M","5M","3S0","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],screech:["3L53","4L34","5L40","6L45"],secretpower:["3M","4M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],sonicboom:["3L16","4L14","5L14","6L1"],spark:["3L26","4L22","5L22","6L21"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3L1","3L11","4L1","4L11","5L1","5L11","6L1","6L4"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],thunder:["3M","4M","5M","3S0","6M"],thunderbolt:["3M","4M","5M","6M"],thundershock:["3L1","3L6","4L1","4L6","5L1","5L6","6L1","6L7"],thunderwave:["3L21","3T","4M","4L17","5M","5L17","6L15","6M"],toxic:["3M","4M","5M","6M"],triattack:["3L44","4L1","5L1","6L1"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],zapcannon:["3L62","4L60","5L66","6L1","6L73"],electroweb:["5T"],electricterrain:["6L11"],confide:["6M"]}}, + magnezone:{learnset:{barrier:["4L1","5L1","6L1"],chargebeam:["4M","5M","6M"],discharge:["4L40","5L46","6L51"],doubleteam:["4M","5M","6M"],electroball:["5L27","6L34"],endure:["4M"],explosion:["4M","5M","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],flashcannon:["4M","5M","5L39","6L39","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],gravity:["4T","5T"],gyroball:["4M","4L54","5M","5L60","6L67","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],irondefense:["4T","5T"],ironhead:["4T","5T"],lightscreen:["4M","5M","6M"],lockon:["4L27","5L30","6L56"],magiccoat:["4T","5T"],magnetbomb:["4L30","5L34","6L18"],magnetrise:["4L50","4T","5L54","5T","6L62"],metalsound:["4L1","5L1","6L29"],mirrorcoat:["4L1","5L1","6L1"],mirrorshot:["4L46","5L50","6L25"],naturalgift:["4M"],protect:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],recycle:["4M","5T"],reflect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rollout:["4T"],round:["5M","6M"],screech:["4L34","5L40","6L45"],secretpower:["4M"],shockwave:["4M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],sonicboom:["4L14","5L14","6L1"],spark:["4L22","5L22","6L21"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],supersonic:["4L1","4L11","5L1","5L11","6L1","6L4"],swagger:["4M","5M","6M"],swift:["4T"],tackle:["4L1","5L1","6L1"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thundershock:["4L1","4L6","5L1","5L6","6L7"],thunderwave:["4M","4L17","5M","5L17","6L15","6M"],toxic:["4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],zapcannon:["4L60","5L66","6L1","6L73"],electroweb:["5T"],magneticflux:["6L1"],electricterrain:["6L11"],confide:["6M"]}}, + farfetchd:{learnset:{acrobatics:["5M","5L37","6L37","6M"],aerialace:["3M","4M","4L13","5M","5L13","3S0","6L9","6M"],agility:["3L36","4L31","5L31","6L31"],aircutter:["4L21","4T","5L21","6L21"],airslash:["4L37","5L49","6L49"],attract:["3M","4M","5M","6M"],batonpass:["3S0"],bodyslam:["3T"],bravebird:["5L55","6L1","6L55"],captivate:["4M"],covet:["4E","5E","5T","6E"],curse:["3E","4E","5E","6E"],cut:["3M","4M","5M","6M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["3L46","4M","4L43","4L45","5M","5L45","6L45","6M"],featherdance:["3E","4E","5E","6E"],feint:["4L43","5L43","6L43"],flail:["3E","4E","5E","6E"],fly:["3M","4M","5M","6M"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],furyattack:["3L16","4L7","5L7","6L7"],furycutter:["3L26","4L1","4T","5L1","5D","6L1"],gust:["3E","4E","5E","6E"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],knockoff:["3L21","4L9","4T","5L9","5T","6L13"],lastresort:["4T","5T"],leafblade:["4E","5E","5D","6E"],leer:["3L11","4L1","5L1","6L1"],mimic:["3T"],mirrormove:["3E","4E","5E","6E"],mudslap:["3T","4E","4T","5E","6E"],naturalgift:["4M"],nightslash:["4E","4L33","5E","5L33","6L33","6E"],ominouswind:["4T"],peck:["3L1","4L1","5L1","6L1"],pluck:["4M","5M"],poisonjab:["4M","4L1","5M","5L1","6L1","6M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],quickattack:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],revenge:["5E","6E"],roost:["4M","5E","5D","5T","6M","6E"],round:["5M","6M"],sandattack:["3L6","4L1","5L1","6L1"],secretpower:["3M","4M"],slash:["3L41","4L19","5L19","3S0","6L19"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3E","3M","4E","4M","5E","6M","6E"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3L31","3T","4M","4L25","5M","5L25","3S0","6L25","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trumpcard:["5E","6E"],twister:["4T"],uproar:["4T","5T"],uturn:["4M","5M","6M"],wish:["3S0"],workup:["5M"],yawn:["3S0"],tailwind:["5T"],skyattack:["5T"],helpinghand:["5T"],confide:["6M"],simplebeam:["6E"]}}, + doduo:{learnset:{acupressure:["4L28","5L28","6L28"],aerialace:["3M","4M","5M","6M"],agility:["3L45","4L37","5L37","6L37"],aircutter:["4T"],assurance:["5E","6E"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bravebird:["4E","5E","6E"],captivate:["4M"],doubleedge:["3T"],doublehit:["4L32","5L32","6L32"],doubleteam:["3M","4M","5M","6M"],drillpeck:["3L37","4L41","5L41","6L41"],echoedvoice:["5M","6M"],endeavor:["3E","4E","4L46","4T","5E","5L46","5T","6L46","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","6E"],flail:["3E","4E","5E","5D","6E"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furyattack:["3L13","4L14","5L14","6L14"],growl:["3L1","4L1","5L1","5D","6L1"],haze:["3E","4E","5E","6E"],hiddenpower:["3M","4M","5M","6M"],knockoff:["4T","5T"],mimic:["3T"],mirrormove:["4E","5E","6E"],mudslap:["3T","4T"],naturalgift:["4M","5E","6E"],peck:["3L1","4L1","5L1","6L1"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],pursuit:["3L9","4L19","5L19","6L19"],quickattack:["3E","4E","4L5","5E","5L5","6L5","6E"],rage:["3L25","4L10","5L10","6L10"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5D","5T","6M"],round:["5M","6M"],secretpower:["3M","4M"],skyattack:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3E","4E","5E","6E"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],thief:["3M","4M","5M","6M"],thrash:["5L50","6L50"],toxic:["3M","4M","5M","6M"],triattack:["3L21"],uproar:["3L33","4L23","4T","5L23","5T","6L23"],workup:["5M"],confide:["6M"]}}, + dodrio:{learnset:{acupressure:["4L28","5L28","6L28"],aerialace:["3M","4M","5M","6M"],agility:["3L60","4L41","5L41","3S0","6L41"],aircutter:["4T"],attract:["3M","4M","5M","6M"],batonpass:["3S0"],bodyslam:["3T"],captivate:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drillpeck:["3L47","4L47","5L47","3S0","6L47"],echoedvoice:["5M","6M"],endeavor:["4L54","4T","5L54","5T","6L54"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furyattack:["3L1","3L13","4L14","5L14","6L14"],gigaimpact:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],knockoff:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M","6M"],peck:["3L1","4L1","5L1","6L1"],pluck:["4M","4L1","5M","5L1","6L1"],protect:["3M","4M","5M","6M"],pursuit:["3L1","3L9","4L19","5L19","6L19"],quickattack:["4L1","4L5","5L1","5L5","6L1","6L5"],rage:["3L25","4L1","4L10","5L1","5L10","6L1","6L10"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],secretpower:["3M","4M"],skyattack:["3T","4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thrash:["5L60","6L60"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],triattack:["3L21","4L34","5L34","3S0","6L34"],uproar:["3L38","4L23","4T","5L23","5T","6L23"],workup:["5M"],confide:["6M"]}}, + seel:{learnset:{aquajet:["4L31","5L31","6L31"],aquaring:["4L23","5L23","6L23"],aquatail:["4L43","4T","5L43","5T","6L43"],attract:["3M","4M","5M","6M"],aurorabeam:["3L21","4L27","5L27","6L27"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brine:["4M","4L33","5L33","6L33"],captivate:["4M"],disable:["3E","4E","5E","6E"],dive:["3M","4L41","4T","5M","5L41","6L41"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],encore:["3E","4E","4L13","5E","5L13","6L13","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fakeout:["3E","4E","5E","6E"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],growl:["3L9","4L3","5L3","6L3"],hail:["3M","4M","5M","5L53","6L53","6M"],headbutt:["3L1","4L1","4T","5L1","5D","6L1"],helpinghand:["3S0"],hiddenpower:["3M","4M","5M","6M"],horndrill:["3E","4E","5E","6E"],icebeam:["3M","3L41","4M","4L47","5M","5L47","3S0","6L47","6M"],iceshard:["4L17","5L17","6L17"],iciclespear:["3E","4E","5E","5D","6E"],icywind:["3L17","3T","4L11","4T","5L11","5T","6L11"],irontail:["5E","5T","6E"],lick:["3E","4E","5E","6E"],mimic:["3T"],naturalgift:["4M"],perishsong:["3E","4E","5E","6E"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","3L29","4M","4L21","5M","5L21","6L21","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","3L49","4M","4L51","5M","5L51","3S0","6L51","6M"],secretpower:["3M","4M"],signalbeam:["4E","4T","5E","5T","6E"],slam:["3E","4E","5E","6E"],sleeptalk:["3T","4M","5E","5D","5T","6M","6E"],snore:["3T","4T","5T"],spitup:["4E","5E","6E"],stockpile:["4E","5E","6E"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","3S0","6M"],swagger:["3T","4M","5M","6M"],swallow:["4E","5E","6E"],takedown:["3L37","4L37","5L37","6L37"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M","5E","6E"],watersport:["4L7","5L7","6L7"],whirlpool:["4M"],drillrun:["5T"],confide:["6M"],entrainment:["6E"],belch:["6E"]}}, + dewgong:{learnset:{aquajet:["4L31","5L31","6L31"],aquaring:["4L23","5L23","6L23"],aquatail:["4L43","4T","5L49","5T","6L49"],attract:["3M","4M","5M","6M"],aurorabeam:["3L1","3L21","4L27","5L27","6L27"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brine:["4M","4L33","5L33","6L33"],captivate:["4M"],dive:["3M","4L41","4T","5M","5L45","6L45"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],encore:["4L13","5L13","6L13"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frostbreath:["5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],growl:["3L1","3L9","4L1","4L3","5L1","5L3","6L1","6L3"],hail:["3M","4M","5M","5L65","6L65","6M"],headbutt:["3L1","4L1","4T","5L1","6L1"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","3L51","4M","4L47","5M","5L55","6L55","6M"],iceshard:["4L17","5L17","6L17"],icywind:["3L1","3L17","3T","4L1","4L11","4T","5L1","5L11","5T","6L1","6L11"],mimic:["3T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","3L29","4M","4L21","5M","5L21","6L21","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","3L64","4M","4L51","5M","5L61","6L61","6M"],secretpower:["3M","4M"],sheercold:["3L34","4L34","5L34","6L34"],signalbeam:["3L1","4L1","4L7","4T","5L1","5L7","5T","6L1","6L7"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],takedown:["3L42","4L37","5L39","6L39"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],drillrun:["5T"],irontail:["5T"],confide:["6M"]}}, + grimer:{learnset:{acidarmor:["3L34","4L39","5L39","6L40"],acidspray:["5E","6E"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M"],curse:["3E","4E","5E","6E"],dig:["3M","4M","5M","6M"],disable:["3L8","4L12","5L12","6L12"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],explosion:["3E","3T","4E","4M","5M","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","4L28","5M","5L28","6L29","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],gunkshot:["4L44","4T","5L49","5T","6L43"],harden:["3L4","4L4","5L4","6L4"],haze:["3E","4E","5E","5D","6E"],helpinghand:["3S0"],hiddenpower:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],imprison:["3E","4E","5E","6E"],incinerate:["5M","6M"],lick:["3E","4E","5E","6E"],meanlook:["3E","4E","5E","6E"],memento:["3L53","4L49","5L52","6L48"],mimic:["3T"],minimize:["3L19","4L17","5L17","3S0","6L18"],mudbomb:["4L23","5L23","6L21"],mudslap:["3T","4L7","4T","5L7","6L7"],naturalgift:["4M"],painsplit:["4T","5T"],payback:["4M","5M","6M"],poisongas:["3L1","4L1","5L1","5D","6L1"],poisonjab:["4M","5M","6M"],pound:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],scaryface:["5E","6E"],screech:["3L26","4L33","5L33","6L32"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["4M","5M","6M"],shadowpunch:["3E","4E","5E","3S0","6E"],shadowsneak:["4E","5E","5D","6E"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludge:["3L13","4L20","5L20","6L15"],sludgebomb:["3M","3L43","4M","4L36","5M","5L36","3S0","6L26","6M"],sludgewave:["5M","5L44","6L37","6M"],snore:["3T","4T","5T"],spitup:["4E","5E","6E"],stockpile:["4E","5E","6E"],strength:["4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["4E","5E","6E"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],belch:["6L46"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + muk:{learnset:{acidarmor:["3L34","4L44","5L42","6L43"],attract:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],darkpulse:["4M","5T","6M"],dig:["3M","4M","5M","6M"],disable:["3L8","4L12","5L12","6L12"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","4L28","5M","5L28","6L29","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],gunkshot:["4L54","4T","5L58","5T","6L49"],harden:["3L1","3L4","4L1","4L4","5L1","5L4","6L1","6L4"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],incinerate:["5M","6M"],memento:["3L61","4L65","5L64","6L57"],mimic:["3T"],minimize:["3L19","4L17","5L17","6L18"],mudbomb:["4L23","5L23","6L21"],mudslap:["3T","4L1","4L7","4T","5L1","5L7","6L1","6L7"],naturalgift:["4M"],painsplit:["4T","5T"],payback:["4M","5M","6M"],poisongas:["3L1","4L1","5L1","6L1"],poisonjab:["4M","5M","6M"],pound:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],screech:["3L26","4L33","5L33","6L32"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludge:["3L13","4L20","5L20","6L15"],sludgebomb:["3M","3L47","4M","4L36","5M","5L36","6L26","6M"],sludgewave:["5M","5L50","6L37","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],belch:["6L53"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + shellder:{learnset:{aquaring:["5E","6E"],attract:["3M","4M","5M","6M"],aurorabeam:["3L17","3L22","4L32","5L37","3S0","3S2","6L37"],avalanche:["5E","6E"],barrier:["3E","4E","5E","5D","6E"],blizzard:["3M","4M","5M","6M"],brine:["4M","4L44","5L44","6L44"],bubblebeam:["3E","4E","5E","6E"],captivate:["4M"],clamp:["3L41","3L43","4L25","5L25","6L25"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],hydropump:["5L61","6L61"],icebeam:["3M","3L49","3L50","4M","4L49","5M","5L52","6L52","6M"],iceshard:["4L28","5L28","6L28"],iciclespear:["3E","3L8","4E","4L13","5E","5L13","3S0","3S1","6L13","6E"],icywind:["3T","4T","5D","5T"],irondefense:["4L40","4T","5L49","5T","6L49"],leer:["3L33","3L36","4L20","5L20","6L20"],mimic:["3T"],mudshot:["4E","5E","6E"],naturalgift:["4M"],payback:["4M","5M","6M"],protect:["3M","3L25","3L29","4M","4L16","5M","5L16","6L16","6M"],raindance:["3M","4M","5M","6M"],rapidspin:["3E","4E","5E","6E"],razorshell:["5L32","6L32"],refresh:["3S2"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockblast:["4E","5E","6E"],round:["5M","6M"],screech:["3E","4E","5E","6E"],secretpower:["3M","4M"],selfdestruct:["3T"],shellsmash:["5L56","6L56"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],supersonic:["3L9","3L15","4L8","5L8","3S0","6L8"],surf:["3M","4M","5M","3S2","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S1","6L1"],takedown:["3E","4E","5E","3S2","6E"],toxic:["3M","4M","5M","6M"],twineedle:["5E","6E"],waterpulse:["3M","4M","5E","6E"],whirlpool:["4L37","4M","5L40","6L40"],withdraw:["3L1","4L4","5L4","5D","3S0","3S1","6L4"],confide:["6M"]}}, + cloyster:{learnset:{attract:["3M","4M","5M","6M","6M"],aurorabeam:["3L1","4L1","5L1","6L1"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],brine:["4M"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],frostbreath:["5M","6M"],frustration:["3M","4M","5M","6M","6M"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],hiddenpower:["3M","4M","5M","5S0","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],iciclecrash:["5L52","6L50"],iciclespear:["5S0"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],mimic:["3T"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["3M","3L1","4M","4L1","5M","5L1","6L1","6M","6M"],raindance:["3M","4M","5M","6M"],rapidspin:["3C"],razorshell:["5S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M","6M"],rockblast:["5S0"],round:["5M","6M"],secretpower:["3M","4M"],selfdestruct:["3T"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spikecannon:["3L41","3L43","4L40","5L13","6L13"],spikes:["3L33","3L36","4L28","5L28","6L28"],substitute:["3T","4M","5M","6M"],supersonic:["3L1","4L1","5L1","6L1"],surf:["3M","4M","5M","6M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M","6M"],toxicspikes:["4L1","5L1","6L1"],waterpulse:["3M","4M"],whirlpool:["4M"],withdraw:["3L1","4L1","5L1","6L1"],hydropump:["6L1"],shellsmash:["6L1"],confide:["6M"]}}, + gastly:{learnset:{astonish:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],captivate:["4M"],clearsmog:["5E","6E"],confuseray:["3L28","3L21","4L19","5L19","6L19"],curse:["3L16","3L13","4L12","5L12","6L12"],darkpulse:["4M","4L36","5L36","5T","6L36","6M"],destinybond:["3L36","3L33","4L40","5L40","6L40"],disable:["4E","5E","5D","6E"],doubleteam:["3M","4M","5M","6M"],dreameater:["3L33","3T","3L28","4M","4L33","5M","5L33","6L33","6M"],embargo:["4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],explosion:["3E","3T","4E","4M","5M","6M"],facade:["3M","4M","5M","6M"],firepunch:["4E","4T","5E","5T","6E"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],grudge:["3E","4E","5E","6E"],haze:["3E","4E","5E","6E"],hex:["5L43","6L43"],hiddenpower:["3M","4M","5M","6M"],hypnosis:["3L1","4L1","5L1","5D","6L1"],icepunch:["4E","4T","5E","5T","6E"],icywind:["4T","5T"],knockoff:["4T","5T"],lick:["3L1","4L1","5L1","6L1"],meanlook:["3L13","3L48","4L8","5L8","6L8"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T","3L41","4L43","5L47","6L47"],nightshade:["3L21","3L16","4L15","5L15","6L15"],ominouswind:["4T"],painsplit:["4T","5T"],payback:["4M","4L26","5M","5L26","6L26","6M"],perishsong:["3E","4E","5E","6E"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],psywave:["3E","4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scaryface:["5E","6E"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","3L36","4M","4L29","5M","5L29","6L29","6M"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5D"],smog:["5E","6E"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["3L8","4L5","4T","5L5","5T","6L5"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L22","4T","5L22","6L22"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["4E","4T","5E","5T","6E"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],uproar:["4T","5T"],venoshock:["5M","6M"],willowisp:["3E","4E","4M","5M","6M"],foulplay:["5T"],wonderroom:["5T"],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"],reflecttype:["6E"]}}, + haunter:{learnset:{attract:["3M","4M","5M","6M"],captivate:["4M"],confuseray:["3L31","3L21","4L19","5L19","3S0","5S1","6L19"],curse:["3L16","3L13","4L12","5L12","3S0","6L12"],darkpulse:["4M","4L44","5L44","5T","6L44","6M"],destinybond:["3L48","3L39","4L50","5L50","6L50"],doubleteam:["3M","4M","5M","6M"],dreameater:["3L39","3T","3L31","4M","4L39","5M","5L39","6L39","6M"],embargo:["4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],firepunch:["4T","5T"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],hex:["5L55","6L55"],hiddenpower:["3M","4M","5M","6M"],hypnosis:["3L1","4L1","5L1","6L1"],icepunch:["4T","5T"],icywind:["4T","5T"],knockoff:["4T","5T"],lick:["3L1","4L1","5L1","6L1"],meanlook:["3L13","3L64","4L8","5L8","6L8"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T","3L53","4L55","5L61","6L61"],nightshade:["3L21","3L16","4L15","5L15","3S0","6L15"],ominouswind:["4T"],painsplit:["4T","5T"],payback:["4M","4L28","5M","5L28","5S1","6L28","6M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","3L45","4M","4L33","5M","5L33","6L33","6M"],shadowclaw:["4M","5M","6M"],shadowpunch:["3L25","4L25","5L25","5S1","6L25"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["3L1","3L8","4L1","4L5","4T","5L1","5L5","3S0","5T","6L1","6L5"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L22","4T","5L22","5S1","6L22"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["4T","5T"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],uproar:["4T","5T"],venoshock:["5M","6M"],willowisp:["4M","5M","6M"],foulplay:["5T"],wonderroom:["5T"],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + gengar:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],confuseray:["3L31","3L21","4L19","5L19","6L19"],counter:["3T"],curse:["3L16","3L13","4L12","5L12","6L12"],darkpulse:["4M","4L44","5L44","5T","6L44","6M"],destinybond:["3L48","3L39","4L50","5L50","6L50"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3L39","3T","3L31","4M","4L39","5M","5L39","6L39","6M"],dynamicpunch:["3T"],embargo:["4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],hex:["5L55","6L55"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],hypnosis:["3L1","4L1","5L1","6L1"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],knockoff:["4T","5T"],lick:["3L1","4L1","5L1","6L1"],meanlook:["3L13","3L64","4L8","5L8","6L8"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T","3L53","4L55","5L61","6L61"],nightshade:["3L21","3L16","4L15","5L15","6L15"],ominouswind:["4T"],painsplit:["4T","5T"],payback:["4M","4L28","5M","5L28","6L28","6M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3T"],shadowball:["3M","3L45","4M","4L33","5M","5L33","6L33","6M"],shadowclaw:["4M","5M","6M"],shadowpunch:["3L25","4L25","5L25","6L25"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["3L1","3L8","4L1","4L5","4T","5L1","5L5","5T","6L1","6L5"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L22","4T","5L22","6L22"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],uproar:["4T","5T"],venoshock:["5M","6M"],willowisp:["4M","5M","6M"],foulplay:["5T"],wonderroom:["5T"],infestation:["6M"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + onix:{learnset:{ancientpower:["4T"],attract:["3M","4M","5M","6M"],bind:["3L9","3L8","4L1","5L1","5T","5D","6L1"],block:["3E","4E","4T","5E","5T","6E"],bodyslam:["3T"],bulldoze:["5M","6M"],captivate:["4M"],curse:["4L38","5L46","6L4"],defensecurl:["4E","5E","6E"],dig:["3M","4M","5M","5L43","6L43","6M"],doubleedge:["3L57","3T","3L56","4L46","4L49","5L57","6L49"],doubleteam:["3M","4M","5M","6M"],dragonbreath:["3L30","4L33","5L41","6L25"],dragonpulse:["4M","5T"],dragontail:["5M","6M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["3E","3T","4E","4M","5M","6M"],facade:["3M","4M","5M","6M"],flail:["3E","4E","5E","6E"],flashcannon:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gyroball:["4M","5M","6M"],harden:["3L21","3L19","4L1","5L1","6L1"],headbutt:["4T"],heavyslam:["5E","6E"],hiddenpower:["3M","4M","5M","6M"],ironhead:["4T","5T"],irontail:["3M","3L45","4M","4L38","4L41","5L49","5T","6L40"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["4L1","5L1","6L1"],naturalgift:["4M"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],rage:["3L25","3L23","4L14","5L14","6L13"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockblast:["4E","5E","6E"],rockclimb:["4M","5E","5D","6E"],rockpolish:["4M","4L30","5M","5L30","6L19","6M"],rockslide:["3E","3T","4E","4M","5M","5L34","6L34","6M"],rocksmash:["3M","4M","5M","6M"],rockthrow:["3L13","3L12","4L9","5L9","6L7"],rocktomb:["3M","4M","4L17","5M","5L17","6L10","6M"],rollout:["4E","4T","5E","6E"],round:["5M","6M"],sandstorm:["3M","3L33","3L34","4M","4L22","5M","5L25","6L52","6M"],sandtomb:["3L49","3L52","4L41","4L46","5L54","6L37"],screech:["3L1","4L6","5L6","6L31"],secretpower:["3M","4M"],selfdestruct:["3T"],slam:["3L37","3L41","4L25","5L33","6L28"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","5L22","6L22","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5E","5L38","5T","5D","6L16","6E"],stoneedge:["4M","4L49","4L54","5M","5L62","6L46","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],taunt:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],naturepower:["6M"],confide:["6M"]}}, + steelix:{learnset:{ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],autotomize:["5L30","6L19"],bind:["3L9","3L8","4L1","5L1","5T","6L1"],block:["4T","5T"],bodyslam:["3T"],bulldoze:["5M","6M"],captivate:["4M"],crunch:["3L49","3L52","4L41","4L46","5L54","6L37"],curse:["4L38","5L46","6L4"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T","6M"],defensecurl:["3T"],dig:["3M","4M","5M","5L43","6L43","6M"],doubleedge:["3L57","3T","3L56","4L46","4L49","5L57","6L49"],doubleteam:["3M","4M","5M","6M"],dragonbreath:["3L30","4L33","5L41","6L25"],dragonpulse:["4M","5T"],dragontail:["5M","6M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],firefang:["4L1","5L1","6L1"],flashcannon:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gyroball:["4M","5M","6L20","6M"],harden:["3L21","3L19","4L1","5L1","6L1"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icefang:["4L1","5L1","6L1"],ironhead:["4T","5T"],irontail:["3M","3L45","4M","4L38","4L41","5L49","5T","6L40"],magnetrise:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["4L1","5L1","6L1"],naturalgift:["4M"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychup:["4M","5M","6M"],rage:["3L25","3L23","4L14","5L14","6L13"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockpolish:["4M","4L30","5M","6M"],rockslide:["3T","4M","5M","5L34","6L34","6M"],rocksmash:["3M","4M","5M","6M"],rockthrow:["3L13","3L12","4L9","5L9","6L7"],rocktomb:["3M","4M","4L17","5M","5L17","6L10","6M"],rollout:["3T","4T"],round:["5M","6M"],sandstorm:["3M","3L33","3L34","4M","4L22","5M","5L25","6L52","6M"],screech:["3L1","4L6","5L6","6L31"],secretpower:["3M","4M"],selfdestruct:["3T"],slam:["3L37","3L41","4L25","5L33","6L28"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","5L22","6L22","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5L38","5T","6L16"],stoneedge:["4M","4L49","4L54","5M","5L62","6L46","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],taunt:["3M","4M","5M","6M"],thunderfang:["4L1","5L1","6L1"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],naturepower:["6M"],confide:["6M"]}}, + drowzee:{learnset:{assist:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],barrier:["3E","4E","5E","6E"],bellydrum:["3S0"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],confusion:["3L18","3L11","4L9","5L9","6L9"],counter:["3T"],disable:["3L10","3L7","4L7","5L5","6L5"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5D","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],firepunch:["3E","3T","4E","4T","5E","5T","6E"],flash:["3M","4M","5M","6M"],flatter:["4E","5E","6E"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],futuresight:["3L45","3L47","4L53","5L61","6L61"],grassknot:["4M","5M","6M"],guardswap:["4E","5E","6E"],headbutt:["3L25","3L17","4L15","4L32","4T","5L13","5L29","6L13","6L29"],hiddenpower:["3M","4M","5M","6M"],hypnosis:["3L1","4L1","5L1","5D","6L1"],icepunch:["3E","3T","4E","4T","5E","5T","6E"],lightscreen:["3M","4M","5M","6M"],lowkick:["4T","5T"],lowsweep:["5M","6M"],magiccoat:["4T","5T"],meditate:["3L36","3L27","4L21","5L21","6L21"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],nastyplot:["4E","4L43","5E","5L53","6L53","6E"],naturalgift:["4M"],nightmare:["3T"],poisongas:["3L31","3L21","4L18","5L17","6L17"],pound:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],psybeam:["4L26","5L25","6L25"],psychic:["3M","3L40","3L31","4M","4L40","5M","5L49","6L49","6M"],psychocut:["4E","5E","5D","6E"],psychup:["3L43","3T","3L37","4M","4L29","5M","5L33","6L33","6M"],psyshock:["5M","5L57","6L57","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["3E","4E","4T","5E","5T","6E"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M","5E","6E"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5E","5T","6E"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","3L41","4M","4L37","5M","5L45","6L45","6M"],synchronoise:["5L37","6L37"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],thunderpunch:["3E","3T","4E","4T","5E","5T","6E"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],wish:["3S0"],zenheadbutt:["4L50","4T","5L41","5T","6L41"],foulplay:["5T"],magicroom:["5T"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + hypno:{learnset:{attract:["3M","4M","5M","6M"],batonpass:["3S0"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],confusion:["3L1","3L18","3L11","4L1","4L9","5L1","5L9","6L1","6L9"],counter:["3T"],disable:["3L1","3L10","3L7","4L1","4L7","5L1","5L5","6L1","6L5"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],futuresight:["3L60","3L57","4L69","5L61","6L1","6L61"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["3L25","3L17","4L15","4L38","4T","5L13","5L29","6L13","6L29"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],hypnosis:["3L1","4L1","5L1","6L1"],icepunch:["3T","4T","5T"],lightscreen:["3M","4M","5M","6M"],lowkick:["4T","5T"],lowsweep:["5M","6M"],magiccoat:["4T","5T"],meditate:["3L40","3L29","4L21","5L21","3S0","6L21"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],nastyplot:["4L55","5L53","6L1","6L53"],naturalgift:["4M"],nightmare:["3T","3L1","4L1","5L1","6L1"],poisongas:["3L33","3L21","4L18","5L17","6L17"],pound:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],psybeam:["4L28","5L25","6L25"],psychic:["3M","3L49","3L35","4M","4L50","5M","5L49","3S0","6L49","6M"],psychup:["3L55","3T","3L43","4M","4L33","5M","5L33","6L33","6M"],psyshock:["5M","5L57","6L57","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","3S0","6M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","3L49","4M","4L45","5M","5L45","6L45","6M"],switcheroo:["4L1","5L1","6L1"],synchronoise:["5L37","6L37"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],zenheadbutt:["4L64","4T","5L41","5T","6L41"],foulplay:["5T"],magicroom:["5T"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + krabby:{learnset:{agility:["4E","5E","6E"],amnesia:["3E","4E","5E","5D","6E"],ancientpower:["4E","4T","5E","6E"],attract:["3M","4M","5M","6M"],bide:["5E","6E"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["4M","5M","6M"],brine:["4M","4L39","5L39","6L39"],bubble:["3L1","4L1","5L1","6L1"],bubblebeam:["4L15","5L15","6L15"],captivate:["4M"],chipaway:["5E","6E"],crabhammer:["3L45","4L41","5L41","6L41"],cut:["3M","4M","5M","6M"],dig:["3E","3M","4E","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],falseswipe:["4M","5M","6M"],flail:["3E","3L49","4E","4L45","5E","5L45","6L45","6E"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],guillotine:["3L34","4L31","5L31","6L31"],hail:["3M","4M","5M","6M"],harden:["3L16","4L11","5L11","6L11"],haze:["3E","4E","5E","6E"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],knockoff:["3E","4E","4T","5E","5T","6E"],leer:["3L5","4L9","5L9","6L9"],metalclaw:["4L21","5L21","6L21"],mimic:["3T"],mudshot:["3L23","4L19","5L19","6L19"],mudslap:["3T","4T"],mudsport:["4L1","5L1","6L1"],naturalgift:["4M"],protect:["3M","3L41","3L38","4M","4L29","5M","5L29","6L29","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M","5D"],slam:["3E","4E","4L35","5E","5L35","6L35","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],stomp:["3L27","4L25","5L25","6L25"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3E","3T","4E","4M","5M","6M"],thief:["3M","4M","5M","6M"],tickle:["4E","5E","6E"],toxic:["3M","4M","5M","6M"],vicegrip:["3L12","4L5","5L5","5D","6L5"],waterpulse:["3M","4M"],whirlpool:["4M"],xscissor:["4M","5M","6M"],confide:["6M"]}}, + kingler:{learnset:{ancientpower:["4T"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["4M","5M","6M"],brine:["4M","4L51","5L51","6L51"],bubble:["3L1","4L1","5L1","6L1"],bubblebeam:["4L15","5L15","6L15"],captivate:["4M"],crabhammer:["3L57","4L56","5L56","6L56"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["4M","5M","6M"],flail:["3L65","4L63","5L63","6L63"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],guillotine:["3L38","4L37","5L37","6L37"],hail:["3M","4M","5M","6M"],harden:["3L16","3L1","4L11","5L11","6L11"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],knockoff:["4T","5T"],leer:["3L1","3L5","4L9","5L1","5L9","6L1","6L9"],metalclaw:["3L1","4L21","5L21","6L21"],mimic:["3T"],mudshot:["3L23","4L19","5L19","6L19"],mudslap:["3T","4T"],mudsport:["4L1","5L1","6L1"],naturalgift:["4M"],protect:["3M","3L49","3L42","4M","4L32","5M","5L32","6L32","6M"],quash:["5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],slam:["4L44","5L44","6L44"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],stomp:["3L27","4L25","5L25","6L25"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],vicegrip:["3L1","3L12","4L1","4L5","5L1","5L5","6L1","6L5"],waterpulse:["3M","4M"],whirlpool:["4M"],wideguard:["5L1","6L1"],xscissor:["4M","5M","6M"],confide:["6M"]}}, + voltorb:{learnset:{charge:["3L1","4L1","5L1","5D","6L1"],chargebeam:["4M","4L26","5M","5L22","6L22","6M"],doubleteam:["3M","4M","5M","6M"],electroball:["5L29","6L29"],endure:["3T","4M"],explosion:["3L46","3T","4M","4L43","5M","5L47","6L47","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gyroball:["4M","4L40","5M","5L43","6L43","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],lightscreen:["3M","3L37","4M","4L22","5M","5L26","6L26","6M"],magiccoat:["4T","5T"],magnetrise:["4L36","4T","5L40","5T","6L40"],mimic:["3T"],mirrorcoat:["3L49","4L47","5L50","3S0","6L50"],naturalgift:["4M","5D"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3L32","3T","4L15","4T","5L15","6L15"],round:["5M","6M"],screech:["3L8","4L19","5L19","6L19"],secretpower:["3M","4M"],selfdestruct:["3L27","3T","4L29","5L33","6L33"],shockwave:["3M","4M"],signalbeam:["4T","5T","5D"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],sonicboom:["3L15","4L8","5L8","6L8"],spark:["3L21","4L12","5L12","3S0","6L12"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],swagger:["3T","4M","5M","6M"],swift:["3L42","3T","4L33","4T","5L36","3S0","6L36"],tackle:["3L1","4L5","5L5","6L5"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],foulplay:["5T"],eerieimpulse:["6L10"],confide:["6M"]}}, + electrode:{learnset:{charge:["3L1","4L1","5L1","6L1"],chargebeam:["4M","4L26","5M","5L22","6L22","6M"],doubleteam:["3M","4M","5M","6M"],electroball:["5L29","6L29"],endure:["3T","4M"],explosion:["3L54","3T","4M","4L51","5M","5L57","6L57","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gyroball:["4M","4L46","5M","5L51","6L51","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],lightscreen:["3M","3L41","4M","4L22","5M","5L26","6L26","6M"],magiccoat:["4T","5T"],magnetrise:["4L40","4T","5L46","5T","6L46"],mimic:["3T"],mirrorcoat:["3L59","4L57","5L62","6L62"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3L34","3T","4L15","4T","5L15","6L15"],round:["5M","6M"],screech:["3L1","3L8","4L19","5L19","6L19"],secretpower:["3M","4M"],selfdestruct:["3L27","3T","4L29","5L35","6L35"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],sonicboom:["3L1","3L15","4L1","4L8","5L1","5L8","6L1"],spark:["3L21","4L1","4L12","5L1","5L12","6L1","6L12"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],swagger:["3T","4M","5M","6M"],swift:["3L48","3T","4L35","4T","5L40","6L40"],tackle:["3L1","4L1","4L5","5L1","5L5","6L1","6L5"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],foulplay:["5T"],magneticflux:["6L1"],eerieimpulse:["6L8"],confide:["6M"]}}, + exeggcute:{learnset:{ancientpower:["3E","4E","4T","5E","6E"],attract:["3M","4M","5M","6M"],barrage:["3L1","4L1","5L1","5D","6L1"],bestow:["5L53","6L50"],block:["5E","5T","6E"],bulletseed:["3M","4M","4L17","5L17","6L17"],captivate:["4M"],confusion:["3L19","4L27","5L27","6L27"],curse:["3E","4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],explosion:["3T","4M","5M","6M"],extrasensory:["5L47","6L47"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5E","5D","5T","6E"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hypnosis:["3L1","4L1","5L1","6L1"],ingrain:["3E","4E","5E","6E"],leafstorm:["4E","5E","6E"],leechseed:["3L13","4L11","5L11","6L11"],lightscreen:["3M","4M","5M","6M"],luckychant:["4E","5E","6E"],mimic:["3T"],moonlight:["3E","4E","5E","6E"],naturalgift:["4M","4L37","5E","5L37","6L37","6E"],naturepower:["4E","5E","6M","6E"],nightmare:["3T"],poisonpowder:["3L31","4L21","5L21","6L21"],powerswap:["4E","5E","6E"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","4L47","5M","5L47","6M"],psychup:["3E","3T","4E","4M","5M","6M"],reflect:["3E","3M","3L7","4E","4M","4L7","5M","5L7","6L7","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],selfdestruct:["3T"],skillswap:["3M","4M","5E","5T","6E"],sleeppowder:["3L37","4L23","5L23","6L23"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","3L43","4M","4L43","5M","5L43","6L43","6M"],strength:["3M","4M","5M","6M"],stunspore:["3L25","4L19","5L19","6L19"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3S0"],swordsdance:["4M","5M","6M"],synthesis:["3E","4E","4T","5E","5D","5T","6E"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trickroom:["4M","5M","6M"],uproar:["3L1","4L1","5L1","5T","6L1"],wish:["3S0"],worryseed:["4L33","4T","5L33","5T","6L33"],rockslide:["6M"],infestation:["6M"],confide:["6M"],grassyterrain:["6E"]}}, + exeggutor:{learnset:{ancientpower:["4T","3S0"],attract:["3M","4M","5M","6M"],barrage:["3L1","4L1","5L1","6L1"],bulletseed:["3M","4M"],captivate:["4M"],confusion:["3L1","4L1","5L1","6L1"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],eggbomb:["3L31","4L27","5L27","6L27"],endure:["3T","4M"],energyball:["4M","5M","6M"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],hypnosis:["3L1","4L1","5L1","3S0","6L1"],leafstorm:["4L47","5L47","6L47"],lightscreen:["3M","4M","5M","6M"],lowkick:["4T","5T"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","3S0","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","5L17","6L17","6M"],reflect:["3M","4M","5M","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4L1","4T","5L1","5T","6L1"],selfdestruct:["3T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stomp:["3L19","4L1","4L17","5L1","6L1"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["4M","5M","6M"],synthesis:["4T","5T"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trickroom:["4M","5M","6M"],woodhammer:["4L37","5L37","6L37"],worryseed:["4T","5T"],zenheadbutt:["4T","5T"],block:["5T"],rockslide:["6M"],infestation:["6M"],naturepower:["6M"],confide:["6M"]}}, + cubone:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],bellydrum:["3E","4E","5E","6E"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],boneclub:["3L9","4L7","5L7","5D","6L7"],bonemerang:["3L25","4L21","5L21","6L21"],bonerush:["3L41","4L37","5L37","6L37"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5E","6E"],counter:["3T"],detect:["4E","5E","6E"],dig:["3M","4M","5M","6M"],doubleedge:["3L45","3T","4L43","5L43","6L43"],doublekick:["4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endeavor:["4L41","4T","5L41","5T","6L41"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],falseswipe:["3L33","4M","4L27","5M","5L27","6L27","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","4L33","5M","5L33","6L33","6M"],focusenergy:["3L21","4L17","5L17","6L17"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["4T"],growl:["3L1","4L1","5L1","6L1"],headbutt:["3L13","4L11","4T","5L11","6L11"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irondefense:["4T","5T"],ironhead:["4E","5E","5T","6E"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],leer:["3L17","4L13","5L13","6L13"],lowkick:["4T","5T","5D"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],perishsong:["3E","4E","5E","5D","6E"],protect:["3M","4M","5M","6M"],rage:["3L29","4L23","5L23","6L23"],rest:["3M","4M","5M","6M"],retaliate:["5M","5L47","6L47","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],screech:["3E","4E","5E","6E"],secretpower:["3M","4M"],seismictoss:["3T"],skullbash:["3E","4E","5E","6E"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3E","3T","4E","4M","5M","6M"],tailwhip:["3L5","4L3","5L3","6L3"],thief:["3M","4M","5M","6M"],thrash:["3L37","4L31","5L31","6L31"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],poweruppunch:["6M"],confide:["6M"],playrough:["6E"]}}, + marowak:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],boneclub:["3L1","3L9","4L1","4L7","5L1","5L7","6L1","6L7"],bonemerang:["3L25","4L21","5L21","6L21"],bonerush:["3L53","4L43","5L43","6L43"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M"],captivate:["4M"],counter:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3L61","3T","4L53","5L53","6L53"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","3S0","6M"],echoedvoice:["5M","6M"],endeavor:["4L49","4T","5L49","5T","6L49"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["3L39","4M","4L27","5M","5L27","6L27","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","4L37","5M","5L37","6L37"],focusblast:["4M","5M","6M"],focusenergy:["3L21","4L17","5L17","6L17"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["4T"],gigaimpact:["4M","5M"],growl:["3L1","4L1","5L1","6L1"],headbutt:["3L1","3L13","4L1","4L11","4T","5L1","5L11","6L1","6L11"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],incinerate:["5M"],irondefense:["4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],leer:["3L17","4L13","5L13","6L13"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","4M","5M","6M"],rage:["3L32","4L23","5L23","6L23"],rest:["3M","4M","5M","6M"],retaliate:["5M","5L59","6L59"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","3S0"],rocksmash:["3M","4M","5M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],sing:["3S0"],sleeptalk:["3T","4M","5T"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M"],strength:["3M","4M","5M"],substitute:["3T","4M","5M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M"],swordsdance:["3T","4M","5M","3S0"],tailwhip:["3L1","3L5","4L1","4L3","5L1","5L3","6L1","6L3"],thief:["3M","4M","5M","6M"],thrash:["3L46","4L33","5L33","6L33"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],ironhead:["5T"]}}, + tyrogue:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],bulletpunch:["4E","5E","6E"],captivate:["4M"],counter:["3T","4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],fakeout:["4L1","5L1","5D","6L1"],feint:["5E","5D","6E"],foresight:["4L1","5L1","6L1"],frustration:["3M","4M","5M","6M"],headbutt:["4T"],helpinghand:["3E","4E","4L1","4T","5E","5L1","5T","6L1","6E"],hiddenpower:["3M","4M","5M","6M"],highjumpkick:["3E","4E","5E","6E"],lowkick:["4T","5T"],lowsweep:["5M","6M"],machpunch:["3E","4E","5E","5D","6E"],megakick:["3T"],mimic:["3T"],mindreader:["3E","4E","5E","6E"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],pursuit:["5E","6E"],raindance:["3M","4M","5M","6M"],rapidspin:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],vacuumwave:["4E","4T","5E","6E"],workup:["5M"],covet:["5T"],confide:["6M"]}}, + hitmonlee:{learnset:{attract:["3M","4M","5M","6M"],blazekick:["4L41","5L45","6L45"],bodyslam:["3T"],bounce:["4T","5T"],brickbreak:["3M","3L20","4M","4L17","5M","5L17","6L17","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],closecombat:["4L53","5L57","6L1","6L57"],counter:["3T"],doubleedge:["3T"],doublekick:["3L1","4L1","5L1","6L1"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endure:["3L41","3T","4M","4L45","5L49","6L49"],facade:["3M","4M","5M","6M"],feint:["4L25","5L25","6L25"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focusenergy:["3L21","4L21","5L21","6L21"],focuspunch:["3M","4M"],foresight:["3L36","4L37","5L37","6L37"],frustration:["3M","4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],highjumpkick:["3L26","4L29","5L29","3S0","6L29"],jumpkick:["3L16","4L13","5L13","6L13"],knockoff:["4T","5T"],lowkick:["4T","5T"],lowsweep:["5M","6M"],meditate:["3L6","4L5","5L5","6L5"],megakick:["3L46","3T","4L49","5L53","3S0","6L1","6L53"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mindreader:["3L31","4L33","5L33","3S0","6L33"],mudslap:["3T","4T"],naturalgift:["4M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],revenge:["3L1","4L1","5L1","6L1"],reversal:["3L51","4L57","5L61","6L1","6L61"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4T","5T"],rollingkick:["3L11","4L9","5L9","6L9"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],vacuumwave:["4T"],wideguard:["5L41","6L41"],workup:["5M"],covet:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + hitmonchan:{learnset:{agility:["3L7","4L6","5L6","6L6"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],bulletpunch:["4L16","5L16","6L16"],captivate:["4M"],closecombat:["4L56","5L66","6L1","6L66"],cometpunch:["3L1","4L1","5L1","6L1"],counter:["3L50","3T","4L51","5L61","6L1","6L61"],detect:["3L44","4L46","5L51","6L50"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feint:["4L21","5L21","6L21"],firepunch:["3L26","3T","4L31","4T","5L36","5T","6L36"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M","5L56","6L1","6L56"],frustration:["3M","4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T","3S0"],hiddenpower:["3M","4M","5M","6M"],icepunch:["3L26","3T","4L31","4T","5L36","5T","6L36"],lowkick:["4T","5T"],lowsweep:["5M","6M"],machpunch:["3L20","4L16","5L16","6L16"],megakick:["3T"],megapunch:["3L38","3T","4L41","5L46","3S0","6L46"],metronome:["3T"],mimic:["3T"],mindreader:["3S0"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],pursuit:["3L13","4L11","5L11","6L11"],quickguard:["5L31","6L31"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],revenge:["3L1","4L1","5L1","6L1"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],skyuppercut:["3L32","4L36","5L41","3S0","6L41"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],thief:["3M","4M","5M","6M"],thunderpunch:["3L26","3T","4L31","4T","5L36","5T","6L36"],toxic:["3M","4M","5M","6M"],vacuumwave:["4L26","4T","5L26","6L26"],workup:["5M"],covet:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + hitmontop:{learnset:{aerialace:["4M","5M","6M"],agility:["3L37","4L37","5L37","6L37"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],closecombat:["4L51","5L55","5S0","6L1","6L55"],counter:["3L31","3T","4L28","5L28","6L28"],detect:["3L43","4L46","5L51","6L50"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],endeavor:["3L49","4L55","4T","5L60","5T","6L1","6L60"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fakeout:["5S0"],feint:["4L33","5L33","6L33"],focusenergy:["3L7","4L6","5L6","6L6"],foresight:["4C"],frustration:["3M","4M","5M","6M"],gyroball:["4M","4L42","5M","5L42","6L42","6M"],headbutt:["4T"],helpinghand:["4T","5T","5S0"],hiddenpower:["3M","4M","5M","6M"],lowkick:["4T","5T"],lowsweep:["5M","6M"],machpunch:["3C"],megakick:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],pursuit:["3L13","4L10","5L10","6L10"],quickattack:["3L19","4L15","5L15","6L15"],quickguard:["5L46","6L46"],raindance:["3M","4M","5M","6M"],rapidspin:["3L25","4L24","5L24","6L24"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],revenge:["3L1","4L1","5L1","6L1"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],roleplay:["4T","5T"],rollingkick:["3L1","4L1","5L1","6L1"],rollout:["4T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T","5S0"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],triplekick:["3L20","4L19","5L19","6L19"],twister:["4T"],vacuumwave:["4T"],wideguard:["5L46","6L46"],workup:["5M"],covet:["5T"],drillrun:["5T"],confide:["6M"]}}, + lickitung:{learnset:{amnesia:["4E","5E","6E"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],bellydrum:["3E","4E","5E","6E"],blizzard:["3M","4M","5M","6M"],bodyslam:["3E","3T","4E","5E","6E"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L37","6L37"],counter:["3T"],curse:["3E","4E","5E","6E"],cut:["3M","4M","5M","6M"],defensecurl:["3L12","3T","4L9","5L9","3S1","6L9"],dig:["3M","4M","5M","6M"],disable:["3L34","4L25","5L25","6L25"],doubleedge:["3T","3S1"],doubleteam:["3M","4M","5M","6M"],dragontail:["5M","6M"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],hammerarm:["4E","5E","6E"],headbutt:["4T"],healbell:["3S0"],helpinghand:["3S1"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],knockoff:["3L18","4L13","5L13","5T","6L13"],lick:["3L1","4L1","5L1","5D","6L1"],magnitude:["3E","4E","5E","6E"],mefirst:["4L37","5L41","6L41"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],muddywater:["4E","5E","6E"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],powerwhip:["4L49","5L53","6L53"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],refresh:["3L51","4L41","5L45","6L45"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M","5D"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4L33","4T","5L33","3S1","6L33"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],screech:["3L45","4L45","5L49","6L49"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],slam:["3L40","4L29","5L29","6L29"],sleeptalk:["3E","3T","4E","4M","5E","5D","5T","6M","6E"],smellingsalts:["3E","4E","5E","6E"],snore:["3E","3T","4E","4T","5E","5T","6E"],solarbeam:["3M","4M","5M","6M"],stomp:["3L23","4L21","5L21","6L21"],strength:["3M","4M","5M","6M"],substitute:["3E","3T","4E","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3L7","4L5","5L5","6L5"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],wish:["3S0"],workup:["5M"],wrap:["3L29","4L17","5L17","6L17"],wringout:["4L53","5L57","6L57"],zenheadbutt:["4T","5E","5T","6E"],bind:["5T"],poweruppunch:["6M"],confide:["6M"],belch:["6E"]}}, + lickilicky:{learnset:{aquatail:["4T","5T"],attract:["4M","5M","6M"],blizzard:["4M","5M","6M"],block:["4T","5T"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L37","6L37"],cut:["4M","5M","6M"],defensecurl:["4L9","5L9","6L9"],dig:["4M","5M","6M"],disable:["4L25","5L25","6L25"],doubleteam:["4M","5M","6M"],dragontail:["5M","6M"],dreameater:["4M","5M","6M"],earthquake:["4M","5M","6M"],endure:["4M"],explosion:["4M","5M","6M"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],firepunch:["4T","5T"],flamethrower:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],gyroball:["4M","4L57","5M","5L61","6L61","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],icepunch:["4T","5T"],icywind:["4T","5T"],incinerate:["5M","6M"],irontail:["4M","5T"],knockoff:["4L13","4T","5L13","5T","6L13"],lick:["4L1","5L1","6L1"],mefirst:["4L37","5L41","6L41"],mudslap:["4T"],naturalgift:["4M"],powerwhip:["4L49","5L53","6L1","6L53"],protect:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],refresh:["4L41","5L45","6L45"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["4L33","4T","5L33","6L33"],round:["5M","6M"],sandstorm:["4M","5M","6M"],screech:["4L45","5L49","6L49"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],slam:["4L29","5L29","6L29"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],stomp:["4L21","5L21","6L21"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],supersonic:["4L5","5L5","6L5"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swordsdance:["4M","5M","6M"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4T","5T"],toxic:["4M","5M","6M"],waterpulse:["4M"],whirlpool:["4M"],workup:["5M"],wrap:["4L17","5L17","6L17"],wringout:["4L53","5L57","6L1","6L57"],zenheadbutt:["4T","5T"],bind:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + koffing:{learnset:{assurance:["4L15","5L15","6L0"],attract:["3M","4M","5M","6M"],captivate:["4M"],clearsmog:["5L19","6L0"],curse:["4E","5E","6E"],darkpulse:["4M","5D","5T"],destinybond:["3E","3L45","4E","4L46","5E","5L51","6E"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["3L41","3T","4M","4L37","5M","5L42","6L0","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],grudge:["4E","5E","6E"],gyroball:["4M","4L33","5M","5L37","6L0","6M"],haze:["3L33","4L28","5L33","6L0"],hiddenpower:["3M","4M","5M","6M"],incinerate:["5M","6M"],memento:["3L49","4L51","5L55","6L0"],mimic:["3T"],naturalgift:["4M"],painsplit:["3E","4E","4T","5E","5T","6E"],payback:["4M","5M","6M"],poisongas:["3L1","4L1","5L1","6L0"],protect:["3M","4M","5M","6M"],psybeam:["3E","4E","5E","6E"],psywave:["3E","4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],screech:["3E","4E","5E","6E"],secretpower:["3M","4M"],selfdestruct:["3L17","3T","4L19","5L24","6L0"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludge:["3L21","4L24","5L28","6L0"],sludgebomb:["3M","4M","4L42","5M","5L46","6L0","6M"],sludgewave:["5D"],smog:["3L9","4L6","5L6","5D","6L0"],smokescreen:["3L25","4L10","5L10","6L0"],snore:["3T","4T","5T"],spite:["4E","4T","5E","5T","6E"],spitup:["5E","6E"],stockpile:["5E","6E"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["5E","6E"],tackle:["3L1","4L1","5L1","6L0"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],venoshock:["5M","6M"],willowisp:["3E","4E","4M","5M","6M"]}}, + weezing:{learnset:{assurance:["4L15","5L15","6L0"],attract:["3M","4M","5M","6M"],captivate:["4M"],clearsmog:["5L19","6L0"],darkpulse:["4M","5T"],destinybond:["3L51","4L55","5L59","6L0"],doublehit:["4L33","5L39","6L0"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["3L44","3T","4M","4L40","5M","5L46","6L0","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gyroball:["4M","5M","6M"],haze:["3L33","4L28","5L33","6L0"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],memento:["3L58","4L63","5L65","6L0"],mimic:["3T"],mudslap:["4T"],naturalgift:["4M"],painsplit:["4T","5T"],payback:["4M","5M","6M"],poisongas:["3L1","4L1","5L1","6L0"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M"],selfdestruct:["3L1","3L17","3T","4L19","5L24","6L0"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludge:["3L21","4L24","5L28","6L0"],sludgebomb:["3M","4M","4L48","5M","5L52","6L0","6M"],smog:["3L1","3L9","4L1","4L6","5L1","5L6","6L0","6L0"],smokescreen:["3L25","4L1","4L10","5L1","5L10","6L0","6L0"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L0"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],venoshock:["5M","6M"],willowisp:["4M","5M","6M"]}}, + rhyhorn:{learnset:{ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bulldoze:["5M","5L30","6L30","6M"],captivate:["4M"],chipaway:["5L34","6L34"],counter:["3E","3T","4E","5E","5D","6E"],crunch:["3E","4E","5E","6E"],crushclaw:["3E","4E","5E","6E"],curse:["3E","4E","5E","6E"],dig:["3M","4M","5M","6M"],doubleedge:["3T","5D"],doubleteam:["3M","4M","5M","6M"],dragonpulse:["4M","5T"],dragonrush:["4E","5E","6E"],drillrun:["5L45","5T","6L45"],earthpower:["4T","5T"],earthquake:["3M","3L52","4M","4L49","5M","5L56","6L56","6M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firefang:["4E","5E","6E"],flamethrower:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furyattack:["3L15","4L13","5L12","6L12"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hornattack:["3L1","4L1","5L1","5D","6L1"],horndrill:["3L38","4L37","5L63","6L63"],icebeam:["3M","4M","5M","6M"],icefang:["4E","5E","6E"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5E","5T","6E"],magnitude:["3E","4E","5E","6E"],megahorn:["3L57","4L57","5L67","6L67"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],reversal:["3E","4E","5E","6E"],roar:["3M","4M","5M","6M"],rockblast:["3L29","4L25","5L23","6L23"],rockclimb:["4M","5E","6E"],rockpolish:["4M","5M","6M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scaryface:["3L24","4L21","5L19","6L19"],secretpower:["3M","4M"],shockwave:["3M","4M"],skullbash:["4E","5E","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stomp:["3L10","4L9","5L8","6L8"],stoneedge:["4M","4L45","5M","5L52","6L52","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],swordsdance:["3E","3T","4E","4M","5M","6M"],tailwhip:["3L1","4L1","5L1","6L1"],takedown:["3L43","4L33","5L41","6L41"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderfang:["4E","5E","6E"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],confide:["6M"],metalburst:["6E"],rototiller:["6E"]}}, + rhydon:{learnset:{ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","5L30","6L30","6M"],captivate:["4M"],chipaway:["5L34","6L34"],counter:["3T"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonpulse:["4M","5T"],dragontail:["5M","6M"],drillrun:["5L47","5T","6L47"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L58","4M","4L49","5M","5L62","3S0","6L62","6M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furyattack:["3L1","3L15","4L1","4L13","5L1","5L12","6L1","6L12"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],hammerarm:["4L42","5L42","6L42"],headbutt:["4T"],helpinghand:["3S0"],hiddenpower:["3M","4M","5M","6M"],hornattack:["3L1","4L1","5L1","6L1"],horndrill:["3L38","4L37","5L71","6L1","6L71"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],megahorn:["3L66","4L57","5L77","3S0","6L1","6L77"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockblast:["3L29","4L25","5L23","6L23"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scaryface:["3L24","4L21","5L19","3S0","6L19"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stomp:["3L1","3L10","4L1","4L9","5L1","5L9","6L1","6L9"],stoneedge:["4M","4L45","5M","5L56","6L56","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],tailwhip:["3L1","4L1","5L1","6L1"],takedown:["3L46","4L33","5L41","6L41"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],whirlpool:["4M"],poweruppunch:["6M"],confide:["6M"]}}, + rhyperior:{learnset:{ancientpower:["4T"],aquatail:["4T","5T"],attract:["4M","5M","6M"],avalanche:["4M"],blizzard:["4M","5M","6M"],block:["4T","5T"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L30","6L30"],cut:["4M","5M","6M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],dragonpulse:["4M","5T"],dragontail:["5M","6M"],drillrun:["5L47","5T","6L47"],earthpower:["4T","5T"],earthquake:["4M","4L49","5M","5L62","6L62","6M"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],firepunch:["4T","5T"],flamethrower:["4M","5M","6M"],flashcannon:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],furyattack:["4L1","4L13","5L1","5L19","6L1","6L19"],furycutter:["4T"],gigaimpact:["4M","5M","6M"],hammerarm:["4L42","5L42","6L42"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hornattack:["4L1","5L1","6L1"],horndrill:["4L37","5L71","6L1","6L71"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],icepunch:["4T","5T"],icywind:["4T","5T"],incinerate:["5M","6M"],ironhead:["4T","5T"],irontail:["4M","5T"],megahorn:["4L57","5L77","6L1","6L77"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T"],payback:["4M","5M","6M"],poisonjab:["4M","4L1","5M","5L1","6L1","6M"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockblast:["4L25","5L23","6L23"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],rockwrecker:["4L61","5L86","6L1","6L86"],rollout:["4T"],round:["5M","6M"],sandstorm:["4M","5M","6M"],scaryface:["4L21","5L19","6L19"],secretpower:["4M"],shadowclaw:["4M","5M","6M"],shockwave:["4M"],sleeptalk:["4M","5T","6M"],smackdown:["5M","6M"],snore:["4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stomp:["4L1","4L9","5L1","5L9","6L1","6L9"],stoneedge:["4M","4L45","5M","5L56","6L56","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],superpower:["4T","5T"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swordsdance:["4M","5M","6M"],tailwhip:["4L1","5L1","6L1"],takedown:["4L33","5L41","6L41"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4T","5T"],toxic:["4M","5M","6M"],uproar:["4T","5T"],whirlpool:["4M"],poweruppunch:["6M"],confide:["6M"]}}, + happiny:{learnset:{aromatherapy:["4E","5E","6E"],attract:["4M","5M","6M"],captivate:["4M"],charm:["4L1","5L1","6L1"],copycat:["4L5","5L5","6L5"],counter:["4E","5E","6E"],doubleteam:["4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["4M","5M","6M"],echoedvoice:["5M","6M"],endeavor:["4T","5T"],endure:["4M","5E","6E"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],flamethrower:["4M","5M","6M"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4E","4T","5E","5T","6E"],hail:["4M","5M","6M"],headbutt:["4T"],healbell:["4E","4T","5E","5T","6E"],helpinghand:["4E","4T","5E","5T","6E"],hiddenpower:["4M","5M","6M"],icywind:["4T","5T"],incinerate:["5M","6M"],lastresort:["4E","4T","5E","5T","6E"],lightscreen:["4M","5M","6M"],metronome:["4E","5E","6E"],mudbomb:["4E","5E","6E"],mudslap:["4T"],naturalgift:["4M","5E","6E"],pound:["4L1","5L1","6L1"],present:["4E","5E","6E"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],recycle:["4M","5T"],refresh:["4L9","5L9","6L9"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rollout:["4T"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],substitute:["4E","4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],sweetkiss:["4L12","5L12","6L12"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],uproar:["4T","5T"],waterpulse:["4M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],confide:["6M"],seismictoss:["6E"]}}, + chansey:{learnset:{aromatherapy:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],bestow:["5L20","6L20"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],counter:["3T","4E","5E","5D","6E"],defensecurl:["3L41","3T","4L31","5L1","6L1"],doubleedge:["3L57","3T","4L46","5L54","6L1","6L54"],doubleslap:["3L17","4L16","5L12","6L12"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],eggbomb:["3L35","4L38","5L42","6L42"],endeavor:["4T","5T"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["4T","5T"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","4L27","5M","5L34","6L34","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4E","4T","5E","5T","6E"],growl:["3L1","4L1","5L1","3S1","5D","6L1"],hail:["3M","4M","5M","6M"],headbutt:["4T"],healbell:["3E","4E","4T","5E","5T","6E"],healingwish:["4L42","5L50","6L50"],healpulse:["5L38","6L38"],helpinghand:["4E","4T","5E","5T","5D","6E"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],lastresort:["4T","5T","6E"],lightscreen:["3M","3L49","4M","4L34","5M","5L46","6L46","6M"],megakick:["3T"],megapunch:["3T"],metronome:["3E","3T","4E","5E","6E"],mimic:["3T"],minimize:["3L23","4L20","5L23","6L23"],mudbomb:["4E","5E","6E"],mudslap:["3T","4T"],naturalgift:["4M","5E","6E"],pound:["3L1","4L1","5L1","3S1","6L1"],present:["3E","4E","5E","6E"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],refresh:["3L9","4L9","5L9","3S1","6L9"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T","6E"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sing:["3L29","4L23","5L31","6L31"],skillswap:["3M","4M","5T","3S2"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],softboiled:["3L13","3T","4L12","5L16","3S2","6L16"],solarbeam:["3M","4M","5M","6M"],stealthrock:["4M","5T"],strength:["3M","4M","5M","6M"],substitute:["3E","3T","4E","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetkiss:["3S2"],sweetscent:["3S0"],tailwhip:["3L5","4L5","5L5","3S1","6L5"],takedown:["5L27","6L27"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","3S2","6M"],thunderpunch:["4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],wildcharge:["5M","6M"],wish:["3S0"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + blissey:{learnset:{attract:["3M","4M","5M","6M"],avalanche:["4M"],bestow:["5L20","6L20"],blizzard:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],counter:["3T"],defensecurl:["3L33","3T","4L31","5L1","6L1"],doubleedge:["3L47","3T","4L46","5L54","6L1","6L54"],doubleslap:["3L13","4L16","5L12","6L12"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],eggbomb:["3L28","4L38","5L42","6L42"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["4T","5T"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","4L27","5M","5L34","6L34","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],growl:["3L1","4L1","5L1","5S0","6L1"],hail:["3M","4M","5M","6M"],headbutt:["4T"],healbell:["4T","5T"],healingwish:["4L42","5L50","6L50"],healpulse:["5L38","6L38"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],lightscreen:["3M","3L40","4M","4L34","5M","5L46","6L46","6M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],minimize:["3L18","4L20","5L23","6L23"],mudslap:["3T","4T"],naturalgift:["4M"],pound:["3L1","4L1","5L1","5S0","6L1"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],refresh:["3L7","4L9","5L9","5S0","6L9"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sing:["3L23","4L23","5L31","6L31"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],softboiled:["3L10","3T","4L12","5L16","6L16"],solarbeam:["3M","4M","5M","6M"],stealthrock:["4M","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tailwhip:["3L4","4L5","5L5","5S0","6L5"],takedown:["5L27","6L27"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],wildcharge:["5M","6M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + tangela:{learnset:{absorb:["3L10","4L8","5L8","6L10"],amnesia:["3E","4E","5E","6E"],ancientpower:["4L33","4T","5L36","6L38"],attract:["3M","4M","5M","6M"],bind:["3L28","4L22","5L22","5T","6L17"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],confusion:["3E","4E","5E","6E"],constrict:["3L1","4L1","5L1","6L1"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endeavor:["4E","5E","5T","6E"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flail:["3E","4E","5E","6E"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5E","5T","5L36","6L36","6E"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growth:["3L13","4L12","5L12","6L20"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],ingrain:["3L1","4L1","5L1","3S0","6L1"],knockoff:["4L36","4T","5L33","5T","6L27"],leafstorm:["4E","5E","6E"],leechseed:["3E","4E","5E","5D","6E"],megadrain:["3E","3L31","4E","4L26","5E","5L26","6L23","6E"],mimic:["3T"],morningsun:["3S0"],naturalgift:["4M","4L40","5E","5L40","6L33","6E"],naturepower:["3E","4E","5E","6E"],painsplit:["4T","5T"],poisonpowder:["3L19","4L15","5L15","6L14"],powerswap:["4E","5E","6E"],powerwhip:["4L54","5L54","6L50"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],ragepowder:["5E","6E"],reflect:["3E","4E","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5D","5T"],shockwave:["4M"],slam:["3L40","4L43","5L43","6L41"],sleeppowder:["3L4","4L5","5L5","5D","6L4"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","3S0","6M"],stunspore:["3L37","4L29","5L29","6L30"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","3S0","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],thief:["3M","4M","5M","6M"],tickle:["3L46","4L47","5L47","6L44"],toxic:["3M","4M","5M","6M"],vinewhip:["3L22","4L19","5L19","6L7"],worryseed:["4T","5T"],wringout:["4L50","5L50","6L46"],grassyterrain:["6L48"],infestation:["6M"],confide:["6M"]}}, + tangrowth:{learnset:{absorb:["4L8","5L8","6L10"],aerialace:["4M","5M","6M"],ancientpower:["4L33","4T","5L36","6L40"],attract:["4M","5M","6M"],bind:["4L22","5L22","5T","6L17"],block:["4L57","4T","5L57","5T","6L1","6L56"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],bulletseed:["4M"],captivate:["4M"],constrict:["4L1","5L1","6L1"],cut:["4M","5M","6M"],doubleteam:["4M","5M","6M"],earthquake:["4M","5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],frustration:["4M","5M","6M"],gigadrain:["4M","5T","5L36","6L36"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growth:["4L12","5L12","6L20"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],ingrain:["4L1","5L1","6L1"],knockoff:["4L36","4T","5L33","5T","6L27"],megadrain:["4L26","5L26","6L23"],mudslap:["4T"],naturalgift:["4M","4L40","5L40","6L33"],painsplit:["4T","5T"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],poisonpowder:["4L15","5L15","6L14"],powerwhip:["4L54","5L54","6L53"],protect:["4M","5M","6M"],psychup:["4M","5M","6M"],reflect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],secretpower:["4M"],seedbomb:["4T","5T"],shockwave:["4M"],slam:["4L43","5L43","6L43"],sleeppowder:["4L5","5L5","6L4"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","5M","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],strength:["4M","5M","6M"],stunspore:["4L29","5L29","6L30"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swordsdance:["4M","5M","6M"],synthesis:["4T","5T"],thief:["4M","5M","6M"],tickle:["4L47","5L47","6L46"],toxic:["4M","5M","6M"],vinewhip:["4L19","5L19","6L7"],worryseed:["4T","5T"],wringout:["4L50","5L50","6L49"],endeavor:["5T"],grassyterrain:["6L50"],infestation:["6M"],naturepower:["6M"],confide:["6M"]}}, + kangaskhan:{learnset:{aerialace:["3M","4M","5M","6M"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],avalanche:["4M"],bite:["3L7","4L13","5L13","3S1","6L13"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L31","6L31"],circlethrow:["5E","6E"],cometpunch:["3L1","4L1","5L1","3S1","6L1"],counter:["3E","3T","4E","5E","5D","6E"],crunch:["4L31","5L37","6L37"],crushclaw:["3E","4E","5E","6E"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],disable:["3E","4E","5E","6E"],dizzypunch:["3L43","4L25","5L34","3S2","6L34"],doubleedge:["3T","4E","5E","6E"],doublehit:["4L43","5L19","6L19"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5D","5T"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","3S2","6M"],endeavor:["4E","4T","5E","5T","6E"],endure:["3L37","3T","4M","4L34","5L43","6L43"],facade:["3M","4M","5M","6M"],fakeout:["3L19","4L7","5L7","5D","6L7"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focusenergy:["3E","4E","5E","6E"],focuspunch:["3M","4M","5E","6E"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],hammerarm:["4E","5E","6E"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],knockoff:["4T"],leer:["3L1","4L1","5L1","3S1","6L1"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3L25","3T","4L19","5L25","6L25"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4L37","4T","5L46","5T","6L46"],protect:["3M","4M","5M","6M"],rage:["3L31","4L22","5L22","6L22"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],reversal:["3L49","4L49","5L55","6L50"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3E","4E","5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sing:["3S2"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spite:["4T","5T"],stomp:["3E","4E","5E","6E"],strength:["3M","4M","5M","6M"],substitute:["3E","3T","4E","4M","5M","6M"],suckerpunch:["4L46","5L49","6L49"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tailwhip:["3L13","4L10","5L10","3S2","6L10"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],trumpcard:["5E","6E"],uproar:["4T","5E","5T","6E"],waterpulse:["3M","4M"],whirlpool:["4M"],wish:["3S0"],workup:["5M"],yawn:["3S0"],covet:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + horsea:{learnset:{agility:["3L36","4L23","5L23","6L23"],attract:["3M","4M","5M","6M"],aurorabeam:["3E","4E","5E","6E"],blizzard:["3M","4M","5M","6M"],bounce:["4T","5T"],brine:["4M","4L30","5L30","5D","6L30"],bubble:["3L1","4L1","5L1","5D","5S0","6L1"],bubblebeam:["4L18","5L18","6L18"],captivate:["4M"],clearsmog:["5E","6E"],disable:["3E","4E","5E","6E"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonbreath:["3E","4E","5E","6E"],dragondance:["3L50","4L38","5L38","6L38"],dragonpulse:["4M","4L42","5L42","5T","6L42"],dragonrage:["3E","4E","5E","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flail:["3E","4E","5E","6E"],flashcannon:["4M","5M","6M"],focusenergy:["4L14","5L14","6L14"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L43","4L35","5L35","6L35"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],leer:["3L15","4L8","5L8","6L8"],mimic:["3T"],muddywater:["4E","5E","6E"],naturalgift:["4M"],octazooka:["3E","4E","5E","5D","6E"],outrage:["4T","5E","5T","6E"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],razorwind:["4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],signalbeam:["4E","4T","5E","5T","6E"],sleeptalk:["3T","4M","5T","6M"],smokescreen:["3L8","4L4","5L4","6L4"],snore:["3T","4T","5T"],splash:["3E","4E","5E","6E"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],toxic:["3M","4M","5M","6M"],twister:["3L29","4L26","4T","5L26","6L26"],waterfall:["3M","4M","5M","6M"],watergun:["3L22","4L11","5L11","6L11"],waterpulse:["3M","4M","5E","6E"],whirlpool:["4M"],confide:["6M"]}}, + seadra:{learnset:{agility:["3L40","4L23","5L23","3S0","6L23"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bounce:["4T","5T"],brine:["4M","4L30","5L30","6L30"],bubble:["3L1","4L1","5L1","6L1"],bubblebeam:["4L18","5L18","6L18"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragondance:["3L62","4L48","5L48","6L48"],dragonpulse:["4M","4L57","5L57","5T","6L57"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],focusenergy:["4L14","5L14","6L14"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L51","4L40","5L40","6L40"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],leer:["3L1","3L15","4L1","4L8","5L1","5L8","3S0","6L1","6L8"],mimic:["3T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],smokescreen:["3L1","3L8","4L1","4L4","5L1","5L4","6L1","6L4"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],toxic:["3M","4M","5M","6M"],twister:["3L29","4L26","4T","5L26","3S0","6L26"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","3L22","4L1","4L11","5L1","5L11","3S0","6L1","6L11"],waterpulse:["3M","4M"],whirlpool:["4M"],confide:["6M"]}}, + kingdra:{learnset:{agility:["3L40","4L23","5L23","3S0","6L23"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4T","5T"],brine:["4M","4L30","5L30","6L30"],bubble:["3L1","4L1","5L1","6L1"],bubblebeam:["4L18","5L18","6L18"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dracometeor:["4T","5T","5S1","6T"],dragondance:["3L62","4L48","5L48","6L48"],dragonpulse:["4M","4L57","5L57","5T","5S1","6L1","6L57"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],focusenergy:["4L14","5L14","6L14"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L51","4L40","5L40","6L40"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],leer:["3L1","3L15","4L1","4L8","5L1","5L8","3S0","6L1","6L8"],mimic:["3T"],muddywater:["5S1"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","4M","5M","5S1","6M"],quash:["5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],smokescreen:["3L1","3L8","4L1","4L4","5L1","5L4","6L1","6L4"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],toxic:["3M","4M","5M","6M"],twister:["3L29","4L26","4T","5L26","3S0","6L26"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","3L22","4L1","4L11","5L1","5L11","3S0","6L1","6L11"],waterpulse:["3M","4M"],whirlpool:["4M"],yawn:["4L1","5L1","6L1"],confide:["6M"]}}, + goldeen:{learnset:{agility:["3L52","4L47","5L47","6L47"],aquaring:["4L27","5L27","6L27"],aquatail:["4E","4T","5E","5T","6E"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["4E","5E","6E"],bounce:["4T","5T"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flail:["3L24","4L21","5L21","6L21"],frustration:["3M","4M","5M","6M"],furyattack:["3L29","4L31","5L31","6L31"],furycutter:["4T"],hail:["3M","4M","5M","6M"],haze:["3E","4E","5E","6E"],hiddenpower:["3M","4M","5M","6M"],hornattack:["3L15","4L11","5L11","6L11"],horndrill:["3L43","4L41","5L41","6L41"],hydropump:["3E","4E","5E","6E"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],knockoff:["4T","5T"],megahorn:["3L57","4L51","5L57","6L57"],mimic:["3T"],mudshot:["5E","6E"],mudslap:["4E","4T","5E","6E"],mudsport:["3E","4E","5E","6E"],naturalgift:["4M"],peck:["3L1","4L1","5L1","5D","6L1"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psybeam:["3E","4E","5E","5D","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],signalbeam:["5E","5T","6E"],skullbash:["5E","6E"],sleeptalk:["3E","3T","4E","4M","5E","5T","6M","6E"],snore:["3T","4T","5T"],soak:["5L51","6L50"],substitute:["3T","4M","5M","6M"],supersonic:["3L10","4L7","5L7","6L7"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwhip:["3L1","4L1","5L1","6L1"],toxic:["3M","4M","5M","6M"],waterfall:["3M","3L38","4M","4L37","5M","5L37","6L37","6M"],waterpulse:["3M","4M","4L17","5L17","5D","6L17"],watersport:["3L1","4L1","5L1","6L1"],whirlpool:["4M"],drillrun:["5T"],confide:["6M"]}}, + seaking:{learnset:{agility:["3L61","4L56","5L56","6L56"],aquaring:["4L27","5L27","6L27"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bounce:["4T","5T"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M","5D"],facade:["3M","4M","5M","6M"],flail:["3L24","4L21","5L21","6L21"],frustration:["3M","4M","5M","6M"],furyattack:["3L29","4L31","5L31","6L31"],furycutter:["4T"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],hornattack:["3L15","4L11","5L11","6L11"],horndrill:["3L49","4L47","5L47","6L47"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],knockoff:["4T","5T"],megahorn:["3L69","4L63","5L72","6L1","6L72"],mimic:["3T"],mudslap:["4T"],naturalgift:["4M"],peck:["3L1","4L1","5L1","6L1"],poisonjab:["4M","4L1","5M","5L1","6L1","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5D","5T","6M"],snore:["3T","4T","5T"],soak:["5L63","6L63"],substitute:["3T","4M","5M","6M"],supersonic:["3L1","3L10","4L1","4L7","5L1","5L7","6L1","6L7"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwhip:["3L1","4L1","5L1","6L1"],toxic:["3M","4M","5M","6M"],waterfall:["3M","3L41","4M","4L40","5M","5L40","6L40","6M"],waterpulse:["3M","4M","4L17","5L17","5D","6L17"],watersport:["3L1","4L1","5L1","6L1"],whirlpool:["4M"],signalbeam:["5T"],drillrun:["5T"],confide:["6M"]}}, + staryu:{learnset:{blizzard:["3M","4M","5M","6M"],brine:["4M","5L36","6L36"],bubblebeam:["3L28","4L28","5L28","6L22"],camouflage:["3L19","4L19","5L19","6L15"],cosmicpower:["3L42","4L51","5L55","3S0","6L48"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gravity:["4T","5T"],gyroball:["4M","4L37","5M","5L37","6L30","6M"],hail:["3M","4M","5M","6M"],harden:["3L1","4L1","5L1","6L1"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L46","4L55","5L60","3S0","6L52"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5D","5T"],lightscreen:["3M","3L37","4M","4L42","5M","5L42","3S0","6L33","6M"],magiccoat:["4T","5T"],mimic:["3T"],minimize:["3L33","4L33","5L33","3S0","6L25"],naturalgift:["4M"],painsplit:["4T","5T"],powergem:["4L46","5L51","6L43"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rapidspin:["3L10","4L10","5L10","3S1","6L10"],recover:["3L15","4L15","5L15","3S1","6L12"],recycle:["4M","5D","5T"],reflect:["3M","4M","5M","6M"],reflecttype:["5L46","6L40"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["4T"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3L24","3T","4L24","4T","5L24","6L18"],tackle:["3L1","4L1","5L1","3S1","6L1"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],waterfall:["3M","4M","5M","6M"],watergun:["3L6","4L6","5L6","5D","3S1","6L6"],waterpulse:["3M","4M"],whirlpool:["4M"],dazzlinggleam:["6M"],confide:["6M"]}}, + starmie:{learnset:{avalanche:["4M"],blizzard:["3M","4M","5M","6M"],brine:["4M"],confuseray:["3L33","4L28","5L28","6L22"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],gyroball:["4M","5M","6M"],hail:["3M","4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","3S0","6M"],icywind:["3T","4T","5T"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],rapidspin:["3L1","4L1","5L1","6L1"],recover:["3L1","4L1","5L1","3S0","6L1"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["4T"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3L1","3T","4L1","4T","5L1","6L1"],telekinesis:["5M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],twister:["4T"],waterfall:["3M","4M","5M","3S0","6M"],watergun:["3L1","4L1","5L1","6L1"],waterpulse:["3M","4M"],whirlpool:["4M"],wonderroom:["5T"],hydropump:["6L1"],dazzlinggleam:["6M"],confide:["6M"]}}, + mimejr:{learnset:{attract:["4M","5M","6M"],barrier:["4L1","5L1","6L1"],batonpass:["4L46","5L46","6L46"],brickbreak:["4M","5M","6M"],calmmind:["4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],charm:["4E","5E","6E"],confuseray:["4E","5E","6E"],confusion:["4L1","5L1","6L1"],copycat:["4L4","5L4","6L4"],doubleslap:["4L15","5L15","6L11"],doubleteam:["4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["4M","5M","6M"],encore:["4L11","5L11","6L18"],endure:["4M"],facade:["4M","5M","6M"],fakeout:["4E","5E","6E"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],futuresight:["4E","5E","6E"],grassknot:["4M","5M","6M"],headbutt:["4T"],healingwish:["4E","5E","6E"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],hypnosis:["4E","5E","6E"],icywind:["5E","5T","6E"],lightscreen:["4M","4L22","5M","5L22","6L22","6M"],magiccoat:["4T","5T"],magicroom:["5E","5T","6E"],meditate:["4L8","5L8","6L8"],mimic:["4E","4L18","5E","5L18","6L15","6E"],mudslap:["4T"],nastyplot:["4E","5E","6E"],naturalgift:["4M"],powersplit:["5E","6E"],protect:["4M","5M","6M"],psybeam:["4L25","5L25","6L25"],psychic:["4M","4L39","5M","5L39","6L39","6M"],psychup:["4E","4M","5M","6M"],psyshock:["5M","6M"],raindance:["4M","5M","6M"],recycle:["4M","4L32","5L32","5T","6L32"],reflect:["4M","4L22","5M","5L22","6L22","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roleplay:["4L43","4T","5L43","5T","6L43"],round:["5M","6M"],safeguard:["4M","4L50","5M","5L50","6L50","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T","6M"],snatch:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],substitute:["4M","4L29","5M","5L29","6L29","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],taunt:["4M","5M","6M"],teeterdance:["4E","5E","6E"],telekinesis:["5M"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderwave:["4M","5M","6M"],tickle:["4L1","5L1","6L1"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4E","4L36","4T","5E","5L36","5T","6L36","6E"],trickroom:["4M","5M","6M"],uproar:["4T","5T"],wakeupslap:["4E","5E","6E"],covet:["5T"],wonderroom:["5T"],infestation:["6M"],confide:["6M"]}}, + mrmime:{learnset:{aerialace:["4M","5M","6M"],attract:["3M","4M","5M","6M"],barrier:["3L1","4L1","5L1","5D","6L1"],batonpass:["3L49","3L47","4L46","5L46","6L46"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],confuseray:["4E","5E","6E"],confusion:["3L5","4L1","5L1","6L1"],copycat:["4L4","5L4","6L4"],counter:["3T"],doubleedge:["3T"],doubleslap:["3L17","3L15","4L15","5L15","6L11"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],encore:["3L25","3L26","4L11","5L11","3S0","6L18"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],fakeout:["3E","4E","5E","6E"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],followme:["3S0"],frustration:["3M","4M","5M","6M"],futuresight:["3E","4E","5E","6E"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],guardswap:["4L1","5L1","6L1"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],hypnosis:["3E","4E","5E","6E"],icepunch:["3T","4T","5T"],icywind:["5E","5T","6E"],irondefense:["4T","5T"],lightscreen:["3M","3L21","3L19","4M","4L22","5M","5L22","6L22","6M"],magicalleaf:["3L22","4L1","5L1","6L1"],magiccoat:["4T","5T"],magicroom:["5E","5T","6E"],meditate:["3L13","3L12","4L8","5L8","6L8"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3E","3T","4E","4L18","5E","5L18","6L15","6E"],mudslap:["3T","4T"],nastyplot:["4E","5E","6E"],naturalgift:["4M"],nightmare:["3T"],payback:["4M","5M","6M"],powersplit:["5E","6E"],powerswap:["4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],psybeam:["3L29","4L25","5L25","6L25"],psychic:["3M","3L45","3L43","4M","4L39","5M","5L39","3S0","6L39","6M"],psychup:["3E","3T","4E","4M","5M","6M"],psyshock:["5M","6M"],psywave:["5L15","6L15"],quickguard:["5L1","6L1"],raindance:["3M","4M","5M","6M"],recycle:["3L33","4M","4L32","5L32","5T","6L32"],reflect:["3M","3L21","3L19","4M","4L22","5M","5L22","6L22","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["3L41","3L40","4L43","4T","5L43","5T","6L43"],round:["5M","6M"],safeguard:["3M","3L53","3L50","4M","4L50","5M","5L50","6L50","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5D","5T"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],substitute:["3L9","3T","3L8","4M","4L29","5M","5L29","6L29","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],teeterdance:["4E","5E","5D","6E"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T","3S0"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["3E","3L37","3L36","4E","4L36","4T","5E","5L36","5T","6L36","6E"],trickroom:["4M","5M","6M"],wakeupslap:["4E","5E","6E"],wideguard:["5L1","6L1"],zenheadbutt:["4T","5T"],covet:["5T"],foulplay:["5T"],wonderroom:["5T"],mistyterrain:["6L1"],infestation:["6M"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + scyther:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L21","4L17","5L17","5S2","6L17"],airslash:["4L53","5L53","6L50"],attract:["3M","4M","5M","6M"],batonpass:["3E","4E","5E","5D","6E"],brickbreak:["4M","5M","6M"],bugbite:["4T","5T"],bugbuzz:["4E","5E","6E"],captivate:["4M"],counter:["3E","3T","4E","5E","6E"],cut:["3M","4M","5M","6M"],defog:["4M","5E","6E"],doubleedge:["3T"],doublehit:["4L49","5L49","6L49"],doubleteam:["3M","3L41","4M","4L37","5M","5L37","6L37","6M"],endure:["3E","3T","4E","4M","5E","6E"],facade:["3M","4M","5M","6M"],falseswipe:["3L16","4M","4L13","5M","5L13","6L13","6M"],feint:["4L61","5L61","6L61"],focusenergy:["3L6","4L5","5L5","3S0","6L5"],frustration:["3M","4M","5M","6M"],furycutter:["3L46","3T","4L25","4T","5L25","5S2","6L25"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],knockoff:["4T","5T"],leer:["3L1","4L1","5L1","3S0","6L1"],lightscreen:["3E","4E","5M","6M"],mimic:["3T"],morningsun:["3S1"],naturalgift:["4M"],nightslash:["4E","4L45","5E","5L45","6L45","6E"],ominouswind:["4T"],protect:["3M","4M","5M","6M"],pursuit:["3L11","4L9","5L9","6L9"],quickattack:["3L1","4L1","5L1","5D","3S0","6L1"],raindance:["3M","4M","5M","6M"],razorwind:["3E","4E","4L33","5E","5L33","3S1","6L33","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],reversal:["3E","4E","5E","6E"],rocksmash:["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],safeguard:["3E","4E","5M","6M"],secretpower:["3M","4M"],silverwind:["3E","4E","4M","5E","3S1","6E"],slash:["3L31","4L29","5L29","3S1","5S2","6L29"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M","5E","6M","6E"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3L36","3T","4M","4L57","5M","5L57","6L57","6M"],tailwind:["4T","5D","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uturn:["4M","5M","6M"],vacuumwave:["4L1","5L1","6L1"],wingattack:["3L26","4L21","5L21","5S2","6L21"],xscissor:["4M","4L41","5M","5L41","6L41","6M"],confide:["6M"]}}, + scizor:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],agility:["3L21","4L17","5L17","4S1","6L17"],attract:["3M","4M","5M","6M"],brickbreak:["4M","5M","6M"],bugbite:["4T","5T","5S2"],bulletpunch:["4L1","5L1","5S2","6L1"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M","6M"],defog:["4M"],doubleedge:["3T"],doublehit:["4L49","5L49","6L49"],doubleteam:["3M","3L41","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["3L16","4M","4L13","5M","5L13","6L13","6M"],feint:["4L61","5L61","6L1","6L61"],flashcannon:["4M","5M","6M"],fling:["4M","5M","6M"],focusenergy:["3L6","4L5","5L5","5S3","6L5"],frustration:["3M","4M","5M","6M"],furycutter:["3L46","3T","4L25","4T","5L25","3S0","6L25"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],irondefense:["3L41","4L37","4T","5L37","4S1","5T","6L37"],ironhead:["4L53","4T","5L53","5T","6L50"],knockoff:["4T","5T"],leer:["3L1","4L1","5L1","5S3","6L1"],lightscreen:["5M","6M"],metalclaw:["3L26","4L21","5L21","3S0","6L21"],mimic:["3T"],naturalgift:["4M"],nightslash:["4L45","5L45","6L45"],ominouswind:["4T"],protect:["3M","4M","5M","6M"],pursuit:["3L11","4L9","5L9","5S3","6L9"],quickattack:["3L1","4L1","5L1","6L1"],raindance:["3M","4M","5M","6M"],razorwind:["4L33","5L33","6L33"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],roost:["4M","5T","5S2","6M"],round:["5M","6M"],safeguard:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],silverwind:["4M"],slash:["3L31","4L29","5L29","3S0","6L29"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M","5S3","6M"],strength:["3M","4M","5M","6M"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3L36","3T","4M","4L57","5M","5L57","3S0","4S1","5S2","6L57","6M"],tailwind:["4T","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uturn:["4M","5M","6M"],venoshock:["5M","6M"],xscissor:["4M","4L41","5M","5L41","4S1","6L41","6M"],confide:["6M"]}}, + smoochum:{learnset:{attract:["3M","4M","5M","6M"],avalanche:["4M","4L31","5L35","6L35"],blizzard:["3M","3L57","4M","4L45","5M","5L48","6L48","6M"],bodyslam:["3T"],calmmind:["3M","4M","5M","6M"],captivate:["4M","5E","5D","6E"],confusion:["3L21","4L15","5L15","6L15"],copycat:["4L38","5L41","6L41"],counter:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fakeout:["3E","4E","5E","6E"],faketears:["3L37","4L25","5L28","6L28"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frostbreath:["5M","6M"],frustration:["3M","4M","5M","6M"],grassknot:["4M","5M","6M"],hail:["3M","4M","5M","6M"],healbell:["4T","5T"],heartstamp:["5L21","6L21"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3E","3T","4E","4T","5E","5T","6E"],icywind:["3T","4T","5T"],lick:["3L1","4L5","5L5","6L5"],lightscreen:["3M","4M","5M","6M"],luckychant:["4L28","5L31","6L31"],magiccoat:["4T","5T"],meanlook:["3L33","4L21","5L25","6L25"],meditate:["3E","4E","5E","6E"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],miracleeye:["4E","5E","6E"],mudslap:["3T","4T"],nastyplot:["4E","5E","6E"],naturalgift:["4M"],nightmare:["3T"],payback:["4M","5M","6M"],perishsong:["3L49","4L41","5L45","6L45"],pound:["3L1","4L1","5L1","6L1"],powdersnow:["3L13","4L11","5L11","6L11"],protect:["3M","4M","5M","6M"],psychic:["3M","3L45","4M","4L35","5M","5L38","6L38","6M"],psychup:["3E","3T","4E","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],sing:["3L25","4L18","5L18","6L18"],skillswap:["3M","4M","5D","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetkiss:["3L9","4L8","5L8","5D","6L8"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],uproar:["4T","5T"],wakeupslap:["5E","6E"],waterpulse:["3M","4M"],wish:["3E","4E","5E","6E"],zenheadbutt:["4T","5T"],covet:["5T"],magicroom:["5T"],confide:["6M"]}}, + jynx:{learnset:{attract:["3M","4M","5M","6M"],avalanche:["4M","4L33","5L39","6L39"],blizzard:["3M","3L67","4M","4L55","5M","5L60","6L60","6M"],bodyslam:["3L51","3T","4L39","5L44","6L44"],brickbreak:["3M","4M","5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],counter:["3T"],doubleedge:["3T"],doubleslap:["3L21","4L15","5L15","6L15"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],faketears:["3L41","4L25","5L28","6L28"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frostbreath:["5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],healbell:["4T","5T"],heartstamp:["5L21","6L21"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3L25","3T","4L18","4T","5L18","5T","6L18"],icywind:["3T","4T","5T"],lick:["3L1","4L1","4L5","5L1","5L5","6L1","6L5"],lightscreen:["3M","4M","5M","6M"],lovelykiss:["3L1","3L9","4L1","4L8","5L1","5L8","6L1","6L8"],magiccoat:["4T","5T"],meanlook:["3L35","4L21","5L25","6L25"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],payback:["4M","5M","6M"],perishsong:["3L57","4L49","5L55","6L1","6L55"],pound:["3L1","4L1","5L1","6L1"],powdersnow:["3L1","3L13","4L1","4L11","5L1","5L11","6L1","6L11"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],wakeupslap:["4L28","5L33","6L33"],waterpulse:["3M","4M"],wringout:["4L44","5L49","6L49"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],magicroom:["5T"],drainingkiss:["6L1"],poweruppunch:["6M"],confide:["6M"]}}, + elekid:{learnset:{attract:["3M","4M","5M","6M"],barrier:["3E","4E","5E","6E"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],counter:["3T"],crosschop:["3E","4E","5E","5D","3S0","6E"],discharge:["4L34","5L41","6L33"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T","4E","5E","6E"],electroball:["5L31","6L22"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feint:["4E","5E","6E"],firepunch:["3E","3T","4E","4T","5E","5T","3S0","6E"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M","5E","6E"],frustration:["3M","4M","5M","6M"],hammerarm:["5E","6E"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],icepunch:["3E","3T","4E","4T","5E","5T","3S0","6E"],karatechop:["3E","4E","5E","6E"],leer:["3L1","4L1","5L1","6L1"],lightscreen:["3M","3L17","4M","4L25","5M","5L26","6L26","6M"],lowkick:["4L10","4T","5L11","5T","6L8"],magnetrise:["4T","5D","5T"],meditate:["3E","4E","5E","6E"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],quickattack:["3L1","4L1","5L1","6L1"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollingkick:["3E","4E","5E","6E"],round:["5M","6M"],screech:["3L33","4L43","5L51","6L36"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M","4L19","5L21","6L15"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3L25","3T","4L16","4T","5L16","6L12"],thief:["3M","4M","5M","6M"],thunder:["3M","3L49","4M","4L46","5M","5L56","6L43","6M"],thunderbolt:["3M","3L41","4M","4L37","5M","5L46","6L40","6M"],thunderpunch:["3L9","3T","4L28","4T","5L36","5T","3S0","6L29"],thundershock:["4L7","5L6","5D","6L5"],thunderwave:["3T","4M","5M","5L19","6L19","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],covet:["5T"],dualchop:["5T"],electroweb:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + electabuzz:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],crosschop:["3S1"],counter:["3T"],discharge:["4L37","5L44","6L36"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],electroball:["5L32","6L22"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],followme:["3S1"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","3S0","6L1"],lightscreen:["3M","3L17","4M","4L25","5M","5L26","4S2","5S3","6L26","6M"],lowkick:["4L10","4T","5L11","4S2","5S3","5T","6L8"],lowsweep:["5M","6M"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],quickattack:["3L1","4L1","5L1","3S0","6L1"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],screech:["3L36","4L52","5L56","6L42"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M","4L19","5L21","4S2","5S3","6L15"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3L25","3T","4L16","4T","5L16","5S3","6L12"],thief:["3M","4M","5M","6M"],thunder:["3M","3L58","4M","4L58","5M","5L62","6L55","6M"],thunderbolt:["3M","3L47","4M","4L43","5M","5L50","3S1","6L49","6M"],thunderpunch:["3L1","3L9","3T","4L28","4T","5L38","4S2","3S0","5T","6L29"],thundershock:["4L1","4L7","5L1","5L6","6L1","6L5"],thunderwave:["3T","4M","5M","5L19","3S1","6L19","6M"],toxic:["3M","4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],covet:["5T"],dualchop:["5T"],electroweb:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + electivire:{learnset:{attract:["4M","5M","6M"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],crosschop:["4S0"],dig:["4M","5M","6M"],discharge:["4L37","5L44","4S1","6L36"],doubleteam:["4M","5M","6M"],earthquake:["4M","5M","4S0","6M"],electroball:["5L32","6L22"],endure:["4M"],facade:["4M","5M","6M"],firepunch:["4L1","4T","5L1","5T","6L1"],flamethrower:["4M","5M","6M"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],gigaimpact:["4M","4L67","5M","5L68","6L62","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icepunch:["4T","4S0","5T"],irontail:["4M","5T"],leer:["4L1","5L1","6L1"],lightscreen:["4M","4L25","5M","5L26","4S1","6L26","6M"],lowkick:["4L1","4L10","4T","5L1","5L11","5T","6L1","6L8"],lowsweep:["5M","6M"],magnetrise:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],quickattack:["4L1","5L1","6L1"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],screech:["4L52","5L56","6L42"],secretpower:["4M"],shockwave:["4M","4L19","5L21","6L15"],signalbeam:["4T","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4L16","4T","5L16","6L12"],taunt:["4M","5M","6M"],thief:["4M","5M","6M"],thunder:["4M","4L58","5M","5L62","6L55","6M"],thunderbolt:["4M","4L43","5M","5L50","4S1","6L49","6M"],thunderpunch:["4L28","4T","5L38","4S0","4S1","5T","6L29"],thundershock:["4L1","4L7","5L1","5L6","6L1","6L5"],thunderwave:["4M","5M","5L19","6L19","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],covet:["5T"],dualchop:["5T"],electroweb:["5T"],electricterrain:["6L1","6L65"],iondeluge:["6L1"],poweruppunch:["6M"],confide:["6M"]}}, + magby:{learnset:{attract:["3M","4M","5M","6M"],barrier:["3E","4E","5E","6E"],bellydrum:["4E","5E","6E"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],clearsmog:["5L19","6L19"],confuseray:["3L43","4L25","5L25","6L26"],counter:["3T"],crosschop:["3E","4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T","4E","5E","6E"],ember:["3L1","4L7","5L7","5D","6L5"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["4L16","5L16","6L12"],fireblast:["3M","3L49","4M","4L46","5M","5L49","6L43","6M"],firepunch:["3L19","3T","4L28","4T","5L34","5T","6L29"],firespin:["4L19","5L19","6L15"],flameburst:["5L28","6L22"],flamecharge:["5M","6M"],flamethrower:["3M","3L37","4M","4L37","5M","5L43","6L40","6M"],flareblitz:["4E","5E","6E"],fling:["4M","5M","6M"],focusenergy:["5E","6E"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],headbutt:["4T"],heatwave:["4T","5D","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],incinerate:["5M","6M"],irontail:["3M","4M","5E","5T","6E"],karatechop:["3E","4E","5E","6E"],lavaplume:["4L34","5L37","6L33"],leer:["3L7","4L1","5L1","6L1"],machpunch:["4E","5E","6E"],megakick:["3T"],megapunch:["3E","3T","4E","5E","6E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],screech:["3E","4E","5E","6E"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],smog:["3L13","4L1","5L1","6L1"],smokescreen:["3L25","4L10","5L10","6L8"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","3L31","4M","4L43","5M","5L46","6L36","6M"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunderpunch:["3E","3T","4E","4T","5E","5D","5T","6E"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],willowisp:["4M","5M","6M"],covet:["5T"],dualchop:["5T"],poweruppunch:["6M"],confide:["6M"],powerswap:["6E"],belch:["6E"]}}, + magmar:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],clearsmog:["5L19","6L19"],crosschop:["3S1"],confuseray:["3L49","4L25","5L26","4S2","5S3","6L26"],counter:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],ember:["3L1","4L1","4L7","5L1","5L6","6L1","6L5"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["4L16","5L16","5S3","6L12"],fireblast:["3M","3L57","4M","4L54","5M","5L62","3S1","6L55","6M"],firepunch:["3L1","3L19","3T","4L28","4T","5L38","4S2","3S0","5T","6L29"],firespin:["4L19","5L21","4S2","5S3","6L15"],flameburst:["5L32","6L22"],flamecharge:["5M","6M"],flamethrower:["3M","3L41","4M","4L41","5M","5L50","6L49","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],followme:["3S1"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],lavaplume:["4L36","5L44","6L36"],leer:["3L1","3L7","4L1","5L1","3S0","6L1"],lowkick:["4T","5T"],lowsweep:["5M","6M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],smog:["3L1","3L13","4L1","5L1","3S0","6L1"],smokescreen:["3L25","4L10","5L11","4S2","5S3","6L8"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","3L33","4M","4L49","5M","5L56","6L42","6M"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T","3S1"],toxic:["3M","4M","5M","6M"],willowisp:["4M","5M","6M"],covet:["5T"],dualchop:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + magmortar:{learnset:{attract:["4M","5M","6M"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],clearsmog:["5L19","6L19"],confuseray:["4L25","5L26","4S1","6L26"],doubleteam:["4M","5M","6M"],earthquake:["4M","5M","6M"],ember:["4L1","4L7","5L1","5L6","6L1","6L5"],endure:["4M"],facade:["4M","5M","6M"],feintattack:["4L16","5L16","6L12"],fireblast:["4M","4L58","5M","5L62","6L55","6M"],firepunch:["4L28","4T","5L38","4S1","5T","6L29"],firespin:["4L19","5L21","6L15"],flameburst:["5L32","6L22"],flamecharge:["5M","6M"],flamethrower:["4M","4L43","5M","5L50","4S0","4S1","6L49","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","4L67","5M","5L68","4S0","6L62","6M"],incinerate:["5M","6M"],irontail:["4M","5T"],lavaplume:["4L37","5L44","4S1","6L36"],leer:["4L1","5L1","6L1"],lowkick:["4T","5T"],lowsweep:["5M","6M"],mudslap:["4T"],naturalgift:["4M"],overheat:["4M","5M","6M"],protect:["4M","5M","6M"],psychic:["4M","5M","4S0","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],secretpower:["4M"],sleeptalk:["4M","5T","6M"],smog:["4L1","5L1","6L1"],smokescreen:["4L1","4L10","5L1","5L11","6L1","6L8"],snore:["4T","5T"],solarbeam:["4M","5M","4S0","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","4L52","5M","5L56","6L42","6M"],swagger:["4M","5M","6M"],taunt:["4M","5M","6M"],thief:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4L1","4T","5L1","5T","6L1"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],willowisp:["4M","5M","6M"],covet:["5T"],dualchop:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + pinsir:{learnset:{attract:["3M","4M","5M","6M"],bind:["3L7","4L4","5L4","5T","6L4"],bodyslam:["3T"],brickbreak:["3M","3L31","4M","4L21","5M","5L21","6L18","6M"],bugbite:["5E","5T","6E"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],closecombat:["4E","5E","5D","6E"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","6E"],falseswipe:["3E","4E","4M","5M","3S0","6M"],feint:["4E","5E","6E"],flail:["3E","4E","5E","6E"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focusenergy:["3L1","4L1","5L1","6L1"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furyattack:["3E","4E","5E","6E"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],guillotine:["3L37","4L47","5L47","3S0","6L47"],harden:["3L19","4L13","5L13","6L11"],headbutt:["4T"],helpinghand:["3S0"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],irondefense:["4T","5T"],knockoff:["4T","5T"],mefirst:["5E","5D","6E"],mimic:["3T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],quickattack:["4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],revenge:["3L25","4L18","5L18","6L15"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3L13","3T","4L8","5L8","6L8"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],stormthrow:["5L33","6L33"],strength:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],submission:["3L43","4L42","5L42","3S0","6L26"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4L52","4T","5E","5L52","5T","6L43","6E"],swagger:["3T","4M","5M","6M"],swordsdance:["3L49","3T","4M","4L38","5M","5L38","6L40","6M"],thief:["3M","4M","5M","6M"],thrash:["4L35","5L35","6L36"],toxic:["3M","4M","5M","6M"],vicegrip:["3L1","4L1","5L1","5D","6L1"],vitalthrow:["4L25","5L25","6L22"],xscissor:["4M","4L30","5M","5L30","6L29","6M"],confide:["6M"]}}, + tauros:{learnset:{attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T","3S2"],bulldoze:["5M","6M"],captivate:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","3S2","6M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","4L55","5M","5L63","6L63","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hornattack:["3L13","3L8","4L8","5L8","3S0","3S1","6L8"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],ironhead:["4T","5T"],irontail:["3M","4M","5D","5T"],mimic:["3T"],naturalgift:["4M"],outrage:["4T","5T"],payback:["4M","4L24","5M","5L24","6L24","6M"],protect:["3M","4M","5M","6M"],pursuit:["3L26","3L19","4L15","5L15","3S0","6L15"],rage:["3L8","3L4","4L5","5L5","5D","3S0","3S1","6L5"],raindance:["3M","4M","5M","6M"],refresh:["3S2"],rest:["3M","3L34","4M","4L19","5M","5L19","6L19","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M","5D"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scaryface:["3L19","3L13","4L11","5L11","3S0","6L11"],secretpower:["3M","4M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spite:["4T","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","3L26","4M","4L41","5M","5L48","6L48","6M"],tackle:["3L1","4L1","5L1","3S1","6L1"],tailwhip:["3L4","3L1","4L3","5L3","3S1","3S2","6L3"],takedown:["3L53","4L35","5L41","6L41"],thrash:["3L43","4L48","5L55","6L50"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],wildcharge:["5M","6M"],workup:["5M","5L29","6L29"],zenheadbutt:["4L29","4T","5L35","5T","6L35"],uproar:["5T"],confide:["6M"]}}, + magikarp:{learnset:{bounce:["4T","5D","5T","5S5"],flail:["3L30","4L30","5L30","5S5","6L30"],hydropump:["5S5"],splash:["3L1","4L1","5L1","5D","4S0","4S1","4S2","4S3","4S4","5S5","6L1"],tackle:["3L15","4L15","5L15","6L15"]}}, + gyarados:{learnset:{aquatail:["4L35","4T","5L35","5T","6L35"],attract:["3M","4M","5M","6M"],avalanche:["4M"],bite:["3L20","4L20","5L20","6L20"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4T","5T"],brine:["4M"],bulldoze:["5M","6M"],captivate:["4M"],darkpulse:["4M","5T","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragondance:["3L50","4L44","5L44","6L44"],dragonpulse:["4M","5T"],dragonrage:["3L25","4L23","5L23","6L23"],dragontail:["5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L40","4L41","5L41","6L41"],hyperbeam:["3M","3L55","4M","4L47","5M","5L47","6L47","6M"],icebeam:["3M","4M","5M","6M"],icefang:["4L32","5L32","6L32"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],ironhead:["4T","5T"],leer:["3L30","4L26","5L26","6L26"],mimic:["3T"],naturalgift:["4M"],outrage:["4T","5T"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","3L45","4M","4L38","5M","5L38","6L38","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],thrash:["3L1","4L1","5L1","6L1"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["3L35","4L29","4T","5L29","6L29"],uproar:["4T","5T"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],irontail:["5T"],confide:["6M"]}}, + lapras:{learnset:{ancientpower:["4E","4T","5E","6E"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],avalanche:["4M","5E","6E"],blizzard:["3M","4M","5M","3S0","6M"],block:["4T","5T"],bodyslam:["3L13","3T","4L18","5L18","6L18"],brine:["4M","4L37","5L37","6L37"],bulldoze:["5M","6M"],captivate:["4M"],confuseray:["3L19","4L7","5L7","5D","6L7"],curse:["3E","4E","5E","6E"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragondance:["3E","4E","5E","6E"],dragonpulse:["4M","5E","5T","6E"],dreameater:["3T","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fissure:["4E","5E","6E"],foresight:["3E","4E","5E","6E"],frostbreath:["5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["5E","6E"],gigaimpact:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],hail:["3M","4M","5M","6M"],headbutt:["4T"],healbell:["4T","5T","3S0"],hiddenpower:["3M","4M","5M","6M"],horndrill:["3E","4E","5E","5D","6E"],hydropump:["3L49","4L49","5L49","3S0","6L47"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","3L31","4M","4L32","5M","5L32","6L32","6M"],iceshard:["4L10","5L10","6L10"],icywind:["3T","4T","5D","5T"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],mimic:["3T"],mist:["3L7","4L4","5L4","6L4"],naturalgift:["4M"],nightmare:["3T"],outrage:["4T","5T"],perishsong:["3L25","4L27","5L27","6L27"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],raindance:["3M","3L37","4M","4L22","5M","5L22","3S0","6L22","6M"],refresh:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","3L43","4M","4L43","5M","5L43","6L43","6M"],secretpower:["3M","4M"],sheercold:["3L55","4L55","5L55","6L50"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sing:["3L1","4L1","5L1","6L1"],sleeptalk:["3E","3T","4E","4M","5E","5T","6M","6E"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3E","3T","4E","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],tickle:["3E","4E","5E","6E"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","4L1","5L1","6L1"],waterpulse:["3M","4M","4L14","5L14","6L14"],whirlpool:["4E","4M","5E","6E"],zenheadbutt:["4T","5T"],drillrun:["5T"],hypervoice:["5T"],confide:["6M"],freezedry:["6E"]}}, + ditto:{learnset:{transform:["3L1","4L1","5L1","6L1"]}}, + eevee:{learnset:{attract:["3M","4M","5M","4S0","5S2","6M"],batonpass:["3L36","4L36","5L36","6L33"],bite:["3L30","4L29","5L29","4S0","6L17"],bodyslam:["3T"],captivate:["4M"],charm:["3E","4E","5E","5L29","5D","6L29","6E"],covet:["4E","5E","4S0","5T","5L21","6L23","6E"],curse:["3E","4E","5E","6E"],detect:["4E","5E","6E"],dig:["3M","4M","5M","6M"],doubleedge:["3T","5L37","6L37"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","5S2","6M"],endure:["3E","3T","4E","4M","5E","6E"],facade:["3M","4M","5M","6M"],faketears:["4E","5E","6E"],flail:["3E","4E","5E","4S1","6E"],frustration:["3M","4M","5M","6M"],growl:["3L16","4L15","5L15","6L1"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["3L1","4L1","5L1","4S0","5T","6L1"],hiddenpower:["3M","4M","5M","6M"],hypervoice:["5T"],irontail:["3M","4M","4S1","5T"],lastresort:["4L50","4T","5L50","5T","6L41"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","5E","6E"],protect:["3M","4M","5M","6M"],quickattack:["3L23","4L22","5L22","4S1","6L13"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","5S2","6M"],round:["5M","6M"],sandattack:["3L8","4L8","5L8","5D","6L5"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],sing:["5S2"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],storedpower:["5E","6E"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T","5D","6L10"],synchronoise:["5E","6E"],tackle:["3L1","4L1","5L1","6L1"],tailwhip:["3L1","4L1","5L1","6L1"],takedown:["3L42","4L43","5L43","6L25"],tickle:["3E","4E","5E","6E"],toxic:["3M","4M","5M","6M"],trumpcard:["4L57","5L57","4S1","6L45"],wish:["3E","4E","5E","6E"],workup:["5M"],yawn:["4E","5E","6E"],babydolleyes:["6L9"],refresh:["6L20"],confide:["6M"]}}, + vaporeon:{learnset:{acidarmor:["3L47","4L64","5L64","6L29"],aquaring:["4L43","5L43","6L25"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],aurorabeam:["3L36","4L36","5L36","6L20"],bite:["3L30","4L29","5L29"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brine:["4M"],captivate:["4M"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],haze:["3L42","4L57","5L57","6L33"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["3L1","4L1","4T","5L1","5S0","5T","6L1"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L52","4L71","5L71","6L45"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4L50","4T","5L50","5T","6L41"],mimic:["3T"],muddywater:["4L78","5L78","6L37"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],quickattack:["3L23","4L22","5L22","6L13"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["4M","5M","6M"],round:["5M","6M"],sandattack:["3L8","4L8","5L8","5S0","6L5"],scald:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5S0","6L1"],tailwhip:["3L1","4L1","5L1","5S0","6L1"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L16","4L15","5L15","6L9"],waterpulse:["3M","4M","6L17"],whirlpool:["4M"],workup:["5M"],covet:["5T"],hypervoice:["5T"],confide:["6M"]}}, + jolteon:{learnset:{agility:["3L47","4L64","5L64","6L29"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M"],chargebeam:["4M","5M","6M"],dig:["3M","4M","5M","6M"],discharge:["4L78","5L78","6L37"],doubleedge:["3T"],doublekick:["3L30","4L29","5L29","6L17"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["3L1","4L1","4T","5L1","5S0","5T","6L1"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],lastresort:["4L50","4T","5L50","5T","6L41"],lightscreen:["4M","5M","6M"],magnetrise:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],pinmissile:["3L36","4L36","5L36","6L25"],protect:["3M","4M","5M","6M"],quickattack:["3L23","4L22","5L22","6L13"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["4M","5M","6M"],round:["5M","6M"],sandattack:["3L8","4L8","5L8","5S0","6L5"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5S0","6L1"],tailwhip:["3L1","4L1","5L1","5S0","6L1"],thunder:["3M","3L52","4M","4L71","5M","5L71","6L45","6M"],thunderbolt:["3M","4M","5M","6M"],thunderfang:["4L43","5L43","6L20"],thundershock:["3L16","4L15","5L15","6L9"],thunderwave:["3L42","3T","4M","4L57","5M","5L57","6L33","6M"],toxic:["3M","4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],workup:["5M"],covet:["5T"],hypervoice:["5T"],confide:["6M"]}}, + flareon:{learnset:{attract:["3M","4M","5M","6M"],bite:["3L30","4L29","5L29","6L17"],bodyslam:["3T"],captivate:["4M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],ember:["3L16","4L15","5L15","6L9"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","4L71","5M","5L71","6M"],firefang:["4L43","5L43","6L20"],firespin:["3L36","4L36","5L36","6L25"],flamecharge:["5M","6M"],flamethrower:["3M","3L52","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],healbell:["4T","5T"],heatwave:["4T","5T"],helpinghand:["3L1","4L1","4T","5L1","5S0","5T","6L1"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],lastresort:["4L50","4T","5L50","5T","6L41"],lavaplume:["4L78","5L78","6L37"],leer:["3L47"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],protect:["3M","4M","5M","6M"],quickattack:["3L23","4L22","5L22","6L13"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["4M","5M","6M"],round:["5M","6M"],sandattack:["3L8","4L8","5L8","5S0","6L5"],scaryface:["4L64","5L64","6L29"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],smog:["3L42","4L57","5L57","6L33"],snore:["3T","4T","5T"],strength:["4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5S0","6L1"],tailwhip:["3L1","4L1","5L1","5S0","6L1"],toxic:["3M","4M","5M","6M"],willowisp:["4M","5M","6M"],workup:["5M"],covet:["5T"],hypervoice:["5T"],flareblitz:["6L45"],confide:["6M"]}}, + espeon:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],confusion:["3L16","4L15","5L15","6L9"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["4L43","5L43","6L25"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["3L1","4L1","4T","5L1","5S1","5T","6L1"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],lastresort:["4L50","4T","5L50","5T","6L41"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],mimic:["3T"],morningsun:["3L52","4L71","5L71","3S0","6L33"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],powerswap:["4L78","5L78","6L45"],protect:["3M","4M","5M","6M"],psybeam:["3L36","4L36","5L36","3S0","6L20"],psychic:["3M","3L47","4M","4L64","5M","5L64","3S0","6L37","6M"],psychup:["3L42","3T","4M","4L57","5M","5L57","3S0","6L29","6M"],psyshock:["5M","6M"],quickattack:["3L23","4L22","5L22","6L13"],raindance:["3M","4M","5M","6M"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],sandattack:["3L8","4L8","5L8","5S1","6L5"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3L30","3T","4L29","4T","5L29","6L17"],tackle:["3L1","4L1","5L1","5S1","6L1"],tailwhip:["3L1","4L1","5L1","5S1","6L1"],telekinesis:["5M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],magicroom:["5T"],dazzlinggleam:["6M"],confide:["6M"]}}, + umbreon:{learnset:{assurance:["4L43","5L43","6L25"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M"],confuseray:["3L30","4L29","5L29","6L17"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L36","4L36","5L36","3S0","6L20"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],guardswap:["4L78","5L78","6L45"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["3L1","4L1","4T","5L1","5S1","5T","6L1"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],lastresort:["4L50","4T","5L50","5T","6L41"],meanlook:["3L42","4L57","5L57","3S0","6L37"],mimic:["3T"],moonlight:["3L52","4L71","5L71","3S0","6L33"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],pursuit:["3L16","4L15","5L15","6L9"],quickattack:["3L23","4L22","5L22","6L13"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],sandattack:["3L8","4L8","5L8","5S1","6L5"],screech:["3L47","4L64","5L64","3S0","6L29"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5S1","6L1"],tailwhip:["3L1","4L1","5L1","5S1","6L1"],taunt:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],workup:["5M"],covet:["5T"],foulplay:["5T"],hypervoice:["5T"],wonderroom:["5T"],confide:["6M"]}}, + leafeon:{learnset:{aerialace:["4M","5M","6M"],attract:["4M","5M","6M"],bulletseed:["4M"],captivate:["4M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],gigadrain:["4M","4L43","5L43","5T","6L25"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],grasswhistle:["4L57","5L57","6L17"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4L1","4T","5L1","5S0","5T","6L1"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],irontail:["4M","5T"],knockoff:["4T","5T"],lastresort:["4L50","4T","5L50","5T","6L41"],leafblade:["4L71","5L71","6L45"],magicalleaf:["4L36","5L36","6L20"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M","6M"],quickattack:["4L22","5L22","6L13"],raindance:["4M","5M","6M"],razorleaf:["4L15","5L15","6L9"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rocksmash:["4M","5M","6M"],round:["5M","6M"],sandattack:["4L8","5L8","5S0","6L5"],secretpower:["4M"],seedbomb:["4T","5T"],shadowball:["4M","5M","6M"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","4L64","5M","5L64","6L37","6M"],swagger:["4M","5M","6M"],swift:["4T"],swordsdance:["4M","4L78","5M","5L78","6L29","6M"],synthesis:["4L29","4T","5L29","5T","6L33"],tackle:["4L1","5L1","5S0","6L1"],tailwhip:["4L1","5L1","5S0","6L1"],toxic:["4M","5M","6M"],workup:["5M"],worryseed:["4T","5T"],xscissor:["4M","5M","6M"],covet:["5T"],hypervoice:["5T"],naturepower:["6M"],confide:["6M"]}}, + glaceon:{learnset:{aquatail:["4T","5T"],attract:["4M","5M","6M"],avalanche:["4M"],barrier:["4L78","5L78","6L29"],bite:["4L29","5L29","6L17"],blizzard:["4M","4L71","5M","5L71","6L45","6M"],captivate:["4M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M"],facade:["4M","5M","6M"],frostbreath:["5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["4M","4L64","5M","5L64","6L37","6M"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4L1","4T","5L1","5S0","5T","6L1"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],icefang:["4L43","5L43","6L20"],iceshard:["4L36","5L36","6L25"],icywind:["4L15","4T","5L15","5T","6L9"],irontail:["4M","5T"],lastresort:["4L50","4T","5L50","5T","6L41"],mirrorcoat:["4L57","5L57","6L33"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M","6M"],quickattack:["4L22","5L22","6L13"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rocksmash:["4M","5M","6M"],round:["5M","6M"],sandattack:["4L8","5L8","5S0","6L5"],secretpower:["4M"],shadowball:["4M","5M","6M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],tackle:["4L1","5L1","5S0","6L1"],tailwhip:["4L1","5L1","5S0","6L1"],toxic:["4M","5M","6M"],waterpulse:["4M"],workup:["5M"],covet:["5T"],hypervoice:["5T"],confide:["6M"]}}, + porygon:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L9","4L12","5L12","6L0"],blizzard:["3M","4M","5M","6M"],chargebeam:["4M","5M","6M"],conversion:["3L1","4L1","5L1","5S0","6L0"],conversion2:["3L1","4L1","5L1","6L0"],discharge:["4L40","5L40","6L0"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gravity:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],lockon:["3L32","4L45","5L45","6L0"],magiccoat:["4L56","4T","5L56","5T","6L0"],magnetrise:["4L23","5L23","5T","6L0"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],protect:["3M","4M","5M","6M"],psybeam:["3L12","4L7","5L7","5S0","6L0"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recover:["3L20","4L18","5L18","6L0"],recycle:["3L44","4M","4L34","5L34","5T","6L0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],sharpen:["3L24","4L1","5L1","5S0","6L0"],shockwave:["3M","4M"],signalbeam:["4L29","4T","5L29","5T","6L0"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5S0","6L0"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],triattack:["3L36","4L51","5L51","6L0"],trick:["4T","5T"],trickroom:["4M","5M","6M"],zapcannon:["3L48","4L62","5L62","6L0"],zenheadbutt:["4T","5T"],foulplay:["5T"],electroweb:["5T"],wonderroom:["5T"]}}, + porygon2:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L9","4L12","5L12","6L0"],blizzard:["3M","4M","5M","6M"],chargebeam:["4M","5M","6M"],conversion:["3L1","4L1","5L1","6L0"],conversion2:["3L1","4L1","5L1","6L0"],defensecurl:["3L24","3T","4L1","5L1","6L0"],discharge:["4L40","5L40","6L0"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gravity:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","4L67","5M","5L67","6L0","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],lockon:["3L32","4L45","5L45","6L0"],magiccoat:["4L56","4T","5L56","5T","6L0"],magnetrise:["4L23","5L23","5T","6L0"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],protect:["3M","4M","5M","6M"],psybeam:["3L12","4L7","5L7","6L0"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recover:["3L20","4L18","5L18","6L0"],recycle:["3L44","4M","4L34","5L34","5T","6L0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4L29","4T","5L29","5T","6L0"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L0"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],triattack:["3L36","4L51","5L51","6L0"],trick:["4T","5T"],trickroom:["4M","5M","6M"],zapcannon:["3L48","4L62","5L62","6L0"],zenheadbutt:["4T","5T"],foulplay:["5T"],electroweb:["5T"],wonderroom:["5T"]}}, + porygonz:{learnset:{aerialace:["4M","5M","6M"],agility:["4L12","5L12","6L0"],blizzard:["4M","5M","6M"],chargebeam:["4M","5M","6M"],conversion:["4L1","5L1","6L0"],conversion2:["4L1","5L1","6L0"],darkpulse:["4M","5T"],discharge:["4L40","5L40","6L0"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],embargo:["4M","4L34","5M","5L34","6L0","6M"],endure:["4M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],gravity:["4T","5T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","4L67","5M","5L67","6L0","6M"],icebeam:["4M","5M","6M"],icywind:["4T","5T"],irontail:["4M","5T"],lastresort:["4T","5T"],lockon:["4L45","5L45","6L0"],magiccoat:["4L56","4T","5L56","5T","6L0"],magnetrise:["4L23","5L23","5T","6L0"],nastyplot:["4L1","5L1","6L0"],naturalgift:["4M"],painsplit:["4T","5T"],protect:["4M","5M","6M"],psybeam:["4L7","5L7","6L0"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],psyshock:["5M","6M"],raindance:["4M","5M","6M"],recover:["4L18","5L18","6L0"],recycle:["4M","5T"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],signalbeam:["4L29","4T","5L29","5T","6L0"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],tackle:["4L1","5L1","6L0"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],triattack:["4L51","5L51","6L0"],trick:["4T","5T"],trickroom:["4M","4L1","5M","5L1","6L0","6M"],uproar:["4T","5T"],zapcannon:["4L62","5L62","6L0"],zenheadbutt:["4T","5T"],foulplay:["5T"],electroweb:["5T"],wonderroom:["5T"]}}, + omanyte:{learnset:{ancientpower:["3L49","4L37","4T","5L37","6L37"],attract:["3M","4M","5M","6M"],aurorabeam:["3E","4E","5E","6E"],bide:["5E","6E"],bite:["3L13","4L7","5L7","5D","5S0","6L7"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brine:["4M","4L28","5L28","6L28"],bubblebeam:["3E","4E","5E","5S0","6E"],captivate:["4M"],constrict:["3L1","4L1","5L1","6L1"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gyroball:["4M","5M","6M"],hail:["3M","4M","5M","6M"],haze:["3E","4E","5E","6E"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L55","4L52","5L55","6L55"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5D","5T"],irondefense:["4T","5T"],knockoff:["4E","4T","5E","5T","6E"],leer:["3L31","4L19","5L19","6L19"],mimic:["3T"],muddywater:["4E","5E","5D","6E"],mudshot:["3L25","4L25","5L25","6L25"],naturalgift:["4M"],protect:["3M","3L37","4M","4L34","5M","5L34","6L34","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockblast:["4L46","5L46","6L46"],rockpolish:["4M","5M","6M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4L16","5L16","6L16"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],shellsmash:["5L52","6L50"],slam:["3E","4E","5E","6E"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],spikes:["3E","4E","5E","6E"],stealthrock:["4M","5T"],substitute:["3T","4M","5M","6M"],supersonic:["3E","4E","5E","5S0","6E"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],tickle:["3L43","4L43","5L43","6L43"],toxic:["3M","4M","5M","6M"],toxicspikes:["4E","5E","6E"],waterfall:["3M","4M","5M","6M"],watergun:["3L19","4L10","5L10","6L10"],waterpulse:["3M","4M","5E","6E"],whirlpool:["4M","5E","6E"],withdraw:["3L1","4L1","5L1","5S0","6L1"],wringout:["4E","5E","6E"],bind:["5T"],confide:["6M"],reflecttype:["6E"]}}, + omastar:{learnset:{ancientpower:["3L55","4L37","4T","5L37","6L37"],attract:["3M","4M","5M","6M"],bite:["3L1","3L13","4L1","4L7","5L1","5L7","6L1","6L7"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brine:["4M","4L28","5L28","6L28"],captivate:["4M"],constrict:["3L1","4L1","5L1","6L1"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gyroball:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L65","4L67","5L75","6L1","6L75"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],knockoff:["4T","5T"],leer:["3L31","4L19","5L19","6L19"],mimic:["3T"],mudshot:["3L25","4L25","5L25","6L25"],mudslap:["4T"],naturalgift:["4M"],protect:["3M","3L37","4M","4L34","5M","5L34","6L34","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockblast:["4L56","5L56","6L56"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4L16","5L16","6L16"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shellsmash:["5L67","6L67"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],spikecannon:["3L40","4L40","5L40","6L40"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],tickle:["3L46","4L48","5L48","6L48"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L19","3L1","4L10","5L10","6L10"],waterpulse:["3M","4M"],whirlpool:["4M"],withdraw:["3L1","4L1","5L1","6L1"],bind:["5T"],confide:["6M"]}}, + kabuto:{learnset:{absorb:["3L13","4L6","5L6","5D","6L6"],aerialace:["3M"],ancientpower:["3L55","4L46","4T","5L46","6L46"],aquajet:["4L31","5L31","6L31"],attract:["3M","4M","5M","6M"],aurorabeam:["3E","4E","5E","6E"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brine:["4M"],bubblebeam:["3E","4E","5E","6E"],captivate:["4M"],confuseray:["3E","4E","5E","5S0","6E"],dig:["3E","3M","4E","4M","5M","5S0","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],endure:["3L37","3T","4M","4L26","5L26","6L26"],facade:["3M","4M","5M","6M"],flail:["3E","4E","5E","5D","6E"],foresight:["5E","6E"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5E","5T","6E"],hail:["3M","4M","5M","6M"],harden:["3L1","4L1","5L1","5S0","6L1"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4E","4T","5E","5T","6E"],irondefense:["4T","5T"],knockoff:["3E","4E","4T","5E","5T","6E"],leer:["3L19","4L11","5L11","6L11"],megadrain:["3L49","4L36","5L36","6L36"],metalsound:["3L43","4L41","5L41","6L41"],mimic:["3T"],mudshot:["3L25","4E","4L16","5E","5L16","6L16","6E"],mudslap:["4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rapidspin:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandattack:["3L31","4L21","5L21","6L21"],sandstorm:["3M","4M","5M","6M"],scald:["5M","6M"],scratch:["3L1","4L1","5L1","5S0","6L1"],screech:["4E","5E","6E"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5D","5T"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],wringout:["4L51","5L51","6L50"],confide:["6M"]}}, + kabutops:{learnset:{absorb:["3L1","3L13","4L1","4L6","5L1","5L6","6L1","6L6"],aerialace:["3M","4M","5M","6M"],ancientpower:["3L65","4L54","4T","5L54","6L54"],aquajet:["4L31","5L31","6L31"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],brine:["4M"],captivate:["4M"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],endure:["3L37","3T","4M","4L26","5L26","6L26"],facade:["3M","4M","5M","6M"],feint:["4L1","5L1","6L1"],frustration:["3M","4M","5M","6M"],furycutter:["3T","3L1","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],harden:["3L1","4L1","5L1","6L1"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],knockoff:["4T","5T"],leer:["3L19","3L1","4L11","4L1","5L1","5L11","6L1","6L11"],lowkick:["4T","5T"],megadrain:["3L55","4L36","5L36","6L36"],megakick:["3T"],metalsound:["3L46","4L45","5L45","6L45"],mimic:["3T"],mudshot:["3L25","4L16","5L16","6L16"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4L72","5L72","6L1","6L72"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandattack:["3L31","4L21","5L21","6L21"],sandstorm:["3M","4M","5M","6M"],scald:["5M","6M"],scratch:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],slash:["3L40","4L40","5L40","6L40"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],substitute:["3T","4M","5M","6M"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],wringout:["4L63","5L63","6L63"],xscissor:["4M","5M","6M"],naturepower:["6M"],confide:["6M"]}}, + aerodactyl:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L8","4L17","5L17","6L17"],aircutter:["4T"],ancientpower:["3L29","4L25","4T","5L25","6L25"],aquatail:["4T","5T"],assurance:["4E","5E","5D","6E"],attract:["3M","4M","5M","6M"],bite:["3L15","4L1","5L1","5D","6L1"],bulldoze:["5M","6M"],captivate:["4M"],crunch:["4L33","5L33","6L33"],curse:["3E","4E","5E","6E"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonbreath:["3E","4E","5E","6E"],dragonclaw:["3M","4M","5M","6M"],dragonpulse:["4M","5T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firefang:["4L1","5L1","5S0","6L1"],flamethrower:["3M","4M","5M","6M"],fly:["3M","4M","5M","6M"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","4L73","5M","5L81","6L81","6M"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","3L50","4M","4L57","5M","5L65","6L65","6M"],icefang:["4L1","5L1","5S0","6L1"],incinerate:["5M","6M"],ironhead:["4L49","4T","5L57","5T","6L1","6L57"],irontail:["3M","4M","5T"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],pursuit:["3E","4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","4L9","5M","5L9","6L9","6M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","4L65","5M","5L73","6L73","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roost:["4M","5E","5T","6M","6E"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scaryface:["3L36","4L1","5L1","6L1"],secretpower:["3M","4M"],skyattack:["3T","4T","5T"],skydrop:["5M","5L49","6L49","6M"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","5T"],stealthrock:["4M","5D","5T"],steelwing:["3E","3M","4E","4M","5E","5S0","6M","6E"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3L22","4L1","5L1","6L1"],swagger:["3T","4M","5M","6M"],swift:["3T"],tailwind:["4T","5E","5T","6E"],takedown:["3L43","4L41","5L41","6L41"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunderfang:["4L1","5L1","5S0","6L1"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],whirlwind:["3E","4E","5E","6E"],wingattack:["3L1","4L1","5L1","6L1"],confide:["6M"],wideguard:["6E"]}}, + munchlax:{learnset:{afteryou:["5E","5T","6E"],amnesia:["4L9","5L9","6L9"],attract:["4M","5M","6M"],blizzard:["4M","5M","6M"],bodyslam:["4L33","5L36","6L25"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],charm:["4E","5E","6E"],chipaway:["5L25","6L17"],counter:["4E","5E","6E"],curse:["4E","5E","6E"],defensecurl:["4L4","5L4","6L4"],doubleedge:["4E","5E","6E"],doubleteam:["4M","5M","6M"],earthquake:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],firepunch:["4T","5T"],flamethrower:["4M","5M","6M"],fling:["4M","4L36","5M","5L41","6L41","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],gunkshot:["4T","5T"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],icebeam:["4M","5M","6M"],icepunch:["4T","5T"],icywind:["4T","5T"],incinerate:["5M","6M"],lastresort:["4L49","4T","5L57","5T","6L1","6L57"],lick:["4E","4L12","5E","5L12","6L1","6L12","6E"],metronome:["4L1","5L1","6L1"],mudslap:["4T"],naturalgift:["4M","4L44","5E","5L49","6L49","6E"],odorsleuth:["4L1","5L1","6L1"],outrage:["4T"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],pursuit:["4E","5E","6E"],raindance:["4M","5M","6M"],recycle:["4M","4L17","5L17","5T"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["4L41","4T","5L44","6L36"],round:["5M","6M"],sandstorm:["4M","5M","6M"],screech:["4L20","5L20","6L20"],secretpower:["4M"],seedbomb:["4T","5T"],selfdestruct:["5E","6E"],shadowball:["4M","5M","6M"],shockwave:["4M"],sleeptalk:["4M","5T","6M"],snatch:["5L52","5T","6L1","6L52"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],stockpile:["4L25","5L28","6L28"],strength:["4M","5M","6M"],substitute:["4E","4M","5M","6M"],sunnyday:["4M","5M","6M"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swallow:["4L28","5L33","6L33"],tackle:["4L1","5L1","6L1"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4T","5T"],toxic:["4M","5M","6M"],uproar:["4T","5T"],waterpulse:["4M"],whirlpool:["4M"],whirlwind:["4E","5E","6E"],workup:["5M"],zenheadbutt:["4E","4T","5E","5T","6E"],covet:["5T"],superpower:["5T"],hypervoice:["5T"],bellydrum:["6L44"],poweruppunch:["6M"],confide:["6M"],belch:["6E"]}}, + snorlax:{learnset:{afteryou:["5E","5T","6E"],amnesia:["3L6","3L5","4L9","5L9","5D","6L9"],attract:["3M","4M","5M","6M"],bellydrum:["3L15","3L13","4L17","5L17","6L44"],blizzard:["3M","4M","5M","6M"],block:["3L37","3L41","4L36","4T","5L41","5T","6L41"],bodyslam:["3L33","3T","4L33","5L36","3S0","6L25"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],charm:["3E","4E","5E","6E"],chipaway:["5L25","6L17"],counter:["3T","4E","5E","6E"],covet:["3L42","3L45","5T"],crunch:["4L44","5L49","6L49"],curse:["3E","4E","5E","3S0","6E"],defensecurl:["3L10","3T","3L9","4L4","5L4","6L4"],doubleedge:["3E","3T","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T","5D"],fissure:["3E","4E","5E","3S0","6E"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","4L49","5M","5L57","6L57","6M"],gunkshot:["4T","5T"],headbutt:["3L19","3L17","4T"],heavyslam:["5L52","6L50"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","3L51","3L53","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],ironhead:["4T","5T"],lastresort:["4T","5T"],lick:["3E","4E","4L12","5E","5L12","6L12","6E"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","5E","6E"],outrage:["4T","5T"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T"],pursuit:["4E","5E","6E"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T","5D"],refresh:["3S0"],rest:["3M","3L28","3L25","4M","4L25","5M","5L28","6L28","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3L46","3T","3L49","4L41","4T","5L44","6L36"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],selfdestruct:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","3L37","4M","4L28","5L33","5T","6L33","6M"],smackdown:["5M","6M"],snore:["3L28","3T","3L29","4L28","4T","5L28","5T","6L28"],solarbeam:["3M","4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3E","3T","4E","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],whirlwind:["4E","5E","6E"],wildcharge:["5M","6M"],workup:["5M"],yawn:["3L24","3L21","4L20","5L20","6L20"],zenheadbutt:["4T","5T"],hypervoice:["5T"],poweruppunch:["6M"],confide:["6M"],belch:["6E"]}}, + articuno:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L25","4L36","5L36","3S0","6L1"],aircutter:["4T"],ancientpower:["4L29","4T","5L29","6L1"],avalanche:["4M"],blizzard:["3M","3L73","4M","4L71","5M","5L71","6L71","6M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],extrasensory:["3S1"],facade:["3M","4M","5M","6M"],fly:["3M","4M","5M","6M"],frostbreath:["5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gust:["3L1","4L1","5L1","6L1"],hail:["3M","4M","4L85","5M","5L85","6L1","6M"],haze:["3S1"],healbell:["3S1"],hiddenpower:["3M","4M","5M","6M"],hurricane:["5L92","6L1","6L92"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","3L49","4M","4L43","5M","5L43","3S0","3S1","6L1","6M"],iceshard:["4L15","5L15","6L1"],icywind:["3T","4T","5T"],mimic:["3T"],mindreader:["3L37","4L22","5L22","3S0","6L1"],mist:["3L13","4L8","5L8","6L1"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],powdersnow:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],reflect:["3M","3L61","4M","4L50","5M","5L50","3S0","6L1","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],roost:["4M","4L57","5L57","5T","6L85","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],sheercold:["3L85","4L78","5L78","6L1","6L78"],signalbeam:["4T","5T"],skyattack:["3T","4T","5T"],skydrop:["5M","6M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4L64","4T","5L64","5T","6L1","6L1"],toxic:["3M","4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],waterpulse:["3M","4M"],freezedry:["6L1"],confide:["6M"]}}, + zapdos:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L25","4L43","5L43","3S0","6L1"],aircutter:["4T"],ancientpower:["4L29","4T","5L29","6L1"],batonpass:["3S1"],charge:["3L61","4L36","5L36","3S0","6L1"],chargebeam:["4M","5M","6M"],defog:["4M"],detect:["3L37","4L15","5L15","3S0","6L1"],discharge:["4L50","5L50","6L1"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drillpeck:["3L49","4L71","5L71","3S0","6L1","6L71"],endure:["3T","4M"],extrasensory:["3S1"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],lightscreen:["3M","3L73","4M","4L64","5M","5L64","6L1","6M"],metalsound:["3S1"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],peck:["3L1","4L1","5L1","6L1"],pluck:["4M","4L22","5M","5L22","6L1"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","4L85","5M","5L85","6L1","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],roost:["4M","4L57","5L57","5T","6L85","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skyattack:["3T","4T","5T"],skydrop:["5M","6M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5T"],thunder:["3M","3L85","4M","4L78","5M","5L78","6L78","6M"],thunderbolt:["3M","4M","5M","3S1","6M"],thundershock:["3L1","4L1","5L1","6L1"],thunderwave:["3L13","3T","4M","4L8","5M","5L8","6L1","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],zapcannon:["5L92","6L1","6L92"],confide:["6M"]}}, + moltres:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L25","4L15","5L15","3S0","6L1"],aircutter:["4T"],airslash:["4L50","5L50","6L1"],ancientpower:["4L29","4T","5L29","6L1"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],ember:["3L1","4L1","5L1","6L1"],endure:["3L37","3T","4M","4L22","5L22","3S0","6L1"],extrasensory:["3S1"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firespin:["3L13","4L8","5L8","6L1"],flamecharge:["5M","6M"],flamethrower:["3M","3L49","4M","4L36","5M","5L36","3S0","3S1","6L1","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],heatwave:["3L73","4L64","4T","5L64","5T","6L1"],hiddenpower:["3M","4M","5M","6M"],hurricane:["5L92","6L1","6L92"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],mimic:["3T"],morningsun:["3S1"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],overheat:["3M","4M","5M","6M"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],roost:["4M","4L57","5L57","5T","6L1","6L85","6M"],round:["5M","6M"],safeguard:["3M","3L61","4M","4L43","5M","5L43","3S0","6L1","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],skyattack:["3L85","3T","4L78","4T","5L78","5T","6L1","6L78"],skydrop:["5M","6M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["4M","4L71","5M","5L71","6L71","6M"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","4L85","5M","5L85","6L1","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5T"],toxic:["3M","4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],willowisp:["4M","5M","3S1","6M"],wingattack:["3L1","4L1","5L1","6L1"],confide:["6M"]}}, + dratini:{learnset:{agility:["3L36","4L25","5L25","6L25"],aquajet:["5E","6E"],aquatail:["4L31","4T","5L35","5T","6L35"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dracometeor:["4T","5T","6T"],dragonbreath:["3E","4E","5E","5D","6E"],dragondance:["3E","4E","4L45","5E","5L51","6L51","6E"],dragonpulse:["4M","5E","5T","6E"],dragonrage:["3L22","4L15","5L15","6L15"],dragonrush:["4E","4L35","5E","5L41","6L41","6E"],dragontail:["5M","5L31","6L31","6M"],endure:["3T","4M"],extremespeed:["4E","5E","6E"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],haze:["3E","4E","5E","6E"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","3L57","4M","4L55","5M","5L61","6L61","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5E","5T","6E"],leer:["3L1","4L1","5L1","6L1"],lightscreen:["3E","4E","5M","6M"],mimic:["3T"],mist:["3E","4E","5E","6E"],naturalgift:["4M"],outrage:["3L50","4L51","4T","5L55","5T","6L55"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","3L43","4M","4L41","5M","5L45","6L45","6M"],secretpower:["3M","4M"],shockwave:["3M","4M"],slam:["3L29","4L21","5L21","6L21"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3E","4E","5E","6E"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3L8","3T","4M","4L5","5M","5L5","5D","6L5","6M"],toxic:["3M","4M","5M","6M"],twister:["3L15","4L11","4T","5L11","6L11"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M","5E","5D","6E"],whirlpool:["4M"],wrap:["3L1","4L1","5L1","6L1"],bind:["5T"],confide:["6M"]}}, + dragonair:{learnset:{agility:["3L38","4L25","5L25","6L25"],aquatail:["4L33","4T","5L39","5T","6L39"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dracometeor:["4T","5T","6T"],dragondance:["4L53","5L61","6L61"],dragonpulse:["4M","5T"],dragonrage:["3L22","4L15","5L15","6L15"],dragonrush:["4L39","5L47","6L47"],dragontail:["5M","5L33","6L33","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","3L65","4M","4L67","5M","5L75","6L75","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","6L1"],lightscreen:["5M","6M"],mimic:["3T"],naturalgift:["4M"],outrage:["3L56","4L61","4T","5L67","5T","6L67"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","3L47","4M","4L47","5M","5L53","6L53","6M"],secretpower:["3M","4M"],shockwave:["3M","4M"],slam:["3L29","4L21","5L21","6L21"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3L1","3L8","3T","4M","4L1","4L5","5M","5L1","5L5","6L1","6L5","6M"],toxic:["3M","4M","5M","6M"],twister:["3L1","3L15","4L1","4L11","4T","5L1","5L11","6L1","6L11"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],wrap:["3L1","4L1","5L1","6L1"],bind:["5T"],confide:["6M"]}}, + dragonite:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L38","4L25","5L25","3S0","6L25"],aircutter:["4T"],aquatail:["4L33","4T","5L39","5T","6L39"],attract:["3M","4M","5M","6M"],bind:["5T"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],cut:["3M","4M","5M","6M"],defog:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dracometeor:["4T","5T","4S2","6T"],dragonclaw:["3M","4M","5M","6M"],dragondance:["4L53","5L61","3S1","4S2","5S3","6L61"],dragonpulse:["4M","5T"],dragonrage:["3L22","4L15","5L15","6L15"],dragonrush:["4L39","5L47","5S4","5S5","6L47"],dragontail:["5M","5L33","6L33","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","3S1","6M"],endure:["3T","4M"],extremespeed:["5S3","5S5"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","5S6","6M"],firepunch:["3T","4L1","4T","5L1","5T","5S3","6L1"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],fly:["3M","4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],healbell:["3S1"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hurricane:["5L81","6L1","6L81"],hyperbeam:["3M","3L75","4M","4L73","5M","5L75","3S1","5S6","6L75","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","6L1"],lightscreen:["5M","6M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],outrage:["3L61","4L64","4T","5L67","3S0","4S2","5T","5S3","5S6","6L67"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roost:["4M","4L1","5L1","5T","6L1","6M"],round:["5M","6M"],safeguard:["3M","3L47","4M","4L47","5M","5L53","3S0","5S4","5S5","5S6","6L53","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],shockwave:["3M","4M"],skydrop:["5M","6M"],slam:["3L29","4L21","5L21","6L21"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M","6M"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5T"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","4S2","6M"],thunderpunch:["3T","4L1","4T","5L1","5T","5S4","6L1"],thunderwave:["3L1","3L8","3T","4M","4L1","4L5","5M","5L1","5L5","6L1","6L5","6M"],toxic:["3M","4M","5M","6M"],twister:["3L1","3L15","4L1","4L11","4T","5L1","5L11","6L1","6L11"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],wingattack:["3L55","4L55","5L55","3S0","5S4","5S5","6L55"],wrap:["3L1","4L1","5L1","6L1"],poweruppunch:["6M"],confide:["6M"]}}, + mewtwo:{learnset:{aerialace:["3M","4M","5M","6M"],amnesia:["3L77","3L99","4L57","5L50","6L79"],aquatail:["4T","5T"],aurasphere:["4L100","5L93","5S0","6L1"],avalanche:["4M"],barrier:["3L11","4L8","5L1","6L1"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],chargebeam:["4M","5M","6M"],confusion:["3L1","4L1","5L1","6L1"],counter:["3T"],disable:["3L1","4L1","5L1","6L1"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],electroball:["5S0"],embargo:["4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],futuresight:["3L44","3L88","4L22","5L15","6L1"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],guardswap:["4L64","5L57","6L1"],hail:["3M","4M","5M","6M"],headbutt:["4T"],healpulse:["5S1"],hiddenpower:["3M","4M","5M","6M"],hurricane:["5S1"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","5S1","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],lightscreen:["3M","4M","5M","6M"],lowkick:["4T","5T"],lowsweep:["5M","6M"],magiccoat:["4T","5T"],mefirst:["4L79","5L71","6L93"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],miracleeye:["4L36","5L29","6L1"],mist:["3L55","3L22","4L43","5L36","6L86"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],poisonjab:["4M","5M","6M"],powerswap:["4L64","5L57","6L1"],protect:["3M","4M","5M","6M"],psychic:["3M","3L66","4M","4L71","5M","5L64","6L1","6M"],psychocut:["4L50","5L43","6L1"],psychup:["3L33","3T","3L77","4M","4L29","5M","5L22","6L1","6M"],psyshock:["5M","6M"],psystrike:["5L100","5S0","5S1","6L100"],raindance:["3M","4M","5M","6M"],recover:["3L88","3L44","4L86","5L79","6L1"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],safeguard:["3M","3L99","3L55","4M","4L93","5M","5L86","6L1","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3T"],shadowball:["3M","4M","5M","5S0","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3L22","3T","3L33","4L15","4T","5L8","6L1"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],waterpulse:["3M","4M"],willowisp:["4M","5M","6M"],zenheadbutt:["4T","5T"],foulplay:["5T"],magicroom:["5T"],wonderroom:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + mew:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],aircutter:["4T"],allyswitch:["5M"],amnesia:["4L60","5L60","4S5","6L0"],ancientpower:["3L50","4L50","4T","5L50","4S2","6L0"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],aurasphere:["4L100","5L100","4S2","4S3","4S4","4S5","4S6","4S7","6L0"],avalanche:["4M"],barrier:["4L40","5L40","4S3","6L0"],batonpass:["4L80","5L80","6L0"],blizzard:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],bounce:["4T","5T"],brickbreak:["3M","4M","5M","6M"],brine:["4M"],bugbite:["4T","5T"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],bulletseed:["3M","4M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],counter:["3T"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T","6M"],defensecurl:["3T"],defog:["4M"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonclaw:["3M","4M","5M","6M"],dragonpulse:["4M","5T"],dragontail:["5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],embargo:["4M","5M","6M"],endeavor:["4T","5T"],endure:["3T","4M"],energyball:["4M","5M","6M"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],feintattack:["3T"],fakeout:["3T"],falseswipe:["4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamecharge:["5M","6M"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],fling:["4M","5M","6M"],fly:["3M","4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frostbreath:["5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gastroacid:["4T","5T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],gunkshot:["4T","5T"],gyroball:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],healbell:["4T","5T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],hypnosis:["3T","4S8"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irondefense:["4T","5T"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M","6M"],lowkick:["4T","5T"],lowsweep:["5M","6M"],magiccoat:["4T","5T"],magnetrise:["4T","5T"],mefirst:["4L70","5L70","6L0"],megakick:["3T"],megapunch:["3L20","3T","4L10","5L10","3S0","4S4","6L0"],metronome:["3L30","3T","4L20","5L20","3S0","4S2","4S3","4S4","4S5","4S6","4S7","6L0"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L90","5L90","6L0"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3T"],ominouswind:["4T"],outrage:["4T","5T"],overheat:["3M","4M","5M","6M"],painsplit:["4T","5T"],payback:["4M","5M","6M"],pluck:["4M","5M"],poisonjab:["4M","5M","6M"],pound:["3L1","4L1","5L1","3S0","3S1","4S9","6L0"],protect:["3M","4M","5M","6M"],psychic:["3M","3L40","4M","4L30","5M","5L30","4S7","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],quash:["5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],reflecttype:["5L1","6L0"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","4S8","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["3T","4T","5T"],rollout:["3T","4T"],roost:["4M","5T","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],sandstorm:["3M","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],selfdestruct:["3T"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],silverwind:["4M"],skillswap:["3M","4M","5T"],skyattack:["3T","4T","5T"],skydrop:["5M","6M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5M","6M"],smackdown:["5M","6M"],snarl:["5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],softboiled:["3T"],solarbeam:["3M","4M","5M","6M"],spite:["4T","5T"],stealthrock:["4M","5T"],steelwing:["3M","4M","6M"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","4S8","5T"],tailwind:["4T","5T"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],teleport:["4S2","4S3","4S4","4S5","4S6","4S7","4S8"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],transform:["3L10","4L1","5L1","3S0","3S1","4S6","6L0"],trick:["4T","5T"],trickroom:["4M","5M","6M"],twister:["4T"],uproar:["4T","5T"],uturn:["4M","5M","6M"],vacuumwave:["4T"],venoshock:["5M","6M"],voltswitch:["5M","6M"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],wildcharge:["5M","6M"],willowisp:["4M","5M","6M"],workup:["5M"],worryseed:["4T","5T"],xscissor:["4M","5M","6M"],zapcannon:["3T"],zenheadbutt:["4T","5T"],covet:["5T"],dualchop:["5T"],drillrun:["5T"],foulplay:["5T"],electroweb:["5T"],hypervoice:["5T"],bind:["5T"],afteryou:["5T"],magicroom:["5T"],wonderroom:["5T"],naturepower:["6M"],dazzlinggleam:["6M"],infestation:["6M"],confide:["6M"],poweruppunch:["6M"]}}, + chikorita:{learnset:{ancientpower:["3E","4E","4T","5E","6E"],aromatherapy:["4E","4L42","5E","5L42","6E"],attract:["3M","4M","5M","6M"],bodyslam:["3L29","3T","4L34","4E","5E","5L34","6E"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3E","3T","4E","5E","6E"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flail:["3E","4E","5E","6E"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["4T"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M","6M"],grasspledge:["5T","6T"],grasswhistle:["3E","4E","5E","6E"],growl:["3L1","4L1","5L1","3S0","6L0"],headbutt:["4T"],healpulse:["5E","6E"],hiddenpower:["3M","4M","5M","6M"],ingrain:["3E","4E","5E","6E"],irontail:["3M","4M","5T"],leafstorm:["4E","5E","6E"],leechseed:["3E","4E","5E","6E"],lightscreen:["3M","3L36","4M","4L31","5M","5L31","6L0","6M"],magicalleaf:["4L20","5L20","6L0"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","4L23","5L23","6L0"],naturepower:["3E","4E","5E","6E"],poisonpowder:["3L15","4L9","5L9","6L0"],protect:["3M","4M","5M","6M"],razorleaf:["3L8","4L6","5L6","3S0","6L0"],reflect:["3M","3L12","4M","4L17","5M","5L17","6L0","6M"],refresh:["5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","3L43","4M","4L39","5M","5L39","6L0","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","3L50","4M","4L45","5M","5L45","6L0","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["4L28","5L28","6L0"],swordsdance:["3T","4M","5M","6M"],synthesis:["3L22","4L12","4T","5L12","5T","6L0"],tackle:["3L1","4L1","5L1","3S0","6L0"],toxic:["3M","4M","5M","6M"],vinewhip:["3E","4E","5E","6E"],worryseed:["4T","5T"],wringout:["4E","5E","6E"]}}, + bayleef:{learnset:{ancientpower:["4T"],aromatherapy:["4L50","5L50","6L0"],attract:["3M","4M","5M","6M"],bodyslam:["3L31","3T","4L40","5L40","6L0"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M","6M"],grasspledge:["5T","6T"],growl:["3L1","4L1","5L1","6L0"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],lightscreen:["3M","3L39","4M","4L36","5M","5L36","6L0","6M"],magicalleaf:["4L22","5L22","6L0"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","4L26","5L26","6L0"],poisonpowder:["3L15","4L1","4L9","5L1","5L9","6L0","6L0"],protect:["3M","4M","5M","6M"],razorleaf:["3L1","3L8","4L1","4L6","5L1","5L6","6L0","6L0"],reflect:["3M","3L1","3L12","4M","4L18","5M","5L18","6L0","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","3L47","4M","4L46","5M","5L46","6L0","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","3L55","4M","4L54","5M","5L54","6L0","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["4L32","5L32","6L0"],swordsdance:["3T","4M","5M","6M"],synthesis:["3L23","4L12","4T","5L12","5T","6L0"],tackle:["3L1","4L1","5L1","6L0"],toxic:["3M","4M","5M","6M"],worryseed:["4T","5T"]}}, + meganium:{learnset:{ancientpower:["4T"],aromatherapy:["4L60","5L60","6L0"],attract:["3M","4M","5M","6M"],bodyslam:["3L31","3T","4L46","5L46","6L0"],bulldoze:["5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragontail:["5M","6M"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frenzyplant:["4T","5T","6T"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],grasspledge:["5T","6T"],growl:["3L1","4L1","5L1","6L0"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],lightscreen:["3M","3L41","4M","4L40","5M","5L40","6L0","6M"],magicalleaf:["4L22","5L22","6L0"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","4L26","5L26","6L0"],outrage:["4T","5T"],petaldance:["4L32","5L32","6L0"],poisonpowder:["3L15","4L1","4L9","5L1","5L9","6L0","6L0"],protect:["3M","4M","5M","6M"],razorleaf:["3L1","3L8","4L1","4L6","5L1","5L6","6L0","6L0"],reflect:["3M","3L1","3L12","4M","4L18","5M","5L18","6L0","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","3L51","4M","4L54","5M","5L54","6L0","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","3L61","4M","4L66","5M","5L66","6L0","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["4L34","5L34","6L0"],swordsdance:["3T","4M","5M","6M"],synthesis:["3L23","4L12","4T","5L12","5T","6L0"],tackle:["3L1","4L1","5L1","6L0"],toxic:["3M","4M","5M","6M"],worryseed:["4T","5T"],petalblizzard:["6L0"]}}, + cyndaquil:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M"],covet:["3E","4E","5E","5T","6E"],crushclaw:["3E","4E","5E","6E"],cut:["3M","4M","5M","6M"],defensecurl:["3T","4L22","5L22","6L0"],dig:["3M","4M","5M","6M"],doubleedge:["3T","4E","4L46","5E","5L55","6E"],doublekick:["4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],ember:["3L12","4L10","5L10","6L0"],endure:["3T","4M"],eruption:["4L49","5L58","6L0"],extrasensory:["4E","5E","6E"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepledge:["5T","6T"],flameburst:["5E","6E"],flamecharge:["5M","5L28","6L0","6M"],flamethrower:["3M","3L46","4M","4L37","5M","5L40","6L0","6M"],flamewheel:["3L27","4L19","5L19","6L0"],flareblitz:["4E","5E","6E"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],furyswipes:["3E","4E","5E","6E"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],howl:["3E","4E","5E","6E"],incinerate:["5M","6M"],inferno:["5L46","6L0"],lavaplume:["4L31","5L37","6L0"],leer:["3L1","4L1","5L1","3S0","6L0"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],naturepower:["5E","6E"],overheat:["3M","4M","5M","6M"],protect:["3M","4M","5M","6M"],quickattack:["3E","3L19","4E","4L13","5E","5L13","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],reversal:["3E","4E","5E","6E"],rollout:["3T","4L40","4T","5L49","6L0"],round:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],smokescreen:["3L6","4L4","4L6","5L6","3S0","6L0"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3L36","3T","4L28","5L31","6L0"],tackle:["3L1","4L1","5L1","3S0","6L0"],thrash:["3E","4E","5E","6E"],toxic:["3M","4M","5M","6M"],wildcharge:["5M","6M"],willowisp:["4M","5M","6M"]}}, + quilava:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],cut:["3M","4M","5M","6M"],defensecurl:["3T","4L24","5L24","6L0"],dig:["3M","4M","5M","6M"],doubleedge:["3T","4L53","5L64","6L0"],doubleteam:["3M","4M","5M","6M"],ember:["3L12","4L10","5L10","6L0"],endure:["3T","4M"],eruption:["4L57","5L68","6L0"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepledge:["5T","6T"],flamecharge:["5M","5L35","6L0","6M"],flamethrower:["3M","3L54","4M","4L42","5M","5L46","6L0","6M"],flamewheel:["3L31","4L20","5L20","6L0"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],incinerate:["5M","6M"],inferno:["5L53","6L0"],lavaplume:["4L35","5L42","6L0"],leer:["3L1","4L1","5L1","6L0"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],protect:["3M","4M","5M","6M"],quickattack:["3L21","4L13","5L13","6L0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollout:["3T","4L46","4T","5L57","6L0"],round:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],smokescreen:["3L1","3L6","4L1","4L4","4L6","5L1","5L6","6L0","6L0"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3L42","3T","4L31","5L31","6L0"],tackle:["3L1","4L1","5L1","6L0"],toxic:["3M","4M","5M","6M"],wildcharge:["5M","6M"],willowisp:["4M","5M","6M"],covet:["5T"]}}, + typhlosion:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],blastburn:["4T","5T","6T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M","6M"],defensecurl:["3T","4L24","5L24","6L0"],dig:["3M","4M","5M","6M"],doubleedge:["3T","4L53","5L69","6L0"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],ember:["3L1","3L12","4L1","4L10","5L1","5L10","6L0","6L0"],endure:["3T","4M"],eruption:["4L57","5L74","6L0"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepledge:["5T","6T"],firepunch:["3T","4T","5T"],flamecharge:["5M","5L35","6L0","6M"],flamethrower:["3M","3L60","4M","4L42","5M","5L48","3S0","6L0","6M"],flamewheel:["3L31","4L20","5L20","3S0","6L0"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],gyroball:["4M","4L1","5M","5L1","6L0","6M"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],inferno:["5L56","6L0"],lavaplume:["4L35","5L43","6L0"],leer:["3L1","4L1","5L1","6L0"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],protect:["3M","4M","5M","6M"],quickattack:["3L21","4L13","5L13","3S0","6L0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["3T","4L46","4T","5L61","6L0"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],smokescreen:["3L1","3L6","4L1","4L4","4L6","5L1","5L6","6L0","6L0"],snore:["3T","4T","5T"],solarbeam:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3L45","3T","4L31","4T","5L31","3S0","6L0"],tackle:["3L1","4L1","5L1","6L0"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],wildcharge:["5M","6M"],willowisp:["4M","5M","6M"],covet:["5T"]}}, + totodile:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["3E","4E","4T","5E","6E"],aquajet:["4E","5E","6E"],aquatail:["4L36","4T","4L41","5L43","5T","6L0"],attract:["3M","4M","5M","6M"],bite:["3L20","4L13","5L13","6L0"],blizzard:["3M","4M","5M","6M"],block:["5E","5T","6E"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],chipaway:["5L29","6L0"],counter:["3T"],crunch:["3E","4E","4L27","5E","5L27","6E"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonclaw:["3E","4E","5M","6M"],dragondance:["4E","5E","6E"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],faketears:["5E","6E"],flail:["4L22","5L22","6L0"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hydropump:["3E","3L52","4E","4L43","4L48","5E","5L50","6E"],icebeam:["3M","4M","5M","6M"],icefang:["4L20","5L20","6L0"],icepunch:["3T","4E","4T","5E","5T","6E"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","3S0","6L0"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],metalclaw:["4E","5E","6E"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3E","4E","5E","6E"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],rage:["3L7","4L8","5L8","3S0","6L0"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],scaryface:["3L27","4L15","5L15","6L0"],scratch:["3L1","4L1","5L1","3S0","6L0"],screech:["3L43","4L34","5L36","6L0"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],slash:["3L35","4L29","5L34","6L0"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M","6M"],superpower:["4L41","4L43","5L48","5T","6L0"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],thrash:["3E","4E","4L22","4L36","5E","5L41","6E"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],waterfall:["3M","4M","5M","6M"],watergun:["3L13","4L6","5L6","6L0"],waterpledge:["5T","6T"],waterpulse:["3M","4M","5E","6E"],watersport:["3E","4E","5E","6E"],whirlpool:["4M"]}}, + croconaw:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["4T"],aquatail:["4L42","4T","4L48","5L51","5T","6L0"],attract:["3M","4M","5M","6M"],bite:["3L21","4L13","5L13","6L0"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],chipaway:["5L33","6L0"],counter:["3T"],crunch:["4L30","5L30","6L0"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonclaw:["5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flail:["4L24","5L24","6L0"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hydropump:["3L55","4L51","4L57","5L60","6L0"],icebeam:["3M","4M","5M","6M"],icefang:["4L21","5L21","6L0"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","6L0"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],rage:["3L1","3L7","4L8","5L8","6L0"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],scaryface:["3L28","4L15","5L15","6L0"],scratch:["3L1","4L1","5L1","6L0"],screech:["3L45","4L39","5L42","6L0"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],slash:["3L37","4L33","5L39","6L0"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superpower:["4L48","4L51","5L57","5T","6L0"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],thrash:["4L24","4L42","5L48","6L0"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],waterfall:["3M","4M","5M","6M"],watergun:["3L13","4L1","4L6","5L1","5L6","6L0","6L0"],waterpledge:["5T","6T"],waterpulse:["3M","4M"],whirlpool:["4M"],block:["5T"]}}, + feraligatr:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["4L30","5L30","6L0"],ancientpower:["4T"],aquatail:["4L50","4T","4L58","5L63","5T","6L0"],attract:["3M","4M","5M","6M"],avalanche:["4M"],bite:["3L21","4L13","5L13","6L0"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L37","6L0"],counter:["3T"],crunch:["4L32","5L32","6L0"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonclaw:["3M","4M","5M","6M"],dragonpulse:["4M","5T"],dragontail:["5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flail:["4L24","5L24","6L0"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hydrocannon:["4T","5T","6T"],hydropump:["3L58","4L63","4L71","5L76","6L0"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icefang:["4L21","5L21","6L0"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","6L0"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","4M","5M","6M"],rage:["3L1","3L7","4L1","4L8","5L1","5L8","6L0","6L0"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],scaryface:["3L28","4L15","5L15","6L0"],scratch:["3L1","4L1","5L1","6L0"],screech:["3L47","4L45","5L50","6L0"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],slash:["3L38","4L37","5L45","6L0"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superpower:["4L58","4T","4L63","5L71","5T","6L0"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],thrash:["4L24","4L50","5L58","6L0"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","3L13","4L1","4L6","5L1","5L6","6L0","6L0"],waterpledge:["5T","6T"],waterpulse:["3M","4M"],whirlpool:["4M"],block:["5T"]}}, + sentret:{learnset:{amnesia:["3L49","4L36","5L36","6L36"],aquatail:["4T","5T"],assist:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],batonpass:["4L39","5L39","6L39"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],charm:["4E","5E","6E"],covet:["4E","5E","5D","5T","6E"],cut:["3M","4M","5M","6M"],defensecurl:["3L4","3T","4L4","5L4","6L4"],dig:["3M","4M","5M","6M"],doubleedge:["3E","3T","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],endure:["3T","4M","5D"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusenergy:["3E","4E","5E","6E"],focuspunch:["3M","4M"],followme:["3L31","4L19","5L19","6L19"],foresight:["4L1","5L1","6L1"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],furyswipes:["3L12","4L13","5L13","6L13"],grassknot:["4M","5M","6M"],headbutt:["4T"],helpinghand:["3L17","4L16","4T","5L16","5T","6L16"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hypervoice:["4L47","5L47","5T","6L47"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5E","5T","6E"],knockoff:["4T","5T"],lastresort:["4E","4T","5E","5T","6E"],mefirst:["4L42","5L42","6L42"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","5E","6E"],protect:["3M","4M","5M","6M"],pursuit:["3E","4E","5E","6E"],quickattack:["3L7","4L7","5L7","6L7"],raindance:["3M","4M","5M","6M"],rest:["3M","3L40","4M","4L28","5M","5L28","6L28","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],reversal:["3E","4E","5E","6E"],rollout:["3T","4T"],round:["5M","6M"],scratch:["3L1","4L1","5L1","5D","6L1"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],slam:["3L24","4L25","5L25","6L25"],slash:["3E","4E","5E","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],substitute:["3E","3T","4E","4M","5M","6M"],suckerpunch:["4L31","4T","5L31","6L31"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],thief:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],trick:["3E","4E","5E","5T","6E"],uproar:["4T","5T"],uturn:["4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"],poweruppunch:["6M"],confide:["6M"]}}, + furret:{learnset:{amnesia:["3L59","4L42","5L42","6L42"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],batonpass:["4L46","5L46","6L46"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],cut:["3M","4M","5M","6M"],defensecurl:["3L1","3L4","3T","4L1","4L4","5L1","5L4","6L1","6L4"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],followme:["3L37","4L21","5L21","6L21"],foresight:["4L1","5L1","6L1"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],furyswipes:["3L12","4L13","5L13","6L13"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["4T"],helpinghand:["3L19","4L17","4T","5L17","5T","6L17"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],hypervoice:["4L56","5L56","5T","6L56"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],mefirst:["4L50","5L50","6L50"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],quickattack:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],raindance:["3M","4M","5M","6M"],rest:["3M","3L48","4M","4L32","5M","5L32","6L32","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],scratch:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],slam:["3L28","4L28","5L28","6L28"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L36","4T","5L36","6L36"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"],covet:["5T"],trick:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + hoothoot:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["4E","5E","6E"],aircutter:["4T"],airslash:["4L29","5L33","6L33"],attract:["3M","4M","5M","6M"],captivate:["4M"],confusion:["3L34","4L21","5L21","6L21"],defog:["4M","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3L48","3T","4M","4L49","5M","5L57","6L57","6M"],echoedvoice:["5M","5L25","6L25","6M"],endure:["3T","4M"],extrasensory:["4L37","5L45","6L45"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","6E"],featherdance:["3E","4E","5E","6E"],flash:["3M"],fly:["3M","4M","5M","6M"],foresight:["3L6","4L5","4L1","5L1","5D","3S0","6L1"],frustration:["3M","4M","5M","6M"],growl:["3L1","4L1","5L1","3S0","6L1"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hypnosis:["3L16","4L9","4L5","5L5","6L5"],magiccoat:["4T","5T"],mimic:["3T"],mirrormove:["3E","4E","5E","6E"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],nightshade:["4E","5E","5D","6E"],ominouswind:["4T"],peck:["3L11","4L13","4L9","5L9","6L9"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychoshift:["4L41","5L49","6L49"],psychup:["4M","5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5D","5T"],reflect:["3M","3L22","4M","4L17","5M","5L17","6L17","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","4L45","5L53","5T","6L53","6M"],round:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],silverwind:["4M"],skyattack:["3E","3T","4E","5E","5T","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3E","4E","5E","6E"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],synchronoise:["5L41","6L41"],tackle:["3L1","4L1","5L1","3S0","6L1"],tailwind:["4T","5T"],takedown:["3L28","4L25","5L29","6L29"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uproar:["4L13","5L13","5T","6L13"],whirlwind:["3E","4E","5E","6E"],wingattack:["3E","4E","5E","6E"],workup:["5M"],zenheadbutt:["4L33","4T","5L37","5T","6L37"],hypervoice:["5T"],confide:["6M"]}}, + noctowl:{learnset:{aerialace:["3M","4M","5M","6M"],aircutter:["4T"],airslash:["4L32","5L37","6L37"],attract:["3M","4M","5M","6M"],captivate:["4M"],confusion:["3L41","4L22","5L22","6L22"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3L57","3T","4M","4L57","5M","5L67","6L1","6L67","6M"],echoedvoice:["5M","5L27","6L27","6M"],endure:["3T","4M"],extrasensory:["4L42","5L52","6L52"],facade:["3M","4M","5M","6M"],flash:["3M"],fly:["3M","4M","5M","6M"],foresight:["3L1","3L6","4L1","4L5","5L1","6L1"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],hypnosis:["3L16","4L1","4L9","4L5","5L1","5L5","6L1","6L5"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],ominouswind:["4T"],peck:["3L1","3L11","4L13","4L9","5L9","6L9"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychoshift:["4L47","5L57","6L57"],psychup:["4M","5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","3L25","4M","4L17","5M","5L17","6L17","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","4L52","5L62","5T","6L62","6M"],round:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],silverwind:["4M"],skyattack:["3T","4L1","4T","5L1","5T","6L1"],sleeptalk:["3T","4M","5T","6M"],snore:["3T"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],synchronoise:["5L47","6L47"],tackle:["3L1","4L1","5L1","6L1"],tailwind:["4T","5T"],takedown:["3L33","4L27","5L32","6L32"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uproar:["4T","4L13","5L13","5T","6L13"],workup:["5M"],zenheadbutt:["4L37","4T","5L42","5T","6L42"],hypervoice:["5T"],confide:["6M"]}}, + ledyba:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","3S0","6M"],agility:["3L43","4L30","5L30","6L30"],aircutter:["4T"],attract:["3M","4M","5M","6M"],batonpass:["3L29","4L22","5L22","6L22"],bide:["3E","4E","5E","6E"],brickbreak:["3M","4M","5M","6M"],bugbite:["4E","4T","5E","5D","5T","6E"],bugbuzz:["4E","4L41","5E","5L41","6L41","6E"],captivate:["4M"],cometpunch:["3L15","4L9","5L9","5D","6L9"],dig:["3M","4M","5M","6M"],dizzypunch:["5E","6E"],doubleedge:["3L50","3T","4L38","5L38","6L38"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5E","5T","6E"],dynamicpunch:["3T"],encore:["4E","5E","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M","5E","6E"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],knockoff:["4E","4T","5E","5T","6E"],lightscreen:["3M","3L22","4M","4L14","5M","5L14","6L14","6M"],machpunch:["4L17","5L17","6L17"],megapunch:["3T"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M","6M"],psybeam:["3E","4E","5E","3S0","6E"],reflect:["3M","3L22","4M","4L14","5M","5L14","6L14","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3T","4T"],roost:["4M","5T","6M"],round:["5M","6M"],safeguard:["3M","3L22","4M","4L14","5M","5L14","6L14","6M"],screech:["4E","5E","6E"],secretpower:["3M","4M"],silverwind:["3E","4E","4M","4L25","5E","5L25","6L25","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3L8","4L6","5L6","3S0","6L6"],swagger:["3T","4M","5M","6M"],swift:["3L36","3T","4L33","4T","5L33","6L33"],swordsdance:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],tailwind:["4T","5T"],thief:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5D","5T"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + ledian:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],agility:["3L51","4L36","5L36","6L36"],aircutter:["4T"],attract:["3M","4M","5M","6M"],batonpass:["3L33","4L24","5L24","6L24"],brickbreak:["3M","4M","5M","6M"],bugbite:["4T","5T"],bugbuzz:["4L53","5L53","6L53"],captivate:["4M"],cometpunch:["3L15","4L1","4L9","5L1","5L9","6L1","6L9"],dig:["3M","4M","5M","6M"],doubleedge:["3L60","3T","4L48","5L48","6L48"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],knockoff:["4T","5T"],lightscreen:["3M","3L24","4M","4L14","5M","5L14","6L14","6M"],machpunch:["4L17","5L17","6L17"],megapunch:["3T"],mimic:["3T"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M","6M"],reflect:["3M","3L24","4M","4L14","5M","5L14","6L14","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["4M","5M","6M"],rollout:["3T"],roost:["4M","5T","6M"],round:["5M","6M"],safeguard:["3M","3L24","4M","4L14","5M","5L14","6L14","6M"],secretpower:["3M","4M"],silverwind:["4M","4L29","5L29","6L29"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],strength:["4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3L1","3L8","4L1","4L6","5L1","5L6","6L1","6L6"],swagger:["3T","4M","5M","6M"],swift:["3L42","3T","4L41","4T","5L41","6L41"],swordsdance:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],tailwind:["4T","5T"],thief:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + spinarak:{learnset:{agility:["3L45","4L33","5L33","6L33"],attract:["3M","4M","5M","6M"],batonpass:["3E","4E","5E","6E"],bodyslam:["3T"],bounce:["4T","5T"],bugbite:["4T","5D","5T"],captivate:["4M"],constrict:["3L11","4L8","5L8","6L8"],crosspoison:["5L47","6L47"],dig:["3M","4M","5M","3S0","6M"],disable:["3E","4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],electroweb:["5E","5D","5T","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furyswipes:["3L30","4L22","5L22","6L22"],gigadrain:["3M","4M","5T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],leechlife:["3L23","4L12","5L12","6L12"],mimic:["3T"],naturalgift:["4M"],nightshade:["3L17","4L15","5L15","3S0","6L15"],nightslash:["5E","6E"],pinmissile:["4L36","5L36","6L36"],poisonjab:["4E","4M","4L43","5M","5L43","6L43","6M"],poisonsting:["3L1","4L1","5L1","5D","6L1"],protect:["3M","4M","5M","6M"],psybeam:["3E","4E","5E","6E"],psychic:["3M","3L53","4M","4L40","5M","5L40","6L40","6M"],pursuit:["3E","4E","5E","6E"],ragepowder:["5E","6E"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scaryface:["3L6","4L5","5L5","6L5"],secretpower:["3M","4M"],shadowsneak:["4L19","5L19","6L19"],signalbeam:["3E","4E","4T","5E","5T","3S0","6E"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T"],solarbeam:["3M","4M","5M","6M"],sonicboom:["3E","4E","5E","6E"],spiderweb:["3L37","4L29","5L29","6L29"],stringshot:["3L1","4L1","4T","5L1","6L1"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L26","4T","5L26","6L26"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],toxicspikes:["4E","5E","6E"],twineedle:["5E","6E"],venoshock:["5M","6M"],xscissor:["5M","6M"],foulplay:["5T"],stickyweb:["6L50"],infestation:["6M"],confide:["6M"],megahorn:["6E"]}}, + ariados:{learnset:{agility:["3L53","4L37","5L37","6L37"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4T","5T"],bugbite:["4L1","4T","5L1","5T","6L1"],captivate:["4M"],constrict:["3L1","3L11","4L1","4L8","5L1","5L8","6L1","6L8"],crosspoison:["5L55","6L55"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furyswipes:["3L34","4L23","5L23","6L23"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],leechlife:["3L25","4L12","5L12","6L12"],mimic:["3T"],naturalgift:["4M"],nightshade:["3L17","4L15","5L15","6L15"],pinmissile:["4L41","5L41","6L41"],poisonjab:["4M","4L50","5M","5L50","6L50","6M"],poisonsting:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],psychic:["3M","3L63","4M","4L46","5M","5L46","6L46","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scaryface:["3L1","3L6","4L1","4L5","5L1","5L5","6L1","6L5"],secretpower:["3M","4M"],shadowsneak:["4L19","5L19","6L19"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T"],solarbeam:["3M","4M","5M","6M"],spiderweb:["3L43","4L32","5L32","6L32"],stringshot:["3L1","4L1","4T","5L1","6L1"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L28","4T","5L28","6L28"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],xscissor:["5M","6M"],foulplay:["5T"],electroweb:["5T"],venomdrench:["6L1"],fellstinger:["6L1"],stickyweb:["6L58"],infestation:["6M"],confide:["6M"]}}, + chinchou:{learnset:{agility:["4E","5E","6E"],amnesia:["3E","4E","5E","5D","6E"],aquaring:["4L39","5L42","6L42"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bounce:["4T","5T"],brine:["4M","5E","6E"],bubble:["3L1","4L1","5L1","6L12"],bubblebeam:["4L28","5L31","6L31"],captivate:["4M"],charge:["3L49","4L45","5L50","6L50"],chargebeam:["4M","5M","6M"],confuseray:["3L29","4L17","5L12","6L17"],discharge:["4L34","5L39","6L39"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],electroball:["5L28","6L28"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flail:["3E","3L13","4E","4L9","5E","5L9","6L9","6E"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],healbell:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L41","4L42","5L45","6L45"],icebeam:["3M","4M","5M","6M"],icywind:["4T","5T"],mimic:["3T"],mist:["4E","5E","6E"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psybeam:["4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],screech:["3E","4E","5E","6E"],secretpower:["3M","4M"],shockwave:["3M","4M","5E","5D","6E"],signalbeam:["4L31","4T","5L34","5T","6L34"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spark:["3L25","4L20","5L20","6L20"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],supersonic:["3L5","4L1","5L1","6L1"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],takedown:["3L37","4L23","5L23","6L23"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3L1","3T","4M","4L6","5M","5L6","5D","6L6","6M"],toxic:["3M","4M","5M","6M"],voltswitch:["5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L17","4L12","5L17","6L1"],waterpulse:["3M","4M","5E","6E"],whirlpool:["4E","4M","5E","6E"],wildcharge:["5M","6M"],iondeluge:["6L47"],dazzlinggleam:["6M"],confide:["6M"]}}, + lanturn:{learnset:{aquaring:["4L47","5L52","6L52"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bounce:["4T","5T"],brine:["4M"],bubble:["3L1","4L1","5L1","6L12"],bubblebeam:["4L30","5L35","6L35"],captivate:["4M"],charge:["3L61","4L57","5L64","6L64"],chargebeam:["4M","5M","6M"],confuseray:["3L32","4L17","5L17","6L17"],discharge:["4L40","5L47","6L47"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],electroball:["5L30","6L30"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flail:["3L13","4L9","5L9","6L9"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],healbell:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L50","4L52","5L57","6L57"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["4T","5T"],mimic:["3T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],shockwave:["3M","4M"],signalbeam:["4L35","4T","5L40","5T","6L40"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spark:["3L25","4L20","5L20","6L20"],spitup:["4L27","5L27","6L27"],stockpile:["4L27","5L27","6L27"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],supersonic:["3L1","3L5","4L1","5L1","6L1"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["4L27","5L27","6L27"],takedown:["3L43","4L23","5L23","6L23"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3L1","3T","4M","4L1","4L6","5M","5L1","5L6","6L6","6M"],toxic:["3M","4M","5M","6M"],voltswitch:["5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L17","4L12","5L12","6L1"],waterpulse:["3M","4M"],whirlpool:["4M"],wildcharge:["5M","6M"],eerieimpulse:["6L1"],iondeluge:["6L60"],dazzlinggleam:["6M"],confide:["6M"]}}, + togepi:{learnset:{afteryou:["5L53","5T","6L53"],ancientpower:["3L21","4L33","5L33","3S1","6L33"],attract:["3M","4M","5M","6M"],batonpass:["3L41","4L42","5L41","6L41"],bestow:["5L25","6L25"],bodyslam:["3T"],captivate:["4M"],charm:["3L1","4L1","5L1","3S0","6L1"],counter:["3T"],defensecurl:["3T"],doubleedge:["3L41","3T","3L37","4L46","5L45","6L45"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],echoedvoice:["5M","6M"],encore:["3L21","3L17","4L19","5L17","6L17"],endeavor:["4T","5T"],endure:["3T","4M"],extrasensory:["4E","5E","6E"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],followme:["3L26","3L25","4L24","5L21","3S1","6L21"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],futuresight:["3E","4E","5E","6E"],grassknot:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["3S1"],hiddenpower:["3M","4M","5M","6M"],incinerate:["5M","6M"],lastresort:["4L51","4T","5L49","5T","6L49"],lightscreen:["3M","4M","5M","6M"],luckychant:["4E","5E","5D","6E"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3L6","3T","3L4","4L6","5L5","3S0","5D","6L5"],mimic:["3T"],mirrormove:["3E","4E","5E","6E"],morningsun:["5E","6E"],mudslap:["3T","4T"],nastyplot:["4E","5E","6E"],naturalgift:["4M"],peck:["3E","4E","5E","6E"],present:["3E","4E","5E","6E"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychoshift:["4E","5E","6E"],psychup:["3E","3T","4E","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","3L36","3L33","4M","4L37","5M","5L37","6L37","6M"],secretpower:["3M","4M","5E","6E"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],softboiled:["3T"],solarbeam:["3M","4M","5M","6M"],storedpower:["5E","6E"],substitute:["3E","3T","4E","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetkiss:["3L11","3L9","4L10","5L9","3S0","6L9"],swift:["3T","4T"],telekinesis:["5M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],triattack:["3S1"],trick:["4T","5T"],uproar:["4T","5T","5D"],waterpulse:["3M","4M"],wish:["3L31","3L29","4L28","5L29","6L29"],workup:["5M"],yawn:["3L16","3L13","4L15","5L13","3S0","6L13"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],dazzlinggleam:["6M"],confide:["6M"]}}, + togetic:{learnset:{aerialace:["3M","4M","5M","6M"],afteryou:["5L53","5T","6L53"],aircutter:["4T"],ancientpower:["3L21","4L33","4T","5L33","6L33"],attract:["3M","4M","5M","6M"],batonpass:["3L41","4L42","5L41","6L41"],bestow:["5L25","6L25"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],charm:["3L1","4L1","5L1","6L1"],counter:["3T"],defensecurl:["3T"],defog:["4M"],doubleedge:["3L41","3T","3L37","4L46","5L45","6L45"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],echoedvoice:["5M","6M"],encore:["3L21","3L17","4L19","5L17","6L17"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],fly:["3M","4M","5M","6M"],focuspunch:["3M","4M"],followme:["3L26","3L25","4L24","5L21","6L21"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],headbutt:["4T"],healbell:["4T","5T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],lastresort:["4L51","4T","5L49","5T","6L49"],lightscreen:["3M","4M","5M","6M"],magicalleaf:["3L1","4L1","5L1","6L1"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3L6","3T","3L1","3L4","4L1","4L6","5L1","5L5","6L1","6L5"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollout:["3T","4T"],roost:["4M","5T","6M"],round:["5M","6M"],safeguard:["3M","3L36","3L33","4M","4L37","5M","5L37","6L37","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],silverwind:["4M"],skyattack:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],softboiled:["3T"],solarbeam:["3M","4M","5M","6M"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetkiss:["3L11","3L1","3L9","4L1","4L10","5L1","5L9","6L1","6L9"],swift:["3T","4T"],tailwind:["4T","5T"],telekinesis:["5M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],twister:["4T"],waterpulse:["3M","4M"],wish:["3L31","3L29","4L28","5L29","6L29"],workup:["5M"],yawn:["3L16","3L13","4L15","5L13","6L13"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],fairywind:["6L14"],dazzlinggleam:["6M"],confide:["6M"]}}, + togekiss:{learnset:{aerialace:["4M","5M","6M"],aircutter:["4T"],airslash:["4L1","5L1","5S0","6L1"],ancientpower:["4T"],attract:["4M","5M","6M"],aurasphere:["4L1","5L1","5S0","6L1"],brickbreak:["4M","5M","6M"],captivate:["4M"],defog:["4M"],doubleteam:["4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["4M","5M","6M"],echoedvoice:["5M","6M"],endeavor:["4T","5T"],endure:["4M"],extremespeed:["4L1","5L1","5S0","6L1"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],flamethrower:["4M","5M","6M"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],fly:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["4T"],healbell:["4T","5T"],heatwave:["4T","5T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],incinerate:["5M","6M"],lastresort:["4T","5T"],lightscreen:["4M","5M","6M"],magiccoat:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],present:["5S0"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],psyshock:["5M","6M"],raindance:["4M","5M","6M"],reflect:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],rocksmash:["4M","5M","6M"],rollout:["4T"],roost:["4M","5T","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],signalbeam:["4T","5T"],silverwind:["4M"],skyattack:["4L1","4T","5L1","5T","6L1"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],steelwing:["4M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],tailwind:["4T","5T"],telekinesis:["5M"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],twister:["4T"],waterpulse:["4M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],afteryou:["6L1"],dazzlinggleam:["6M"],confide:["6M"]}}, + natu:{learnset:{aerialace:["3M","4M","5M","3S0","6M"],aircutter:["4T"],allyswitch:["5M"],attract:["3M","4M","5M","6M"],batonpass:["3S0"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],confuseray:["3L40","4L23","5L23","6L23"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],drillpeck:["3E","4E","5E","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","6E"],featherdance:["3E","4E","5E","5D","6E"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["3L30","4L36","5L36","3S0","6L36"],gigadrain:["3M","4M","5D","5T"],grassknot:["4M","5M","6M"],guardswap:["4L44","5L47","6L47"],haze:["3E","4E","5E","6E"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],leer:["3L1","4L1","5L1","6L1"],lightscreen:["3M","4M","5M","6M"],luckychant:["4L12","5L12","6L12"],magiccoat:["4T","5T"],mefirst:["4L20","5L20","6L20"],mimic:["3T"],miracleeye:["4L17","5L17","6L17"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L10","4L6","5L6","5D","3S0","6L6"],ominouswind:["4L39","4T","5L44","6L44"],painsplit:["4T","5T"],peck:["3L1","4L1","5L1","6L1"],pluck:["4M","5M"],powerswap:["4L44","5L47","6L47"],protect:["3M","4M","5M","6M"],psychic:["3M","3L50","4M","4L47","5M","5L50","6L50","6M"],psychoshift:["4L33","5L33","6L33"],psychup:["3E","3T","4E","4M","5M","6M"],psyshock:["5M","6M"],quickattack:["3E","4E","5E","6E"],raindance:["3M","4M","5M","6M"],reflect:["3M","4M","5M","6M"],refresh:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5E","5T","6M","6E"],round:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],silverwind:["4M"],skillswap:["3M","4M","5E","5T","6E"],skyattack:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],steelwing:["3E","3M","4E","4M","5E","6M","6E"],storedpower:["5L39","6L39"],substitute:["3T","4M","5M","6M"],suckerpunch:["4E","4T","5E","6E"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],synchronoise:["5E","6E"],tailwind:["4T","5T"],telekinesis:["5M"],teleport:["3L20","4L9","5L9","6L9"],thief:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],wish:["3L30","4L28","5L28","6L28"],zenheadbutt:["4E","4T","5E","5T","6E"],magicroom:["5T"],dazzlinggleam:["6M"],confide:["6M"]}}, + xatu:{learnset:{aerialace:["3M","4M","5M","6M"],aircutter:["4T"],allyswitch:["5M"],attract:["3M","4M","5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],confuseray:["3L50","4L23","5L23","6L23"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["3L35","4L42","5L42","6L42"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],guardswap:["4L54","5L59","6L59"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],leer:["3L1","4L1","5L1","6L1"],lightscreen:["3M","4M","5M","6M"],luckychant:["4L12","5L12","6L12"],magiccoat:["4T","5T"],mefirst:["4L20","5L20","6L20"],mimic:["3T"],miracleeye:["4L17","5L17","6L17"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L10","4L6","5L6","6L6"],ominouswind:["4L47","4T","5L54","6L54"],painsplit:["4T","5T"],peck:["3L1","4L1","5L1","6L1"],pluck:["4M","5M"],powerswap:["4L54","5L54","6L54"],protect:["3M","4M","5M","6M"],psychic:["3M","3L65","4M","4L59","5M","5L66","6L66","6M"],psychoshift:["4L37","5L37","6L37"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],silverwind:["4M"],skillswap:["3M","4M","5T"],skyattack:["3T","4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],steelwing:["3M","4M","6M"],storedpower:["5L47","6L47"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4L27","4T","5L27","5T","6L27"],telekinesis:["5M"],teleport:["3L20","4L9","5L9","6L9"],thief:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],wish:["3L35","4L30","5L30","6L30"],zenheadbutt:["4T","5T"],foulplay:["5T"],magicroom:["5T"],dazzlinggleam:["6M"],confide:["6M"]}}, + mareep:{learnset:{afteryou:["5E","5T","6E"],agility:["5E","6E"],attract:["3M","4M","5M","6M"],bodyslam:["3E","3T","4E","5E","3S2","6E"],captivate:["4M"],charge:["3E","4E","4L23","5E","5L23","6L15","6E"],chargebeam:["4M","5M","6M"],confuseray:["5L25","6L25"],cottonguard:["5L32","6L36"],cottonspore:["3L23","4L19","5L19","3S0","6L11"],defensecurl:["3T"],discharge:["4L28","5L37","6L32"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],electroball:["5L28","6L22"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],flatter:["4E","5E","6E"],frustration:["3M","4M","5M","6M"],growl:["3L1","4L5","5L5","3S1","6L1"],headbutt:["4T"],healbell:["3S2","4T","5T"],hiddenpower:["3M","4M","5M","6M"],irontail:["3M","4M","5E","5T","6E"],lightscreen:["3M","3L30","4M","4L37","5M","5L46","6L43","6M"],magnetrise:["4T","5T"],mimic:["3T"],naturalgift:["4M"],odorsleuth:["3E","4E","5E","6E"],powergem:["4L41","5L50","6L29"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],reflect:["3E","4E","5D"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3E","4E","5M","6M"],sandattack:["4E","5E","6E"],screech:["3E","4E","5E","6E"],secretpower:["3M","4M"],shockwave:["3M","4M","5D"],signalbeam:["4L32","4T","5L41","5T","6L39"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S1","6L1"],takedown:["3E","4E","5E","5L18","6L18","6E"],thunder:["3M","3L37","4M","4L46","5M","5L55","3S0","6L46","6M"],thunderbolt:["3M","4M","5M","6M"],thundershock:["3L9","4L10","5L10","5D","3S0","3S1","3S2","6L8"],thunderwave:["3L16","3T","4M","4L14","5M","5L14","3S0","3S2","6L4","6M"],toxic:["3M","4M","5M","6M"],wildcharge:["5M","6M"],confide:["6M"],eerieimpulse:["6E"],electricterrain:["6E"]}}, + flaaffy:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],charge:["4L25","5L25","6L16"],chargebeam:["4M","5M","6M"],confuseray:["5L29","6L29"],cottonguard:["5L36","6L43"],cottonspore:["3L27","4L20","5L20","6L11"],counter:["3T"],defensecurl:["3T"],discharge:["4L31","5L42","6L38"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],electroball:["5L31","6L25"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],growl:["3L1","4L1","4L5","5L1","5L5","6L1"],headbutt:["4T"],healbell:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],lightscreen:["3M","3L36","4M","4L42","5M","5L53","6L52","6M"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],naturalgift:["4M"],powergem:["4L47","5L59","6L34"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M"],signalbeam:["4L36","4T","5L47","5T","6L47"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],takedown:["5L20","6L20"],thunder:["3M","3L45","4M","4L53","5M","5L65","6L56","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thundershock:["3L1","3L9","4L1","4L10","5L1","5L10","6L1","6L8"],thunderwave:["3L18","3T","4M","4L14","5M","5L14","6L1","6L4","6M"],toxic:["3M","4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],afteryou:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + ampharos:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],charge:["4L25","5L25","6L16"],chargebeam:["4M","5M","6M"],confuseray:["5L29","6L29"],cottonguard:["5L40","6L46"],cottonspore:["3L27","4L20","5L20","6L11"],counter:["3T"],defensecurl:["3T"],discharge:["4L34","5L48","6L40"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],electroball:["5L33","6L25"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4L1","4T","5L1","5T","6L1"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],growl:["3L1","4L1","4L5","5L1","5L5","6L1"],headbutt:["4T"],healbell:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],lightscreen:["3M","3L42","4M","4L51","5M","5L63","6L57","6M"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],naturalgift:["4M"],outrage:["4T","5T"],powergem:["4L59","5L71","6L35"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M"],signalbeam:["4L42","4T","5L55","5T","6L51"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],takedown:["5L20","6L20"],thunder:["3M","3L57","4M","4L68","5M","5L79","6L62","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3L30","3T","4L30","4T","5L30","5T","6L30"],thundershock:["3L1","3L9","4L1","4L10","5L1","5L10","6L8"],thunderwave:["3L1","3L18","3T","4M","4L1","4L14","5M","5L1","5L14","6L4","6M"],toxic:["3M","4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],afteryou:["5T"],zapcannon:["6L1"],magneticflux:["6L1"],iondeluge:["6L1"],dragonpulse:["6L1","6L65"],poweruppunch:["6M"],confide:["6M"]}}, + azurill:{learnset:{attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T","4E","5E","6E"],bounce:["5L23","5T","6L23"],bubble:["3L10","4L10","5L10","6L7"],bubblebeam:["5L13","6L13"],captivate:["4M"],charm:["3L3","4L2","5L2","6L10"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],encore:["3E","4E","5E","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],faketears:["4E","5E","6E"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T","5L16","6L16"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lightscreen:["5M","6M"],mimic:["3T"],muddywater:["5E","6E"],mudslap:["3T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],refresh:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3T"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],sing:["3E","4E","5E","6E"],slam:["3E","3L15","4E","4L15","5E","5L15","6L20","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],soak:["5E","6E"],splash:["3L1","4L1","5L1","6L1"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwhip:["3L6","4L7","5L7","6L2"],tickle:["3E","4E","5E","6E"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],waterfall:["3M","4M","5M","6M"],watergun:["3L21","4L18","5L18","6L1"],waterpulse:["3M","4M"],watersport:["5E","5L5","6L5","6E"],whirlpool:["4M"],workup:["5M"],covet:["5T"],hypervoice:["5T"],confide:["6M"]}}, + marill:{learnset:{amnesia:["3E","4E","5E","6E"],aquajet:["4E","5E","5D","6E"],aquaring:["4L23","5L23","6L28"],aquatail:["4L37","4T","5L37","5T","6L20"],attract:["3M","4M","5M","6M"],bellydrum:["3E","4E","5E","6E"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T","4E","5E","6E"],brickbreak:["3M","4M","5M","6M"],bubble:["5L1","6L1"],bubblebeam:["3L21","4L18","5L18","6L13"],captivate:["4M"],defensecurl:["3L3","3T","4L2","5L2","5D","6L10"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3L28","3T","4L27","5L27","6L23"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],futuresight:["3E","4E","5E","6E"],grassknot:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T","5L16","6L16"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L45","4L42","5L42","6L40"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5D","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lightscreen:["3E","4E","5M","6M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],muddywater:["5E","6E"],mudslap:["3T","4T"],naturalgift:["4M"],perishsong:["3E","4E","5E","6E"],present:["3E","4E","5E","6E"],protect:["3M","4M","5M","6M"],raindance:["3M","3L36","4M","4L32","5M","5L32","6L31","6M"],refresh:["4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollout:["3L15","3T","4L15","4T","5L15","6L10"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3E","3T","4E","4M","5M","6M"],superpower:["4E","4T","5E","5T","5L37","6L37","6E"],supersonic:["3E","4E","5E","6E"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],tailwhip:["3L6","4L7","5L7","6L2"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L10","4L10","5L10","6L7"],waterpulse:["3M","4M"],watersport:["5E","5L5","6L5","6E"],whirlpool:["4M"],workup:["5M"],covet:["5T"],bounce:["5T"],hypervoice:["5T"],playrough:["6L45"],poweruppunch:["6M"],confide:["6M"],camouflage:["6E"]}}, + azumarill:{learnset:{aquaring:["4L27","5L27","6L31"],aquatail:["4L47","4T","5L47","5T","6L21"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bubble:["5L1","6L1"],bubblebeam:["3L24","4L20","5L20","6L13"],bulldoze:["5M","6M"],captivate:["4M"],defensecurl:["3L1","3L3","3T","4L1","4L2","5L1","5L2","6L10"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3L34","3T","4L33","5L33","6L25"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T","5L16","6L16"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L57","4L54","5L54","6L46"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lightscreen:["5M","6M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","3L45","4M","4L40","5M","5L40","6L35","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollout:["3L15","3T","4L15","4T","5L15","6L10"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superpower:["4T","5T","5L42","6L42"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],tailwhip:["3L1","3L6","4L1","4L7","5L1","5L7","6L1","6L2"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","3L10","4L1","4L10","5L1","5L10","6L7"],waterpulse:["3M","4M"],watersport:["5L1","5L5","6L1","6L5"],whirlpool:["4M"],workup:["5M"],covet:["5T"],bounce:["5T"],hypervoice:["5T"],playrough:["6L50"],poweruppunch:["6M"],confide:["6M"]}}, + bonsly:{learnset:{attract:["4M","5M","6M"],block:["4L22","4T","5L22","5T","6L26"],brickbreak:["4M","5M","6M"],calmmind:["4M","5M","6M"],captivate:["4M"],copycat:["4L1","5L1","6L1"],curse:["5E","6E"],defensecurl:["4E","5E","6E"],dig:["4M","5M","6M"],doubleedge:["4L46","5L46","6L40"],doubleteam:["4M","5M","6M"],earthpower:["4T","5T"],endure:["4M","5E","6E"],explosion:["4M","5M","6M"],facade:["4M","5M","6M"],feintattack:["4L25","5L25","6L19"],faketears:["4L1","5L1","6L1"],flail:["4L6","5L6","6L5"],frustration:["4M","5M","6M"],harden:["4E","5E","6E"],headbutt:["4E","4T","5E","6E"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],lowkick:["4L9","4T","5L9","5T","6L8"],mimic:["4L17","5L17","6L15"],naturalgift:["4M"],protect:["4M","5M","6M"],psychup:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["4M","4L33","5M","5L33","6L29","6M"],rockthrow:["4L14","5L14","6L12"],rocktomb:["4M","4L30","5M","5L30","6L22","6M"],roleplay:["4T","5T"],rollout:["4E","4T","5E","6E"],round:["5M","6M"],sandstorm:["4M","5M","6M"],sandtomb:["4E","5E","6E"],secretpower:["4M"],selfdestruct:["4E","5E","6E"],slam:["4L38","5L38"],sleeptalk:["4M","5T","6M"],smackdown:["5M","6M"],snore:["4T","5T"],stealthrock:["4M","5E","5T","6E"],substitute:["4M","5M","6M"],suckerpunch:["4L41","4T","5L41","6L36"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],thief:["4M","5M","6M"],toxic:["4M","5M","6M"],uproar:["4T","5T"],covet:["5T"],foulplay:["5T"],afteryou:["5T"],counter:["6L33"],naturepower:["6M"],confide:["6M"]}}, + sudowoodo:{learnset:{attract:["3M","4M","5M","6M"],block:["3L33","4L22","4T","5L22","5T","6L26"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],copycat:["4L1","5L1","6L1"],counter:["3T","5L33","6L33"],curse:["5E","6E"],defensecurl:["3T","4E","5E","6E"],dig:["3M","4M","5M","6M"],doubleedge:["3L57","3T","4L46","5L46","6L40"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M","5E","6E"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],feintattack:["3L41","4L25","5L25","6L19"],firepunch:["3T","4T","5T"],flail:["3L9","4L1","4L6","5L1","5L6","5D","6L1","6L5"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],hammerarm:["4L49","5L49","6L47"],harden:["4E","5E","6E"],headbutt:["4E","4T","5E","6E"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],lowkick:["3L17","4L1","4L9","4T","5L1","5L9","5T","6L1","6L8"],megakick:["3T"],megapunch:["3T"],mimic:["3L1","3T","4L17","5L17","6L15"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3L25","3T","4M","4L33","5M","5L33","6L29","6M"],rocksmash:["3M","4M","5M","6M"],rockthrow:["3L1","4L1","4L14","5L1","5L14","6L1","6L12"],rocktomb:["3M","4M","4L30","5M","5L30","6L22","6M"],roleplay:["4T","5D","5T"],rollout:["3T","4E","4T","5E","5D","6E"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],sandtomb:["4E","5E","6E"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3E","3T","4E","5E","6E"],slam:["3L49","4L38","5L38","6L15"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5E","5T","6E"],stoneedge:["4M","5M","5L43","6L43","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L41","4T","5L41","6L36"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],torment:["4M","5M","6M"],toxic:["3M","4M","5M","6M"],woodhammer:["4L1","5L1","6L1"],covet:["5T"],foulplay:["5T"],afteryou:["5T"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + hoppip:{learnset:{acrobatics:["5M","5L28","6L28","6M"],aerialace:["3M","4M","5M","6M"],amnesia:["3E","4E","5E","6E"],aromatherapy:["4E","5E","6E"],attract:["3M","4M","5M","6M"],bounce:["4L40","4T","5L46","5D","5T","6L46"],bulletseed:["3M","4M","4L19","5L19","5D","6L19"],captivate:["4M"],confusion:["3E","4E","5E","6E"],cottonguard:["5E","6E"],cottonspore:["3L25","4L28","5L34","6L34"],defensecurl:["3T"],doubleedge:["3E","3T","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],encore:["3E","4E","5E","5D","6E"],endure:["3T","4M","5E","6E"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","4L37","5L43","5T","6L43"],grassknot:["4M","5M","6M"],headbutt:["4T"],helpinghand:["3E","4E","4T","5E","5D","5T","6E"],hiddenpower:["3M","4M","5M","6M"],leechseed:["3L20","4L22","5L22","6L22"],megadrain:["3L30","4L25","5L25","6L25"],memento:["4L43","5L49","6L49"],mimic:["3T"],naturalgift:["4M"],poisonpowder:["3L13","4L12","5L12","6L12"],protect:["3M","4M","5M","6M"],psychup:["3E","4E","5M","6M"],ragepowder:["5L31","6L31"],reflect:["3E","4E","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5E","5T","6E"],silverwind:["4M"],sleeppowder:["3L17","4L16","5L16","6L16"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],splash:["3L1","4L1","5L1","6L1"],stunspore:["3L15","4L14","5L14","6L14"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],synthesis:["3L5","4L4","4T","5L4","5D","5T","6L4"],tackle:["3L10","4L10","5L10","6L8"],tailwhip:["3L5","4L7","5L7","6L6"],toxic:["3M","4M","5M","6M"],uturn:["4M","4L31","5M","5L37","6L37","6M"],worryseed:["4E","4L34","4T","5E","5L40","5T","6L40","6E"],fairywind:["6L10"],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + skiploom:{learnset:{acrobatics:["5M","5L32","6L32","6M"],aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bounce:["4L48","4T","5L56","5T","6L56"],bulletseed:["3M","4M","4L20","5L20","6L20"],captivate:["4M"],cottonspore:["3L29","4L32","5L40","6L40"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","4L44","5L52","5T","6L52"],grassknot:["4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],leechseed:["3L22","4L24","5L24","6L24"],megadrain:["3L36","4L28","5L28","6L28"],memento:["4L52","5L60","6L60"],mimic:["3T"],naturalgift:["4M"],poisonpowder:["3L13","4L12","5L12","6L12"],protect:["3M","4M","5M","6M"],psychup:["5M","6M"],ragepowder:["5L36","6L36"],reflect:["5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],silverwind:["4M"],sleeppowder:["3L17","4L16","5L16","6L16"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],splash:["3L1","4L1","5L1","6L1"],stunspore:["3L15","4L14","5L14","6L14"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],synthesis:["3L1","3L5","4L1","4L4","4T","5L1","5L4","5T","6L1","6L4"],tackle:["3L1","3L10","4L1","4L10","5L1","5L10","6L1","6L8"],tailwhip:["3L1","3L5","4L1","4L7","5L1","5L7","6L1","6L6"],toxic:["3M","4M","5M","6M"],uturn:["4M","4L36","5M","5L44","6L44","6M"],worryseed:["4L40","4T","5L48","5T","6L48"],fairywind:["6L10"],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + jumpluff:{learnset:{acrobatics:["5M","5L34","6L34","6M"],aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bounce:["4L48","4T","5L64","5T","6L64"],bulletseed:["3M","4M","4L20","5L20","5S0","6L20"],captivate:["4M"],cottonspore:["3L33","4L32","5L44","6L44"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],falseswipe:["5S0"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","4L44","5L59","5T","6L59"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],leechseed:["3L22","4L24","5L24","5S0","6L24"],megadrain:["3L44","4L28","5L29","6L29"],memento:["4L52","5L69","6L69"],mimic:["3T"],naturalgift:["4M"],poisonpowder:["3L13","4L12","5L12","6L12"],protect:["3M","4M","5M","6M"],psychup:["5M","6M"],ragepowder:["5L39","6L39"],reflect:["5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],silverwind:["4M"],sleeppowder:["3L17","4L16","5L16","5S0","6L16"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],splash:["3L1","4L1","5L1","6L1"],stunspore:["3L15","4L14","5L14","6L14"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],synthesis:["3L1","3L5","4L1","4L4","4T","5L1","5L4","5T","6L1","6L4"],tackle:["3L1","3L10","4L1","4L10","5L1","5L10","6L1","6L8"],tailwhip:["3L1","3L5","4L1","4L7","5L1","5L7","6L1","6L6"],toxic:["3M","4M","5M","6M"],uturn:["4M","4L36","5M","5L49","6L49","6M"],worryseed:["4L40","4T","5L54","5T","6L54"],fairywind:["6L10"],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + aipom:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],agility:["3E","3L50","4E","4L29","5E","5L29","6L29","6E"],astonish:["3L13","4L8","5L8","6L8"],attract:["3M","4M","5M","6M"],batonpass:["3L18","4L11","5L11","6L11"],beatup:["3E","4E","5E","6E"],bodyslam:["3T"],bounce:["4E","4T","5E","5T","6E"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],counter:["3E","3T","4E","5E","6E"],covet:["4E","5E","5T","6E"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doublehit:["4L32","5L32","6L32"],doubleslap:["3E","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fakeout:["4E","5E","5D","6E"],firepunch:["3T","4T","5T","5D"],fling:["4M","4L36","5M","5L36","6L36","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],furyswipes:["3L31","4L18","5L18","6L18"],grassknot:["4M","5M","6M"],gunkshot:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],icepunch:["3T","4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4L43","4T","5L43","5T","6L43"],lowkick:["4T","5T"],lowsweep:["5M","6M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L39","5L39","6L39"],naturalgift:["4M"],nightmare:["3T"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],pursuit:["3E","4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],revenge:["5E","6E"],rocksmash:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],sandattack:["3L6","4L4","5L4","3S0","6L4"],scratch:["3L1","4L1","5L1","3S0","5D","6L1"],screech:["3E","3L43","4E","4L25","5E","5L25","6L25","6E"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],slam:["3E","4E","5E","6E"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spite:["3E","4E","4T","5E","5T","6E"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3L38","3T","4L22","4T","5L22","6L22"],switcheroo:["5E","6E"],tailwhip:["3L1","4L1","5L1","3S0","6L1"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],tickle:["3L25","4L15","5L15","6L15"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],waterpulse:["3M","4M"],workup:["5M"],foulplay:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + ambipom:{learnset:{acrobatics:["5M","6M"],aerialace:["4M","5M","6M"],agility:["4L29","5L29","6L29"],astonish:["4L1","4L8","5L1","5L8","6L1","6L8"],attract:["4M","5M","6M"],batonpass:["4L11","5L11","6L11"],bounce:["4T","5T"],brickbreak:["4M","5M","6M"],captivate:["4M"],cut:["4M","5M","6M"],dig:["4M","5M","6M"],doublehit:["4L32","5L32","6L32"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],firepunch:["4T","5T"],fling:["4M","4L36","5M","5L36","6L36","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],furycutter:["4T"],furyswipes:["4L18","5L18","6L18"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gunkshot:["4T","5T"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["4M","5M","6M"],icepunch:["4T","5T"],irontail:["4M","5T"],knockoff:["4T","5T"],lastresort:["4L43","4T","5L43","5T","6L43"],lowkick:["4T","5T"],lowsweep:["5M","6M"],mudslap:["4T"],nastyplot:["4L39","5L39","6L39"],naturalgift:["4M"],payback:["4M","5M","6M"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],rocksmash:["4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],sandattack:["4L1","4L4","5L1","5L4","6L1","6L4"],scratch:["4L1","5L1","6L1"],screech:["4L25","5L25","6L25"],secretpower:["4M"],seedbomb:["4T","5T"],shadowball:["4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["4M"],sleeptalk:["4M","5T","6M"],snatch:["4M","5T"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],spite:["4T","5T"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4L22","4T","5L22","6L22"],tailwhip:["4L1","5L1","6L1"],taunt:["4M","5M","6M"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4T","5T"],thunderwave:["4M","5M","6M"],tickle:["4L15","5L15","6L15"],toxic:["4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],waterpulse:["4M"],workup:["5M"],covet:["5T"],foulplay:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + sunkern:{learnset:{absorb:["3L1","4L1","5L1","3S0","6L1"],attract:["3M","4M","5M","6M"],bide:["5E","6E"],bulletseed:["3M","4M"],captivate:["4M"],curse:["3E","4E","5E","6E"],cut:["3M","4M","5M","6M"],doubleedge:["3T","5L37","6L37"],doubleteam:["3M","4M","5M","6M"],earthpower:["5D","5T"],encore:["3E","4E","5E","6E"],endeavor:["3L25","4L21","4T","5L21","5T","6L25"],endure:["3T","4M","5E","6E"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","3L42","4M","4L41","5L41","5T","6L22"],grassknot:["4M","5M","6M"],grasswhistle:["3E","4E","4L13","5E","5L13","6L7","6E"],growth:["3L6","4L1","5L1","3S0","6L1"],helpinghand:["3E","4E","4T","5E","5T","6E"],hiddenpower:["3M","4M","5M","6M"],ingrain:["3L18","4E","4L9","5E","5L9","6L4","6E"],leechseed:["3E","4E","4L17","5E","5L17","6L13","6E"],lightscreen:["3M","4M","5M","6M"],megadrain:["3L13","4L5","5L5","5D","6L10"],mimic:["3T"],morningsun:["5E","6E"],naturalgift:["4M","5E","5L31","6L31","6E"],naturepower:["3E","4E","5E","6M","6E"],protect:["3M","4M","5M","6M"],razorleaf:["4L29","5L29","6L16"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seedbomb:["4L45","4T","5L45","5T","6L43"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","5L34","6L34","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","3L30","4M","4L37","5M","5L37","6L40","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["4E","5E","5D","6E"],swordsdance:["3T","4M","5M","6M"],synthesis:["3L37","4L33","4T","5L33","5T","6L28"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],worryseed:["4L25","4T","5L25","5T","6L19"],afteryou:["5T"],confide:["6M"]}}, + sunflora:{learnset:{absorb:["3L1","4L1","5L1","6L1"],attract:["3M","4M","5M","6M"],bulletseed:["3M","3L25","4M","4L21","5L21","6L25"],captivate:["4M"],cut:["3M","4M","5M","6M"],doubleedge:["3T","5L37","6L37"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],endeavor:["4T","5T"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T","5L22","6L22"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],grasswhistle:["4L13","5L13","6L7"],growth:["3L6","4L1","5L1","6L1"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],ingrain:["3L18","4L9","5L9","6L4"],leafstorm:["4L43","5L45","6L43"],leechseed:["4L17","5L17","6L13"],lightscreen:["3M","4M","5M","6M"],megadrain:["4L5","5L5","6L10"],mimic:["3T"],naturalgift:["4M","5L31","6L31"],petaldance:["3L37","4L33","5L33","6L28"],pound:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],razorleaf:["3L13","4L29","5L29","6L16"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","3L42","4M","4L41","5M","5L41","6L34","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","3L30","4M","4L37","5M","5L37","6L40","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],worryseed:["4L25","4T","5L25","5T","6L19"],afteryou:["5T"],flowershield:["6L1"],petalblizzard:["6L50"],naturepower:["6M"],confide:["6M"]}}, + yanma:{learnset:{aerialace:["3M","4M","5M","6M"],aircutter:["4T"],airslash:["4L54","5L54","6L54"],ancientpower:["4L33","4T","5L33","6L33"],attract:["3M","4M","5M","6M"],bugbite:["4T","5T"],bugbuzz:["4L57","5L57","6L57"],captivate:["4M"],defog:["4M"],detect:["3L25","3L28","4L17","5L17","6L17"],doubleedge:["3T","5E","6E"],doubleteam:["3M","3L13","3L12","4M","4L11","5M","5L11","6L11","6M"],dreameater:["3T","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["4E","5E","6E"],feint:["4E","5E","5D","6E"],flash:["3M","4M","5M","6M"],foresight:["3L1","4L1","5L1","6L1"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5D","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hypnosis:["3L23","4L38","5L38","6L38"],leechlife:["3E","4E","5E","6E"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],pursuit:["4E","4L30","5E","5L30","6L30","6E"],quickattack:["3L7","3L6","4L6","5L6","5D","6L6"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],reversal:["3E","4E","5E","6E"],roost:["4M","5T","6M"],round:["5M","6M"],screech:["3L49","3L50","4L46","5L46","6L46"],secretpower:["3M","4M","5E","6E"],shadowball:["3M","4M","5M","6M"],signalbeam:["3E","4E","4T","5E","5T","6E"],silverwind:["3E","4E","4M","5E","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],sonicboom:["3L19","3L17","4L14","5L14","6L14"],steelwing:["3M","4M","6M"],stringshot:["4T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3L31","3L45","4L22","5L22","6L22"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],tailwind:["4T","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["3L37","3L34","4L27","5L27","5T","6L27"],uturn:["4M","4L49","5M","5L49","6L49","6M"],whirlwind:["3E","4E","5E","6E"],wingattack:["3L43","3L39","4L43","5L43","6L43"],confide:["6M"]}}, + yanmega:{learnset:{aerialace:["4M","5M","6M"],aircutter:["4T"],airslash:["4L49","4L54","5L54","6L1","6L54"],ancientpower:["4L33","4T","5L33","6L33"],attract:["4M","5M","6M"],bugbite:["4L1","4T","5L1","5T","6L1"],bugbuzz:["4L54","4L57","5L57","6L1","6L57"],captivate:["4M"],defog:["4M"],detect:["4L17","5L17","6L17"],doubleteam:["4M","4L1","4L11","5M","5L1","5L11","6L1","6L11","6M"],dreameater:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],feint:["4L38","5L38","6L38"],flash:["4M","5M","6M"],foresight:["4L1","5L1","6L1"],frustration:["4M","5M","6M"],gigadrain:["4M","5T"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4L1","5L1","6L1"],ominouswind:["4T"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],pursuit:["4L30","5L30","6L30"],quickattack:["4L1","4L6","5L1","5L6","6L1","6L6"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],screech:["4L43","4L46","5L46","6L46"],secretpower:["4M"],shadowball:["4M","5M","6M"],signalbeam:["4T","5T"],silverwind:["4M"],slash:["4L38","4L43","5L43","6L43"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],sonicboom:["4L14","5L14","6L14"],steelwing:["4M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],supersonic:["4L22","5L22","6L22"],swagger:["4M","5M","6M"],swift:["4T"],tackle:["4L1","5L1","6L1"],tailwind:["4T","5T"],thief:["4M","5M","6M"],toxic:["4M","5M","6M"],uproar:["4L27","4T","5L27","5T","6L27"],uturn:["4M","4L46","4L49","5M","5L49","6L49","6M"],confide:["6M"]}}, + wooper:{learnset:{acidspray:["5E","6E"],afteryou:["5E","5T","6E"],amnesia:["3L21","4L23","5L23","6L23"],ancientpower:["3E","4E","4T","5E","6E"],aquatail:["4T","5D","5T"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3E","3T","4E","5E","5D","6E"],bulldoze:["5M","6M"],captivate:["4M"],counter:["4E","5E","6E"],curse:["3E","4E","5E","6E"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doublekick:["4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L36","4M","4L33","5M","5L33","6L33","6M"],encore:["4E","5E","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],haze:["3L51","4L43","5L43","6L43"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],irontail:["3M","4M","5T"],mimic:["3T"],mist:["3L51","4L43","5L43","6L43"],mudbomb:["4L19","5L19","6L19"],muddywater:["4L47","5L47","6L47"],mudshot:["3L16","4L9","5L9","6L9"],mudslap:["3T","4T"],mudsport:["3E","4E","4L5","5E","5L5","6L5","6E"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","3L41","4M","4L37","5M","5L37","6L37","6M"],recover:["4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3E","4E","5M","6M"],sandstorm:["3M","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],slam:["3L11","4L15","5L15","6L15"],sleeptalk:["3T","4M","5E","5T","6M","6E"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5M","6M"],snore:["3T","4T","5T"],spitup:["3E","4E","5E","6E"],stockpile:["3E","4E","5E","6E"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["3E","4E","5E","6E"],tailwhip:["3L1","4L1","5L1","6L1"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","4L1","5L1","5D","6L1"],waterpulse:["3M","4M"],whirlpool:["4M"],yawn:["3L31","4L29","5L29","6L29"],infestation:["6M"],confide:["6M"],eerieimpulse:["6E"]}}, + quagsire:{learnset:{amnesia:["3L23","4L24","5L24","6L24"],ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L42","4M","4L36","5M","5L36","6L36","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],haze:["3L61","4L48","5L48","6L48"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],irontail:["3M","4M","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mist:["3L61","4L48","5L48","6L48"],mudbomb:["4L19","5L19","6L19"],muddywater:["4L53","5L53","6L53"],mudshot:["3L16","4L9","5L9","6L9"],mudslap:["3T","4T"],mudsport:["4L1","4L5","5L1","5L5","6L1","6L5"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","3L49","4M","4L41","5M","5L41","6L41","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],slam:["3L11","4L15","5L15","6L15"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5M","6M"],snore:["3T","4T","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tailwhip:["3L1","4L1","5L1","6L1"],thief:["5M","6M"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","4L1","5L1","6L1"],waterpulse:["3M","4M"],whirlpool:["4M"],yawn:["3L35","4L31","5L31","6L31"],afteryou:["5T"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + murkrow:{learnset:{aerialace:["3M","4M","5M","6M"],aircutter:["4T"],assurance:["4L25","5E","5L25","6L25","6E"],astonish:["3L9","4L1","5L1","3S0","6L1"],attract:["3M","4M","5M","6M"],bravebird:["4E","5E","6E"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],confuseray:["3E","4E","5E","5D","6E"],darkpulse:["4M","5T","6M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],drillpeck:["3E","4E","5E","6E"],embargo:["4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L35","4E","4L35","5E","5L35","6L35","6E"],featherdance:["3E","4E","5E","6E"],fly:["3M","4M","5M","6M"],foulplay:["5L45","5T","6L45"],frustration:["3M","4M","5M","6M"],haze:["3L22","4L11","5L11","6L11"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],meanlook:["3L48","4L41","5L41","6L41"],mimic:["3T"],mirrormove:["3E","4E","5E","6E"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L27","4L21","5L21","6L21"],ominouswind:["4T"],payback:["4M","5M","6M"],peck:["3L1","4L1","5L1","5D","3S0","6L1"],perishsong:["3E","4E","5E","6E"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],psychic:["4M","5M","6M"],psychoshift:["4E","5E","6E"],psychup:["3T","4M","5M","6M"],pursuit:["3L14","4L5","5L5","6L5"],quash:["5M","5L65","6L65","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5E","5D","5T","6M","6E"],round:["5M","6M"],screech:["4E","5E","6E"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],skyattack:["3E","3T","4E","5E","5T","6E"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snatch:["3M","4M","5T"],snore:["3T"],spite:["4T","5T"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L45","4T","5L55","6L55"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5L51","5T","6L50"],taunt:["3M","3L40","4M","4L31","5M","5L31","6L31","6M"],thief:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","5L61","6L61","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uproar:["4T","5T"],whirlwind:["3E","4E","5E","6E"],wingattack:["3E","4E","4L15","5E","5L15","6L15","6E"],confide:["6M"]}}, + honchkrow:{learnset:{aerialace:["4M","5M","6M"],aircutter:["4T"],astonish:["4L1","5L1","6L1"],attract:["4M","5M","6M"],calmmind:["4M","5M","6M"],captivate:["4M"],darkpulse:["4M","4L55","5L75","5T","6L75","6M"],defog:["4M"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],embargo:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],fly:["4M","5M","6M"],foulplay:["5L45","5T","6L45"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],haze:["4L1","5L1","6L1"],heatwave:["4T","5T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],incinerate:["5M","6M"],mudslap:["4T"],nastyplot:["4L35","5L35","6L35"],naturalgift:["4M"],nightslash:["4L45","5L55","6L1","6L55"],ominouswind:["4T"],payback:["4M","5M","6M"],pluck:["4M","5M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],pursuit:["4L1","5L1","6L1"],quash:["5M","5L65","6L65","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],skyattack:["4T","5T"],sleeptalk:["4M","5T","6M"],snarl:["5M","6M"],snatch:["4M","5T"],spite:["4T","5T"],steelwing:["4M","6M"],substitute:["4M","5M","6M"],suckerpunch:["4T","6L1"],sunnyday:["4M","5M","6M"],superpower:["4T","5T"],swagger:["4M","4L25","5M","5L25","6L25","6M"],swift:["4T"],tailwind:["4T","5T"],taunt:["4M","5M","6M"],thief:["4M","5M","6M"],thunderwave:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],twister:["4T"],uproar:["4T","5T"],wingattack:["4L1","5L1","6L1"],icywind:["5T"],confide:["6M"]}}, + misdreavus:{learnset:{aerialace:["3M","4M","5M","6M"],astonish:["3L11","4L10","5L10","6L0"],attract:["3M","4M","5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],confuseray:["3L17","4L14","5L14","6L0"],curse:["4E","5E","6E"],darkpulse:["4M","5T"],defensecurl:["3T"],destinybond:["3E","4E","5E","5D","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],echoedvoice:["5M","6M"],embargo:["4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],growl:["3L1","4L1","5L1","3S0","6L0"],grudge:["3L53","4L46","5L50","6L0"],headbutt:["4T"],healbell:["4T","5T"],hex:["5L23","6L0"],hiddenpower:["3M","4M","5M","6M"],icywind:["4T","5T"],imprison:["3E","4E","5E","6E"],inferno:["5D"],magiccoat:["4T","5T"],meanlook:["3L23","4L19","5L19","6L0"],memento:["4E","5E","6E"],mimic:["3T"],nastyplot:["4E","5E","6E"],naturalgift:["4M"],nightmare:["3T"],ominouswind:["4E","4T","5E","6E"],painsplit:["3L37","4L28","4T","5L32","5T","6L0"],payback:["4M","4L32","5M","5L37","6L0","6M"],perishsong:["3L45","4L41","5L46","6L0"],powergem:["4L50","5L55","6L0"],protect:["3M","4M","5M","6M"],psybeam:["3L30","4L23","5L28","6L0"],psychic:["3M","4M","5M","6M"],psychup:["3E","3T","4E","4M","5M","6M"],psywave:["3L1","4L1","5L1","5D","3S0","6L0"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],screech:["3E","4E","5E","6E"],secretpower:["3M","4M"],shadowball:["3M","4M","4L37","5M","5L41","6L0","6M"],shadowsneak:["4E","5E","6E"],shockwave:["3M","4M"],skillswap:["3M","4M","5E","5T","6E"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["3L6","4E","4L5","4T","5E","5L5","3S0","5T","6E"],substitute:["3T","4M","5M","6M"],suckerpunch:["4E","4T","5E","6E"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],uproar:["4T","5T"],willowisp:["4M","5M","6M"],wonderroom:["5E","5T","6E"],foulplay:["5T"],hypervoice:["5T"],magicroom:["5T"]}}, + mismagius:{learnset:{aerialace:["4M","5M","6M"],astonish:["4L1","5L1","6L0"],attract:["4M","5M","6M"],calmmind:["4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],darkpulse:["4M","5T"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],echoedvoice:["5M","6M"],embargo:["4M","5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],growl:["4L1","5L1","6L0"],headbutt:["4T"],healbell:["4T","5T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icywind:["4T","5T"],luckychant:["4L1","5L1","6L0"],magicalleaf:["4L1","5L1","6L0"],magiccoat:["4T","5T"],naturalgift:["4M"],ominouswind:["4T"],painsplit:["4T","5T"],payback:["4M","5M","6M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],psywave:["4L1","5L1","6L0"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],skillswap:["4M","5T"],sleeptalk:["4M","5T","6M"],snatch:["4M","5T"],snore:["4T","5T"],spite:["4L1","4T","5L1","5T","6L0"],substitute:["4M","5M","6M"],suckerpunch:["4T"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],taunt:["4M","5M","6M"],telekinesis:["5M"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderwave:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],uproar:["4T","5T"],willowisp:["4M","5M","6M"],foulplay:["5T"],hypervoice:["5T"],magicroom:["5T"],wonderroom:["5T"]}}, + unown:{learnset:{hiddenpower:["3L1","4L1","5L1","6L1"]}}, + wynaut:{learnset:{charm:["3L1","4L1","5L1","3S0","6L1"],counter:["3L15","4L15","5L15","6L15"],destinybond:["3L15","4L15","5L15","6L15"],encore:["3L1","4L1","5L1","3S0","6L1"],mirrorcoat:["3L15","4L15","5L15","6L15"],safeguard:["3L15","4L15","5L15","6L15","6M"],splash:["3L1","4L1","5L1","3S0","6L1"],tickle:["3S0"]}}, + wobbuffet:{learnset:{charm:["5D"],counter:["3L1","4L1","5L1","3S0","3S1","6L1"],destinybond:["3L1","4L1","5L1","3S0","3S1","6L1"],encore:["5D"],mirrorcoat:["3L1","4L1","5L1","5D","3S0","3S1","6L1"],safeguard:["3L1","4L1","5L1","3S0","3S1","6L1","6M"]}}, + girafarig:{learnset:{agility:["3L31","4L14","5L14","6L14"],amnesia:["3E","4E","5E","6E"],assurance:["4L28","5L28","6L28"],astonish:["3L7","4L1","5L1","6L1"],attract:["3M","4M","5M","6M"],batonpass:["3L37","4L23","5L23","6L23"],beatup:["3E","4E","5E","6E"],bodyslam:["3T"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],confusion:["3L13","4L1","5L1","5D","6L1"],crunch:["3L49","4L46","5L46","6L46"],doubleedge:["3T"],doublehit:["4L32","5L32","6L32"],doublekick:["4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],futuresight:["3E","4E","5E","6E"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],growl:["3L1","4L1","5L1","6L1"],guardswap:["4L1","5L1","6L1"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],lightscreen:["3M","4M","5M","6M"],magiccoat:["3E","4E","4T","5E","5T","6E"],meanlook:["5E","6E"],mimic:["3T"],mirrorcoat:["4E","5E","5D","6E"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],odorsleuth:["3L25","4L5","5L5","6L5"],powerswap:["4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],psybeam:["3L43","4L19","5L19","6L19"],psychic:["3M","4M","4L37","5M","5L37","6L37","6M"],psychup:["3E","3T","4E","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],razorwind:["4E","5E","6E"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M","5E","6E"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5E","5D","5T","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],stomp:["3L19","4L10","5L10","6L10"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],takedown:["3E","4E","5E","6E"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],uproar:["4T","5T"],wish:["3E","4E","5E","6E"],workup:["5M"],zenheadbutt:["4L41","4T","5L41","5T","6L41"],foulplay:["5T"],hypervoice:["5T"],dazzlinggleam:["6M"],confide:["6M"]}}, + pineco:{learnset:{attract:["3M","4M","5M","6M"],bide:["3L29","4L17","4L20","5L20","6L20"],bodyslam:["3T"],bugbite:["4L9","4T","5L9","5T","6L9"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3E","3T","4E","5E","3S1","6E"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3L50","3T","4E","4L42","4L45","5E","5L45","6L45","6E"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M","5E","6E"],explosion:["3L36","3T","4M","4L31","4L34","5M","5L34","6L34","6M"],facade:["3M","4M","5M","6M"],flail:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],gravity:["4T","5T","5D"],gyroball:["4M","4L39","4L42","5M","5L42","6L42","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],irondefense:["4L34","4T","4L39","5L39","5T","6L39"],lightscreen:["3M","4M","5M","6M"],mimic:["3T"],naturalgift:["4M","4L20","4L23","5L23","6L23"],painsplit:["4T","5T"],payback:["4M","4L28","4L31","5M","5L31","6L31","6M"],pinmissile:["3E","4E","5E","3S1","6E"],powertrick:["4E","5E","6E"],protect:["3M","3L1","4M","4L1","5M","5L1","3S0","6L1","6M"],rapidspin:["3L22","4L12","4L17","5L17","6L17"],reflect:["3E","3M","4E","4M","5M","6M"],refresh:["3S1"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],revenge:["4E","5E","6E"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],sandtomb:["3E","4E","5E","6E"],secretpower:["3M","4M"],selfdestruct:["3L8","3T","4L6","5L6","3S0","5D","6L6"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spikes:["3L43","4L23","4L28","5L28","3S1","6L28"],stealthrock:["4M","5E","5T","6E"],strength:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3E","4E","5E","6E"],tackle:["3L1","4L1","5L1","3S0","6L1"],takedown:["3L15","4L9","4L12","5L12","6L12"],toxic:["3M","4M","5M","6M"],toxicspikes:["4E","5E","5D","6E"],venoshock:["5M","6M"],drillrun:["5T"],confide:["6M"]}}, + forretress:{learnset:{attract:["3M","4M","5M","6M"],autotomize:["5L32","6L32"],bide:["3L29","4L17","4L20","5L20","6L20"],block:["4T","5T"],bodyslam:["3T"],bugbite:["4L1","4L9","4T","5L1","5L9","5T","6L1"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3L59","3T","4L50","4L55","5L56","6L56"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["3L39","3T","4M","4L33","4L38","5M","5L42","6L42","6M"],facade:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],gravity:["4T","5T"],gyroball:["4M","4L45","4L50","5M","5L50","6L50","6M"],headbutt:["4T"],heavyslam:["5L70","6L1","6L70"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],irondefense:["4L38","4T","4L45","5L46","5T","6L46"],lightscreen:["3M","4M","5M","6M"],magnetrise:["4L57","4T","4L62","5L60","5T","6L1","6L60"],mimic:["3T"],mirrorshot:["4L31","5L31","6L31"],naturalgift:["4M","4L20","4L23","5L23","6L23"],painsplit:["4T","5T"],payback:["4M","4L28","4L33","5M","5L36","6L36","6M"],protect:["3M","3L1","4M","4L1","5M","5L1","6L1","6M"],rapidspin:["3L22","4L12","4L17","5L17","6L17"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],selfdestruct:["3L1","3L8","3T","4L1","4L6","5L1","5L6","6L1"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spikes:["3L49","4L23","4L28","5L28","6L28"],stealthrock:["4M","5T"],strength:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],takedown:["3L15","4L1","4L9","4L12","5L12","6L12"],toxic:["3M","4M","5M","6M"],toxicspikes:["4L1","5L1","6L1"],venoshock:["5M","6M"],voltswitch:["5M","6M"],zapcannon:["3L31","4L62","4L67","5L64","6L1","6L64"],drillrun:["5T"],confide:["6M"]}}, + dunsparce:{learnset:{agility:["4E","5E","6E"],ancientpower:["3E","4E","4L41","4T","5E","5L48","6L19","6E"],aquatail:["4T","5T"],astonish:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],bide:["3E","4E","5E","6E"],bite:["3E","4E","5E","6E"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],coil:["5L43","6L37"],counter:["3T"],curse:["3E","4E","5E","6E"],defensecurl:["3L4","3T","4L5","5L4","5D","6L1"],dig:["3M","4M","4L45","5M","5L53","6L31","6M"],doubleedge:["3T","5L34","6L34"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],drillrun:["5L43","5T","6L43"],earthquake:["3M","4M","5M","6M"],endeavor:["3L41","3L51","4L49","4T","5L58","5T","6L46"],endure:["3T","4M","5L40","6L40"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flail:["3L44","4L53","5L63","6L49"],flamethrower:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],glare:["3L14","4L13","5L12","6L28"],gyroball:["4M","5M","6M"],headbutt:["3E","4E","4T","5E","6E"],hex:["5E","6E"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],magiccoat:["4E","4T","5E","5T","5D","6E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],pursuit:["3L24","3L31","4L25","5L24","6L10"],rage:["3L1","4L1","5L1","6L1"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","3L21","4L17","4T","5L16","6L4"],roost:["4M","4L33","5L33","5T","6L25","6M"],round:["5M","6M"],screech:["3L31","3L34","4L29","5L28","6L13"],secretpower:["3M","4M","5E","6E"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5E","5T","6M","6E"],snore:["3T","4E","4T","5E","5T","6E"],solarbeam:["3M","4M","5M","6M"],spite:["3L21","3L24","4L21","4T","5L20","5T","6L7"],stealthrock:["4M","5T","5D"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],takedown:["3L34","3L41","4L37","5L38","6L22"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trumpcard:["4E","5E","6E"],waterpulse:["3M","4M"],wildcharge:["5M","6M"],yawn:["3L11","4L9","5L8","6L16"],zenheadbutt:["4T","5T"],bind:["5T"],confide:["6M"]}}, + gligar:{learnset:{acrobatics:["5M","5L27","6L22","6M"],aerialace:["3M","4M","5M","6M"],agility:["4E","5E","6E"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],batonpass:["4E","5E","6E"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3E","3T","4E","5E","6E"],crosspoison:["4E","5E","6E"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T","6M"],defog:["4M"],dig:["3M","4M","5M","6M"],doubleedge:["3T","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L28","4L23","5L23","6L19"],falseswipe:["4M","5M","6M"],feint:["4E","5E","5D","6E"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4L20","4T","5L20","6L16"],guillotine:["3L52","4L45","5L49","6L55"],harden:["3L13","4L9","5L9","6L7"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],irontail:["3M","4M","5T"],knockoff:["4L12","5L12","5T","6L10"],metalclaw:["3E","4E","5E","6E"],mimic:["3T"],naturalgift:["4M"],nightslash:["4E","5E","6E"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],poisonsting:["3L1","4L1","5L1","3S0","6L1"],poisontail:["5E","6E"],powertrick:["4E","5E","6E"],protect:["3M","4M","5M","6M"],quickattack:["3L20","4L16","5L16","6L13"],raindance:["3M","4M","5M","6M"],razorwind:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["5E","6E"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],sandattack:["3L6","4L5","5L5","5D","3S0","6L4"],sandstorm:["3M","4M","5M","6M"],sandtomb:["3E","4E","5E","6E"],screech:["3L44","4L27","5L31","6L35"],secretpower:["3M","4M"],skyuppercut:["5L45","6L45"],slash:["3L36","4L31","5L34","6L27"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],steelwing:["3M","4M","6M"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","4L34","5M","5L38","6L50","6M"],tailwind:["4T","5D","5T"],taunt:["4M","5M","6M"],thief:["3M","4M","5M","6M"],torment:["4M","5M","6M"],toxic:["3M","4M","5M","6M"],uturn:["4M","4L38","5M","5L42","6L30","6M"],venoshock:["5M","6M"],wingattack:["3E","4E","5E","6E"],xscissor:["4M","4L42","5M","5L45","6L40","6M"],bugbite:["5T"],confide:["6M"]}}, + gliscor:{learnset:{acrobatics:["5M","5L27","6L22","6M"],aerialace:["4M","5M","6M"],aquatail:["4T","5T"],attract:["4M","5M","6M"],batonpass:["4C"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],cut:["4M","5M","6M"],darkpulse:["4M","5T","6M"],defog:["4M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],earthpower:["4T","5T"],earthquake:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],feintattack:["4L23","5L23","6L19"],falseswipe:["4M","5M","6M"],firefang:["4L1","5L1","6L1"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4L20","4T","5L20","6L16"],gigaimpact:["4M","5M","6M"],guillotine:["4L45","5L49","6L1","6L55"],harden:["4L1","4L9","5L1","5L9","6L1","6L7"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["4M","5M","6M"],icefang:["4L1","5L1","6L1"],irontail:["4M","5T"],knockoff:["4L1","4L12","4T","5L1","5L12","5T","6L1","6L10"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4L31","5L34","6L27"],payback:["4M","5M","6M"],poisonjab:["4M","4L1","5M","5L1","6L1","6M"],protect:["4M","5M","6M"],quickattack:["4L16","5L16","6L13"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],sandattack:["4L1","4L5","5L1","5L5","6L1","6L4"],sandstorm:["4M","5M","6M"],screech:["4L27","5L31","6L35"],secretpower:["4M"],skyattack:["4T","5T"],skyuppercut:["5L45","6L45"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","5M","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],steelwing:["4M","6M"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],strugglebug:["5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],swordsdance:["4M","4L34","5M","5L38","6L50","6M"],tailwind:["4T","5T"],taunt:["4M","5M","6M"],thief:["4M","5M","6M"],thunderfang:["4L1","5L1","6L1"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],uturn:["4M","4L38","5M","5L42","6L30","6M"],venoshock:["5M","6M"],xscissor:["4M","4L42","5M","5L45","6L40","6M"],bugbite:["5T"],confide:["6M"]}}, + snubbull:{learnset:{attract:["3M","4M","5M","6M"],bite:["3L13","4L7","5L7","6L7"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],charm:["3L8","4L1","5L1","5D","3S0","6L1"],closecombat:["4E","5E","5D","6E"],counter:["3T"],crunch:["3E","3L53","4E","4L49","5E","5L49","6L49","6E"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T","5E","5D","6E"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","6E"],fireblast:["3M","4M","5M","6M"],firefang:["4E","4L1","5E","5L1","6L1","6E"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M","5E","6E"],frustration:["3M","4M","5M","6M"],headbutt:["4L19","4T","5L19","6L19"],healbell:["3E","4E","4T","5E","5T","6E"],hiddenpower:["3M","4M","5M","6M"],icefang:["4E","4L1","5E","5L1","6L1","6E"],icepunch:["3T","4T","5T"],incinerate:["5M","6M"],lastresort:["4T","5T"],lick:["3L19","4L13","5L13","6L13"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3E","3T","4E","5E","6E"],mimic:["3T","5E","6E"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],payback:["4M","4L43","5M","5L43","6L43","6M"],present:["3E","4E","5E","6E"],protect:["3M","4M","5M","6M"],rage:["3L34","4L31","5L31","6L31"],raindance:["3M","4M","5M","6M"],reflect:["3E","4E","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L26","4M","4L25","5M","5L25","6L25","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],scaryface:["3L1","4L1","5L1","3S0","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],smellingsalts:["3E","4E","5E","6E"],snarl:["5M","6M"],snore:["3E","3T","4E","4T","5E","5T","6E"],solarbeam:["3M","4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","3S0","6L1"],tailwhip:["3L4","4L1","5L1","3S0","6L1"],takedown:["3L43","4L37","5L37"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderfang:["4E","4L1","5E","5L1","6L1","6E"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],wildcharge:["5M","6M"],workup:["5M"],covet:["5T"],hypervoice:["5T"],playrough:["6L37"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + granbull:{learnset:{attract:["3M","4M","5M","6M"],bite:["3L13","4L7","5L7","6L7"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],charm:["3L8","4L1","5L1","6L1"],counter:["3T"],crunch:["3L61","4L59","5L59","6L59"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firefang:["4L1","5L1","6L1"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4L19","4T","5L19","6L19"],healbell:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icefang:["4L1","5L1","6L1"],icepunch:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],lick:["3L19","4L13","5L13","6L13"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["5L67","5T","6L1","6L67"],overheat:["3M","4M","5M","6M"],payback:["4M","4L51","5M","5L51","6L51","6M"],protect:["3M","4M","5M","6M"],rage:["3L38","4L35","5L35","6L35"],raindance:["3M","4M","5M","6M"],reflect:["5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L28","4M","4L27","5M","5L27","6L27","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],scaryface:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],tailwhip:["3L4","4L1","5L1","6L1"],takedown:["3L49","4L43","5L43"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderfang:["4L1","5L1","6L1"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],wildcharge:["5M","6M"],workup:["5M"],covet:["5T"],hypervoice:["5T"],playrough:["6L43"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + qwilfish:{learnset:{acidspray:["5E","6E"],aquajet:["4E","5E","5D","6E"],aquatail:["4L45","4T","5L45","5T","6L45"],astonish:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bounce:["4T","5T"],brine:["4M","4L33","5E","5L33","6L33","6E"],bubblebeam:["3E","4E","5E","6E"],captivate:["4M"],defensecurl:["3T"],destinybond:["3L45","4L53","5L53","6L1","6L53"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flail:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],gyroball:["4M","5M","6M"],hail:["3M","4M","5M","6M"],harden:["3L10","3L9","4L9","5L9","3S0","6L9"],haze:["3E","4E","5E","6E"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L46","3L37","4L57","5L57","6L1","6L57"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],mimic:["3T"],minimize:["3L10","3L9","4L9","5L9","3S0","6L9"],mudslap:["4T"],naturalgift:["4M"],painsplit:["4T","5T"],payback:["4M","5M","6M"],pinmissile:["3L28","3L21","4L37","5L37","6L37"],poisonjab:["4E","4M","4L49","5M","5L49","6L49","6M"],poisonsting:["3L1","4L1","5L1","5D","3S0","6L1"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],revenge:["3L25","4L29","5L29","6L29"],rollout:["3T","4L17","5L17","6L17"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M","5D"],selfdestruct:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4E","4T","5E","5T","6E"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5M","6M"],snore:["3T","4T","5T"],spikes:["3L1","4L1","5L1","6L1"],spitup:["4L25","5L25","6L25"],stockpile:["4L25","5L25","6L25"],substitute:["3T","4M","5M","6M"],supersonic:["3E","4E","5E","6E"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T"],tackle:["3L1","4L1","5L1","3S0","6L1"],takedown:["3L37","3L33","4L41","5L41","6L41"],taunt:["4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],toxicspikes:["4L21","5L21","6L21"],venoshock:["5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L19","3L13","4L13","5L13","6L13"],waterpulse:["3M","4M","5E","6E"],whirlpool:["4M"],fellstinger:["6L1","6L60"],bubble:["6L1"],confide:["6M"]}}, + shuckle:{learnset:{acid:["5E","6E"],acupressure:["4E","5E","6E"],ancientpower:["4T"],attract:["3M","4M","5M","6M"],bide:["3L28","4L9","4L1","5L1","6L1"],bodyslam:["3T"],bugbite:["4L40","4T","5L49","5T","6L42"],bulldoze:["5M","6M"],captivate:["4M"],constrict:["3L1","4L1","5L1","3S0","6L1"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],encore:["3L14","4L14","4L9","5L7","5D","3S1","6L5"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],finalgambit:["5E","6E"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gastroacid:["4L40","4T","4L35","5L31","5T","6L27"],guardsplit:["5L55","6L45"],gyroball:["4M","5M","6M"],headbutt:["4T"],helpinghand:["4E","4T","5E","5T","5D","6E"],hiddenpower:["3M","4M","5M","6M"],knockoff:["4E","5E","5T","6E"],mimic:["3T"],mudslap:["3T","4E","5E","6E"],naturalgift:["4M"],powersplit:["5L55","6L45"],powertrick:["4L48","5L43","6L31"],protect:["3M","4M","5M","6M"],rest:["3M","3L37","4M","4L35","4L27","5M","5L25","6L20","6M"],"return":["3M","4M","5M","6M"],rockblast:["5E","6E"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","5L38","6L38","6M"],rocksmash:["3M","4M","5M","6M"],rockthrow:["5L23","6L23"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","5L37","6L1"],round:["5M","6M"],safeguard:["3M","3L23","4M","4L22","4L14","5M","5L19","6L16","6M"],sandstorm:["3M","4M","5M","6M"],sandtomb:["4E","5E","6E"],secretpower:["3M","4M"],shellsmash:["5L34","5D","6L34"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","3S1","6M"],sludgewave:["5M","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","5L49","6L49","6M"],strength:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","5L1","6L12","6M"],substitute:["3T","4M","5M","3S1","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3E","4E","5E","6E"],toxic:["3M","4M","5M","3S1","6M"],venoshock:["5M","6M"],withdraw:["3L1","4L1","5L1","3S0","6L1"],wrap:["3L9","4L27","4L22","5L13","3S0","6L9"],bind:["5T"],afteryou:["5T"],stickyweb:["6L1","6L53"],infestation:["6M"],confide:["6M"]}}, + heracross:{learnset:{aerialace:["4M","4L13","5M","5L13","6L10","6M"],attract:["3M","4M","5M","6M"],bide:["3E","4E","5E","6E"],bodyslam:["3T"],brickbreak:["3M","3L23","4M","4L19","5M","5L19","6L25","6M"],bugbite:["4T","5T"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L16","6L16"],closecombat:["4L37","5L37","6L34"],counter:["3L30","3T","4L25","5L25","6L19"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3L11","3T","4M","4L1","5L1","6L1"],facade:["3M","4M","5M","6M"],falseswipe:["3E","4E","5M","6M"],feint:["4L49","5L49","6L37"],flail:["3E","4E","5E","5D","6E"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M","5E","5D","6E"],frustration:["3M","4M","5M","6M"],furyattack:["3L17","4L7","5L7","6L7"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],harden:["3E","4E","5E","6E"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hornattack:["3L6","4L1","5L1","5D","6L1"],hyperbeam:["3M","4M","5M","6M"],irondefense:["4T","5T"],knockoff:["4T","5T"],leer:["3L1","4L1","5L1","6L1"],lowkick:["4T","5T"],megahorn:["3L53","4L55","5E","5L55","6L46","6E"],mimic:["3T"],naturalgift:["4M"],nightslash:["4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],pursuit:["4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],revenge:["4E","5E","6E"],reversal:["3L45","4L43","5L43","6L43"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T","5E","6E"],shadowclaw:["4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],takedown:["3L37","4L31","5L31","6L28"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],vacuumwave:["4T"],venoshock:["5M","6M"],workup:["5M"],armthrust:["6L1"],bulletseed:["6L1"],pinmissile:["6L31"],confide:["6M"],rockblast:["6E"]}}, + sneasel:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L36","4L24","5L24","6L20"],assist:["4E","5E","6E"],attract:["3M","4M","5M","6M"],avalanche:["4M","5E","6E"],beatup:["3L57","4L38","5L42","6L28"],bite:["3E","4E","5E","6E"],blizzard:["3M","4M","5M","6M"],brickbreak:["3M","4M","5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],counter:["3E","3T","4E","5E","6E"],crushclaw:["3E","4E","5E","6E"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doublehit:["4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],embargo:["4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L22","4L14","5L14","6L10"],fakeout:["3E","4E","5E","6E"],falseswipe:["4M","5M","6M"],feint:["5E","6E"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],furyswipes:["3L29","4L21","5L21","6L16"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","5L35","6L25","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4E","4T","5E","5T","5D","6E"],iceshard:["4E","4L49","5E","5L51","6L47","6E"],icywind:["3L43","3T","4L28","5L28","5T","6L14"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],leer:["3L1","4L1","5L1","3S0","6L1"],lowkick:["4T","5T","5D"],lowsweep:["5M","6M"],metalclaw:["3L64","4L42","5L49","6L22"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],punishment:["4E","5E","5L44","6L44","6E"],pursuit:["4E","5E","6E"],quickattack:["3L8","4L8","5L8","3S0","6L8"],raindance:["3M","4M","5M","6M"],reflect:["3E","4E","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],scratch:["3L1","4L1","5L1","3S0","6L1"],screech:["3L15","4L10","5L10","6L32"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],slash:["3L50","4L35","5L38","6L35"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snatch:["3M","4M","5T","5L40","6L40"],snore:["3T","4T","5T"],spite:["3E","4E","4T","5E","5T","6E"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],taunt:["3M","3L1","4M","4L1","5M","5L1","5D","3S0","6L1","6M"],thief:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],whirlpool:["4M"],xscissor:["4M","5M","6M"],foulplay:["5T"],poweruppunch:["6M"],confide:["6M"],iciclecrash:["6E"]}}, + weavile:{learnset:{aerialace:["4M","5M","6M"],assurance:["4L1","5L1","6L1"],attract:["4M","5M","6M"],avalanche:["4M"],blizzard:["4M","5M","6M"],brickbreak:["4M","5M","4S0","6M"],calmmind:["4M","5M","6M"],captivate:["4M"],cut:["4M","5M","6M"],darkpulse:["4M","4L49","5L51","5T","6L47","6M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],embargo:["4M","4L1","5M","5L1","6L1","6M"],endure:["4M"],facade:["4M","5M","6M"],feintattack:["4L14","5L14","6L10"],fakeout:["4S0"],falseswipe:["4M","5M","6M"],fling:["4M","4L38","5M","5L42","6L28","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],furycutter:["4T"],furyswipes:["4L21","5L21","6L16"],gigaimpact:["4M","5M","6M"],hail:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","5L35","6L25","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],iceshard:["4S0"],icywind:["4L28","4T","5L28","5T","6L14"],irontail:["4M","5T"],knockoff:["4T","5T"],leer:["4L1","5L1","6L1"],lowkick:["4T","5T"],lowsweep:["5M","6M"],metalclaw:["4L42","5L49","6L22"],mudslap:["4T"],nastyplot:["4L24","5L24","6L20"],naturalgift:["4M"],nightslash:["4L35","5L35","5L38","4S0","6L35"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["4M","5M","6M"],psychup:["4M","5M","6M"],quickattack:["4L1","4L8","5L1","5L8","6L1","6L8"],raindance:["4M","5M","6M"],reflect:["5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],revenge:["4L1","5L1","6L1"],rocksmash:["4M","5M","6M"],round:["5M","6M"],scratch:["4L1","5L1","6L1"],screech:["4L10","5L10","6L32"],secretpower:["4M"],shadowball:["4M","5M","6M"],shadowclaw:["4M","5M","6M"],sleeptalk:["4M","5T","6M"],snarl:["5M","6M"],snatch:["4M","5T","5L40","6L40"],snore:["4T","5T"],spite:["4T","5T"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],swordsdance:["4M","5M","6M"],taunt:["4M","4L1","5M","5L1","6L1","6M"],thief:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],whirlpool:["4M"],xscissor:["4M","5M","6M"],icepunch:["4T","5T"],foulplay:["5T"],punishment:["6L44"],poweruppunch:["6M"],confide:["6M"]}}, + teddiursa:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bellydrum:["4E","5E","6E"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],charm:["4L36","5L36","6L36"],chipaway:["5E","6E"],closecombat:["4E","5E","6E"],counter:["3E","3T","4E","5E","6E"],covet:["4L1","5L1","5T","6L1"],crosschop:["4E","5E","6E"],crunch:["3E","4E","5E","5D","6E"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L25","4L15","5L15","6L15"],faketears:["3E","3L19","4E","4L1","5E","5L1","5D","6L1","6E"],firepunch:["3T","4T","5T"],fling:["4M","4L57","5M","5L57","6L1","6L57","6M"],focuspunch:["3M","4M","5D"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],furyswipes:["3L13","4L8","5L8","6L8"],gunkshot:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],icepunch:["3T","4T","5T"],lastresort:["4T","5T"],leer:["3L1","4L1","5L1","3S0","3S1"],lick:["3L7","4L1","5L1","3S0","6L1"],megakick:["3T"],megapunch:["3T"],metalclaw:["3E","4E","5E","3S1","6E"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4E","5E","6E"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],refresh:["3S1"],rest:["3M","3L31","4M","4L43","5M","5L43","6L43","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","3S1","6M"],roar:["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],scratch:["3L1","4L1","5L1","3S0","6L1"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3E","3T","4E","5E","6E"],shadowclaw:["4M","5M","6M"],slash:["3L37","4L29","5L29","6L29"],sleeptalk:["3E","3T","4E","4M","5E","5T","6M","6E"],snore:["3L43","3T","4L43","4T","5L43","5T","6L43"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],sweetscent:["4L22","5L22","6L22"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],takedown:["3E","4E","5E","6E"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thrash:["3L49","4L50","5L50","6L50"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],workup:["5M"],yawn:["3E","4E","5E","6E"],hypervoice:["5T"],babydolleyes:["6L1"],playnice:["6L25"],poweruppunch:["6M"],confide:["6M"],playrough:["6E"]}}, + ursaring:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],avalanche:["4M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],covet:["4L1","5L1","5T","6L1"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L25","4L15","5L15","6L15"],faketears:["3L19","4L1","5L1","6L1"],firepunch:["3T","4T","5T"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],furyswipes:["3L1","3L13","4L8","5L8","6L8"],gigaimpact:["4M","5M","6M"],gunkshot:["4T","5T"],hammerarm:["4L67","5L67","6L1","6L67"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],lastresort:["4T","5T"],leer:["3L1","4L1","5L1","6L1"],lick:["3L1","3L7","4L1","5L1","6L1"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","3L31","4M","4L47","5M","5L47","6L47","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],scaryface:["4L38","5L38","6L38"],scratch:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],slash:["3L37","4L29","5L29","6L29"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3L43","3T","4L49","4T","5L49","5T","6L49"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],sweetscent:["4L22","5L22","6L22"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thrash:["3L49","4L58","5L58","6L58"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],workup:["5M"],hypervoice:["5T"],playnice:["6L25"],poweruppunch:["6M"],confide:["6M"]}}, + slugma:{learnset:{acidarmor:["3E","4E","5E","6E"],amnesia:["3L29","4L31","5L32","6L32"],ancientpower:["4L26","4T","5L28","6L28"],attract:["3M","4M","5M","6M"],bodyslam:["3L50","3T","4L46","5L46","6L46"],captivate:["4M"],curse:["4E","5E","6E"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4L56","4T","5E","5L55","5T","6L55","6E"],ember:["3L8","4L8","5L5","5D","6L5"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flameburst:["5L23","6L23"],flamecharge:["5M","6M"],flamethrower:["3M","3L36","4M","4L53","5M","5L50","6L50","6M"],frustration:["3M","4M","5M","6M"],harden:["3L22","4L16","5L14","6L14"],heatwave:["3E","4E","4T","5E","5D","5T","6E"],hiddenpower:["3M","4M","5M","6M"],incinerate:["5M","6M"],inferno:["5E","5D","6E"],irondefense:["4T","5T"],lavaplume:["4L38","5L37","6L37"],lightscreen:["3M","4M","5M","6M"],memento:["4E","5E","6E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],painsplit:["4T","5T"],protect:["3M","4M","5M","6M"],recover:["4L23","5L19","6L19"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3L43","3T","4M","4L41","5M","5L41","6L41","6M"],rocksmash:["3M","4M","5M","6M"],rockthrow:["3L15","4L11","5L10","6L10"],rocktomb:["4M","5M","6M"],rollout:["3T","4T","5E","6E"],round:["5M","6M"],secretpower:["3M","4M"],selfdestruct:["3T"],sleeptalk:["3T","4M","5T","6M"],smog:["3L1","4L1","5L1","6L1"],smokescreen:["4E","5E","6E"],snore:["3T","4T","5T"],spitup:["4E","5E","6E"],stockpile:["4E","5E","6E"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["4E","5E","6E"],toxic:["3M","4M","5M","6M"],willowisp:["4M","5M","6M"],yawn:["3L1","4L1","5L1","6L1"],afteryou:["5T"],infestation:["6M"],naturepower:["6M"],confide:["6M"]}}, + magcargo:{learnset:{amnesia:["3L29","4L31","5L32","6L32"],ancientpower:["4L26","4T","5L28","6L28"],attract:["3M","4M","5M","6M"],bodyslam:["3L60","3T","4L52","5L52","6L52"],bulldoze:["5M","6M"],captivate:["4M"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4L66","4T","5L67","5T","6L1","6L67"],earthquake:["3M","4M","5M","3S0","6M"],ember:["3L1","3L8","4L1","4L8","5L1","5L5","6L1","6L5"],endure:["3T","4M"],explosion:["4M","5M","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flameburst:["5L23","6L23"],flamecharge:["5M","6M"],flamethrower:["3M","3L36","4M","4L61","5M","5L59","3S0","6L59","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gyroball:["4M","5M","6M"],harden:["3L22","4L16","5L14","6L14"],heatwave:["4T","5T","3S0"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],irondefense:["4T","5T"],lavaplume:["4L40","5L37","6L37"],lightscreen:["3M","4M","5M","6M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],painsplit:["4T","5T"],protect:["3M","4M","5M","6M"],recover:["4L23","5L19","6L19"],reflect:["3M","4M","5M","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3L48","3T","4M","4L45","5M","5L44","6L44","6M"],rocksmash:["3M","4M","5M","6M"],rockthrow:["3L1","3L15","4L1","4L11","5L1","5L10","6L1","6L10"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],selfdestruct:["3T"],shellsmash:["5L38","6L38"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],smog:["3L1","4L1","5L1","6L1"],snore:["3T","4T","5T"],solarbeam:["4M","5M","6M"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],willowisp:["4M","5M","6M"],yawn:["3L1","4L1","5L1","6L1"],afteryou:["5T"],infestation:["6M"],naturepower:["6M"],confide:["6M"]}}, + swinub:{learnset:{amnesia:["3L55","4L49","5L49","6L48"],ancientpower:["3E","4E","4T","5E","5D","3S0","6E"],attract:["3M","4M","5M","6M"],avalanche:["5E","6E"],bite:["3E","4E","5E","6E"],blizzard:["3M","3L46","4M","4L44","5M","5L44","6L44","6M"],bodyslam:["3E","3T","4E","5E","6E"],bulldoze:["5M","6M"],captivate:["4M"],charm:["3S0"],curse:["4E","5E","6E"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3E","3T","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],earthquake:["3M","4M","4L37","5M","5L37","6L37","6M"],endeavor:["4T","5T"],endure:["3L19","3T","4M","4L16","5L16","6L14"],facade:["3M","4M","5M","6M"],fissure:["4E","5E","6E"],flail:["5L40","6L40"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],iceshard:["4L28","5L28","6L24"],iciclecrash:["5E","6E"],iciclespear:["3E","4E","5E","5D","6E"],icywind:["3T","4L25","5L25","5T","6L21"],lightscreen:["3M","4M","5M","6M"],mimic:["3T"],mist:["3L37","4L40","5L40","3S0","6L35"],mudbomb:["4L20","5L20","6L18"],mudshot:["3E","4E","5E","3S0","6E"],mudslap:["3T","4L13","4T","5L13","6L11"],mudsport:["4L4","5L4","6L5"],naturalgift:["4M"],odorsleuth:["3L1","4L1","5L1","5D","6L1"],powdersnow:["3L10","4L8","5L8","6L8"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5E","5T","6E"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],takedown:["3E","3L28","4E","4L32","5E","5L32","6L28","6E"],toxic:["3M","4M","5M","6M"],confide:["6M"],freezedry:["6E"]}}, + piloswine:{learnset:{amnesia:["3L70","4L65","5L65","6L58"],ancientpower:["4L1","4T","5L1","6L1"],attract:["3M","4M","5M","6M"],avalanche:["4M"],blizzard:["3M","3L56","4M","4L56","5M","5L56","6L52","6M"],bodyslam:["3T"],bulldoze:["5M","6M"],captivate:["4M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],earthquake:["3M","4M","4L40","5M","5L40","6L46","6M"],endeavor:["4T","5T"],endure:["3L1","3L19","3T","4M","4L16","5L16","6L14"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furyattack:["3L33","4L33","5L33","6L33"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hornattack:["3L1"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icefang:["4L28","5L28","6L24"],icywind:["3T","4L25","4T","5L25","5T","6L21"],lightscreen:["3M","4M","5M","6M"],mimic:["3T"],mist:["3L42","4L48","5L48","6L37"],mudbomb:["4L20","5L20","6L18"],mudslap:["3T","4L13","4T","5L13","6L11"],mudsport:["4L1","4L4","5L1","5L4","6L1","6L5"],naturalgift:["4M"],odorsleuth:["3L1","4L1","5L1","6L1"],peck:["4L1","5L1","6L1"],powdersnow:["3L1","3L10","4L1","4L8","5L1","5L8","6L1","6L8"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],takedown:["3L28","4L32","5L32","6L28"],thrash:["5L41","6L41"],toxic:["3M","4M","5M","6M"],confide:["6M"]}}, + mamoswine:{learnset:{ancientpower:["4L1","4T","5L1","6L1"],attract:["4M","5M","6M"],avalanche:["4M"],blizzard:["4M","4L56","5M","5L56","6L52","6M"],block:["4T","5T"],bulldoze:["5M","6M"],captivate:["4M"],dig:["4M","5M","6M"],doublehit:["4L33","5L33","5S0","6L33"],doubleteam:["4M","5M","6M"],earthpower:["4T","5T"],earthquake:["4M","4L40","5M","5L40","6L46","6M"],endeavor:["4T","5T"],endure:["4M","4L16","5L16","6L14"],facade:["4M","5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["4M","4L25","5M","5L25","5S0","6L21","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],icefang:["4L28","5L28","5S0","6L24"],icywind:["4T","5T"],lightscreen:["4M","5M","6M"],mist:["4L48","5L48","6L37"],mudbomb:["4L20","5L20","6L18"],mudslap:["4L13","4T","5L13","6L11"],mudsport:["4L1","4L4","5L1","5L4","6L1","6L5"],naturalgift:["4M"],odorsleuth:["4L1","5L1","6L1"],peck:["4L1","5L1","6L1"],powdersnow:["4L1","4L8","5L1","5L8","6L1","6L8"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],reflect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandstorm:["4M","5M","6M"],scaryface:["4L65","5L65","6L1","6L58"],secretpower:["4M"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],superpower:["4T","5T"],swagger:["4M","5M","6M"],takedown:["4L32","5L32","5S0","6L28"],thrash:["5L41","6L41"],toxic:["4M","5M","6M"],ironhead:["5T"],knockoff:["5T"],confide:["6M"]}}, + corsola:{learnset:{amnesia:["3E","4E","5E","6E"],ancientpower:["3L45","4L32","4T","5L32","6L20"],aquaring:["4E","4L37","5E","5L37","6L38","6E"],attract:["3M","4M","5M","6M"],barrier:["3E","4E","5E","6E"],bide:["5E","6E"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brine:["4M"],bubble:["3L12","4L8","5L8","5D","6L8"],bubblebeam:["3L23","4L25","5L25","6L17"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],confuseray:["3E","4E","5E","5D","6E"],curse:["4E","5E","6E"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4L53","4T","5L53","5T","6L47"],earthquake:["3M","4M","5M","6M"],endeavor:["4T","5T"],endure:["3T","4M","5L35","6L35"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],flail:["5L52","6L50"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],harden:["3L6","4L4","5L4","6L4"],headbutt:["4T"],headsmash:["5E","6E"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],iciclespear:["3E","4E","5E","6E"],icywind:["4T","5T"],ingrain:["3E","4E","5E","6E"],irondefense:["5L29","5T","6L29"],lightscreen:["3M","4M","5M","6M"],luckychant:["4L28","5L28","6L23"],magiccoat:["4T","5T"],mimic:["3T"],mirrorcoat:["3L39","4L48","5L48","6L45"],mist:["3E","4E","5E","6E"],mudslap:["3T","4T"],mudsport:["3S0"],naturalgift:["4M"],naturepower:["4E","5E","6M","6E"],powergem:["4L44","5L44","6L41"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],recover:["3L17","4L13","5L13","6L10"],reflect:["3M","4M","5M","6M"],refresh:["3L17","4L16","5L16","6L13"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockblast:["3L34","4L20","5L20","6L31"],rockpolish:["4M","5M","6M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],sandstorm:["3M","4M","5M","6M"],scald:["5M","6M"],screech:["3E","4E","5E","6E"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spikecannon:["3L28","4L40","5L40","6L27"],stealthrock:["4M","5D","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","3S0","6L1"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M","5E","6E"],whirlpool:["4M"],confide:["6M"]}}, + remoraid:{learnset:{acidspray:["5E","6E"],attract:["3M","4M","5M","6M"],aurorabeam:["3E","3L22","4E","4L14","5E","5L14","6L14","6E"],blizzard:["3M","4M","5M","6M"],bounce:["4T","5T"],brine:["4M","5D"],bubblebeam:["3L22","4L19","5L19","6L18"],bulletseed:["4M","4L27","5L27","6L38"],captivate:["4M"],chargebeam:["4M","5M","6M"],defensecurl:["3T"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flail:["4E","5E","6E"],flamethrower:["3M","4M","5M","6M"],focusenergy:["3L33","4L23","5L23","6L22"],frustration:["3M","4M","5M","6M"],gunkshot:["4T","5T"],haze:["3E","4E","5E","6E"],hiddenpower:["3M","4M","5M","6M"],hydropump:["5L42","6L42"],hyperbeam:["3M","3L55","4M","4L45","5M","5L45","6L46","6M"],icebeam:["3M","3L44","4M","4L40","5M","5L40","6L34","6M"],icywind:["4T","5T"],incinerate:["5M","6M"],lockon:["3L11","4L6","5L6","5D","6L6"],mimic:["3T"],mudshot:["5E","6E"],mudslap:["3T","4T"],naturalgift:["4M"],octazooka:["3E","4E","5E","6E"],protect:["3M","4M","5M","6M"],psybeam:["3L22","4L10","5L10","6L10"],psychic:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockblast:["3E","4E","5E","5D","6E"],round:["5M","6M"],scald:["5M","6M"],screech:["3E","4E","5E","6E"],secretpower:["3M","4M"],seedbomb:["4T","5T"],signalbeam:["4L36","4T","5L36","5T","6L30"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4E","4T","5E","5T","6E"],soak:["5L49","6L50"],stringshot:["4T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3E","4E","5E","6E"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T","5E","6E"],thief:["3M","4M","5M","6M"],thunderwave:["3E","3T","4E","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","4L1","5L1","6L1"],waterpulse:["3M","4M","4L32","5E","5L32","6L26","6E"],waterspout:["4E","5E","6E"],whirlpool:["4M"],confide:["6M"],entrainment:["6E"]}}, + octillery:{learnset:{attract:["3M","4M","5M","6M"],aurorabeam:["3L22","4L1","4L14","5L1","5L14","6L1","6L14"],blizzard:["3M","4M","5M","6M"],bounce:["4T","5T"],brine:["4M"],bubblebeam:["3L22","4L19","5L19","6L18"],bulletseed:["3M","4M","4L29","5L29","6L46"],captivate:["4M"],chargebeam:["4M","5M","6M"],constrict:["3L11","4L1","4L6","5L1","5L6","6L1","6L6"],defensecurl:["3T"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],focusenergy:["3L38","4L23","5L23","6L22"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gunkshot:["4L1","4T","5L1","5T","6L1"],hiddenpower:["3M","4M","5M","6M"],hydropump:["5L52","6L52"],hyperbeam:["3M","3L70","4M","4L55","5M","5L55","4S0","6L58","6M"],icebeam:["3M","3L54","4M","4L48","5M","5L48","4S0","6L40","6M"],icywind:["4T","5T"],incinerate:["5M","6M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],octazooka:["3L25","4L25","5L25","4S0","6L25"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psybeam:["3L22","4L1","4L10","5L1","5L10","6L1","6L10"],psychic:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockblast:["4L1","5L1","6L1"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],signalbeam:["4L42","4T","5L42","4S0","5T","6L34"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5M","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],soak:["5L61","6L64"],stringshot:["4T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],thief:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","4L1","5L1","6L1"],waterpulse:["3M","4M"],whirlpool:["4M"],wringout:["4L36","5L36","6L28"],bind:["5T"],confide:["6M"]}}, + delibird:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],aurorabeam:["3E","4E","5E","6E"],avalanche:["4M"],bestow:["5E","6E"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4T","5T"],brickbreak:["4M","5M","6M"],captivate:["4M"],counter:["3T"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fakeout:["4E","5E","6E"],fling:["4M","5M","6M"],fly:["3M","4M","5M","6M"],focuspunch:["3M","4M","5D"],frostbreath:["5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["3E","4E","5E","6E"],gunkshot:["4T","5T"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],iceball:["3E","4E","5E","6E"],icebeam:["3M","4M","5M","6M"],icepunch:["4E","5E","5T","6E"],iceshard:["4E","5E","5D","6E"],icywind:["3T","4T","5E","5T","6E"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],pluck:["4M","5M"],present:["3L1","4L1","5L1","5D","3S0","6L1"],protect:["3M","4M","5M","6M"],quickattack:["3E","4E","5E","6E"],raindance:["3M","4M","5M","6M"],rapidspin:["3E","4E","5E","6E"],recycle:["4M","5T"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["4T"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],signalbeam:["4T","5T"],skyattack:["3T","4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T"],splash:["3E","4E","5E","6E"],substitute:["3T","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],poweruppunch:["6M"],confide:["6M"],freezedry:["6E"],destinybond:["6E"],spikes:["6E"]}}, + mantyke:{learnset:{acrobatics:["5M","6M"],aerialace:["4M","5M","6M"],agility:["4L19","5L19","6L32"],aircutter:["4T"],airslash:["5L36","6L36"],amnesia:["5E","6E"],aquaring:["4L46","5L46","6L39"],attract:["4M","5M","6M"],blizzard:["4M","5M","6M"],bounce:["4L40","4T","5L40","5T","6L46"],bubble:["4L1","5L1","6L1"],bubblebeam:["4L10","5L10","6L7"],bulldoze:["5M","6M"],captivate:["4M"],confuseray:["4L37","5L37","6L11"],dive:["4T","5M"],doubleteam:["4M","5M","6M"],earthquake:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],frustration:["4M","5M","6M"],hail:["4M","5M","6M"],haze:["4E","5E","6E"],headbutt:["4L13","4T","5L13","6L16"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],hydropump:["4E","4L49","5E","5L49","6L49","6E"],icebeam:["4M","5M","6M"],icywind:["4T","5T"],mirrorcoat:["4E","5E","6E"],mudslap:["4T"],mudsport:["4E","5E","6E"],naturalgift:["4M"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockslide:["4E","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["4M"],signalbeam:["4E","5E","5T","6E"],slam:["4E","5E","6E"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],splash:["4E","5E","6E"],substitute:["4M","5M","6M"],supersonic:["4L4","5L4","6L3"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],tackle:["4L1","5L1","6L1"],takedown:["4L31","5L31","6L27"],toxic:["4M","5M","6M"],twister:["4E","5E","6E"],waterfall:["4M","5M","6M"],waterpulse:["4M","4L28","5L28","6L19"],watersport:["4E","5E","6E"],whirlpool:["4M"],wideguard:["5E","5L23","6L23","6E"],wingattack:["4L22","5L22","6L14"],confide:["6M"]}}, + mantine:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],agility:["3L29","4L19","5L19","6L32"],aircutter:["4T","5D"],airslash:["5L36","6L36"],amnesia:["5E","6E"],aquaring:["4L46","5L46","6L39"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4L40","4T","5L40","5T","6L46"],brine:["4M"],bubble:["3L1","4L1","5L1","3S0","6L1"],bubblebeam:["3L15","4L1","4L10","5L1","5L10","6L1","6L7"],bulldoze:["5M","6M"],bulletseed:["4M","4L1","5L1","6L1"],captivate:["4M"],confuseray:["3L50","4L37","5L37","6L11"],defog:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gunkshot:["4T","5T"],hail:["3M","4M","5M","6M"],haze:["3E","4E","5E","6E"],headbutt:["4L13","4T","5L13","6L16"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3E","4E","4L49","5E","5L49","6L49","6E"],hyperbeam:["4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],mimic:["3T"],mirrorcoat:["4E","5E","5D","6E"],mudslap:["3T","4T"],mudsport:["3E","4E","5E","6E"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psybeam:["4L1","5L1","6L1"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3E","4E","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],signalbeam:["4L1","4T","5L1","5T","6L1"],slam:["3E","4E","5E","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],splash:["4E","5E","6E"],stringshot:["4T"],substitute:["3T","4M","5M","6M"],supersonic:["3L8","4L1","4L4","5L1","5L4","5D","3S0","6L1","6L3"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S0","6L1"],tailwind:["4T","5T"],takedown:["3L22","4L31","5L31","6L27"],toxic:["3M","4M","5M","6M"],twister:["3E","4E","5E","6E"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","3L43","4M","4L28","5L28","6L19"],watersport:["4E","5E","6E"],whirlpool:["4M"],wideguard:["5E","5L23","6L23","6E"],wingattack:["3L36","4L22","5L22","6L14"],confide:["6M"]}}, + skarmory:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L16","4L14","4L12","5L12","6L12"],aircutter:["3L29","4L24","4T","4L23","5L23","6L23"],airslash:["4L40","4L39","5L42","6L42"],assurance:["4E","5E","6E"],attract:["3M","4M","5M","6M"],autotomize:["5L39","6L39"],bravebird:["4E","5E","6E"],captivate:["4M"],counter:["3T"],curse:["3E","4E","5E","6E"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T","6M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drillpeck:["3E","4E","5E","5D","6E"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],feint:["4L20","5L20","6L20"],flash:["4M","5M","6M"],flashcannon:["4M","5M","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furyattack:["3L26","4L20","4L17","5L17","6L17"],furycutter:["4T"],guardswap:["4E","5E","6E"],hiddenpower:["3M","4M","5M","6M"],icywind:["4T","5T"],irondefense:["4T","5T"],leer:["3L1","4L1","5L1","6L1"],metalsound:["3L45","4L33","4L31","5L31","6L31"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4L50","4L45","5L50","6L50"],ominouswind:["4T"],payback:["4M","5M","6M"],peck:["3L1","4L1","5L1","5D","6L1"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],pursuit:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],roost:["4M","5D","5T","6M"],round:["5M","6M"],sandattack:["3L10","4L7","4L6","5L6","6L6"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],skyattack:["3E","3T","4E","4T","5E","5T","6E"],skydrop:["5M","6M"],slash:["4L46","4L42","5L45","6L45"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spikes:["3L42","4L27","4L28","5L28","6L28"],stealthrock:["4M","5E","5T","6E"],steelwing:["3M","3L32","4M","4L38","4L34","5L34","6L34","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3L13","3T","4L11","4T","4L9","5L9","6L9"],swordsdance:["4M","5M","6M"],tailwind:["4T","5T"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],whirlwind:["3E","4E","5E","6E"],xscissor:["4M","5M","6M"],ironhead:["5T"],confide:["6M"]}}, + houndour:{learnset:{attract:["3M","4M","5M","6M"],beatup:["3E","4E","4L27","5E","5L25","6L25","6E"],bite:["3L25","4L17","5L16","6L16"],bodyslam:["3T"],captivate:["4M"],charm:["3S1"],counter:["3E","3T","4E","5E","6E"],crunch:["3L49","4L48","5L49","6L49"],darkpulse:["4M","5D","5T","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],embargo:["4M","4L40","5M","5L37","6L37","6M"],ember:["3L1","4L1","5L1","3S0","3S1","6L1"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L37","4L35","5L32","3S1","6L32"],feint:["4E","5E","5D","6E"],fireblast:["3M","4M","5M","6M"],firefang:["4E","4L30","5E","5L28","6L28","6E"],firespin:["3E","4E","5E","6E"],flamecharge:["5M","6M"],flamethrower:["3M","3L43","4M","4L43","5M","5L44","6L44","6M"],foulplay:["5L40","5T","6L40"],frustration:["3M","4M","5M","6M"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],howl:["3L7","4L4","5L4","5D","3S0","6L4"],incinerate:["5M","6M"],inferno:["5L56","6L56"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","3S0","6L1"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4E","4L53","5E","5L52","6L52","6E"],naturalgift:["4M"],nightmare:["3T"],odorsleuth:["3L31","4L22","5L20","6L20"],overheat:["3M","4M","5M","6M"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],punishment:["4E","5E","6E"],pursuit:["3E","4E","5E","6E"],rage:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],reversal:["3E","4E","5E","6E"],roar:["3M","3L19","4M","4L14","5M","5L13","3S1","6L13","6M"],rocksmash:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],smog:["3L13","4L9","5L8","6L8"],snarl:["5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spite:["3E","4E","4T","5E","5T","6E"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T","5E","6E"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunderfang:["4E","5E","6E"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],willowisp:["3E","4E","4M","5M","6M"],hypervoice:["5T"],confide:["6M"],destinybond:["6E"]}}, + houndoom:{learnset:{attract:["3M","4M","5M","6M"],beatup:["4L28","5L26","6L26"],bite:["3L27","4L17","5L16","6L16"],bodyslam:["3T"],captivate:["4M"],counter:["3T"],crunch:["3L59","4L54","5L56","6L56"],darkpulse:["4M","5T","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],embargo:["4M","4L44","5M","5L41","6L41","6M"],ember:["3L1","4L1","5L1","6L1"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L43","4L38","5L35","6L35"],fireblast:["3M","4M","5M","6M"],firefang:["4L32","5L30","6L30"],flamecharge:["5M","6M"],flamethrower:["3M","3L51","4M","4L48","5M","5L50","6L50","6M"],foulplay:["5L45","5T","6L45"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],howl:["3L1","3L7","4L1","4L4","5L1","5L4","6L1","6L4"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],inferno:["5L65","6L1","6L65"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","6L1"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L60","5L60","6L1","6L60"],naturalgift:["4M"],nightmare:["3T"],odorsleuth:["3L35","4L22","5L20","6L20"],overheat:["3M","4M","5M","6M"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L19","4M","4L14","5M","5L13","6L13","6M"],rocksmash:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],smog:["3L13","4L1","4L9","5L1","5L8","6L1","6L8"],snarl:["5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spite:["4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thunderfang:["4L1","5L1","6L1"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],willowisp:["4M","5M","6M"],hypervoice:["5T"],confide:["6M"]}}, + phanpy:{learnset:{ancientpower:["3E","4E","4T","5E","6E"],attract:["3M","4M","5M","6M"],bodyslam:["3E","3T","4E","5E","6E"],bulldoze:["5M","6M"],captivate:["4M"],charm:["4L33","5L33","6L33"],counter:["3E","3T","4E","5E","6E"],defensecurl:["3L9","3T","4L1","5L1","6L1"],doubleedge:["3L49","3T","4L42","5L42","6L42"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endeavor:["4E","5E","5T","6E"],endure:["3L41","3T","4M","4L28","5L28","6L28"],facade:["3M","4M","5M","6M"],fissure:["3E","4E","5E","6E"],flail:["3L17","4L6","5L6","5D","6L6"],focusenergy:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],gunkshot:["4T","5T"],headbutt:["4T"],headsmash:["4E","5E","6E"],heavyslam:["5E","5D","6E"],hiddenpower:["3M","4M","5M","6M"],iceshard:["4E","5E","6E"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4L37","4T","5L37","5T","6L37"],mimic:["3T"],mudslap:["3T","4T","5E","6E"],naturalgift:["4M","4L19","5L19","6L19"],odorsleuth:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3L33","3T","4L15","4T","5L15","6L15"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5D","5T"],slam:["4L24","5L24","6L24"],sleeptalk:["3T","4M","5T","6M"],snore:["3E","3T","4E","4T","5E","5T","6E"],stealthrock:["4M","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],takedown:["3L25","4L10","5L10","6L10"],toxic:["3M","4M","5M","6M"],hypervoice:["5T"],confide:["6M"],playrough:["6E"]}}, + donphan:{learnset:{ancientpower:["4T"],assurance:["4L31","5L31","6L31"],attract:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],bounce:["4T","5T"],bulldoze:["5M","5L1","6L1","6M"],captivate:["4M"],counter:["3T"],defensecurl:["3L9","3T","4L1","5L1","6L1"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],earthquake:["3M","3L49","4M","4L46","5M","5L46","6L46","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],firefang:["4L1","5L1","6L1"],flail:["3L17","4L1"],frustration:["3M","4M","5M","6M"],furyattack:["3L25","4L25","5L25","6L25"],gigaimpact:["4M","4L54","5M","5L54","6L54","6M"],growl:["3L1","4L1","5L1","6L1"],gunkshot:["4T","5T"],gyroball:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hornattack:["3L1","4L1","5L1","6L1"],hyperbeam:["3M","4M","5M","6M"],irondefense:["4T","5T"],irontail:["3M","4M","5T"],knockoff:["4L10","4T","5L10","5T","6L10"],magnitude:["4L19","5L19","6L19"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],odorsleuth:["3L1"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],rapidspin:["3L41","4L6","5L6","6L6"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3L33","3T","4L15","4T","5L15","6L15"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scaryface:["4L39","5L39","6L39"],secretpower:["3M","4M"],seedbomb:["4T","5T"],slam:["4L24","5L24","6L24"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],thunderfang:["4L1","5L1","6L1"],toxic:["3M","4M","5M","6M"],lastresort:["5T"],hypervoice:["5T"],endeavor:["5T"],confide:["6M"]}}, + stantler:{learnset:{astonish:["3L13","3L11","4L7","5L7","6L0"],attract:["3M","4M","5M","6M"],bite:["3E","4E","5E","6E"],bodyslam:["3T"],bounce:["4T","5T"],bulldoze:["5M","6M"],calmmind:["3M","3L49","3L47","4M","4L27","5M","5L27","6L0","6M"],captivate:["4M","4L49","5L53","6L0"],chargebeam:["4M","5M","6M"],confuseray:["3L43","3L41","4L23","5L23","6L0"],disable:["3E","4E","5E","5D","6E"],doubleedge:["3T"],doublekick:["4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],extrasensory:["3E","4E","5E","6E"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gravity:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hypnosis:["3L19","3L17","4L10","5L10","6L0"],imprison:["4L43","5L49","6L0"],irontail:["3M","4M","5T"],jumpkick:["5L43","6L0"],lastresort:["4T","5T"],leer:["3L7","4L3","5L3","3S0","6L0"],lightscreen:["3M","4M","5M","6M"],mefirst:["4L53","5E","5L55","6E"],megahorn:["4E","5E","6E"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["5E","6E"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3E","3T","4E","4M","5M","6M"],psyshock:["5M","6M"],rage:["5E","6E"],raindance:["3M","4M","5M","6M"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],roleplay:["3L31","4L33","4T","5L33","5T","6L0"],round:["5M","6M"],sandattack:["3L31","3L27","4L16","5L16","6L0"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5D","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spite:["3E","4E","4T","5E","5T","6E"],stomp:["3L25","3L21","4L13","5L13","6L0"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3E","3T","4E","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5D","3S0","6L0"],takedown:["3L37","4L21","5L21","6L0"],thief:["3M","4M","5M","6M"],thrash:["4E","5E","6E"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trickroom:["4M","5M","6M"],uproar:["4T","5T"],wildcharge:["5M","6M"],workup:["5M"],zenheadbutt:["4E","4L38","4T","5E","5L38","5T","6E"],magicroom:["5T"]}}, + smeargle:{learnset:{captivate:["5D"],falseswipe:["5S1"],meanlook:["5S1"],odorsleuth:["5S1"],sketch:["3L1","3L11","3L21","3L31","3L41","3L51","3L61","3L71","3L81","3L91","4L1","4L11","4L21","4L31","4L41","4L51","4L61","4L71","4L81","4L91","5L1","5L11","5L21","5L31","5L41","5L51","5L61","5L71","5L81","5L91","5D","3S0","6L1","6L11","6L21","6L31","6L41","6L51","6L61","6L71","6L81","6L91"],sleeptalk:["5D"],spore:["5S1"]}}, + miltank:{learnset:{attract:["3M","4M","5M","6M"],bide:["3L26","4L15","5L15","6L15"],blizzard:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3L43","3T","4L24","5L24","6L24"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M","4L35","5L35","6L35"],counter:["3T"],curse:["3E","4E","5E","5D","6E"],defensecurl:["3L8","3T","4L5","5L5","5D","6L5"],dizzypunch:["4E","5E","6E"],doubleedge:["3T","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3E","3T","4E","4M","5E","6E"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],growl:["3L4","4L3","5L3","6L3"],gyroball:["4M","4L41","5M","5L41","6L41","6M"],hammerarm:["4E","5E","6E"],headbutt:["4T"],healbell:["3L53","4L48","4T","5L48","5T","6L48"],heartstamp:["5E","6E"],helpinghand:["3E","4E","4T","5E","5T","6E"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],irontail:["3M","4M","5D","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],milkdrink:["3L19","4L11","5L11","6L11"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","5E","6E"],present:["3E","4E","5E","6E"],protect:["3M","4M","5M","6M"],psychup:["3E","3T","4E","4M","5M","6M"],punishment:["4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],reversal:["3E","4E","5E","6E"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3L34","3T","4L19","4T","5L19","6L19"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3E","3T","4E","5E","6E"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3E","3T","4E","4M","5E","5T","6M","6E"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stealthrock:["4M","5T"],stomp:["3L13","4L8","5L8","6L8"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],wakeupslap:["4L55","5L55","6L50"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"],zenheadbutt:["4L29","4T","5L29","5T","6L29"],afteryou:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + raikou:{learnset:{aurasphere:["4S1"],bite:["3L1","4L1","5L1","6L0"],bodyslam:["3T"],bulldoze:["5M","6M"],calmmind:["3M","3L81","4M","4L78","5M","5L78","6L0","6M"],chargebeam:["4M","5M","6M"],crunch:["3L61","4L43","5L43","3S0","6L0"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],discharge:["4L57","5L57","6L0"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],extrasensory:["4L64","5L64","6L0"],extremespeed:["4S1"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","6L0"],lightscreen:["4M","5M","6M"],magnetrise:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],quash:["5M","6M"],quickattack:["3L31","4L22","5L22","3S0","6L0"],raindance:["3M","4M","4L71","5M","5L71","6L0","6M"],reflect:["3M","3L51","4M","4L36","5M","5L36","3S0","6L0","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L21","4M","4L15","5M","5L15","6L0","6M"],rockclimb:["4M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],shadowball:["4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],spark:["3L41","4L29","5L29","3S0","6L0"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],thunder:["3M","3L71","4M","4L71","4L85","5M","5L85","6L0","6M"],thunderbolt:["3M","4M","5M","6M"],thunderfang:["4L50","5L50","6L0"],thundershock:["3L11","4L8","5L8","6L0"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],voltswitch:["5M","6M"],weatherball:["4S1"],wildcharge:["5M","6M"],zapcannon:["4S1"]}}, + entei:{learnset:{bite:["3L1","4L1","5L1","6L0"],bodyslam:["3T"],bulldoze:["5M","6M"],calmmind:["3M","3L81","4M","4L78","5M","5L78","6L0","6M"],crushclaw:["4S1"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],ember:["3L11","4L8","5L8","6L0"],endure:["3T","4M"],eruption:["4L85","5L85","6L0"],extrasensory:["4L64","5L64","6L0"],extremespeed:["4S1"],facade:["3M","4M","5M","6M"],fireblast:["3M","3L71","4M","4L71","5M","5L71","6L0","6M"],firefang:["4L50","5L50","6L0"],firespin:["3L31","4L22","5L22","3S0","6L0"],flamecharge:["5M","6M"],flamethrower:["3M","3L51","4M","4L36","5M","5L36","3S0","6L0","6M"],flareblitz:["4S1"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],howl:["4S1"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],lavaplume:["4L57","5L57","6L0"],leer:["3L1","4L1","5L1","6L0"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],quash:["5M","6M"],raindance:["3M","4M","5M","6M"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L21","4M","4L15","5M","5L15","6L0","6M"],rockclimb:["4M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],shadowball:["4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stomp:["3L41","4L29","5L29","3S0","6L0"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3L61","3T","4M","4L43","5M","5L43","3S0","6L0","6M"],swift:["3T","4T"],toxic:["3M","4M","5M","6M"],willowisp:["4M","5M","6M"]}}, + suicune:{learnset:{airslash:["4S1"],aquaring:["4S1"],aurorabeam:["3L41","4L29","5L29","3S0","6L0"],avalanche:["4M"],bite:["3L1","4L1","5L1","6L0"],blizzard:["3M","4M","4L85","5M","5L85","6L0","6M"],bodyslam:["3T"],brine:["4M"],bubblebeam:["3L11","4L8","5L8","6L0"],bulldoze:["5M","6M"],calmmind:["3M","3L81","4M","4L78","5M","5L78","6L0","6M"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],extrasensory:["4L64","5L64","6L0"],extremespeed:["4S1"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gust:["3L31","4L22","5L22","3S0","6L0"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L71","4L71","5L71","6L0"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icefang:["4L50","5L50","6L0"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","6L0"],mimic:["3T"],mirrorcoat:["3L61","4L43","5L43","3S0","6L0"],mist:["3L51","4L36","5L36","3S0","6L0"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],quash:["5M","6M"],raindance:["3M","3L21","4M","4L15","5M","5L15","6L0","6M"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],shadowball:["4M","5M","6M"],sheercold:["4S1"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4L57","4T","5L57","5T","6L0"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"]}}, + larvitar:{learnset:{ancientpower:["3E","4E","4T","5E","6E"],assurance:["4E","5E","6E"],attract:["3M","4M","5M","6M"],bite:["3L1","4L1","5L1","5D","3S0","5S1","6L1"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L14","6L14"],crunch:["3L43","4L37","5L41","6L41"],curse:["3E","4E","5E","6E"],darkpulse:["4M","4L28","5L32","5D","5T","6L32","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragondance:["3E","4E","5E","3S0","6E"],earthpower:["4T","5T"],earthquake:["3M","3L50","4M","4L41","5M","5L46","6L46","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],focusenergy:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","3L57","4M","4L50","5M","5L55","6L55","6M"],irondefense:["4E","5E","5T","6E"],ironhead:["4E","4T","5E","5T","6E"],irontail:["5E","5T","6E"],leer:["3L1","4L1","5L1","5S1","6L1"],mimic:["3T"],mudslap:["3T"],naturalgift:["4M"],outrage:["3E","4E","5E","5T","3S0","6E"],payback:["4M","4L32","5M","5L37","6L37","6M"],protect:["3M","4M","5M","6M"],pursuit:["3E","4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3L22","3T","4M","4L14","5M","5L19","6L19","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","3L8","4M","4L5","5M","5L5","3S0","5S1","6L5","6M"],scaryface:["3L36","4L19","5L23","6L23"],screech:["3L15","4L10","5L10","6L10"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],stealthrock:["4M","5E","5D","5T","6E"],stomp:["3E","4E","5E","6E"],stoneedge:["4M","4L46","5M","5L50","6L50","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5S1","5T"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],thrash:["3L29","4L23","5L28","6L28"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],poweruppunch:["6M"],confide:["6M"]}}, + pupitar:{learnset:{ancientpower:["4T"],attract:["3M","4M","5M","6M"],bite:["3L1","4L1","5L1","6L1"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L14","6L14"],crunch:["3L47","4L41","5L47","6L47"],darkpulse:["4M","4L28","5L34","5T","6L34","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],earthquake:["3M","3L56","4M","4L47","5M","5L54","6L54","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","3L65","4M","4L60","5M","5L67","6L67","6M"],irondefense:["4T","5T"],ironhead:["4T","5T"],leer:["3L1","4L1","5L1","6L1"],mimic:["3T"],mudslap:["3T"],naturalgift:["4M"],payback:["4M","4L34","5M","5L41","6L41","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3L22","3T","4M","4L14","5M","5L19","6L19","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","3L1","3L8","4M","4L1","4L5","5M","5L1","5L5","6L1","6L5","6M"],scaryface:["3L38","4L19","5L23","6L23"],screech:["3L1","3L15","4L1","4L10","5L1","5L10","6L1","6L10"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","4L54","5M","5L60","6L60","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],thrash:["3L29","4L23","5L28","6L28"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],irontail:["5T"],outrage:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + tyranitar:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],avalanche:["4M"],bite:["3L1","4L1","5L1","6L1"],blizzard:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L14","6L14"],counter:["3T"],crunch:["3L47","4L41","5L47","3S0","5S1","5S2","6L47"],cut:["3M","4M","5M","6M"],darkpulse:["4M","4L28","5L34","5T","6L34","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonclaw:["3M","4M","5M","6M"],dragonpulse:["4M","5T"],dragontail:["5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L61","4M","4L47","5M","5L54","3S0","5S2","6L54","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","5S1","6M"],firefang:["4L1","5L1","6L1"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","5L82","6L82","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","3L75","4M","4L70","5M","5L73","6L73","6M"],icebeam:["3M","4M","5M","5S1","6M"],icefang:["4L1","5L1","6L1"],icepunch:["4T","5T"],incinerate:["5M","6M"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],leer:["3L1","4L1","5L1","6L1"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],outrage:["4T","5T"],payback:["4M","4L34","5M","5L41","5S2","6L41","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["3L22","3T","4M","4L14","5M","5L19","6L19","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","3L1","3L8","4M","4L1","4L5","5M","5L1","5L5","6L1","6L5","6M"],scaryface:["3L38","4L19","5L23","3S0","6L23"],screech:["3L1","3L15","4L1","4L10","5L1","5L10","6L1","6L10"],secretpower:["3M","4M"],seismictoss:["3T","5S2"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","4L54","5M","5L63","5S1","6L63","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],thrash:["3L29","4L23","5L28","3S0","6L28"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderfang:["4L1","5L1","6L1"],thunderpunch:["4T","5T"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],waterpulse:["3M","4M"],whirlpool:["4M"],foulplay:["5T"],irondefense:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + lugia:{learnset:{aerialace:["3M","4M","5M","6M"],aeroblast:["3L77","4L85","4L43","5L43","6L0"],aircutter:["4T"],ancientpower:["3L88","4L57","4T","5L57","6L0"],aquatail:["4T","5T"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brine:["4M"],bulldoze:["5M","6M"],calmmind:["3M","4M","4L93","5M","5L93","6L0","6M"],chargebeam:["4M","5M","6M"],defog:["4M"],dive:["3M","4T","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonpulse:["4M","5T"],dragonrush:["4L15","5L15","6L0"],dragontail:["5M","6M"],dreameater:["3T","4M","5M","6M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],extrasensory:["4L65","4L23","5L23","6L0"],facade:["3M","4M","5M","6M"],featherdance:["3S2"],flash:["4M","5M","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["3L99","4L79","5L79","6L0"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],gust:["3L22","4L15","4L9","5L9","6L0"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L44","4L29","4L37","5L37","3S0","3S1","3S2","6L0"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],lightscreen:["3M","4M","5M","6M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","4L51","4L85","5L85","6L0"],nightmare:["3T"],ominouswind:["4T"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychoboost:["3S2"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],punishment:["4L71","4L50","5L50","6L0"],raindance:["3M","3L55","4M","4L37","4L29","5M","5L29","3S0","3S1","6L0","6M"],recover:["3L33","4L23","4L71","5L71","3S0","3S1","3S2","6L0"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],safeguard:["3M","3L11","4M","4L9","4L65","5M","5L65","6L0","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],skyattack:["4L99","4T","5L99","5T","6L0"],skydrop:["5M","6M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3L66","3T","4L43","4T","3S0","3S1"],tailwind:["4T","5T"],telekinesis:["5M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],twister:["4T"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],weatherball:["4L1","5L1","6L0"],whirlpool:["4M"],whirlwind:["3L1","4L1","5L1","6L0"],zenheadbutt:["4T","5T"],hypervoice:["5T"],wonderroom:["5T"]}}, + hooh:{learnset:{aerialace:["3M","4M","5M","6M"],aircutter:["4T"],ancientpower:["3L88","4L57","4T","5L57","6L0"],bravebird:["4L15","5L15","6L0"],bulldoze:["5M","6M"],calmmind:["3M","4M","4L93","5M","5L93","6L0","6M"],chargebeam:["4M","5M","6M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],extrasensory:["4L65","4L23","5L23","6L0"],facade:["3M","4M","5M","6M"],fireblast:["3M","3L44","4M","4L29","4L37","5M","5L37","3S0","3S1","6L0","6M"],flamecharge:["5M","6M"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["3L99","4L79","5L79","6L0"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],gust:["3L22","4L15","4L9","5L9","6L0"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],ironhead:["4T","5T"],lightscreen:["3M","4M","5M","6M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","4L51","4L85","5L85","6L0"],nightmare:["3T"],ominouswind:["4T"],overheat:["3M","4M","5M","6M"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],punishment:["4L71","4L50","5L50","6L0"],raindance:["3M","4M","5M","6M"],recover:["3L33","4L23","4L71","5L71","3S0","3S1","6L0"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],sacredfire:["3L77","4L85","4L43","5L43","6L0"],safeguard:["3M","3L11","4M","4L9","4L65","5M","5L65","6L0","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skyattack:["3T","4L99","4T","5L99","5T","6L0"],skydrop:["5M","6M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],steelwing:["3M","4M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","3L55","4M","4L37","4L29","5M","5L29","3S0","3S1","6L0","6M"],swagger:["3T","4M","5M","6M"],swift:["3L66","3T","4L43","4T","3S0","3S1"],tailwind:["4T","5T"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],weatherball:["4L1","5L1","6L0"],whirlwind:["3L1","4L1","5L1","6L0"],willowisp:["4M","5M","6M"],zenheadbutt:["4T","5T"],hypervoice:["5T"]}}, + celebi:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["3L20","4L28","4T","5L28","3S1","3S3","6L0"],batonpass:["3L40","4L37","5L37","3S1","6L0"],calmmind:["3M","4M","5M","6M"],chargebeam:["4M","5M","6M"],confusion:["3L1","4L1","5L1","3S0","6L0"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],earthpower:["4T","5T"],echoedvoice:["5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["3L30","4L64","5L64","3S1","3S3","6L0"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],healbell:["3L1","4L1","4T","5L1","3S0","3S2","3S3","5T","6L0"],healblock:["4L55","5L55","6L0"],healingwish:["4L73","5L73","4S4","6L0"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],lastresort:["4T","5T"],leafstorm:["4L82","5L82","4S4","6L0"],leechseed:["3L1","4L1","5L1","3S2","6L0"],lightscreen:["3M","4M","5M","6M"],magicalleaf:["4L19","5L19","6L0"],magiccoat:["4T","5T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4S4"],naturalgift:["4M","4L46","5L46","6L0"],nightmare:["3T"],perishsong:["3L50","4L91","5L91","3S1","6L0"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],recover:["3L1","4L1","5L1","3S0","3S2","4S4","6L0"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","3L10","4M","4L10","5M","5L10","3S0","3S2","3S3","6L0","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],silverwind:["4M"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stealthrock:["4M","5T"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],thunderwave:["4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],waterpulse:["3M","4M"],worryseed:["4T","5T"],zenheadbutt:["4T","5T"],magicroom:["5T"],wonderroom:["5T"]}}, + treecko:{learnset:{absorb:["3L6","4L6","5L6","3S0","5S1","6L0"],acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],agility:["3L31","4L31","5L31","6L0"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulletseed:["3M","4M","5E","6E"],captivate:["4M"],counter:["3T"],crunch:["3E","4E","5E","6E"],crushclaw:["3E","4E","5E","6E"],cut:["3M","4M","5M","6M"],detect:["3L41","4L41","5L41","6L0"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doublekick:["4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],dragonbreath:["3E","4E","5E","6E"],drainpunch:["4M","5T"],dynamicpunch:["3T"],endeavor:["3E","4E","4T","5E","5T","6E"],endure:["3T","4M"],energyball:["4M","4L51","5M","5L51","6L0","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigadrain:["3M","3L46","4M","4L46","5L46","5T","6L0"],grassknot:["4M","5M","6M"],grasspledge:["5T","6T"],grasswhistle:["4E","5E","6E"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],leafstorm:["4E","5E","6E"],leechseed:["3E","4E","5E","6E"],leer:["3L1","4L1","5L1","3S0","5S1","6L0"],lowkick:["4T","5T"],magicalleaf:["4E","5E","6E"],megadrain:["3L26","4L26","5L26","6L0"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3E","4E","5E","6E"],naturalgift:["4M","5E","6E"],pound:["3L1","4L1","5L1","3S0","5S1","6L0"],protect:["3M","4M","5M","6M"],pursuit:["3L16","4L16","5L16","6L0"],quickattack:["3L11","4L11","5L11","6L0"],razorwind:["4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],screech:["3L21","4L21","5L21","6L0"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],slam:["3L36","4L36","5L36","6L0"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],synthesis:["4E","4T","5E","5T","6E"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],worryseed:["4E","4T","5E","5T","6E"]}}, + grovyle:{learnset:{absorb:["3L1","3L6","4L1","4L6","5L1","5L6","6L0","6L0"],acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],agility:["3L35","4L35","5L35","6L0"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M","6M"],detect:["3L47","4L47","5L47","6L0"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],endeavor:["4T","5T"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],falseswipe:["3L53","4M","4L53","5M","5L53","6L0","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3L16","3T","4L16","4T","5L16","6L0"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M","6M"],grasspledge:["5T","6T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],leafblade:["3L29","4L29","5L29","6L0"],leafstorm:["4L59","5L59","6L0"],leer:["3L1","4L1","5L1","6L0"],lowkick:["4T","5T"],lowsweep:["5M","6M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],pound:["3L1","4L1","5L1","6L0"],protect:["3M","4M","5M","6M"],pursuit:["3L17","4L17","5L17","6L0"],quickattack:["3L1","3L11","4L1","4L11","5L1","5L11","6L0","6L0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],screech:["3L23","4L23","5L23","6L0"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],slam:["3L41","4L41","5L41","6L0"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],worryseed:["4T","5T"],xscissor:["4M","5M","6M"]}}, + sceptile:{learnset:{absorb:["3L1","3L6","4L1","4L6","5L1","5L6","6L0","6L0"],acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],agility:["3L35","4L35","5L35","6L0"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M","6M"],detect:["3L51","4L51","5L51","6L0"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonclaw:["3M","4M","5M","6M"],dragonpulse:["4M","5S0","5T"],drainpunch:["4M","5T"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endeavor:["4T","5T"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],falseswipe:["3L59","4M","4L59","5M","5L59","6L0","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","5S0","6M"],focuspunch:["3M","4M"],frenzyplant:["4T","5T","6T"],frustration:["3M","4M","5M","6M"],furycutter:["3L16","3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],grasspledge:["5T","6T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],leafblade:["3L29","4L29","5L29","6L0"],leafstorm:["4L67","5L67","5S0","6L0"],leer:["3L1","4L1","5L1","6L0"],lowkick:["4T","5T"],lowsweep:["5M","6M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4L1","5L1","6L0"],outrage:["4T","5T"],pound:["3L1","4L1","5L1","6L0"],protect:["3M","4M","5M","6M"],pursuit:["3L17","4L17","5L17","6L0"],quickattack:["3L1","3L11","4L1","4L11","5L1","5L11","6L0","6L0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","5S0","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],screech:["3L23","4L23","5L23","6L0"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],slam:["3L43","4L43","5L43","6L0"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],worryseed:["4T","5T"],xscissor:["4M","4L16","5M","5L16","6L0","6M"]}}, + torchic:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["4E","5E","6E"],attract:["3M","4M","5M","6M"],batonpass:["4E","5E","6E"],bodyslam:["3T"],bounce:["4T","5T"],captivate:["4M"],counter:["3E","3T","4E","5E","6E"],crushclaw:["4E","5E","6E"],curse:["5E","6E"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],ember:["3L10","4L10","5L10","3S0","5S1","5S2","6L10"],endure:["3E","3T","4E","4M","5E","6E"],facade:["3M","4M","5M","6M"],featherdance:["4E","5E","6E"],feint:["4E","5E","6E"],fireblast:["3M","4M","5M","6M"],firepledge:["5T","6T"],firespin:["3L25","4L25","5L25","6L25"],flameburst:["5E","6E"],flamecharge:["5M","6M"],flamethrower:["3M","3L43","4M","4L43","5M","5L43","6L43","6M"],focusenergy:["3L7","4L7","5L7","3S0","5S1","5S2","6L7"],frustration:["3M","4M","5M","6M"],growl:["3L1","4L1","5L1","3S0","5S1","5S2","6L1"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],incinerate:["5M","6M"],lastresort:["4E","4T","5E","5T","6E"],lowkick:["5E","5T","6E"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mirrormove:["3L37","4L37","5L37","6L37"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4E","5E","6E"],overheat:["3M","4M","5M","6M"],peck:["3L16","4L16","5L16","6L16"],protect:["3M","4M","5M","6M"],quickattack:["3L28","4L28","5L28","6L28"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],reversal:["3E","4E","5E","6E"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandattack:["3L19","4L19","5L19","6L19"],scratch:["3L1","4L1","5L1","3S0","5S1","5S2","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],slash:["3L34","4L34","5L34","6L34"],sleeptalk:["3T","4M","5T","6M"],smellingsalts:["3E","4E","5E","6E"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3E","3T","4E","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],willowisp:["4M","5M","6M"],confide:["6M"]}}, + combusken:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4T","5T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","3L28","4M","4L28","5M","5L28","6L28","6M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doublekick:["3L16","4L16","5L16","6L16"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],ember:["3L1","3L13","4L1","4L13","5L1","5L13","6L10"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepledge:["5T","6T"],firepunch:["3T","4T","5T"],flamecharge:["5M","6M"],flamethrower:["3M","4M","5M","6M"],flareblitz:["4L54","5L54","6L54"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focusenergy:["3L1","3L7","4L1","4L7","5L1","5L7","6L7"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],growl:["3L1","4L1","5L1","6L1"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],incinerate:["5M","6M"],lastresort:["4T","5T"],lowkick:["4T","5T"],lowsweep:["5M","6M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mirrormove:["3L43","4L43","5L43","6L43"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],peck:["3L17","4L17","5L17","6L16"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],quickattack:["3L32","4L32","5L32","6L32"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandattack:["3L21","4L21","5L21","6L21"],scratch:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],skyuppercut:["3L50","4L50","5L50","6L50"],slash:["3L39","4L39","5L39","6L39"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],vacuumwave:["4T"],willowisp:["4M","5M","6M"],workup:["5M"],dualchop:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + blaziken:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],blastburn:["4T","5T","6T"],blazekick:["3L36","4L36","5L36","3S0","6L36"],bodyslam:["3T"],bounce:["4T","5T"],bravebird:["4L49","5L49","6L49"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","3L28","4M","4L28","5M","5L28","6L28","6M"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doublekick:["3L16","4L16","5L16","6L16"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],ember:["3L1","3L13","4L1","4L13","5L1","5L13","6L10"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepledge:["5T","6T"],firepunch:["3L1","3T","4L1","4T","5L1","5T","6L1"],flamecharge:["5M","6M"],flamethrower:["3M","4M","5M","6M"],flareblitz:["4L66","5L66","5S1","6L1","6L66"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focusenergy:["3L1","3L7","4L1","4L7","5L1","5L7","6L7"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],highjumpkick:["5L1","5S1","6L1"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],knockoff:["4T","5T"],lastresort:["4T","5T"],lowkick:["4T","5T"],lowsweep:["5M","6M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mirrormove:["3L49","3S0"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],peck:["3L17","4L17","5L17","6L16"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],quickattack:["3L32","4L32","5L32","6L32"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],sandattack:["3L21","4L21","5L21","6L21"],scratch:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],skyuppercut:["3L59","4L59","5L59","3S0","6L59"],slash:["3L42","4L42","5L42","3S0","6L42"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["4M","5M","6M"],stoneedge:["4M","5M","5S1","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],thunderpunch:["3T","4T","5S1","5T"],toxic:["3M","4M","5M","6M"],vacuumwave:["4T"],willowisp:["4M","5M","6M"],workup:["5M"],dualchop:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + mudkip:{learnset:{ancientpower:["4E","4T","5E","6E"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],avalanche:["5E","6E"],bide:["3L15","4L15","5L15","6L0"],bite:["4E","5E","6E"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M"],counter:["4E","5E","6E"],curse:["3E","4E","5E","6E"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M","6M"],doubleedge:["3T","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endeavor:["3L46","4L46","4T","5L46","5T","6L0"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],foresight:["3L19","4L19","5L19","6L0"],frustration:["3M","4M","5M","6M"],growl:["3L1","4L1","5L1","3S0","5S1","6L0"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L42","4L42","5L42","6L0"],iceball:["3E","4E","5E","6E"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lowkick:["4T","5T"],mimic:["3T"],mirrorcoat:["3E","4E","5E","6E"],mudbomb:["4E","5E","6E"],mudslap:["3L6","3T","4L6","4T","5L6","3S0","5S1","6L0"],mudsport:["3L24","4L24","5L24","6L0"],naturalgift:["4M"],protect:["3M","3L37","4M","4L37","5M","5L37","6L0","6M"],raindance:["3M","4M","5M","6M"],refresh:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludge:["4E","5E","6E"],sludgewave:["5M","6M"],snore:["3T","4T","5T"],stomp:["3E","4E","5E","6E"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","3S0","5S1","6L0"],takedown:["3L28","4L28","5L28","6L0"],toxic:["3M","4M","5M","6M"],uproar:["3E","4E","5E","6E"],waterfall:["3M","4M","5M","6M"],watergun:["3L10","4L10","5L10","3S0","5S1","6L0"],waterpledge:["5T","6T"],waterpulse:["3M","4M"],whirlpool:["3L33","4E","4L33","4M","5E","5L33","6E"],wideguard:["5E","6E"],yawn:["4E","5E","6E"],earthpower:["5T"]}}, + marshtomp:{learnset:{ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],bide:["3L15","4L15","5L15","6L0"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L46","4M","4L46","5M","5L46","6L0","6M"],echoedvoice:["5M","6M"],endeavor:["3L53","4L53","4T","5L53","5T","6L0"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fling:["4M","5M","6M"],foresight:["3L20","4L20","5L20","6L0"],frustration:["3M","4M","5M","6M"],growl:["3L1","4L1","5L1","6L0"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudbomb:["4L25","5L25","6L0"],muddywater:["3L37","4L37","5L37","6L0"],mudshot:["3L16","4L16","5L16","6L0"],mudslap:["3L1","3L6","3T","4L1","4L6","4T","5L1","5L6","6L0","6L0"],mudsport:["3L25"],naturalgift:["4M"],protect:["3M","3L42","4M","4L42","5M","5L42","6L0","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],sludgewave:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L0"],takedown:["3L31","4L31","5L31","6L0"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","3L10","4L1","4L10","5L1","5L10","6L0","6L0"],waterpledge:["5T","6T"],waterpulse:["3M","4M"],whirlpool:["4M"]}}, + swampert:{learnset:{ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],avalanche:["4M"],bide:["3L15","4L15","5L15","6L0"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","3L52","4M","4L52","5M","5L52","5S0","6L0","6M"],echoedvoice:["5M","6M"],endeavor:["3L61","4L61","4T","5L61","5T","6L0"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],foresight:["3L20","4L20","5L20","6L0"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L0"],hail:["3M","4M","5M","6M"],hammerarm:["4L69","5L69","5S0","6L0"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydrocannon:["4T","5T","6T"],hydropump:["5S0"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","5S0","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudbomb:["4L25","5L25","6L0"],muddywater:["3L39","4L39","5L39","6L0"],mudshot:["3L16","4L16","5L16","6L0"],mudslap:["3L1","3L6","3T","4L1","4L6","4T","5L1","5L6","6L0","6L0"],mudsport:["3L25"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","3L46","4M","4L46","5M","5L46","6L0","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],sludgewave:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L0"],takedown:["3L31","4L31","5L31","6L0"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","3L10","4L1","4L10","5L1","5L10","6L0","6L0"],waterpledge:["5T","6T"],waterpulse:["3M","4M"],whirlpool:["4M"]}}, + poochyena:{learnset:{assurance:["4L29","5L29","6L29"],astonish:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],bite:["3L13","4L13","5L13","6L13"],bodyslam:["3T"],captivate:["4M"],counter:["3T"],covet:["3E","4E","5E","5T","6E"],crunch:["3L41","4L53","5L53","6L53"],darkpulse:["4M","5D","5T","6M"],dig:["3M","4M","5M","3S0","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],embargo:["4M","4L41","5M","5L41","6L41","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],firefang:["4E","5E","6E"],frustration:["3M","4M","5M","6M"],headbutt:["4T"],healbell:["3S0"],hiddenpower:["3M","4M","5M","6M"],howl:["3L5","4L5","5L5","5D","3S0","6L5"],icefang:["4E","5E","6E"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],leer:["3E","4E","5E","6E"],mefirst:["4E","5E","6E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],odorsleuth:["3L17","4L17","5L17","6L17"],payback:["4M","5M","6M"],poisonfang:["3E","4E","5E","5D","3S0","6E"],protect:["3M","4M","5M","6M"],psychup:["3T"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L21","4M","4L21","5M","5L21","6L21","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],sandattack:["3L9","4L9","5L9","6L9"],scaryface:["3L29","4L33","5L33","6L33"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],sleeptalk:["3T","4M","5E","5T","6M","6E"],snarl:["5M","6M"],snatch:["3M","4M","5E","5T","6E"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M","6M"],suckerpunch:["4E","4L49","4T","5E","5L49","6L49","6E"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],swagger:["3L25","3T","4M","4L25","5M","5L25","6L25","6M"],tackle:["3L1","4L1","5L1","6L1"],takedown:["3L33","4L45","5L45","6L45"],taunt:["3M","3L37","4M","4L37","5M","5L37","6L37","6M"],thief:["3M","3L45","4M","5M","6M"],thunderfang:["4E","5E","6E"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],yawn:["3E","4E","5E","6E"],foulplay:["5T"],hypervoice:["5T"],confide:["6M"],playrough:["6E"]}}, + mightyena:{learnset:{assurance:["4L32","5L32","6L32"],attract:["3M","4M","5M","6M"],bite:["3L1","3L13","4L1","4L13","5L1","5L13","6L1","6L13"],bodyslam:["3T"],captivate:["4M"],counter:["3T"],crunch:["3L47","6L1","6L65"],darkpulse:["4M","5T","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],embargo:["4M","4L47","5M","5L47","6L47","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],howl:["3L1","3L5","4L1","4L5","5L1","5L5","6L1","6L5"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],odorsleuth:["3L17","4L17","5L17","6L17"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychup:["3T"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L22","4M","4L22","5M","5L22","6L22","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],sandattack:["3L1","3L9","4L1","4L9","5L1","5L9","6L1","6L9"],scaryface:["3L32","4L37","5L37","6L37"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L62","4T","5L62","6L62"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],swagger:["3L27","3T","4M","4L27","5M","5L27","6L27","6M"],tackle:["3L1","4L1","5L1","6L1"],takedown:["3L37","4L52","5L52","6L52"],taunt:["3M","3L42","4M","4L42","5M","5L42","6L42","6M"],thief:["3M","3L52","4M","4L57","5M","5L57","6L57","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],covet:["5T"],foulplay:["5T"],hypervoice:["5T"],confide:["6M"]}}, + zigzagoon:{learnset:{attract:["3M","4M","5M","6M"],bellydrum:["3L41","4L41","5L45","6L45"],bestow:["5L33","6L33"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M"],chargebeam:["4M","5M","6M"],charm:["3E","4E","5E","6E"],covet:["3L29","4L29","5L29","5T","6L29"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],extremespeed:["3S1"],facade:["3M","4M","5M","6M"],flail:["3L33","4L33","5L37","6L37"],fling:["4M","4L45","5M","5L49","6L49","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],grassknot:["4M","5M","6M"],growl:["3L1","4L1","5L1","3S0","3S1","6L1"],gunkshot:["4T","5T"],headbutt:["3L9","4L9","4T","5L9","6L9"],helpinghand:["4E","4T","5E","5T","6E"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4T","5D","5T"],mimic:["3T"],mudslap:["3T","4E","4T","5E","6E"],mudsport:["3L21","4L21","5L21","6L21"],naturalgift:["4M"],odorsleuth:["3L17","4L17","5L17","6L17"],pinmissile:["3L25","4L25","5L25","6L25"],protect:["3M","4M","5M","6M"],pursuit:["3E","4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","3L37","4M","4L37","5M","5L41","6L41","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["5E","6E"],rocksmash:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandattack:["3L13","4L13","5L13","6L13"],secretpower:["3M","4M"],seedbomb:["4T","5T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],simplebeam:["5E","6E"],sleeptalk:["3T","4M","5E","5T","6M","6E"],snore:["3T","4T","5T"],substitute:["3E","3T","4E","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","5D","3S0","3S1","6L1"],tailwhip:["3L5","4L5","5L5","3S0","6L5"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],tickle:["3E","4E","5E","6E"],toxic:["3M","4M","5M","6M"],trick:["3E","4E","4T","5E","5D","5T","6E"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"],hypervoice:["5T"],babydolleyes:["6L11"],confide:["6M"]}}, + linoone:{learnset:{attract:["3M","4M","5M","6M"],bellydrum:["3L53","4L53","5L59","6L59"],bestow:["5L41","6L41"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M"],chargebeam:["4M","5M","6M"],covet:["3L35","4L35","5L35","5T","6L35"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fling:["4M","4L59","5M","5L65","6L65","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],furyswipes:["3L29","4L29","5L29","6L29"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],gunkshot:["4T","5T"],headbutt:["3L1","3L9","4L1","4L9","4T","5L1","5L9","6L1","6L9"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3L23","4L23","5L23","6L23"],naturalgift:["4M"],odorsleuth:["3L17","4L17","5L17","6L17"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","3L47","4M","4L47","5M","5L53","6L53","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandattack:["3L13","4L13","5L13","6L13"],secretpower:["3M","4M"],seedbomb:["4T","5T"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],slash:["3L41","4L41","5L47","6L47"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],switcheroo:["4L1","5L1","6L1"],tackle:["3L1","4L1","5L1","6L1"],tailwhip:["3L1","3L5","4L1","4L5","5L1","5L5","6L1","6L5"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"],hypervoice:["5T"],playrough:["6L1"],rototiller:["6L1"],confide:["6M"]}}, + wurmple:{learnset:{bugbite:["4L15","4T","5L15","5T","5D","6L15"],poisonsting:["3L5","4L5","5L5","5D","6L5"],snore:["4T","5T","5D"],stringshot:["3L1","4L1","4T","5L1","6L1"],tackle:["3L1","4L1","5L1","6L1"],electroweb:["5T"]}}, + silcoon:{learnset:{bugbite:["4T","5T"],harden:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],irondefense:["4T","5T"],stringshot:["4T"],electroweb:["5T"]}}, + beautifly:{learnset:{absorb:["3L1","3L10","4L1","4L10","5L1","5L10","6L1","6L10"],acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],aircutter:["4T"],attract:["3M","3L31","4M","4L31","5M","5L31","6L31","6M"],bugbite:["4T","5T"],bugbuzz:["4L41","5L41","6L41"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","3L38","4M","4L38","5L38","5T","6L38"],gigaimpact:["4M","5M","6M"],gust:["3L13","4L13","5L13","6L13"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],megadrain:["3L24","4L24","5L24","6L24"],mimic:["3T"],morningsun:["3L20","4L20","5L20","6L20"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],quiverdance:["5L45","6L45"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],silverwind:["3L34","4M","4L34","5L34","6L34"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],stunspore:["3L17","4L17","5L17","6L17"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],venoshock:["5M","6M"],whirlwind:["3L27","4L27","5L27","6L27"],electroweb:["5T"],infestation:["6M"],confide:["6M"]}}, + cascoon:{learnset:{bugbite:["4T","5T"],harden:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],irondefense:["4T","5T"],stringshot:["4T"],electroweb:["5T"]}}, + dustox:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],aircutter:["4T"],attract:["3M","4M","5M","6M"],bugbite:["4T","5T"],bugbuzz:["4L41","5L41","6L41"],captivate:["4M"],confusion:["3L1","3L10","4L1","4L10","5L1","5L10","6L10"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],gust:["3L13","4L13","5L13","6L13"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],lightscreen:["3M","3L31","4M","4L31","5M","5L31","6L31","6M"],mimic:["3T"],moonlight:["3L20","4L20","5L20","6L20"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","3L17","4M","4L17","5M","5L17","6L17","6M"],psybeam:["3L24","4L24","5L24","6L24"],psychic:["3M","4M","5M","6M"],quiverdance:["5L45","6L45"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],silverwind:["3L34","4M","4L34","5L34","6L34"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","3L38","4M","4L38","5M","5L38","6L38","6M"],twister:["4T"],uturn:["4M","5M","6M"],venoshock:["5M","6M"],whirlwind:["3L27","4L27","5L27","6L27"],electroweb:["5T"],infestation:["6M"],confide:["6M"]}}, + lotad:{learnset:{absorb:["3L7","4L5","5L5","5D","3S0","6L5"],astonish:["3L1","4L1","5L1","3S0","6L1"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bubblebeam:["4L25","5L25","6L25"],bulletseed:["3M","4M"],captivate:["4M"],counter:["4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],energyball:["4M","4L43","4L45","5M","5L45","6L45","6M"],facade:["3M","4M","5M","6M"],flail:["3E","4E","5E","6E"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5E","5T","6E"],grassknot:["4M","5M","6M"],growl:["3L3","4L3","5L3","3S0","6L3"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],leechseed:["3E","4E","5E","5D","6E"],megadrain:["3L43","4L19","5L19","6L19"],mimic:["3T"],mist:["3L21","4L11","5L11","6L11"],naturalgift:["4M","4L15","5L15","6L15"],naturepower:["3L13","4L7","5L7","6L7","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","3L31","4M","4L35","4L37","5M","5L37","6L37","6M"],razorleaf:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3E","4E","5E","6E"],swordsdance:["3T","4M","5M","6M"],synthesis:["3E","4E","4T","5E","5T","6E"],teeterdance:["5E","6E"],thief:["3M","4M","5M","6M"],tickle:["4E","5E","6E"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],watergun:["3E","4E","5E","6E"],waterpulse:["3M","4M","5D"],whirlpool:["4M"],zenheadbutt:["4L27","4T","4L31","5L31","5T","6L31"],confide:["6M"]}}, + lombre:{learnset:{absorb:["3L7","4L5","5L5","6L5"],astonish:["3L1","4L1","5L1","6L1"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bubblebeam:["4L25","5L25","6L25"],bulletseed:["3M","4M"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],fakeout:["3L19","4L11","5L11","6L11"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],furyswipes:["3L25","4L15","5L15","6L15"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M","6M"],growl:["3L3","4L3","5L3","6L3"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hydropump:["3L49","4L43","4L45","5L45","6L45"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],naturepower:["3L13","4L7","5L7","6L7","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],thief:["3M","3L37","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],uproar:["3L43","4L35","4T","4L37","5L37","5T","6L37"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],watersport:["3L31","4L19","5L19","6L19"],whirlpool:["4M"],zenheadbutt:["4L27","4T","4L31","5L31","5T","6L31"],hypervoice:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + ludicolo:{learnset:{absorb:["3L1"],astonish:["3L1","4L1","5L1","6L1"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],fakeout:["5S0"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5S0","5T","5S1"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hydropump:["5S0"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","5S0","5S1","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],megadrain:["4L1","5L1","6L1"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],naturepower:["3L1","4L1","5L1","6L1","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","5S1","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","5S1","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],thief:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],zenheadbutt:["4T","5T"],hypervoice:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + seedot:{learnset:{amnesia:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],beatup:["5E","6E"],bide:["3L1","4L1","5L1","3S0","6L1"],bodyslam:["3T"],bulletseed:["3M","4M","5E","3S1","5D","6E"],captivate:["4M"],defensecurl:["3T"],defog:["5E","6E"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],explosion:["3L43","3T","4M","4L43","5M","5L43","6L43","6M"],facade:["3M","4M","5M","6M"],falseswipe:["3E","4E","5M","6M"],flash:["3M","4M","5M","6M"],foulplay:["5E","5T","5D","6E"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T","3S1"],grassknot:["4M","5M","6M"],growth:["3L7","4L7","5L7","3S0","5D","6L7"],harden:["3L3","4L3","5L3","3S0","6L3"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],leechseed:["3E","4E","5E","6E"],mimic:["3T"],nastyplot:["4E","5E","6E"],naturalgift:["4M"],naturepower:["3L13","4L13","5L13","6L13","6M"],powerswap:["4E","5E","6E"],protect:["3M","4M","5M","6M"],quickattack:["3E","4E","5E","6E"],razorwind:["3E","4E","5E","6E"],refresh:["3S1"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M","3S1"],seedbomb:["4T","5T"],selfdestruct:["3T"],shadowball:["3M","4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spite:["4T","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","3L31","4M","4L31","5M","5L31","6L31","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],synthesis:["3L21","4L21","4T","5L21","5T","6L21"],takedown:["3E","4E","5E","6E"],toxic:["3M","4M","5M","6M"],worryseed:["4E","4T","5E","5T","6E"],confide:["6M"],grassyterrain:["6E"]}}, + nuzleaf:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],embargo:["4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],explosion:["3T","4M","5M","6M"],extrasensory:["3L49","4L49","5L49","6L49"],facade:["3M","4M","5M","6M"],feintattack:["3L31","4L31","5L31","6L31"],fakeout:["3L19","4L19","5L19","6L19"],falseswipe:["5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M","6M"],growth:["3L7","4L7","5L7","6L7"],harden:["3L3","4L3","5L3","6L3"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],lowkick:["4T","5T"],lowsweep:["5M","6M"],megakick:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],naturepower:["3L13","4L13","5L13","6L13","6M"],payback:["4M","5M","6M"],pound:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],razorleaf:["4L1","5L1","6L1"],razorwind:["3L37","4L37","5L37","6L37"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],selfdestruct:["3T"],shadowball:["3M","4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spite:["4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3L43","3T","4M","4L43","5M","5L43","6L43","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],thief:["3M","4M","5M","6M"],torment:["3M","3L25","4M","4L25","5M","5L25","6L25","6M"],toxic:["3M","4M","5M","6M"],worryseed:["4T","5T"],foulplay:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + shiftry:{learnset:{aerialace:["3M","4M","5M","6M"],aircutter:["4T"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4T","5T"],brickbreak:["3M","4M","5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T","6M"],defensecurl:["3T"],defog:["4M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],embargo:["4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],feintattack:["4L1","5L1","6L1"],falseswipe:["5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growth:["3L1"],harden:["3L1"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icywind:["4T","5T"],knockoff:["4T","5T"],leafstorm:["4L49","5L49","6L49"],leaftornado:["5L19","6L19"],lowkick:["4T","5T"],lowsweep:["5M","6M"],megakick:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L1","5L1","6L1"],naturalgift:["4M"],naturepower:["3L1","6M"],ominouswind:["4T"],payback:["4M","5M","6M"],pound:["3L1"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],razorleaf:["4L1","5L1","6L1"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],selfdestruct:["3T"],shadowball:["3M","4M","5M","6M"],silverwind:["4M"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spite:["4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],tailwind:["4T","5T"],thief:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],whirlwind:["4L1","5L1","6L1"],worryseed:["4T","5T"],xscissor:["4M","5M","6M"],foulplay:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + taillow:{learnset:{aerialace:["3M","3L34","4M","4L34","5M","5L34","6L34","6M"],agility:["3L43","4L43","5L43","6L43"],aircutter:["4T"],airslash:["4L53","5L53","6L53"],attract:["3M","4M","5M","6M"],bravebird:["4E","5E","5D","6E"],captivate:["4M"],counter:["3T"],defog:["4M","5E","6E"],doubleedge:["3T"],doubleteam:["3M","3L19","4M","4L19","5M","5L19","6L19","6M"],echoedvoice:["5M","6M"],endeavor:["3L26","4L26","4T","5L26","5T","6L26"],endure:["3T","4M","5D"],facade:["3M","4M","5M","6M"],featherdance:["3S0"],fly:["3M","4M","5M","6M"],focusenergy:["3L4","4L4","5L4","3S0","6L4"],frustration:["3M","4M","5M","6M"],growl:["3L1","4L1","5L1","3S0","6L1"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],mimic:["3T"],mirrormove:["3E","4E","5E","5D","6E"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],peck:["3L1","4L1","5L1","5D","3S0","6L1"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],pursuit:["3E","4E","5E","6E"],quickattack:["3L8","4L8","5L8","6L8"],rage:["3E","4E","5E","6E"],raindance:["3M","4M","5M","6M"],refresh:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5E","5T","6M","6E"],round:["5M","6M"],secretpower:["3M","4M"],skyattack:["3E","3T","4E","5E","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M","5E","6M","6E"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3E","4E","5E","6E"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5D","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],whirlwind:["4E","5E","6E"],wingattack:["3L13","4L13","5L13","6L13"],workup:["5M"],confide:["6M"]}}, + swellow:{learnset:{aerialace:["3M","3L38","4M","4L38","5M","5L38","6L38","6M"],agility:["3L49","4L49","5L49","3S0","6L49"],aircutter:["4T"],airslash:["4L61","5L61","6L1","6L61"],attract:["3M","4M","5M","6M"],batonpass:["3S0"],captivate:["4M"],counter:["3T"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","3L19","4M","4L19","5M","5L19","6L19","6M"],echoedvoice:["5M","6M"],endeavor:["3L28","4L28","4T","5L28","5T","6L28"],endure:["3T","4M"],facade:["3M","4M","5M","3S0","6M"],fly:["3M","4M","5M","6M"],focusenergy:["3L1","3L4","4L1","4L4","5L1","5L4","6L1","6L4"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],peck:["3L1","4L1","5L1","6L1"],pluck:["4M","4L1","5M","5L1","6L1"],protect:["3M","4M","5M","6M"],quickattack:["3L1","3L8","4L1","4L8","5L1","5L8","6L1","6L8"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],secretpower:["3M","4M"],skyattack:["3T","4T","5T","3S0"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],wingattack:["3L13","4L13","5L13","6L13"],workup:["5M"],confide:["6M"]}}, + wingull:{learnset:{aerialace:["3M","4M","4L42","5M","5L42","6L42","6M"],agility:["3E","3L55","4E","4L37","5E","5L37","6L38","6E"],aircutter:["4T","5L33","6L33"],airslash:["4L47","5L47","6L46"],aquaring:["4E","5E","6E"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],brine:["4M","5E","6E"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],gust:["3E","4E","5E","6E"],hail:["3M","4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],hurricane:["5L50","6L49"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],knockoff:["4E","4T","5E","5T","6E"],mimic:["3T"],mist:["3E","3L21","4E","4L16","5E","5L16","6L14","6E"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],protect:["3M","4M","5M","6M"],pursuit:["3L43","4L34","5L34","6L30"],quickattack:["3L31","4L24","5L24","6L22"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","4L29","5E","5L29","5T","6L26","6M","6E"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],shockwave:["3M","4M","5D"],skyattack:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],supersonic:["3L7","4L6","5L6","6L6"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["3E","4E","4T","5E","5D","6E"],uproar:["4T","5T"],uturn:["4M","5M","6M"],watergun:["3L1","4L1","5L1","5D","6L1"],waterpulse:["3M","4M","4L19","5L19","6L17"],watersport:["3E","4E","5E","6E"],wingattack:["3L13","4L11","5L11","6L9"],confide:["6M"],wideguard:["6E"]}}, + pelipper:{learnset:{aerialace:["3M","4M","5M","6M"],aircutter:["4T"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],brine:["4M","5L34","6L34"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fling:["4M","4L43","5M","5L43","6L46","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],gunkshot:["4T","5T"],hail:["3M","4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],hurricane:["5L63","6L63"],hydropump:["3L61","4L57","5L57","6L1","6L58"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],knockoff:["4T","5T"],mimic:["3T"],mist:["3L21","4L16","5L16","6L14"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","4L24","5M","5L24","6L22","6M"],pluck:["4M","5M"],protect:["3M","3L25","4M","4L25","5M","5L25","6L25","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","4L31","5L31","5T","6L28","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],shockwave:["3M","4M"],skyattack:["3T","4T","5T"],skydrop:["5M","6M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],soak:["5L1","6L1"],spitup:["3L47","4L38","5L38","6L39"],steelwing:["3M","4M","6M"],stockpile:["3L33","4L38","5L38","6L39"],substitute:["3T","4M","5M","6M"],supersonic:["3L7","4L6","5L6","6L6"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["3L33","4L38","5L38","6L39"],swift:["3T","4T"],tailwind:["4L50","4T","5L50","5T","6L1","6L52"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uproar:["4T","5T"],uturn:["4M","5M","6M"],watergun:["3L1","3L3","4L1","5L1","6L1"],waterpulse:["3M","4M","4L19","5L19","6L17"],watersport:["3L1","4L1","5L1","6L1"],whirlpool:["4M"],wingattack:["3L1","3L13","4L1","4L11","5L1","5L11","6L1","6L9"],confide:["6M"]}}, + ralts:{learnset:{allyswitch:["5M"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],calmmind:["3M","3L21","4M","4L23","5M","5L28","6L28","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],charm:["4L39","5L43","3S1","6L43"],confuseray:["4E","5E","6E"],confusion:["3L6","4L6","5L6","5D","3S2","6L6"],defensecurl:["3T"],destinybond:["3E","4E","5E","5D","6E"],disable:["3E","4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","3L11","4M","4L10","5M","5L10","6L10","6M"],dreameater:["3L46","3T","4M","4L45","5M","5L50","6L49","6M"],echoedvoice:["5M","6M"],encore:["4E","5E","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["3L36","4L34","5L39","6L39"],grassknot:["4M","5M","6M"],growl:["3L1","4L1","5L1","3S0","3S1","6L1"],grudge:["4E","5E","6E"],headbutt:["4T"],healpulse:["5L23","6L23"],helpinghand:["4T","5D","5T"],hiddenpower:["3M","4M","5M","6M"],hypnosis:["3L41","4L43","5L45","6L45"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],imprison:["3L31","4L32","5L34","6L34"],lightscreen:["3M","4M","5M","6M"],luckychant:["4L17","5L17","6L17"],magicalleaf:["4L21","5L21","6L21"],magiccoat:["4T","5T"],meanlook:["3E","4E","5E","6E"],memento:["3E","4E","5E","6E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],protect:["3M","4M","5M","6M"],psychic:["3M","3L26","4M","4L28","5M","5L32","6L32","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","3S2","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shadowsneak:["4E","5E","6E"],shockwave:["3M","4M","3S2"],signalbeam:["4T","5T"],sing:["3S2"],skillswap:["3M","4M","5E","5T","6E"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],storedpower:["5L54","6L54"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["4T"],synchronoise:["5E","6E"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],teleport:["3L16","4L12","5L12","6L12"],thief:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],willowisp:["3E","4E","5M","6M"],wish:["3S0"],zenheadbutt:["4T","5T"],hypervoice:["5T"],magicroom:["5T"],wonderroom:["5T"],dazzlinggleam:["6M"],confide:["6M"]}}, + kirlia:{learnset:{allyswitch:["5M"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],calmmind:["3M","3L21","4M","4L25","5M","5L31","6L31","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],charm:["4L45","5L50","6L50"],confusion:["3L1","3L6","4L1","4L6","5L1","5L6","6L1","6L6"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","3L1","3L11","4M","4L1","4L10","5M","5L1","5L10","6L1","6L10","6M"],dreameater:["3L54","3T","4M","4L53","5M","5L59","6L59","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["3L40","4L39","5L45","6L45"],grassknot:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],headbutt:["4T"],healpulse:["5L25","6L25"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hypnosis:["3L47","4L50","5L53","6L53"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],imprison:["3L33","4L36","5L39","6L39"],lightscreen:["3M","4M","5M","6M"],luckychant:["4L17","5L17","6L17"],magicalleaf:["3L1","4L22","5L22","6L22"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],protect:["3M","4M","5M","6M"],psychic:["3M","3L26","4M","4L31","5M","5L36","6L36","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],storedpower:["5L64","6L64"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["4T"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],teleport:["3L1","3L16","4L1","4L12","5L1","5L12","6L1","6L12"],thief:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],willowisp:["5M","6M"],zenheadbutt:["4T","5T"],hypervoice:["5T"],magicroom:["5T"],wonderroom:["5T"],dazzlinggleam:["6M"],confide:["6M"]}}, + gardevoir:{learnset:{allyswitch:["5M"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],calmmind:["3M","3L21","4M","4L25","5M","5L33","6L33","6M"],captivate:["4M","4L53","5L60","6L60"],chargebeam:["4M","5M","6M"],confusion:["3L1","3L6","4L1","4L6","5L1","5L6","6L1","6L6"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","3L1","3L11","4M","4L1","4L10","5M","5L1","5L10","6L1","6L10","6M"],dreameater:["3L60","3T","4M","4L65","5M","5L73","6L73","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","5S0","6M"],frustration:["3M","4M","5M","6M"],futuresight:["3L42","4L45","5L53","6L53"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],headbutt:["4T"],healbell:["4T","5T"],healingwish:["4L1","5L1","6L1"],healpulse:["5L25","6L25"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],hypnosis:["3L51","4L60","5L65","5S0","6L65"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],imprison:["3L33","4L40","5L45","6L45"],lightscreen:["3M","4M","5M","6M"],magicalleaf:["4L22","5L22","6L22"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],protect:["3M","4M","5M","6M"],psychic:["3M","3L26","4M","4L33","5M","5L40","5S0","6L40","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],storedpower:["5L80","6L1","6L80"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["4T"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],teleport:["3L1","3L16","4L1","4L12","5L1","5L12","6L1","6L12"],thief:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","5S0","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],willowisp:["5M","6M"],wish:["4L17","5L17","6L17"],zenheadbutt:["4T","5T"],hypervoice:["5T"],magicroom:["5T"],wonderroom:["5T"],moonblast:["6L1","6L85"],mistyterrain:["6L1"],dazzlinggleam:["6M"],confide:["6M"]}}, + gallade:{learnset:{aerialace:["4M","5M","6M"],allyswitch:["5M"],attract:["4M","5M","6M"],brickbreak:["4M","5M","6M"],bulkup:["4M","5M","6M"],bulldoze:["5M","6M"],calmmind:["4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],closecombat:["4L53","5L59","6L1","6L59"],confusion:["4L1","4L6","5L1","5L6","6L1","6L6"],cut:["4M","5M","6M"],doubleteam:["4M","4L1","4L10","5M","5L1","5L10","6L1","6L10","6M"],drainpunch:["4M","5T"],dreameater:["4M","5M","6M"],earthquake:["4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M"],facade:["4M","5M","6M"],falseswipe:["4M","4L45","5M","5L50","6L50","6M"],feint:["4L39","5L45","6L45"],firepunch:["4T","5T"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],furycutter:["4L17","4T","5L17","6L17"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["4T"],healpulse:["5L25","6L25"],helpinghand:["4L36","4T","5L39","5T","6L39"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icepunch:["4T","5T"],knockoff:["4T","5T"],leafblade:["4L1","5L1","6L1"],leer:["4L1","5L1","6L1"],lightscreen:["4M","5M","6M"],lowkick:["4T","5T"],lowsweep:["5M","6M"],magiccoat:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4L1","5L1","6L1"],painsplit:["4T","5T"],poisonjab:["4M","5M","6M"],protect:["4M","4L50","5M","5L53","6L53","6M"],psychic:["4M","5M","6M"],psychocut:["4L31","5L36","6L36"],psychup:["4M","5M","6M"],psyshock:["5M","6M"],raindance:["4M","5M","6M"],recycle:["4M","5T"],reflect:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],slash:["4L22","5L22","6L22"],sleeptalk:["4M","5T","6M"],snatch:["4M","5T"],snore:["4T","5T"],stoneedge:["4M","5M","6M"],storedpower:["5L64","6L1","6L64"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],swordsdance:["4M","4L25","5M","5L31","6L31","6M"],taunt:["4M","5M","6M"],telekinesis:["5M"],teleport:["4L1","4L12","5L1","5L12","6L1","6L12"],thief:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4T","5T"],thunderwave:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],vacuumwave:["4T"],willowisp:["5M","6M"],workup:["5M"],xscissor:["4M","5M","6M"],zenheadbutt:["4T","5T"],dualchop:["5T"],hypervoice:["5T"],magicroom:["5T"],wonderroom:["5T"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + surskit:{learnset:{agility:["3L31","4L31","5L31","6L31"],aquajet:["5E","6E"],attract:["3M","4M","5M","6M"],batonpass:["4L43","5L43","6L43"],blizzard:["3M","4M","5M","6M"],bubble:["3L1","4L1","5L1","5D","3S0","3S1","6L1"],bubblebeam:["3L25","4L25","5L25","6L25"],bugbite:["4E","4T","5E","5T","6E"],captivate:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5D","5T"],haze:["3L37","4L37","5L37","6L37"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3E","4E","5E","5D","6E"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],mimic:["3T"],mindreader:["3E","4E","5E","6E"],mist:["3L37","4L37","5L37","6L37"],mudshot:["3E","4E","5E","6E"],mudslap:["4T"],mudsport:["3S0"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psybeam:["3E","4E","5E","6E"],psychup:["3T","4M","5M","6M"],quickattack:["3L7","4L7","5L7","3S1","6L7"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],signalbeam:["4E","4T","5E","5T","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3L13","4L13","5L13","6L13"],swift:["3T","4T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],watersport:["3L19","4L19","5L19","6L19"],stickyweb:["6L46"],infestation:["6M"],confide:["6M"],powersplit:["6E"],fellstinger:["6E"]}}, + masquerain:{learnset:{aerialace:["3M","4M","5M","6M"],aircutter:["4T"],airslash:["4L47","5L47","6L47"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bubble:["3L1","4L1","5L1","6L1"],bugbite:["4T","5T"],bugbuzz:["4L61","5L61","6L1","6L61"],captivate:["4M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],gust:["3L26","4L22","5L22","6L22"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3C"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],mimic:["3T"],mudslap:["4T"],naturalgift:["4M"],nightmare:["3T"],ominouswind:["4L1","4T","5L1","6L1"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],quickattack:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],quiverdance:["5L68","6L1","6L68"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],scald:["5M","6M"],scaryface:["3L33","4L26","5L26","6L26"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],silverwind:["3L47","4M","4L40","5L40","6L40"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],stunspore:["3L40","4L33","5L33","6L33"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3L1","3L13","4L1","4L13","5L1","5L13","6L1","6L13"],swift:["3T","4T"],tailwind:["4T","5T"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],waterpulse:["3M","4M"],watersport:["3L1","3L19","4L1","4L19","5L1","5L19","6L1","6L19"],whirlwind:["3L53","4L54","5L54","6L1","6L54"],infestation:["6M"],confide:["6M"]}}, + shroomish:{learnset:{absorb:["3L1","4L1","5L1","6L1"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bulletseed:["3M","4M","5E","5D","6E"],captivate:["4M"],charm:["3E","4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["5E","5T","6E"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],faketears:["3E","4E","5E","6E"],falseswipe:["3E","4E","5M","3S0","6M"],flash:["3M","4M","5M","6M"],focuspunch:["5E","5D","6E"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","3L45","4M","4L37","5L37","5T","6L37"],grassknot:["4M","5M","6M"],growth:["3L36","4L33","5L33","6L33"],headbutt:["3L22","4L21","4T","5L21","6L21"],helpinghand:["3E","4E","4T","5E","5T","6E"],hiddenpower:["3M","4M","5M","6M"],leechseed:["3L10","4L13","5L13","6L13"],megadrain:["3L16","4L17","5L17","3S0","6L17"],mimic:["3T"],naturalgift:["4M","5E","6E"],poisonpowder:["3L28","4L25","5L25","6L25"],protect:["3M","4M","5M","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seedbomb:["4E","4L41","4T","5E","5L41","5T","6L41","6E"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spore:["3L54","4L45","5L45","6L45"],stunspore:["3L7","4L9","5L9","3S0","5D","6L9"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3E","3T","4E","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],tackle:["3L4","4L5","5L5","6L5"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],wakeupslap:["4E","5E","6E"],worryseed:["4E","4L29","4T","5E","5L29","5T","6L29","6E"],confide:["6M"]}}, + breloom:{learnset:{absorb:["3L1","4L1","5L1","6L1"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3L28","3T","4L25","5L25","6L25"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dynamicpunch:["3L54","3T","4L45","5L45","6L45"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],falseswipe:["5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],forcepalm:["4L29","5L29","6L29"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["3L22","4L21","4T","5L21","6L21"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],leechseed:["3L1","3L10","4L1","4L13","5L1","5L13","6L1","6L13"],lowsweep:["5M","6M"],machpunch:["3L23","4L23","5L23","6L23"],megadrain:["3L16","4L17","5L17","6L17"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mindreader:["3L45","4L37","5L37","6L37"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seedbomb:["4L41","4T","5L41","5T","6L41"],seismictoss:["3T"],skyuppercut:["3L36","4L33","5L33","6L33"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],stunspore:["3L1","3L7","4L1","4L9","5L1","5L9","6L1","6L9"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],tackle:["3L1","3L4","4L1","4L5","5L1","5L5","6L1","6L5"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],vacuumwave:["4T"],venoshock:["5M","6M"],workup:["5M"],worryseed:["4T","5T"],poweruppunch:["6M"],confide:["6M"]}}, + slakoth:{learnset:{aerialace:["3M","4M","5M","6M"],afteryou:["5E","5T","6E"],amnesia:["3L25","4L25","5L25","6L0"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3E","3T","4E","5E","6E"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],captivate:["4M"],chipaway:["5L37","6L0"],counter:["3L37","3T","4L37","5L43","6L0"],covet:["3L31","4L31","5L31","5T","6L0"],crushclaw:["3E","4E","5E","6E"],curse:["3E","4E","5E","6E"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],encore:["3L7","4L7","5L7","6L0"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L19","4L19","5L19","6L0"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flail:["3L43","4L43","5L49","6L0"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gunkshot:["4T","5T"],hammerarm:["4E","5E","6E"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4E","5E","5D","6E"],protect:["3M","4M","5M","6M"],pursuit:["3E","4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scratch:["3L1","4L1","5L1","6L0"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],slackoff:["3L13","4L13","5L13","6L0"],slash:["3E","4E","5E","6E"],sleeptalk:["3E","3T","4E","4M","5E","5T","6E"],snore:["3E","3T","4E","4T","5E","5T","6E"],solarbeam:["3M","4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T","5D"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],tickle:["5E","6E"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],workup:["5M"],yawn:["3L1","4L1","5L1","5D","6L0"]}}, + vigoroth:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L43","6L0"],counter:["3L37","3T","4L37","5L37","6L0"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],encore:["3L1","3L7","4L1","4L7","5L1","5L7","6L0","6L0"],endure:["3L25","3T","4M","4L25","5L25","6L0"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focusenergy:["3L1","4L1","5L1","6L0"],focuspunch:["3M","3L43","4M","4L43","5L49","6L0"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],furyswipes:["3L19","4L19","5L19","6L0"],gunkshot:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],lowkick:["4T","5T"],lowsweep:["5M","6M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],reversal:["3L49","4L49","5L55","6L0"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scratch:["3L1","4L1","5L1","6L0"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],slash:["3L31","4L31","5L31","6L0"],sleeptalk:["3T","4M","5T","6M"],snore:["3T"],solarbeam:["3M","4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],uproar:["3L1","3L13","4L1","4L13","4T","5L1","5L13","5T","6L0","6L0"],waterpulse:["3M","4M"],workup:["5M"],covet:["5T"],afteryou:["5T"]}}, + slaking:{learnset:{aerialace:["3M","4M","5M","4S0","6M"],amnesia:["3L25","4L25","5L25","6L0"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L37","6L0"],counter:["3L37","3T","4L37","5L43","6L0"],covet:["3L31","4L31","5L31","5T","6L0"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],encore:["3L1","3L7","4L1","4L7","5L1","5L7","6L0","6L0"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L19","4L19","5L19","6L0"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flail:["3L43","4L43","5L49","6L0"],flamethrower:["3M","4M","5M","6M"],fling:["4M","4L49","5M","5L55","6L0","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","4S0","6M"],gunkshot:["4T","5T"],hammerarm:["4L61","5L67","6L0"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],lowkick:["4T","5T"],lowsweep:["5M","6M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],punishment:["4L55","5L61","6L0"],quash:["5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","4S0","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scratch:["3L1","4L1","5L1","6L0"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","4S0","6M"],shockwave:["3M","4M"],slackoff:["3L1","3L13","4L1","4L13","5L1","5L13","6L0","6L0"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3L36","3T","4M","4L36","5M","5L36","6L0","6M"],taunt:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],workup:["5M"],yawn:["3L1","4L1","5L1","6L0"],afteryou:["5T"]}}, + nincada:{learnset:{aerialace:["3M","4M","5M","6M"],bugbite:["4E","4T","5E","5T","6E"],bugbuzz:["4E","5E","6E"],cut:["3M","4M","5M","6M"],dig:["3M","3L45","4M","4L45","5M","5L45","6L45","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3E","3T","4E","4M","5E","5D","6E"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","6E"],falseswipe:["3L25","4M","4L25","5M","5L25","6L25","6M"],finalgambit:["5E","6E"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],furyswipes:["3L14","4L14","5L14","6L14"],gigadrain:["3M","4M","5T"],gust:["3E","4E","5E","6E"],harden:["3L1","4L1","5L1","6L1"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],leechlife:["3L5","4L5","5L5","5D","6L5"],metalclaw:["3L38","4L38","5L38","6L38"],mimic:["3T"],mindreader:["3L19","4L19","5L19","6L19"],mudslap:["3L31","3T","4L31","4T","5L31","6L31"],naturalgift:["4M"],nightslash:["4E","5E","5D","6E"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],sandattack:["3L9","4L9","5L9","6L9"],sandstorm:["3M","4M","5M","6M"],scratch:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],silverwind:["3E","4E","5E","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spite:["4T","5T"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],xscissor:["4M","5M","6M"],confide:["6M"]}}, + ninjask:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L38","4L38","5L38","6L38"],aircutter:["4T"],attract:["3M","4M","5M","6M"],batonpass:["3L45","4L45","5L45","6L45"],bugbite:["4L1","4T","5L1","5T","6L1"],captivate:["4M"],cut:["3M","4M","5M","6M"],defog:["4M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","3L20","4M","4L20","5M","5L20","6L20","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3L20","3T","4L20","4T","5L20","6L20"],furyswipes:["3L14","4L14","5L14","6L14"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],harden:["3L1","4L1","5L1","6L1"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],leechlife:["3L1","3L5","4L1","4L5","5L1","5L5","6L1","6L5"],mimic:["3T"],mindreader:["3L19","4L19","5L19","6L19"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],sandattack:["3L1","3L9","4L1","4L9","5L1","5L9","6L1","6L9"],sandstorm:["3M","4M","5M","6M"],scratch:["3L1","4L1","5L1","6L1"],screech:["3L20","4L20","5L20","6L20"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],silverwind:["4M"],slash:["3L31","4L31","5L31","6L31"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spite:["4T","5T"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3L25","3T","4M","4L25","5M","5L25","6L25","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],xscissor:["4M","4L52","5M","5L52","6L52","6M"],confide:["6M"]}}, + shedinja:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3S4"],batonpass:["3S5"],bugbite:["4T","5T"],confuseray:["3L31","4L31","5L31","3S0","6L31"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","3S1","5M","6M"],dreameater:["3T","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T","3S1"],furyswipes:["3L14","4L14","5L14","6L14"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grudge:["3L45","4L45","5L45","3S0","6L43"],harden:["3L1","4L1","5L1","6L1"],healblock:["4L52","5L52","6L50"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],leechlife:["3L5","4L5","5L5","6L5"],mimic:["3T"],mindreader:["3L19","4L19","5L19","6L19"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],sandattack:["3L9","4L9","5L9","6L9"],sandstorm:["3M","4M","5M","6M"],scratch:["3L1","4L1","5L1","6L1"],screech:["3S1"],secretpower:["3M","4M"],shadowball:["3M","3L38","4M","4L59","5M","5L59","3S0","6L59","6M"],shadowclaw:["4M","5M","6M"],shadowsneak:["4L38","5L38","6L38"],slash:["3S3"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spite:["3L25","4L25","4T","5L25","3S0","5T","6L25"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3S2"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],willowisp:["4M","5M","6M"],xscissor:["4M","4S6","5M","6M"],phantomforce:["6L47"],confide:["6M"]}}, + whismur:{learnset:{astonish:["3L11","4L11","5L11","6L11"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M"],circlethrow:["5E","6E"],counter:["3T"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],endeavor:["4E","5E","5T","5D","6E"],endure:["3T","4M"],extrasensory:["3E","4E","5E","6E"],facade:["3M","4M","5M","6M"],faketears:["5E","6E"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],hammerarm:["4E","5E","6E"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],howl:["3L15","4L15","5L15","6L15"],hypervoice:["3L45","4L45","5L51","5T","6L50"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],pound:["3L1","4L1","5L1","3S0","6L1"],protect:["3M","4M","5M","6M"],psychup:["3T"],raindance:["3M","4M","5M","6M"],rest:["3M","3L41","4M","4L41","5M","5L45","6L45","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L35","4M","4L35","5M","5L35","6L35","6M"],rollout:["3T","4T"],round:["5M","6M"],screech:["3L31","4L31","5L31","6L31"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3L41","3T","4M","4L41","5L45","5T","6L45","6M"],smellingsalts:["3E","4E","5E","6E"],smokescreen:["4E","5E","6E"],snore:["3E","3T","4E","4T","5E","5T","6E"],solarbeam:["3M","4M","5M","6M"],stomp:["3L25","4L25","5L25","6L25"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3L21","4L21","5L21","6L21"],swagger:["3E","3T","4E","4M","5M","6M"],synchronoise:["5L41","6L41"],takedown:["3E","4E","5E","6E"],teeterdance:["3S0"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],uproar:["3L5","4L5","4T","5L5","3S0","5T","5D","6L5"],waterpulse:["3M","4M"],workup:["5M"],zenheadbutt:["4T","5T","5D"],confide:["6M"]}}, + loudred:{learnset:{astonish:["3L1","3L11","4L1","4L11","5L1","5L11","6L1","6L11"],attract:["3M","4M","5M","6M"],bite:["4L20","5L20","6L20"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],howl:["3L1","3L15","4L1","4L15","5L1","5L15","6L1","6L15"],hypervoice:["3L57","4L57","5L65","5T","6L65"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],pound:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],psychup:["3T"],raindance:["3M","4M","5M","6M"],rest:["3M","3L51","4M","4L51","5M","5L57","6L57","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L43","4M","4L43","5M","5L43","6L43","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],screech:["3L37","4L37","5L37","6L37"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3L51","3T","4M","4L51","5L57","5T","6L57","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stomp:["3L29","4L29","5L29","6L29"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3L23","4L23","5L23","6L23"],swagger:["3T","4M","5M","6M"],synchronoise:["5L51","6L51"],taunt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["3L1","3L5","4L1","4L5","4T","5L1","5L5","5T","6L1","6L5"],waterpulse:["3M","4M"],workup:["5M"],zenheadbutt:["4T","5T"],endeavor:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + exploud:{learnset:{astonish:["3L1","3L11","4L1","4L11","5L1","5L11","6L1","6L11"],attract:["3M","4M","5M","6M"],avalanche:["4M"],bite:["4L20","5L20","6L20"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],crunch:["4L40","5L40","6L40"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firefang:["4L1","5L1","6L1"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],howl:["3L1","3L15","4L1","4L15","5L1","5L15","6L1","6L15"],hyperbeam:["3M","3L40","4M","4L71","5M","5L79","3S1","6L79","6M"],hypervoice:["3L63","4L63","5L71","3S0","5T","6L71"],icebeam:["3M","4M","5M","6M"],icefang:["4L1","5L1","6L1"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],overheat:["3M","4M","5M","6M"],pound:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],psychup:["3T"],raindance:["3M","4M","5M","6M"],rest:["3M","3L55","4M","4L55","5M","5L55","3S0","6L55","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L45","4M","4L45","5M","5L45","3S0","3S1","6L45","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],screech:["3L37","4L37","5L37","3S1","6L37"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3L55","3T","4M","4L55","5L63","3S0","5T","6L63","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stomp:["3L29","4L29","5L29","3S1","6L29"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["3L23","4L23","5L23","6L23"],surf:["4M","5M","6M"],swagger:["3T","4M","5M","6M"],synchronoise:["5L55","6L55"],taunt:["3M","4M","5M","6M"],thunderfang:["4L1","5L1","6L1"],thunderpunch:["3T","4T","5T"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["3L1","3L5","4L1","4L5","4T","5L1","5L5","5T","6L1","6L5"],waterpulse:["3M","4M"],whirlpool:["4M"],workup:["5M"],zenheadbutt:["4T","5T"],endeavor:["5T"],boomburst:["6L1","6L85"],poweruppunch:["6M"],confide:["6M"]}}, + makuhita:{learnset:{armthrust:["3L10","4L7","5L7","5D","3S0","6L7"],attract:["3M","4M","5M","6M"],bellydrum:["3L37","4L25","5L25","6L25"],bodyslam:["3T"],brickbreak:["3M","4M","5M","3S0","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],bulletpunch:["4E","5E","6E"],captivate:["4M"],chipaway:["5E","6E"],closecombat:["4L40","5L40","6L40"],counter:["3E","3T","4E","5E","6E"],crosschop:["3E","4E","5E","6E"],detect:["3E","4E","5E","6E"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3E","3T","4E","5E","6E"],earthquake:["3M","4M","5M","6M"],endure:["3L40","3T","4M","4L37","5L37","6L37"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","6E"],fakeout:["3L19","4L13","5L13","6L13"],feint:["4E","5E","6E"],firepunch:["3T","4T","5T"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focusenergy:["3L1","4L1","5L1","6L1"],focuspunch:["3M","4M","5E","6E"],forcepalm:["4L28","5L28","6L28"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],headbutt:["4T"],heavyslam:["5L46","6L46"],helpinghand:["3E","4E","4T","5E","5D","5T","6E"],hiddenpower:["3M","4M","5M","6M"],icepunch:["3T","4T","5D","5T"],knockoff:["3L28","4L19","4T","5L19","5T","6L19"],lowkick:["4T","5T"],lowsweep:["5M","6M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],revenge:["3E","4E","5E","6E"],reversal:["3L49","4L43","5L43","6L43"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","3S0","6M"],roleplay:["4T","5T"],round:["5M","6M"],sandattack:["3L4","4L4","5L4","6L4"],secretpower:["3M","4M"],seismictoss:["3L46","3T","4L31","5L31","6L31"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],smellingsalts:["3L31","4L22","5L22","6L22"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],vacuumwave:["4T"],vitalthrow:["3L13","4L10","5L10","6L10"],wakeupslap:["4E","4L34","5E","5L34","6L34","6E"],whirlpool:["4M"],whirlwind:["3L22","4L16","5L16","6L16"],wideguard:["5E","6E"],workup:["5M"],poweruppunch:["6M"],confide:["6M"]}}, + hariyama:{learnset:{armthrust:["3L1","3L10","4L1","4L7","5L1","5L7","6L1","6L7"],attract:["3M","4M","5M","6M"],bellydrum:["3L40","4L27","5L27","6L27"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],brine:["4M","4L1","5L1","6L1"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],closecombat:["4L52","5L52","6L52"],counter:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endure:["3L44","3T","4M","4L47","5L47","6L47"],facade:["3M","4M","5M","6M"],fakeout:["3L19","4L13","5L13","6L13"],firepunch:["3T","4T","5T"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focusenergy:["3L1","4L1","5L1","6L1"],focuspunch:["3M","4M"],forcepalm:["4L32","5L32","6L32"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],heavyslam:["5L62","6L62"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],ironhead:["4T","5T"],knockoff:["3L29","4L19","4T","5L19","5T","6L19"],lowkick:["4T","5T"],lowsweep:["5M","6M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],reversal:["3L55","4L57","5L57","6L57"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],sandattack:["3L1","3L4","4L1","4L4","5L1","5L4","6L1","6L4"],secretpower:["3M","4M"],seismictoss:["3L51","3T","4L37","5L37","6L37"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],smellingsalts:["3L33","4L22","5L22","6L22"],snore:["3T","4T","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],vacuumwave:["4T"],vitalthrow:["3L13","4L10","5L10","6L10"],wakeupslap:["4L42","5L42","6L42"],whirlpool:["4M"],whirlwind:["3L22","4L16","5L16","6L16"],workup:["5M"],poweruppunch:["6M"],confide:["6M"]}}, + nosepass:{learnset:{ancientpower:["4T","5D"],attract:["3M","4M","5M","6M"],block:["3L16","4E","4L19","4T","5E","5L19","5T","6L8","6E"],bodyslam:["3T"],bulldoze:["5M","6M"],captivate:["4M"],defensecurl:["3T"],discharge:["4L49","4L55","5L55","6L39"],doubleedge:["3T","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthpower:["4L73","4T","4L79","5L79","5T","6L43"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M","5E","6E"],explosion:["3E","3T","4E","4M","5M","6M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],frustration:["3M","4M","5M","6M"],gravity:["4T","5T"],harden:["3L7","4L7","5L7","6L4"],headbutt:["4T"],helpinghand:["3S0"],hiddenpower:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],irondefense:["4T","5T"],lockon:["3L46","4L67","4L73","5L73","6L50"],magiccoat:["4T","5T"],magnetrise:["4T","5T"],magnitude:["3E","4E","5E","6E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],painsplit:["4T","5T"],powergem:["4L49","5L49","6L32"],protect:["3M","4M","5M","6M"],rest:["3M","3L37","4M","4L43","5M","5L43","6L22","6M"],"return":["3M","4M","5M","6M"],rockblast:["5L18","6L18"],rockpolish:["4M","5M","6M"],rockslide:["3L28","3T","4M","4L31","5M","5L31","3S0","6L29","6M"],rocksmash:["3M","4M","5M","6M"],rockthrow:["3L13","4L13","5L13","6L11"],rocktomb:["3M","4M","5M","6M"],rollout:["3E","3T","4E","4T","5E","6E"],round:["5M","6M"],sandstorm:["3M","3L31","4M","4L37","5M","5L37","6L36","6M"],secretpower:["3M","4M"],selfdestruct:["3T"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],spark:["5L25","6L25"],stealthrock:["4M","5E","5T","5D","6E"],stoneedge:["4M","4L55","4L61","5M","5L61","6L46","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","5D","6L1"],taunt:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","3S0","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3L22","3T","4M","4L25","5M","5L25","3S0","6L15","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],voltswitch:["5M","6M"],zapcannon:["3L43","4L61","4L67","5L67","6L50"],dazzlinggleam:["6M"],confide:["6M"]}}, + probopass:{learnset:{ancientpower:["4T"],attract:["4M","5M","6M"],block:["4L1","4L19","4T","5L1","5L19","5T","6L1","6L8"],bulldoze:["5M","6M"],captivate:["4M"],discharge:["4L49","4L55","5L55","6L39"],doubleteam:["4M","5M","6M"],earthpower:["4L73","4T","4L79","5L79","5T","6L43"],earthquake:["4M","5M","6M"],endure:["4M"],explosion:["4M","5M","6M"],facade:["4M","5M","6M"],firepunch:["4T","5T"],flashcannon:["4M","5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],gravity:["4L1","4T","5L1","5T","6L1"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icepunch:["4T","5T"],irondefense:["4L1","4L7","4T","5L1","5L7","5T","6L1","6L4"],ironhead:["4T","5T"],lockon:["4L67","4L73","5L73","6L50"],magiccoat:["4T","5T"],magnetbomb:["4L1","4L13","5L1","5L13","6L1","6L11"],magnetrise:["4L1","4T","5L1","5T","6L1"],mudslap:["4T"],naturalgift:["4M"],painsplit:["4T","5T"],powergem:["4L49","5L49","6L32"],protect:["4M","5M","6M"],rest:["4M","4L43","5M","5L43","6L22","6M"],"return":["4M","5M","6M"],rockblast:["5L18","6L18"],rockpolish:["4M","5M","6M"],rockslide:["4M","4L31","5M","5L31","6L29","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["4T"],round:["5M","6M"],sandstorm:["4M","4L37","5M","5L37","6L36","6M"],secretpower:["4M"],shockwave:["4M"],sleeptalk:["4M","5T","6M"],smackdown:["5M","6M"],snore:["4T","5T"],spark:["5L25","6L25"],stealthrock:["4M","5T"],stoneedge:["4M","4L55","4L61","5M","5L61","6L46","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],tackle:["4L1","5L1","6L1"],taunt:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4T","5T"],thunderwave:["4M","4L25","5M","5L25","6L15","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],voltswitch:["5M","6M"],zapcannon:["4L61","4L67","5L67","6L50"],dazzlinggleam:["6M"],confide:["6M"]}}, + skitty:{learnset:{assist:["3L19","4L18","4L22","5L22","6L22"],attract:["3M","3L7","4M","4L4","4L8","5M","5L8","3S2","6L8","6M"],batonpass:["3E","4E","5E","6E"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],calmmind:["3M","4M","5M","6M"],captivate:["4M","4L42","4L46","5E","5L46","5D","6L46","6E"],chargebeam:["4M","5M","6M"],charm:["3L25","4L22","4L25","5L25","6L25"],copycat:["4L11","4L18","5L18","6L18"],covet:["3L31","4L32","4L36","5L36","5T","6L36"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3L39","3T","4L39","4L42","5L42","6L42"],doubleslap:["3L15","4L15","5L15","6L15"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L27","4L25","4L29","5L29","6L29"],fakeout:["4E","4L1","5E","5L1","6L1","6E"],faketears:["3E","4E","5E","6E"],flash:["3M","4M","5M","6M"],foresight:["4L4","5L4","5D","6L4"],frustration:["3M","4M","5M","6M"],grassknot:["4M","5M","6M"],growl:["3L1","4L1","5L1","3S0","3S1","3S2","6L1"],headbutt:["4T"],healbell:["3L37","4L36","4L39","4T","5L39","5T","6L39"],helpinghand:["3E","4E","4T","5E","5T","6E"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4E","4T","5E","5T","6E"],mimic:["3T"],mudbomb:["4E","5E","6E"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M","6M"],payday:["3S0"],protect:["3M","4M","5M","6M"],psychup:["3E","3T","4E","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3T","4T","3S1"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],simplebeam:["5E","6E"],sing:["3L13","4L8","4L11","5L11","6L11"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],substitute:["3E","3T","4E","4M","5M","6M"],suckerpunch:["4E","4T","5E","6E"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S0","3S1","3S2","6L1"],tailwhip:["3L3","4L1","5L1","3S0","3S1","3S2","6L1"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],tickle:["3E","4E","5E","5D","6E"],toxic:["3M","4M","5M","6M"],uproar:["3E","4E","5E","5T","6E"],wakeupslap:["4L29","4L32","5L32","6L32"],waterpulse:["3M","4M"],wildcharge:["5M","6M"],wish:["3E","4E","5E","6E"],workup:["5M"],zenheadbutt:["4E","4T","5E","5T","6E"],hypervoice:["5T"],playrough:["6L49"],confide:["6M"]}}, + delcatty:{learnset:{attract:["3M","3L1","4M","4L1","5M","5L1","3S0","6L1","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleslap:["3L1","4L1","5L1","6L1"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fakeout:["4L1","5L1","6L1"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growl:["3L1"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M","3S0"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M","3S0"],sing:["3L1","4L1","5L1","6L1"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetkiss:["3S0"],swift:["3T","4T"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],wildcharge:["5M","6M"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],uproar:["5T"],hypervoice:["5T"],confide:["6M"]}}, + sableye:{learnset:{aerialace:["3M","4M","5M","6M"],astonish:["3L13","4L11","5L11","6L11"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M","5E","6E"],confuseray:["3L37","4L46","5L46","6L46"],counter:["3T"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T","6M"],detect:["3L25","4L22","5L22","6L22"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],embargo:["4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L29","4L32","5L32","3S1","6L32"],fakeout:["3L21","4L18","5L18","6L18"],feint:["4E","5E","6E"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],flatter:["4E","5E","6E"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],foresight:["3L5","4L4","5L4","5D","3S0","6L4"],foulplay:["5L50","5T","5S2","6L50"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],furyswipes:["3L17","4L15","5L15","6L15"],gravity:["4T","5T"],headbutt:["4T"],helpinghand:["3S1"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],icepunch:["3T","4T","5T"],icywind:["4T","5T"],incinerate:["5M","6M"],knockoff:["3L33","4L29","4T","5L29","5T","6L29"],leer:["3L1","4L1","5L1","3S0","6L1"],lowkick:["4T","5T"],lowsweep:["5M","6M"],magiccoat:["4T","5T"],meanlook:["3L45","4L57","5E","5L60","6L1","6L60","6E"],megakick:["3T"],megapunch:["3T"],metalburst:["5E","6E"],metronome:["3T"],mimic:["3T"],moonlight:["3E","4E","5E","6E"],mudslap:["3T","4T"],nastyplot:["4E","5E","6E"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L9","4L8","5L8","3S0","6L8"],octazooka:["5S2"],ominouswind:["4T"],painsplit:["4T"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],powergem:["4L43","5L43","6L43"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3E","3T","4E","4M","5M","6M"],punishment:["4L36","5L36","6L36"],raindance:["3M","4M","5M","6M"],recover:["3E","4E","5E","3S1","6E"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],scratch:["3L1","4L1","5L1","3S0","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","3L41","4M","4L53","5M","5L57","3S1","6L57","6M"],shadowclaw:["4M","4L39","5M","5L39","6L39","6M"],shadowsneak:["4L25","5L25","6L25"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5D","5T"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T","5E","5D","6E"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],tickle:["5S2"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5E","5T","5S2","6E"],waterpulse:["3M","4M"],willowisp:["4M","5M","6M"],zenheadbutt:["4L50","4T","5L53","5T","6L1","6L53"],roleplay:["4T","5T"],wonderroom:["5T"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + mawile:{learnset:{ancientpower:["3E","4E","4T","5E","6E"],astonish:["3L1","4L1","5L1","3S0","6L1"],attract:["3M","4M","5M","6M"],batonpass:["3L31","4L31","5L31","6L31"],bite:["3L11","4L11","5L11","6L11"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M","5E","6E"],chargebeam:["4M","5M","6M"],counter:["3T"],crunch:["3L36","4L36","5L36","6L36"],darkpulse:["4M","5T","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],embargo:["4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L26","4L26","5L26","6L26"],faketears:["3L6","4L6","5L6","5D","3S0","6L6"],falseswipe:["3E","4E","5M","3S1","6M"],fireblast:["3M","4M","5M","6M"],firefang:["4E","5E","5D","6E"],flamethrower:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],guardswap:["4E","5E","6E"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icefang:["4E","5E","6E"],icepunch:["3T","4T","5D","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irondefense:["3L41","4L41","4T","5L41","5T","3S1","6L41"],ironhead:["4L56","4T","5L56","5T","6L1","6L56"],knockoff:["4T","5T"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],metalburst:["5E","6E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],painsplit:["4T","5T"],payback:["4M","5M","6M"],poisonfang:["3E","4E","5E","6E"],protect:["3M","4M","5M","6M"],psychup:["3E","3T","4E","5M","6M"],punishment:["4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T","6E"],shadowball:["4M","5M","6M"],sing:["3S1"],slam:["5E","6E"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spitup:["3L46","4L51","5L51","6L50"],stockpile:["3L46","4L51","5L51","6L50"],stoneedge:["5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4E","4L46","4T","5E","5L46","6L46","6E"],sunnyday:["3M","4M","5M","6M"],superfang:["4T","5T"],swagger:["3T","4M","5M","6M"],swallow:["3L46","4L51","5L51","6L50"],sweetscent:["3L16","4L16","5L16","6L16"],swordsdance:["3E","3T","4E","4M","5M","6M"],taunt:["3M","4M","5M","6L1","6M"],thunderfang:["4E","5E","6E"],thunderpunch:["3T","4T","5T"],tickle:["3E","4E","5E","6E"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],vicegrip:["3L21","4L21","5L21","3S1","6L21"],foulplay:["5T"],lastresort:["5T"],snatch:["5T"],stealthrock:["5T"],playrough:["6L1","6L60"],growl:["6L1"],fairywind:["6L1"],poweruppunch:["6M"],confide:["6M"],mistyterrain:["6E"]}}, + aron:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["4T"],attract:["3M","4M","5M","6M"],autotomize:["5L43","6L39"],bodyslam:["3E","3T","4E","5E","6E"],bulldoze:["5M","6M"],captivate:["4M"],curse:["4E","5E","6E"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3L44","3T","4L43","5L50","6L46"],doubleteam:["3M","4M","5M","6M"],dragonrush:["4E","5E","6E"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],endeavor:["3E","4E","4T","5E","5T","5D","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],harden:["3L4","4L4","5L4","5D","6L1"],headbutt:["3L10","4L11","4T","5L11","6L8"],headsmash:["4E","5E","5D","6E"],heavyslam:["5L46","6L43"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],irondefense:["3L17","4L18","4T","5L18","5T","6L15"],ironhead:["4E","4L29","4T","5E","5L29","5T","6L25","6E"],irontail:["3M","3L29","4M","4L39","5L39","5T","6L36"],magnetrise:["4T","5T"],metalburst:["4L46","5L53","6L50"],metalclaw:["3L13","4L15","5L15","6L11"],metalsound:["3L39","4L36","5L36","6L32"],mimic:["3T"],mudslap:["3L7","3T","4L8","4T","5L8","6L4"],naturalgift:["4M"],protect:["3M","3L34","4M","4L32","5M","5L32","6L29","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L21","4M","4L22","5M","5L22","6L18","6M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],screech:["4E","5E","6E"],secretpower:["3M","4M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],smellingsalts:["3E","4E","5E","6E"],snore:["3T","4T","5T"],spite:["4T","5T"],stealthrock:["4M","5E","5T","6E"],stomp:["3E","4E","5E","6E"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5E","5T","6E"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],takedown:["3L25","4L25","5L25","6L22"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],waterpulse:["3M","4M"],confide:["6M"]}}, + lairon:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["4T"],attract:["3M","4M","5M","6M"],autotomize:["5L51","6L45"],bodyslam:["3T"],bulldoze:["5M","6M"],captivate:["4M"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3L53","3T","4L51","5L62","6L56"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],harden:["3L1","3L4","4L1","4L4","5L1","5L4","6L1"],headbutt:["3L1","3L10","4L1","4L11","4T","5L1","5L11","6L1","6L8"],heavyslam:["5L56","6L51"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],irondefense:["3L17","4L18","4T","5L18","5T","6L15"],ironhead:["4L29","4T","5L29","5T","6L25"],irontail:["3M","3L29","4M","4L45","5L45","5T","6L40"],magnetrise:["4T","5T"],metalburst:["4L56","5L67","6L62"],metalclaw:["3L13","4L15","5L15","6L11"],metalsound:["3L45","4L40","5L40","6L34"],mimic:["3T"],mudslap:["3L1","3L7","3T","4L1","4L8","4T","5L1","5L8","6L1","6L4"],naturalgift:["4M"],protect:["3M","3L37","4M","4L34","5M","5L34","6L29","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L21","4M","4L22","5M","5L22","6L18","6M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],takedown:["3L25","4L25","5L25","6L22"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],waterpulse:["3M","4M"],confide:["6M"]}}, + aggron:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],autotomize:["5L57","6L48"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],counter:["3T"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3L63","3T","4L57","5L74","3S0","6L65"],doubleteam:["3M","4M","5M","6M"],dragonclaw:["3M","4M","5M","6M"],dragonpulse:["4M","5T"],dragontail:["5M","6M"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],harden:["3L1","3L4","4L1","4L4","5L1","5L4","6L1"],headbutt:["3L1","3L10","4L1","4L11","4T","5L1","5L11","6L1","6L8"],heavyslam:["5L65","6L57"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irondefense:["3L17","4L18","4T","5L18","5T","6L15"],ironhead:["4L29","4T","5L29","5T","6L25"],irontail:["3M","3L29","4M","4L48","5L48","3S0","3S1","5T","6L40"],lowkick:["4T","5T"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],metalburst:["4L65","5L82","6L74"],metalclaw:["3L13","4L15","5L15","6L11"],metalsound:["3L50","4L40","5L40","3S0","3S1","6L34"],mimic:["3T"],mudslap:["3L1","3L7","3T","4L1","4L8","4T","5L1","5L8","6L1","6L4"],naturalgift:["4M"],outrage:["4T","5T"],payback:["4M","5M","6M"],protect:["3M","3L37","4M","4L34","5M","5L34","3S0","3S1","6L29","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L21","4M","4L22","5M","5L22","6L18","6M"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spite:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],takedown:["3L25","4L25","5L25","3S1","6L22"],taunt:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],waterpulse:["3M","4M"],whirlpool:["4M"],poweruppunch:["6M"],confide:["6M"]}}, + meditite:{learnset:{acupressure:["5L39","6L39"],attract:["3M","4M","5M","6M"],batonpass:["3E","4E","5E","6E"],bide:["3L1","4L1","5L1","3S0","6L1"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulletpunch:["4E","5E","6E"],calmmind:["3M","3L28","4M","4L25","5M","5L25","6L25","6M"],captivate:["4M"],confusion:["3L9","4L8","5L8","3S0","3S1","6L8"],counter:["3T"],detect:["3L12","4L11","5L11","3S1","6L11"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5E","5D","5T","6E"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3E","3T","4E","5E","3S1","6E"],endure:["3T","4M","5D"],facade:["3M","4M","5M","6M"],fakeout:["3E","4E","5E","6E"],feint:["4L22","5L22","6L22"],firepunch:["3E","3T","4E","4T","5E","5T","6E"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],forcepalm:["4L29","5L29","6L29"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],guardswap:["4E","5E","6E"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","3L18","3L17","4M","4L15","5M","5L15","6L15","6M"],highjumpkick:["3L32","3L33","4L32","5L32","6L32"],icepunch:["3E","3T","4E","4T","5E","5T","6E"],lightscreen:["3M","4M","5M","6M"],lowkick:["4T","5T"],lowsweep:["5M","6M"],magiccoat:["4T","5T"],meditate:["3L4","4L4","5L4","5D","3S0","6L4"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mindreader:["3L22","3L25","4L18","5L18","6L18"],mudslap:["3T","4T"],naturalgift:["4M"],painsplit:["4T","5T"],poisonjab:["4M","5M","6M"],powerswap:["4E","5E","6E"],powertrick:["4L39","5L43","6L43"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychocut:["4E","5E","6E"],psychup:["3L38","3T","3L36","4M","4L36","5M","5L36","6L36","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recover:["3L48","3L44","4L46","5L50","6L50"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],reversal:["3L42","3L41","4L43","5L46","6L46"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],secretpower:["3M","4M","5E","6E"],seismictoss:["3T"],shadowball:["3M","4M","5M","3S1","6M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","3L20","4M","5M","6M"],swift:["3T","4T"],telekinesis:["5M"],thunderpunch:["3E","3T","4E","4T","5E","5T","6E"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],vacuumwave:["4T"],workup:["5M"],zenheadbutt:["4T","5T"],poweruppunch:["6M"],confide:["6M"],quickguard:["6E"]}}, + medicham:{learnset:{acupressure:["5L42","6L42"],attract:["3M","4M","5M","6M"],bide:["3L1","4L1","5L1","6L1"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],calmmind:["3M","3L28","4M","4L25","5M","5L25","6L25","6M"],captivate:["4M"],confusion:["3L1","3L9","4L1","4L8","5L1","5L8","6L1","6L8"],counter:["3T"],detect:["3L1","3L12","4L1","4L11","5L1","5L11","6L1","6L11"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],feint:["4L22","5L22","6L22"],firepunch:["3L1","3T","4L1","4T","5L1","5T","6L1"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],forcepalm:["4L29","5L29","6L29"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","3L18","3L17","4M","4L15","5M","5L15","6L15","6M"],highjumpkick:["3L32","3L33","4L32","5L32","6L32"],hyperbeam:["3M","4M","5M","6M"],icepunch:["3L1","3T","4L1","4T","5L1","5T","6L1"],lightscreen:["3M","4M","5M","6M"],lowkick:["4T","5T"],lowsweep:["5M","6M"],magiccoat:["4T","5T"],meditate:["3L1","3L4","4L1","4L4","5L1","5L4","6L1","6L4"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mindreader:["3L22","3L25","4L18","5L18","6L18"],mudslap:["3T","4T"],naturalgift:["4M"],painsplit:["4T","5T"],poisonjab:["4M","5M","6M"],powertrick:["4L42","5L49","6L49"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3L40","3T","3L36","4M","4L36","5M","5L36","6L36","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recover:["3L54","3L56","4L55","5L62","6L62"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],reversal:["3L46","3L47","4L49","5L55","6L55"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","3L20","4M","5M","6M"],swift:["3T","4T"],telekinesis:["5M"],thunderpunch:["3L1","3T","4L1","4T","5L1","5T","6L1"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],vacuumwave:["4T"],workup:["5M"],zenheadbutt:["4T","5T","6L1"],poweruppunch:["6M"],confide:["6M"]}}, + electrike:{learnset:{attract:["3M","4M","5M","6M"],bite:["3L33","4L28","5L28","6L28"],bodyslam:["3T"],captivate:["4M"],charge:["3L41","4L44","5L44","6L44"],chargebeam:["4M","5M","6M"],crunch:["3E","4E","5E","6E"],curse:["3E","4E","5E","6E"],discharge:["4E","4L41","5E","5L41","6L41","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],electroball:["5E","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],firefang:["4E","5E","6E"],flameburst:["5E","6E"],flamethrower:["4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],headbutt:["3E","4E","4T","5E","6E"],hiddenpower:["3M","4M","5M","6M"],howl:["3L12","4L12","5L12","6L12"],icefang:["4E","5E","5D","6E"],irontail:["3M","4M","5T"],leer:["3L9","4L9","5L9","6L9"],lightscreen:["4M","5M","6M"],magnetrise:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],odorsleuth:["3L25","4L25","5L25","6L25"],protect:["3M","4M","5M","6M"],quickattack:["3L17","4L17","5L17","6L17"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L28","4M","4L36","5M","5L36","6L36","6M"],round:["5M","6M"],secretpower:["3M","4M"],shockwave:["3M","4M","5E","6E"],signalbeam:["4T","5D","5T"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],spark:["3L20","4L20","5L20","6L20"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3E","3T","4E","4T","5E","6E"],switcheroo:["4E","5E","6E"],tackle:["3L1","4L1","5L1","6L1"],thief:["3M","4M","5M","6M"],thunder:["3M","3L36","4M","4L49","5M","5L52","6L52","6M"],thunderbolt:["3M","4M","5M","6M"],thunderfang:["4E","4L33","5E","5L33","6L33","6E"],thunderwave:["3L4","3T","4M","4L4","5M","5L4","5D","6L4","6M"],toxic:["3M","4M","5M","6M"],uproar:["3E","4E","5E","5T","6E"],voltswitch:["5M","6M"],wildcharge:["5M","5L49","6L49","6M"],confide:["6M"],eerieimpulse:["6E"]}}, + manectric:{learnset:{attract:["3M","4M","5M","6M"],bite:["3L39","4L30","5L30","3S0","6L30"],bodyslam:["3T"],captivate:["4M"],charge:["3L53","4L54","5L54","6L54"],chargebeam:["4M","5M","6M"],discharge:["4L49","5L49","6L49"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],firefang:["4L1","5L1","6L1"],flamethrower:["4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],howl:["3L1","3L12","4L1","4L12","5L1","5L12","6L1","6L12"],hyperbeam:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],leer:["3L1","3L9","4L1","4L9","5L1","5L9","6L1","6L9"],lightscreen:["4M","5M","6M"],magnetrise:["4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],odorsleuth:["3L25","4L25","5L25","6L25"],overheat:["4M","5M","6M"],protect:["3M","4M","5M","6M"],quickattack:["3L17","4L17","5L17","6L17"],raindance:["3M","4M","5M","3S0","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","3L31","4M","4L42","5M","5L42","6L42","6M"],round:["5M","6M"],secretpower:["3M","4M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],spark:["3L20","4L20","5L20","6L20"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],thief:["3M","4M","5M","6M"],thunder:["3M","3L45","4M","4L61","5M","5L66","3S0","6L66","6M"],thunderbolt:["3M","4M","5M","6M"],thunderfang:["4L37","5L37","6L37"],thunderwave:["3L1","3L4","3T","4M","4L1","4L4","5M","5L1","5L4","6L1","6L4","6M"],toxic:["3M","4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","5L61","6L61","6M"],uproar:["5T"],electricterrain:["6L1","6L70"],confide:["6M"]}}, + plusle:{learnset:{agility:["3L47","4L44","5L48","6L48"],attract:["3M","4M","5M","6M"],batonpass:["3L40","4L42","5L44","6L44"],bodyslam:["3T"],captivate:["4M"],charge:["3L31","4L35","5L38","6L38"],chargebeam:["4M","5M","6M"],copycat:["4L24","5L24","6L24"],counter:["3T"],defensecurl:["3T"],discharge:["4E","5E","5D","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],electroball:["5L29","6L29"],encore:["3L22","4L17","5L17","6L17"],endure:["3T","4M"],entrainment:["5L63","6L1","6L63"],facade:["3M","4M","5M","6M"],faketears:["3L28","4L21","4L31","5L21","5L35","6L35"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],grassknot:["4M","5M","6M"],growl:["3L1","4L1","5L1","3S0","3S1","6L1"],headbutt:["4T"],helpinghand:["3L13","4L10","4T","5L10","5T","6L10"],hiddenpower:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],lastresort:["4L48","4T","5L51","5T","6L50"],lightscreen:["3M","4M","5M","6M"],luckychant:["5E","6E"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4L51","5L56","6L1","6L56"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],quickattack:["3L10","4L7","5L7","3S1","6L7"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M"],signalbeam:["4T","5T","5D"],sing:["4E","5E","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spark:["3L19","4L15","5L15","6L15"],substitute:["3E","3T","4E","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetkiss:["4E","5E","6E"],swift:["3T","4L29","4T","5L31","6L31"],thunder:["3M","3L37","4M","4L38","5M","5L42","6L42","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3L4","3T","4M","4L3","5M","5L3","3S0","3S1","5D","6L3","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],voltswitch:["5M","6M"],watersport:["3S0"],wildcharge:["5M","6M"],wish:["3E","4E","5E","6E"],nuzzle:["6L1"],playnice:["6L1","6L21"],confide:["6M"]}}, + minun:{learnset:{agility:["3L47","4L44","5L48","6L48"],attract:["3M","4M","5M","6M"],batonpass:["3L40","4L42","5L44","6L44"],bodyslam:["3T"],captivate:["4M"],charge:["3L31","4L35","5L38","6L38"],chargebeam:["4M","5M","6M"],charm:["3L28","4L21","5L21","6L21"],copycat:["4L24","5L24","6L24"],counter:["3T"],defensecurl:["3T"],discharge:["4E","5E","5D","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],echoedvoice:["5M","6M"],electroball:["5L29","6L29"],encore:["3L22","4L17","5L17","6L17"],endure:["3T","4M"],entrainment:["5L63","6L1","6L63"],facade:["3M","4M","5M","6M"],faketears:["4L31","5L35","6L35"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],grassknot:["4M","5M","6M"],growl:["3L1","4L1","5L1","3S0","3S1","6L1"],headbutt:["4T"],helpinghand:["3L13","4L10","4T","5L10","5T","6L10"],hiddenpower:["3M","4M","5M","6M"],irontail:["3M","4M","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M","6M"],luckychant:["5E","6E"],magnetrise:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3S0"],nastyplot:["4L51","5L56","6L1","6L56"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],quickattack:["3L10","4L7","5L7","3S1","6L7"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shockwave:["3M","4M"],signalbeam:["4T","5T","5D"],sing:["4E","5E","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spark:["3L19","4L15","5L15","6L15"],substitute:["3E","3T","4E","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetkiss:["4E","5E","6E"],swift:["3T","4L29","4T","5L31","6L31"],thunder:["3M","3L37","4M","4L38","5M","5L42","6L42","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3L4","3T","4M","4L3","5M","5L3","3S0","3S1","5D","6L3","6M"],toxic:["3M","4M","5M","6M"],trumpcard:["4L48","5L51","6L51"],uproar:["4T","5T"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],wish:["3E","4E","5E","6E"],nuzzle:["6L1"],playnice:["6L1"],confide:["6M"]}}, + volbeat:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],aircutter:["4T"],attract:["3M","4M","5M","6M"],batonpass:["3E","4E","5E","6E"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bugbite:["4T","5T"],bugbuzz:["4E","4L41","5E","5L41","6L41","6E"],captivate:["4M"],chargebeam:["4M","5M","6M"],confuseray:["3L5","4L9","5L9","6L9"],counter:["3T"],dizzypunch:["5E","6E"],doubleedge:["3L37","3T","4L45","5L45","6L45"],doubleteam:["3M","3L9","4M","4L5","5M","5L5","6L5","6M"],dynamicpunch:["3T"],encore:["4E","5E","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","4L1","5M","5L1","5D","6L1","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],helpinghand:["3L33","4L33","4T","5L33","5T","6L33"],hiddenpower:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],lightscreen:["3M","4M","5M","6M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],moonlight:["3L13","4L13","5L13","6L13"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","3L29","4M","4L29","5M","5L29","6L29","6M"],psychup:["3T","4M","5M","6M"],quickattack:["3L17","4L17","5L17","6L17"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T","5E","6E"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["3L25","4L25","4T","5L25","5T","6L25"],silverwind:["3E","4E","4M","5E","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],tailglow:["3L21","4L21","5L21","6L21"],tailwind:["4T","5D","5T"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["3E","4E","5E","5D","5T","6E"],uturn:["4M","5M","6M"],waterpulse:["3M","4M"],zenheadbutt:["4L37","4T","5L37","5T","6L37"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + illumise:{learnset:{acrobatics:["5M","6M"],aerialace:["3M","4M","5M","6M"],aircutter:["4T"],attract:["3M","4M","5M","6M"],batonpass:["3E","4E","5E","6E"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bugbite:["4T","5T"],bugbuzz:["4E","4L41","5E","5L41","6L41","6E"],captivate:["4M","5E","6E"],chargebeam:["4M","5M","6M"],charm:["3L9","4L9","5L9","5D","6L9"],confuseray:["5E","6E"],counter:["3T"],covet:["3L37","4L45","5L45","5T","6L45"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],encore:["3L25","4E","4L25","5E","5L25","6L25","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],faketears:["5E","5D","6E"],flash:["3M","4M","5M","6M"],flatter:["3L29","4L29","5L29","6L29"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigadrain:["3M","4M","5T"],growth:["3E","4E","5E","6E"],helpinghand:["3L33","4L33","4T","5L33","5T","6L33"],hiddenpower:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],lightscreen:["3M","4M","5M","6M"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],moonlight:["3L13","4L13","5L13","6L13"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],quickattack:["3L17","4L17","5L17","6L17"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],silverwind:["3E","4E","4M","5E","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3L5","4L5","5L5","6L5"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],tailwind:["4T","5D","5T"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uturn:["4M","5M","6M"],waterpulse:["3M","4M"],wish:["3L21","4L21","5L21","6L21"],zenheadbutt:["4L37","4T","5L37","5T","6L37"],playnice:["6L1"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + budew:{learnset:{absorb:["4L1","5L1","6L1"],attract:["4M","5M","6M"],bulletseed:["4M"],captivate:["4M"],cottonspore:["4E","5E","6E"],covet:["5T"],cut:["4M","5M","6M"],doubleteam:["4M","5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],extrasensory:["4E","5E","6E"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigadrain:["4M","5E","5T","6E"],grassknot:["4M","5M","6M"],grasswhistle:["5E","6E"],growth:["4L4","5L4","6L4"],hiddenpower:["4M","5M","6M"],leafstorm:["4E","5E","6E"],megadrain:["4L13","5L13","6L13"],mindreader:["4E","5E","6E"],mudslap:["4T"],naturalgift:["4M","5E","6E"],pinmissile:["4E","5E","6E"],protect:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],razorleaf:["4E","5E","6E"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],secretpower:["4M"],seedbomb:["4T","5E","5T","6E"],shadowball:["4M","5M","6M"],sleeppowder:["4E","5E","6E"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","5M","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],spikes:["4E","5E","6E"],stunspore:["4L10","5L10","6L10"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],swordsdance:["4M","5M","6M"],synthesis:["4E","4T","5E","5T","6E"],toxic:["4M","5M","6M"],uproar:["4T","5T"],venoshock:["5M","6M"],watersport:["4L7","5L7","6L7"],worryseed:["4L16","4T","5L16","5T","6L16"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + roselia:{learnset:{absorb:["3L1","4L1","5L1","3S0","6L1"],aromatherapy:["3L53","4L43","5L43","6L43"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],cottonspore:["3E","4E","5E","6E"],covet:["5T"],cut:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigadrain:["3M","3L33","4M","4L25","5E","5L25","5T","6L25","6E"],grassknot:["4M","5M","6M"],grasswhistle:["3L29","4L22","5E","5L22","3S1","6L22","6E"],growth:["3L5","4L4","5L4","3S0","5D","6L4"],hiddenpower:["3M","4M","5M","6M"],ingrain:["3L41","4L34","5L34","6L34"],leafstorm:["4E","5E","6E"],leechseed:["3L21","4L16","5L16","3S1","6L16"],magicalleaf:["3L25","4L19","5L19","3S1","6L19"],megadrain:["3L17","4L13","5L13","6L13"],mimic:["3T"],mindreader:["4E","5E","6E"],mudslap:["3T","4T"],naturalgift:["4M","5E","6E"],nightmare:["3T"],petaldance:["3L49","4L40","5L40","6L37"],pinmissile:["3E","4E","5E","6E"],poisonjab:["4M","5M","6M"],poisonsting:["3L9","4L7","5L7","3S0","6L7"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["4M","5M","6M"],razorleaf:["4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5E","5T","6E"],shadowball:["3M","4M","5M","6M"],sleeppowder:["4E","5E","5D","6E"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spikes:["3E","4E","5E","6E"],stunspore:["3L13","4L10","5L10","6L10"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetkiss:["3S1"],sweetscent:["3L37","4L31","5L31","6L31"],swift:["3T","4T","5D"],swordsdance:["3T","4M","5M","6M"],synthesis:["3E","3L57","4E","4L46","4T","5E","5L46","5T","6L46","6E"],toxic:["3M","3L45","4M","4L37","5M","5L37","6L40","6M"],toxicspikes:["4L28","5L28","6L28"],venoshock:["5M","6M"],worryseed:["4T","5T"],petalblizzard:["6L50"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + roserade:{learnset:{attract:["4M","5M","6M"],bulletseed:["4M"],captivate:["4M"],covet:["5T"],cut:["4M","5M","6M"],doubleteam:["4M","5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],gigadrain:["4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],magicalleaf:["4L1","5L1","6L1"],megadrain:["4L1","5L1","6L1"],mudslap:["4T"],naturalgift:["4M"],poisonjab:["4M","5M","6M"],poisonsting:["4L1","5L1","6L1"],protect:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],secretpower:["4M"],seedbomb:["4T","5T"],shadowball:["4M","5M","6M"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","5M","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],sweetscent:["4L1","5L1","6L1"],swift:["4T"],swordsdance:["4M","5M","6M"],synthesis:["4T","5T"],toxic:["4M","5M","6M"],venoshock:["5M","6M"],weatherball:["4L1","5L1","6L1"],worryseed:["4T","5T"],venomdrench:["6L1"],grassyterrain:["6L1"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + gulpin:{learnset:{acidarmor:["3E","4E","5E","5D","6E"],acidspray:["5L34","6L34"],amnesia:["3L17","4L17","5L17","6L17"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],curse:["4E","5E","6E"],defensecurl:["3T"],destinybond:["4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3E","3T","4E","4M","5M","6M"],dynamicpunch:["3T"],encore:["3L23","4L23","5L23","6L23"],endure:["3T","4M"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],frustration:["3M","4M","5M","6M"],gastroacid:["4L44","4T","5L49","5T","6L49"],gigadrain:["3M","4M","5T","5D"],gunkshot:["4L54","4T","5E","5L59","5T","6L59","6E"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],mimic:["3T"],mudslap:["3T","4T","5E","6E"],naturalgift:["4M"],nightmare:["3T"],painsplit:["3E","4E","4T","5E","5T","6E"],poisongas:["3L9","4L9","5L9","5D","6L9"],pound:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],selfdestruct:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M","3S0"],sing:["3S0"],sleeptalk:["3T","4M","5T","6M"],sludge:["3L14","4L14","5L14","3S0","6L14"],sludgebomb:["3M","3L39","4M","4L39","5M","5L44","6L44","6M"],sludgewave:["5M","6M"],smog:["3E","4E","5E","6E"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spitup:["3L34","4L34","5L39","6L39"],stockpile:["3L34","4L34","5L39","6L39"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["3L34","4L34","5L39","6L39"],thunderpunch:["3T","4T","5T"],toxic:["3M","3L28","4M","4L28","5M","5L28","3S0","6L28","6M"],venoshock:["5M","6M"],waterpulse:["3M","4M"],wringout:["4L49","5L54","6L54"],yawn:["3L6","4L6","5L6","6L6"],belch:["6L40"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"],venomdrench:["6E"]}}, + swalot:{learnset:{acidspray:["5L38","6L38"],amnesia:["3L17","4L17","5L17","6L17"],attract:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3L26","3T","4L26","5L26","6L26"],bulldoze:["5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],counter:["3T"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["4M","5M","6M"],encore:["3L23","4L23","5L23","6L23"],endure:["3T","4M"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],frustration:["3M","4M","5M","6M"],gastroacid:["4L52","4T","5L59","5T","6L59"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],gunkshot:["4L66","4T","5L73","5T","6L1","6L73"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],painsplit:["4T","5T"],poisongas:["3L1","3L9","4L1","4L9","5L1","5L9","6L1","6L9"],pound:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],selfdestruct:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludge:["3L1","3L14","4L1","4L14","5L1","5L14","6L1","6L14"],sludgebomb:["3M","3L48","4M","4L45","5M","5L52","6L52","6M"],sludgewave:["5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spitup:["3L40","4L38","5L45","6L45"],stockpile:["3L40","4L38","5L45","6L45"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["3L40","4L38","5L45","6L45"],thunderpunch:["3T","4T","5T"],toxic:["3M","3L31","4M","4L30","5M","5L30","6L30","6M"],venoshock:["5M","6M"],waterpulse:["3M","4M"],wringout:["4L59","5L66","6L1","6L66"],yawn:["3L1","3L6","4L1","4L6","5L1","5L6","6L1","6L6"],belch:["6L46"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + carvanha:{learnset:{agility:["3L43","4L36","5L36","6L36"],ancientpower:["4E","4T","5E","6E"],aquajet:["4L31","5L31","6L31"],assurance:["4L26","5L26","6L26"],attract:["3M","4M","5M","6M"],bite:["3L1","4L1","5L1","5D","3S0","6L1"],blizzard:["3M","4M","5M","6M"],bounce:["4T","5T"],brine:["4M","5E","6E"],captivate:["4M"],crunch:["3L22","4L28","5L28","6L28"],darkpulse:["4M","5D","5T","6M"],dive:["3M","4T","5M"],doubleedge:["3E","3T","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],focusenergy:["3L13","4L8","5L8","6L8"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],hail:["3M","4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3E","4E","5E","6E"],icebeam:["3M","4M","5M","6M"],icefang:["4L16","5L16","6L16"],icywind:["3T","4T","5T"],leer:["3L1","4L1","5L1","6L1"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],rage:["3L7","4L6","5L6","6L6"],raindance:["3M","4M","5M","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],scaryface:["3L16","4L11","5L11","3S0","6L11"],screech:["3L28","4L18","5L18","6L18"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M","6M"],superfang:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3L37","3T","4M","4L21","5M","5L21","6L21","6M"],swift:["3T","4T","5E","6E"],takedown:["3L31","4L38","5L38","6L38"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],thrash:["3E","4E","5E","5D","6E"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M","3S0"],whirlpool:["4M"],zenheadbutt:["4T","5T"],confide:["6M"],destinybond:["6E"]}}, + sharpedo:{learnset:{agility:["3L53","4L45","5L45","6L45"],ancientpower:["4T"],aquajet:["4L34","5L34","6L34"],assurance:["4L26","5L26","6L26"],attract:["3M","4M","5M","6M"],avalanche:["4M"],bite:["3L1","4L1","5L1","6L1"],blizzard:["3M","4M","5M","6M"],bounce:["4T","5T"],brine:["4M"],bulldoze:["5M","6M"],captivate:["4M"],crunch:["3L22","4L28","5L28","6L28"],darkpulse:["4M","5T","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feint:["4L1","5L1","6L1"],focusenergy:["3L1","3L13","4L1","4L8","5L1","5L8","6L1","6L8"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icefang:["4L16","5L16","6L16"],icywind:["3T","4T","5T"],leer:["3L1","4L1","5L1","6L1"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4L56","5L56","6L1","6L56"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],rage:["3L1","3L7","4L1","4L6","5L1","5L6","6L1","6L6"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],scaryface:["3L16","4L11","5L11","6L11"],screech:["3L28","4L18","5L18","6L18"],secretpower:["3M","4M"],skullbash:["3L48","4L50","5L50","6L50"],slash:["3L33","4L30","5L30","6L30"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superfang:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3L43","3T","4M","4L21","5M","5L21","6L21","6M"],swift:["3T","4T"],taunt:["3M","3L38","4M","4L40","5M","5L40","6L40","6M"],thief:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],zenheadbutt:["4T","5T"],confide:["6M"]}}, + wailmer:{learnset:{amnesia:["3L46","4L37","5L37","6L37"],aquaring:["4E","5E","6E"],astonish:["3L23","4L17","5L17","6L17"],attract:["3M","4M","5M","6M"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T","4E","5E","6E"],bounce:["4L44","4T","5L44","5D","5T","6L44"],brine:["4M","4L31","5L31","6L31"],bulldoze:["5M","6M"],captivate:["4M"],curse:["3E","4E","5E","6E"],defensecurl:["3T","4E","5E","6E"],dive:["3M","4L41","4T","5M","5L41","6L41"],doubleedge:["3E","3T","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fissure:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],growl:["3L5","4L4","5L4","6L4"],hail:["3M","4M","5M","6M"],headbutt:["4T"],heavyslam:["5L50","6L50"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L50","4L47","5L47","6L47"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],mimic:["3T"],mist:["3L32","4L24","5L24","6L24"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","3L37","4M","4L27","5M","5L27","6L27","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3L14","3T","4L11","4T","5L11","6L11"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],selfdestruct:["3T"],sleeptalk:["3E","3T","4E","4M","5E","5D","5T","6M","6E"],snore:["3E","3T","4E","4T","5E","5T","6E"],soak:["5E","6E"],splash:["3L1","4L1","5L1","6L1"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3E","3T","4E","4M","5M","6M"],thrash:["3E","4E","5E","6E"],tickle:["3E","4E","5E","6E"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L10","4L7","5L7","5D","6L7"],waterpulse:["3M","3L28","4M","4L21","5L21","6L21"],waterspout:["3L41","4L34","5L34","6L34"],whirlpool:["3L19","4L14","4M","5L14","6L14"],zenheadbutt:["5E","5T","6E"],hypervoice:["5T"],confide:["6M"]}}, + wailord:{learnset:{amnesia:["3L52","4L37","5L37","3S0","6L37"],astonish:["3L23","4L17","5L17","6L17"],attract:["3M","4M","5M","6M"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],bounce:["4L54","4T","5L54","5T","6L54"],brine:["4M","4L31","5L31","6L31"],bulldoze:["5M","6M"],captivate:["4M"],defensecurl:["3T"],dive:["3M","4L46","4T","5M","5L46","6L46"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],growl:["3L1","3L5","4L1","4L4","5L1","5L4","6L1","6L4"],hail:["3M","4M","5M","6M"],headbutt:["4T"],heavyslam:["5L70","6L70"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L59","4L62","5L62","3S0","6L62"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],mimic:["3T"],mist:["3L32","4L24","5L24","3S1","6L24"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","3L37","4M","4L27","5M","5L27","3S0","3S1","6L27","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3L1","3L14","3T","4L1","4L11","4T","5L1","5L11","6L1","6L11"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],selfdestruct:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],splash:["3L1","4L1","5L1","6L1"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","3L10","4L1","4L7","5L1","5L7","6L1","6L7"],waterpulse:["3M","3L28","4M","4L21","5L21","3S1","6L21"],waterspout:["3L44","4L34","5L34","3S0","3S1","6L34"],whirlpool:["3L19","4L14","4M","5L14","6L14"],zenheadbutt:["5T"],hypervoice:["5T"],confide:["6M"]}}, + numel:{learnset:{amnesia:["3L31","4L25","5L31","6L19"],ancientpower:["4E","5E","6E"],attract:["3M","4M","5M","6M"],bodyslam:["3E","3T","4E","5E","5D","6E"],bulldoze:["5M","6M"],captivate:["4M"],charm:["3S0"],curse:["5L29","6L29"],defensecurl:["3E","3T","4E","5E","6E"],dig:["3M","4M","5M","3S0","6M"],doubleedge:["3L49","3T","4L51","5L55","6L47"],doubleteam:["3M","4M","5M","6M"],earthpower:["4L35","4T","5L41","5T","6L26"],earthquake:["3M","3L35","4M","4L41","5M","5L45","6L40","6M"],echoedvoice:["5M","6M"],ember:["3L11","4L5","5L5","5D","3S0","6L5"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flameburst:["5L21","6L15"],flamecharge:["5M","6M"],flamethrower:["3M","3L41","4M","4L45","5M","5L51","6L43","6M"],focusenergy:["3L25","4L15","5L15","6L12"],frustration:["3M","4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],headbutt:["4T"],heatwave:["4E","4T","5E","5D","5T","6E"],hiddenpower:["3M","4M","5M","6M"],howl:["3E","4E","5E","6E"],incinerate:["5M","6M"],ironhead:["5E","5T","6E"],lavaplume:["4L31","5L35","6L22"],magnitude:["3L19","4L11","5L11","6L8"],mimic:["3T"],mudbomb:["4E","5E","6E"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3E","3T","4E","4T","5E","6E"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scaryface:["3E","4E","5E","6E"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spitup:["4E","5E","6E"],stealthrock:["4M","5T"],stockpile:["4E","5E","6E"],stomp:["3E","4E","5E","6E"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["4E","5E","6E"],tackle:["3L1","4L1","5L1","6L1"],takedown:["3L29","4L21","5L25","3S0","6L31"],toxic:["3M","4M","5M","6M"],willowisp:["4M","5M","6M"],yawn:["4E","5E","5L36","6L36","6E"],afteryou:["5T"],naturepower:["6M"],confide:["6M"]}}, + camerupt:{learnset:{amnesia:["3L31","4L25","5L31","6L19"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bulldoze:["5M","6M"],captivate:["4M"],curse:["5L29","6L29"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4L39","4T","5L49","5T","6L26"],earthquake:["3M","3L37","4M","4L49","5M","5L57","6L46","6M"],echoedvoice:["5M","6M"],ember:["3L1","3L11","4L1","4L5","5L1","5L5","6L1","6L5"],endure:["3T","4M"],eruption:["3L45","4L57","5L67","6L1","6L52"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],fissure:["3L55","4L67","5L75","6L1","6L59"],flameburst:["5L21","6L15"],flamecharge:["5M","6M"],flamethrower:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],focusenergy:["3L25","4L15","5L15","6L12"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],ironhead:["4T","5T"],lavaplume:["4L31","5L33","6L22"],magnitude:["3L1","3L19","4L1","4L11","5L1","5L11","6L1","6L8"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3L33","3T","4M","4L33","5M","5L39","6L33","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],selfdestruct:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["4M","5M","6M"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],takedown:["3L29","4L21","5L25","6L31"],toxic:["3M","4M","5M","6M"],willowisp:["4M","5M","6M"],yawn:["5L39","6L39"],afteryou:["5T"],naturepower:["6M"],confide:["6M"]}}, + torkoal:{learnset:{amnesia:["3L40","4L49","5L49","6L49"],attract:["3M","4M","5M","6M"],bodyslam:["3L20","3T","4L33","5L33","6L33"],bulldoze:["5M","6M"],captivate:["4M"],clearsmog:["5E","6E"],curse:["3L7","4L12","5L12","6L12"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],earthquake:["4E","4M","5M","6M"],ember:["3L1","4L1","5L1","5D","6L1"],endure:["3E","3T","4E","4M","5E","6E"],eruption:["3E","4E","5E","6E"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firespin:["3L17","4L17","5L17","6L17"],fissure:["4E","5E","5D","6E"],flail:["3L43","4L52","5L52","6L1","6L52"],flameburst:["5E","6E"],flamecharge:["5M","6M"],flamethrower:["3M","3L30","4M","4L28","5M","5L28","6L28","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gyroball:["4M","5M","6M"],headbutt:["4T"],heatwave:["3L46","4L55","4T","5L55","5T","6L1","6L55"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["4M","5M","6M"],incinerate:["5M","6M"],inferno:["5L60","6L1","6L60"],irondefense:["3L33","4L44","4T","5L44","5T","6L44"],irontail:["3M","4M","5T"],lavaplume:["4L39","5L39","6L39"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],protect:["3M","3L27","4M","4L36","5M","5L36","6L1","6L36","6M"],rapidspin:["4L23","5L23","6L23"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["4T"],round:["5M","6M"],secretpower:["3M","4M"],selfdestruct:["3T"],shellsmash:["5L65","6L1","6L65"],skullbash:["4E","5E","6E"],sleeptalk:["3E","3T","4E","4M","5E","5T","6M","6E"],sludgebomb:["3M","4M","5M","6M"],smog:["3L4","4L4","5L4","6L4"],smokescreen:["3L14","4L20","5L20","6L20"],snore:["3T","4T","5T"],solarbeam:["4M","5M","6M"],stealthrock:["4M","5D","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],willowisp:["4M","5M","6M"],withdraw:["4L7","5L7","6L7"],yawn:["3E","4E","5E","6E"],afteryou:["5T"],naturepower:["6M"],confide:["6M"]}}, + spoink:{learnset:{amnesia:["4E","5E","6E"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["3L43","4L48","4T","5L53","5T","6L50"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],confuseray:["3L25","4L18","5L18","6L18"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],endure:["3T","4M","5E","6E"],extrasensory:["3E","4E","5E","6E"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["3E","4E","5E","6E"],grassknot:["4M","5M","6M"],headbutt:["4T"],healbell:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lightscreen:["3M","4M","5M","6M"],luckychant:["5E","6E"],magiccoat:["3L28","4L21","4T","5L21","5T","6L21"],mimic:["3T"],mirrorcoat:["4E","5E","6E"],naturalgift:["4M"],odorsleuth:["3L10","4L10","5L10","6L10"],payback:["4M","4L34","5M","5L41","6L40","6M"],powergem:["4L46","5L48","6L33"],protect:["3M","4M","5M","6M"],psybeam:["3L16","4L14","5L14","6L14"],psychic:["3M","3L34","4M","4L41","5M","5L46","6L44","6M"],psychup:["3L19","3T","4M","4L15","5M","5L15","6L15","6M"],psyshock:["5M","5L34","6L38","6M"],psywave:["3L7","4L7","5L7","5D","6L7"],raindance:["3M","4M","5M","6M"],recycle:["4M","5D","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","3L37","4M","4L29","5M","5L29","6L29","6M"],"return":["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5E","5D","5T","6E"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3L37","3T","4L29","4T","5L29","5T","6L29"],splash:["3L1","4L1","5L1","3S0","6L1"],substitute:["3E","3T","4E","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],thunderwave:["4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["3E","4E","4T","5E","5T","6E"],trickroom:["4M","5M","6M"],uproar:["3S0"],whirlwind:["5E","6E"],zenheadbutt:["4E","4L26","4T","5E","5L26","5T","6L26","6E"],covet:["5T"],confide:["6M"]}}, + grumpig:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["3L55","4L60","4T","5L68","5T","6L60"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],confuseray:["3L25","4L18","5L18","6L18"],counter:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["4T"],healbell:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],lightscreen:["3M","4M","5M","6M"],magiccoat:["3L28","4L21","4T","5L21","5T","6L21"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],odorsleuth:["3L1","3L10","4L1","4L10","5L1","5L10","6L1","6L10"],payback:["4M","4L37","5M","5L47","6L46","6M"],powergem:["4L55","5L60","6L35"],protect:["3M","4M","5M","6M"],psybeam:["3L1","3L16","4L1","4L14","5L1","5L14","6L1","6L14"],psychic:["3M","3L37","4M","4L47","5M","5L55","6L52","6M"],psychup:["3L19","3T","4M","4L15","5M","5L15","6L15","6M"],psyshock:["5M","5L37","6L42","6M"],psywave:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","3L43","4M","4L29","5M","5L29","6L29","6M"],"return":["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3L43","3T","4L29","4T","5L29","5T","6L29"],splash:["3L1","4L1","5L1","6L1"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],zenheadbutt:["4L26","4T","5L26","5T","6L26"],covet:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + spinda:{learnset:{assist:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],batonpass:["3E","4E","5E","6E"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],copycat:["4L10","5L10","5D","6L10"],counter:["3T"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],disable:["3E","4E","5E","6E"],dizzypunch:["3L27","4L28","5L28","6L28"],doubleedge:["3L45","3T","4L46","5L46","6L46"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],encore:["3E","4E","5E","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L12","4L14","5L14","6L14"],fakeout:["4E","5E","5D","6E"],faketears:["5E","6E"],firepunch:["3T","4T","5T"],flail:["3L49","4L50","5L50","6L50"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hypnosis:["3L23","4L23","5L23","6L23"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5E","5T","6E"],lastresort:["4T","5T"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M","6M"],psybeam:["3L16","4L19","5L19","6L19"],psychic:["3M","4M","5M","6M"],psychocut:["4E","5E","6E"],psychup:["3L38","3T","4M","4L41","5M","5L41","6L41","6M"],raindance:["3M","4M","5M","6M"],rapidspin:["5E","6E"],recycle:["4M","5T"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4E","4T","5E","5T","6E"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sing:["3S0"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T"],smellingsalts:["3E","4E","5E","6E"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L32","4T","5L32","6L32"],sunnyday:["3M","4M","5M","6M"],superpower:["5D"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S0","6L1"],teeterdance:["3L34","4L37","5L37","6L37"],thief:["3M","4M","5M","6M"],thrash:["3L56","4L55","5L55","6L50"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],trick:["3E","4E","5E","5T","6E"],trickroom:["4M","5M","6M"],uproar:["3L5","4L5","4T","5L5","3S0","5T","6L5"],waterpulse:["3M","4M","5E","6E"],wildcharge:["5M","6M"],wish:["3E","4E","5E","6E"],workup:["5M"],zenheadbutt:["4T","5T"],covet:["5T"],hypervoice:["5T"],poweruppunch:["6M"],confide:["6M"],psychoshift:["6E"]}}, + trapinch:{learnset:{attract:["3M","4M","5M","6M"],bide:["5L17","6L17"],bite:["3L1","4L1","5L1","5D","5S0","6L1"],bodyslam:["3T"],bugbite:["4T","5E","5T","6E"],bulldoze:["5M","5L21","6L21","6M"],captivate:["4M"],crunch:["3L33","4L33","5L33","6L34"],dig:["3M","3L41","4M","4L41","5M","5L41","6L29","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4L65","4T","5E","5L65","5T","6L39","6E"],earthquake:["3M","4M","4L73","5M","5L73","6L55","6M"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],feintattack:["3L17","4L17","5L17","6L7"],feint:["4L81","5L81","6L1","6L61"],fissure:["4L89","5L89","6L1","6L73"],flail:["4E","5E","6E"],focusenergy:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],furycutter:["4E","4T","5E","6E"],gigadrain:["3M","4M","5D","5T"],gust:["3E","4E","5E","6E"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","3L57","4M","4L57","5M","5L57","6L49","6M"],mimic:["3T"],mudshot:["4E","5E","6E"],mudslap:["3T","4T","5L13","6L13"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],quickattack:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","5L25","6L25","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandattack:["3L9","4L9","5L9","6L4"],sandstorm:["3M","3L49","4M","4L49","5M","5L49","6L44","6M"],sandtomb:["3L25","4L25","5L25","6L10"],secretpower:["3M","4M"],signalbeam:["5E","5D","5T","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],superpower:["5L67","5T","6L1","6L67"],solarbeam:["3M","4M","5M","6M"],strength:["3M","4M","5M","6M"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],confide:["6M"]}}, + vibrava:{learnset:{aircutter:["4T"],attract:["3M","4M","5M","6M"],bide:["5L17","6L17"],bite:["3L1"],bodyslam:["3T"],bugbite:["4T","5T"],bulldoze:["5M","5L21","6L21","6M"],captivate:["4M"],crunch:["3L33"],defog:["4M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dracometeor:["4T","5T","6T"],dragonbreath:["3L35","4L35","5L35","6L35"],dragonpulse:["4M","5T"],earthpower:["4T","5T","5L39","6L39"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L1","3L17","4L1","4L17","5L1","5L17","6L1","6L7"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["4T"],gigadrain:["3M","4M","5T"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","3L57","4M","4L57","5M","5L57","6L49","6M"],mimic:["3T"],mudslap:["3T","4T","5L13","6L13"],naturalgift:["4M"],ominouswind:["4T"],outrage:["4T","5T"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","5L25","6L25","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],sandattack:["3L1","3L9","4L1","4L9","5L1","5L9","6L1","6L4"],sandstorm:["3M","3L49","4M","4L49","5M","5L49","6L44","6M"],sandtomb:["3L1","3L25","4L1","4L25","5L1","5L25","6L1","6L10"],screech:["3L41","4L41","5L41","6L34"],secretpower:["3M","4M"],silverwind:["4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],sonicboom:["4L1","5L1","6L1"],steelwing:["3M","4M","6M"],strength:["3M","4M","5M","6M"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["4L33","5L33","6L29"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],toxic:["3M","4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],signalbeam:["5T"],superpower:["5T"],tailwind:["4T","5T"],confide:["6M"]}}, + flygon:{learnset:{aerialace:["4M","5M","6M"],aircutter:["4T"],attract:["3M","4M","5M","6M"],bide:["5L17","6L17"],bite:["3L1"],bodyslam:["3T"],bugbite:["4T","5T"],bulldoze:["5M","5L21","6L21","6M"],captivate:["4M"],crunch:["3L33","3S0"],defog:["4M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dracometeor:["4T","5T","4S1","6T"],dragonbreath:["3L35","4L35","5L35","3S0","6L35"],dragonclaw:["3M","4M","4L45","5M","5L45","4S1","6L55","6M"],dragonpulse:["4M","5T"],dragontail:["5M","5L65","6L45","6M"],earthpower:["4T","5T","5L39","6L39"],earthquake:["3M","4M","5M","4S1","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L1","3L17","4L1","4L17","5L1","5L17","6L1","6L7"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","3L65","4M","4L57","5M","5L57","6L49","6M"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["3T","4T","5L13","6L13"],naturalgift:["4M"],ominouswind:["4T"],outrage:["4T","5T"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","5L25","6L25","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],sandattack:["3L1","3L9","4L1","4L9","5L1","5L9","6L1","6L4"],sandstorm:["3M","3L53","4M","4L49","5M","5L49","6L44","6M"],sandtomb:["3L1","3L25","4L1","4L25","5L1","5L25","3S0","6L1","6L10"],screech:["3L41","4L41","5L41","3S0","6L34"],secretpower:["3M","4M"],silverwind:["4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],sonicboom:["4L1","5L1","6L1"],steelwing:["3M","4M","6M"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],supersonic:["4L33","5L33","6L29"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5T"],thunderpunch:["4T","5T"],toxic:["3M","4M","5M","6M"],twister:["4T"],uturn:["4M","5M","4S1","6M"],signalbeam:["5T"],superpower:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + cacnea:{learnset:{absorb:["3L5","4L5","5L5","5D","3S0","6L5"],acid:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],block:["5E","5T","6E"],bodyslam:["3T"],brickbreak:["4M","5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],cottonspore:["3L41","4L49","5L49","6L49"],counter:["3E","3T","4E","5E","6E"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T","6M"],destinybond:["3L49","4L57","5L57","6L57"],disable:["5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dynamicpunch:["3E","3T","4E","5E","6E"],encore:["3S0"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],feintattack:["3L29","4L29","5L29","6L29"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],grassknot:["4M","5M","6M"],grasswhistle:["3E","4E","5E","6E"],growth:["3L9","4L9","5L9","6L9"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],ingrain:["3L25","4L25","5L25","6L25"],leechseed:["3L13","4L13","5L13","6L13"],leer:["3L1","4L1","5L1","3S0","6L1"],lowkick:["4E","4T","5E","5T","6E"],magicalleaf:["4E","5E","6E"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4E","5E","6E"],naturalgift:["4M"],needlearm:["3L37","4L45","5L45","6L45"],payback:["4M","4L41","5M","5L41","6L41","6M"],pinmissile:["3L21","4L21","5L21","6L21"],poisonjab:["4M","5M","6M"],poisonsting:["3L1","4L1","5L1","3S0","6L1"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],sandattack:["3L17","4L17","5L17","6L17"],sandstorm:["3M","3L45","4M","4L53","5M","5L53","6L53","6M"],secretpower:["3M","4M"],seedbomb:["4E","4T","5E","5T","6E"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],smellingsalts:["4E","5E","6E"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spikes:["3L33","4L33","5L33","6L33"],spite:["4T","5T"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L37","4T","5L37","6L37"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],switcheroo:["5E","6E"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],teeterdance:["3E","4E","5E","5D","6E"],thunderpunch:["3T","4T","5D","5T"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],worryseed:["4T","5E","5T","6E"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],belch:["6E"],fellstinger:["6E"]}}, + cacturne:{learnset:{absorb:["3L1","3L5","4L1","4L5","5L1","5L5","6L1","6L5"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["4M","5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],cottonspore:["3L47","4L59","5L59","6L59"],counter:["3T"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T","6M"],destinybond:["3L59","4L71","5L71","6L1","6L71"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],embargo:["4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],feintattack:["3L29","4L29","5L29","3S0","6L29"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growth:["3L1","3L9","4L1","4L9","5L1","5L9","6L1","6L9"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],ingrain:["3L25","4L25","5L25","3S0","6L25"],leechseed:["3L13","4L13","5L13","6L13"],leer:["3L1","4L1","5L1","6L1"],lowkick:["4T","5T"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],needlearm:["3L41","4L53","5L53","3S0","6L53"],payback:["4M","4L47","5M","5L47","6L47","6M"],pinmissile:["3L21","4L21","5L21","6L21"],poisonjab:["4M","5M","6M"],poisonsting:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],revenge:["3L1","4L1","5L1","6L1"],roleplay:["4T","5T"],round:["5M","6M"],sandattack:["3L17","4L17","5L17","6L17"],sandstorm:["3M","3L53","4M","4L65","5M","5L65","6L65","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],seismictoss:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spikes:["3L35","4L35","5L35","3S0","6L35"],spite:["4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L41","4T","5L41","6L41"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],synthesis:["4T","5T"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],venoshock:["5M","6M"],worryseed:["4T","5T"],block:["5T"],foulplay:["5T"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + swablu:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3E","4E","5E","6E"],aircutter:["4T"],astonish:["3L8","4L5","5L5","6L4"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],captivate:["4M"],cottonguard:["5L40","6L39"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonpulse:["4M","4L45","5L50","5T","6L42"],dragonrush:["4E","5E","6E"],dreameater:["3T","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["3S0"],featherdance:["4E","5E","5D","6E"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furyattack:["3L18","4L13","5L13","6L10"],growl:["3L1","4L1","5L1","3S0","5S1","6L1"],haze:["3E","4E","5E","6E"],healbell:["4T","5T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hypervoice:["5E","5T","6E"],icebeam:["3M","4M","5M","6M"],mimic:["3T"],mirrormove:["3L38","4L36","5L36","6L34"],mist:["3L28","4L23","5L23","6L15"],mudslap:["3T","4T"],naturalgift:["4M","4L32","5L32","6L21"],ominouswind:["4T"],outrage:["4T","5T"],peck:["3L1","4L1","5L1","5D","3S0","5S1","6L1"],perishsong:["3L48","4L50","5L55","6L48"],pluck:["4M","5M"],powerswap:["4E","5E","6E"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],pursuit:["3E","4E","5E","6E"],rage:["3E","4E","5E","6E"],raindance:["3M","4M","5M","6M"],refresh:["3L41","4L40","5L45","6L29"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roost:["4M","5E","5D","5T","6M","6E"],round:["5M","5L18","6L18","6M"],safeguard:["3M","3L21","4M","4L18","5M","5L18","6L13","6M"],secretpower:["3M","4M"],sing:["3L11","4L9","5L9","6L8"],skyattack:["3T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],steelwing:["3M","4M","5E","6M","6E"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5T"],takedown:["3L31","4L28","5L28","6L25"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uproar:["4T","5T"],moonblast:["6L50"],dazzlinggleam:["6M"],confide:["6M"]}}, + altaria:{learnset:{aerialace:["3M","4M","5M","3S1","6M"],aircutter:["4T"],astonish:["3L1","3L8","4L1","4L5","5L1","5L5","6L1","6L4"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bulldoze:["5M","6M"],captivate:["4M"],cottonguard:["5L46","6L42"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dracometeor:["4T","5T","6T"],dragonbreath:["3L35","4L35","5L35","3S0","3S1","5S2","6L35"],dragonclaw:["3M","4M","5M","6M"],dragondance:["3L40","4L39","5L39","3S0","6L34"],dragonpulse:["4M","4L54","5L62","5T","6L48"],dreameater:["3T","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["5S2"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furyattack:["3L18","4L13","5L13","6L10"],gigaimpact:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],healbell:["4T","5T"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],mimic:["3T"],mist:["3L28","4L23","5L23","6L15"],mudslap:["3T","4T"],naturalgift:["4M","4L32","5L32","5S2","6L21"],ominouswind:["4T"],outrage:["4T","5T"],peck:["3L1","4L1","5L1","6L1"],perishsong:["3L54","4L62","5L70","6L57"],pluck:["4M","4L1","5M","5L1","6L1"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],refresh:["3L45","4L46","5L54","3S0","6L29"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","5L18","6L18","6M"],safeguard:["3M","3L21","4M","4L18","5M","5L18","6L13","6M"],secretpower:["3M","4M"],sing:["3L1","3L11","4L1","4L9","5L1","5L9","6L1","6L8"],skyattack:["3L59","3T","4L70","4T","5L77","5T","6L1","6L64"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","3S1","6M"],steelwing:["3M","4M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5T"],takedown:["3L31","4L28","5L28","3S0","3S1","5S2","6L25"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],uproar:["4T","5T"],hypervoice:["5T"],wonderroom:["5T"],moonblast:["6L60"],dazzlinggleam:["6M"],confide:["6M"]}}, + zangoose:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","3S2","6M"],captivate:["4M"],closecombat:["4L53","5L53","6L47"],counter:["3E","3T","4E","5E","3S2","6E"],crushclaw:["3L31","4L31","5L31","3S2","6L22"],curse:["3E","4E","5E","6E"],defensecurl:["3T"],detect:["3L46","4L40","5L40","6L33"],dig:["3M","4M","5M","6M"],disable:["4E","5E","6E"],doubleedge:["3T"],doublehit:["4E","5E","5D","6E"],doublekick:["3E","4E","5E","6E"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],embargo:["4M","4L27","5M","5L27","6L19","6M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["3L55","4M","4L44","5M","5L44","6L29","6M"],feint:["5E","6E"],finalgambit:["5E","6E"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flail:["3E","4E","5E","6E"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],furycutter:["3L13","3T","4L14","4T","5L14","3S0","6L8"],furyswipes:["4E","5E","6E"],gigadrain:["3M","4M","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5E","5T","6E"],knockoff:["4T","5T"],lastresort:["4T","5T"],leer:["3L4","4L1","5L1","3S0","3S1","6L1"],lowkick:["4T","5T","5D"],megakick:["3T"],megapunch:["3T"],metalclaw:["4E","5E","6E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4E","5E","6E"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],pursuit:["3L25","4L22","5L22","6L12"],quickattack:["3L7","4L5","5L5","3S0","3S1","5D","6L5"],raindance:["3M","4M","5M","6M"],razorwind:["3E","4E","5E","6E"],refresh:["3S2"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],revenge:["5L26","6L26"],roar:["3E","3M","4E","4M","5M","6M"],rockclimb:["4M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],scratch:["3L1","4L1","5L1","3S1","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],slash:["3L19","4L18","5L18","6L15"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3L10","3T","4M","4L9","5M","5L9","3S0","3S1","6L43","6M"],taunt:["3M","3L37","4M","4L35","5M","5L35","6L40","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],workup:["5M"],xscissor:["4M","4L48","5M","5L48","6L36","6M"],poweruppunch:["6M"],confide:["6M"]}}, + seviper:{learnset:{aquatail:["4T","5T","5D"],assurance:["4E","5E","6E"],attract:["3M","4M","5M","6M"],bite:["3L10","4L10","5L10","3S0","3S2","5D","6L5"],bodyslam:["3E","3T","4E","5E","5D","6E"],bulldoze:["5M","6M"],captivate:["4M"],coil:["5L64","6L48"],crunch:["3L28","4L28","5L28","3S1","6L45"],darkpulse:["4M","5T","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragontail:["5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],finalgambit:["5E","6E"],flamethrower:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gastroacid:["5L34","5T","6L34"],gigadrain:["3M","4M","5T"],glare:["3L25","4L25","5L25","3S1","6L23"],haze:["3L43","4L43","5L43","6L38"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],irontail:["3M","4M","5E","5T","6E"],knockoff:["4T","5T"],lick:["3L7","4L7","5L7","3S0","3S2","6L1"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4E","4L46","5E","5L46","6L31","6E"],payback:["4M","5M","6M"],poisonfang:["3L34","4L34","5L34","6L27"],poisonjab:["4M","4L52","5M","5L52","6L42","6M"],poisontail:["3L16","4L16","5L16","3S0","3S1","6L12"],protect:["3M","4M","5M","6M"],punishment:["5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],round:["5M","6M"],scaryface:["4E","5E","6E"],screech:["3L19","4L19","5L19","3S1","6L16"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spitup:["3E","4E","5E","6E"],stockpile:["3E","4E","5E","6E"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3L37","3T","4M","4L37","5M","5L37","6L9","6M"],swallow:["3E","4E","5E","6E"],swift:["3T","4T"],switcheroo:["4E","5E","6E"],taunt:["3M","4M","5M","6M"],thief:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],venoshock:["5M","5L55","6L20","6M"],wrap:["3L1","4L1","5L1","3S0","3S2","6L1"],wringout:["4L55","5E","5L61","6L50","6E"],xscissor:["4M","5M","6M"],bind:["5T"],venomdrench:["6L28"],belch:["6L46"],infestation:["6M"],confide:["6M"]}}, + lunatone:{learnset:{acrobatics:["5M","6M"],ancientpower:["4T"],batonpass:["3S1"],blizzard:["4M","5M","6M"],bodyslam:["3T"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],chargebeam:["4M","5M","6M"],confusion:["3L7","4L1","5L1","5D","3S0","6L1"],cosmicpower:["3L31","4L34","5L34","6L29"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],earthpower:["4T","5T","5D"],earthquake:["3M","4M","5M","6M"],embargo:["4M","4L31","5M","5L31","6L21","6M"],endure:["3T","4M"],explosion:["3L49","3T","4M","4L56","5M","5L56","6L49","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["3L43","4L53","5L53","6L45"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],gyroball:["4M","5M","6M"],harden:["3L1","4L1","5L1","3S0","6L1"],healblock:["4L42","5L42","6L37"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],hypnosis:["3L19","4L12","5L12","6L9"],icebeam:["3M","4M","5M","6M"],ironhead:["4T","5T"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],magicroom:["5L64","5T","6L1","6L53"],mimic:["3T"],moonlight:["5D"],naturalgift:["4M"],painsplit:["4T","5T"],protect:["3M","4M","5M","6M"],psychic:["3M","3L37","4M","4L45","5M","5L45","3S1","6L33","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],psywave:["3L25","4L23","5L23","6L17"],raindance:["3M","4M","5M","3S1","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","4L20","5M","5L20","6L13","6M"],rockslide:["3T","4M","5M","5L25","6L25","6M"],rockthrow:["3L13","4L9","5L9","6L1","6L5"],rocktomb:["3M","4M","5M","3S1","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","5L41","6L41","6M"],substitute:["3T","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S0","6L1"],telekinesis:["5M"],toxic:["3M","4M","5M","6M"],trickroom:["4M","5M","6M"],zenheadbutt:["4T","5T"],icywind:["5T"],moonblast:["6L50"],confide:["6M"]}}, + solrock:{learnset:{acrobatics:["5M","6M"],ancientpower:["4T"],batonpass:["3S1"],bodyslam:["3T"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],chargebeam:["4M","5M","6M"],confusion:["3L7","4L1","5L1","5D","3S0","6L1"],cosmicpower:["3L31","4L34","5L34","3S1","6L29"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],embargo:["4M","4L31","5M","5L31","6L21","6M"],endure:["3T","4M"],explosion:["3L49","3T","4M","4L56","5M","5L56","6L49","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firespin:["3L19","4L12","5L12","6L9"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],gyroball:["4M","5M","6M"],harden:["3L1","4L1","5L1","3S0","6L1"],healblock:["4L42","5L42","6L37"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],irondefense:["4T","5T"],ironhead:["4T","5T"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],mimic:["3T"],morningsun:["5D"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],painsplit:["4T","5T"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","5L33","3S1","6L33","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],psywave:["3L25","4L23","5L23","6L17"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","4L20","5M","5L20","6L13","6M"],rockslide:["3L37","3T","4M","4L45","5M","5L45","6L25","6M"],rockthrow:["3L13","4L9","5L9","6L1","6L5"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","3L43","4M","4L53","5M","5L53","6L45","6M"],stealthrock:["4M","5T"],stoneedge:["4M","5M","5L41","6L41","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","3S1","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","3S0","6L1"],telekinesis:["5M"],toxic:["3M","4M","5M","6M"],trickroom:["4M","5M","6M"],willowisp:["4M","5M","6M"],wonderroom:["5L64","5T","6L1","6L53"],zenheadbutt:["4T","5T","5D"],heatwave:["5T"],confide:["6M"]}}, + barboach:{learnset:{amnesia:["3L21","4L18","5L18","6L18"],aquatail:["4L35","4T","5L35","5T","6L35"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bounce:["4T","5T"],bulldoze:["5M","6M"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragondance:["4E","5E","6E"],earthpower:["4T","5E","5T","6E"],earthquake:["3M","3L31","4M","4L39","5M","5L39","6L39","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fissure:["3L41","4L47","5L47","6L47"],flail:["4E","5E","6E"],frustration:["3M","4M","5M","6M"],futuresight:["3L36","4L43","5L43","6L43"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["4E","5E","6E"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],magnitude:["3L16","4L26","5L26","6L26"],mimic:["3T"],mudbomb:["4L14","5L14","6L14"],muddywater:["5E","6E"],mudshot:["5E","6E"],mudslap:["3L1","3T","4L1","4T","5L1","5D","6L1"],mudsport:["3L6","4L6","5L6","6L6"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","3L26","4M","4L31","5M","5L31","6L31","6M"],"return":["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5D","5T","6M"],snore:["3L26","3T","4L31","4T","5L31","5T","6L31"],spark:["3E","4E","5E","5D","6E"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],takedown:["4E","5E","6E"],thrash:["3E","4E","5E","6E"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L11","4L10","5L10","6L10"],waterpulse:["3M","4M","4L22","5L22","6L22"],watersport:["3L6","4L6","5L6","6L6"],whirlpool:["3E","4E","4M","5E","6E"],confide:["6M"]}}, + whiscash:{learnset:{amnesia:["3L21","4L18","5L18","6L18"],aquatail:["4L39","4T","5L39","4S0","5T","6L39"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bounce:["4T","5T"],bulldoze:["5M","6M"],captivate:["4M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],earthquake:["3M","3L36","4M","4L45","5M","5L45","4S0","6L45","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fissure:["3L56","4L57","5L57","6L57"],frustration:["3M","4M","5M","6M"],futuresight:["3L46","4L51","5L51","6L51"],gigaimpact:["4M","5M","4S0","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],magnitude:["3L16","4L26","5L26","6L26"],mimic:["3T"],mudbomb:["4L14","5L14","6L14"],mudslap:["3L1","3T","4L1","4T","5L1","6L1"],mudsport:["3L1","3L6","4L1","4L6","5L1","5L6","6L1","6L6"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","3L26","4M","4L33","5M","5L33","6L33","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3L26","3T","4L33","4T","5L33","5T","6L33"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tickle:["3L1","4L1","5L1","6L1"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L11","4L10","5L10","6L10"],waterpulse:["3M","4M","4L22","5L22","6L22"],watersport:["3L1","3L6","4L1","4L6","5L1","5L6","6L1","6L6"],whirlpool:["4M"],zenheadbutt:["4L1","4T","5L1","4S0","5T","6L1"],confide:["6M"]}}, + corphish:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["3E","4E","4T","5E","6E"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3E","3T","4E","5E","6E"],brickbreak:["3M","4M","5M","6M"],bubble:["3L1","4L1","5L1","3S0","6L1"],bubblebeam:["3L20","3L19","4L20","5L20","6L20"],captivate:["4M"],chipaway:["5E","6E"],counter:["3T"],crabhammer:["3L35","3L34","4L38","5L38","6L38"],crunch:["3L43","4L47","5L47","6L47"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T","5E","6E"],doubleteam:["3M","4M","5M","6M"],dragondance:["4E","5E","6E"],endeavor:["3E","4E","4T","5E","5D","5T","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],guillotine:["3L44","3L46","4L53","5L53","6L53"],hail:["3M","4M","5M","6M"],harden:["3L7","4L7","5L7","5D","6L7"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],knockoff:["3L26","3L25","4E","4L26","4T","5E","5L26","5T","6L26","6E"],leer:["3L13","4L13","5L13","6L13"],metalclaw:["4E","5E","5D","6E"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3E","4E","5E","6E"],naturalgift:["4M"],nightslash:["4L35","5L35","6L35"],payback:["4M","5M","6M"],protect:["3M","3L23","3L22","4M","4L23","5M","5L23","6L23","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superpower:["4E","4T","5E","5T","6E"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3L38","3T","3L37","4M","4L44","5M","5L44","6L44","6M"],taunt:["3M","3L32","3L31","4M","4L32","5M","5L32","6L32","6M"],toxic:["3M","4M","5M","6M"],trumpcard:["5E","6E"],vicegrip:["3L10","4L10","5L10","6L10"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],watersport:["3S0"],whirlpool:["4M"],xscissor:["4M","5M","6M"],confide:["6M"],aquajet:["6E"],switcheroo:["6E"]}}, + crawdaunt:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["4T"],attract:["3M","4M","5M","6M"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bubble:["3L1","4L1","5L1","6L1"],bubblebeam:["3L20","3L19","4L20","5L20","6L20"],captivate:["4M"],counter:["3T"],crabhammer:["3L39","3L38","4L44","5L44","3S0","3S1","6L44"],crunch:["3L51","4L57","5L57","6L57"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T","6M"],dig:["3M","4M","5M","6M"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endeavor:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],guillotine:["3L52","3L56","4L65","5L65","3S0","6L1","6L65"],hail:["3M","4M","5M","6M"],harden:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],knockoff:["3L26","3L25","4L26","4T","5L26","3S1","5T","6L26"],leer:["3L1","3L13","4L1","4L13","5L1","5L13","6L1","6L13"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightslash:["4L39","5L39","6L39"],payback:["4M","5M","6M"],protect:["3M","3L23","3L22","4M","4L23","5M","5L23","6L23","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5M","6M"],snarl:["5M","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superpower:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4L30","4T","5L30","6L30"],swordsdance:["3L44","3T","3L43","4M","4L52","5M","5L52","3S0","3S1","6L52","6M"],taunt:["3M","3L34","3L33","4M","4L34","5M","5L34","3S0","3S1","6L34","6M"],toxic:["3M","4M","5M","6M"],vicegrip:["3L1","3L10","4L1","4L10","5L1","5L10","6L1","6L10"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],xscissor:["4M","5M","6M"],naturepower:["6M"],confide:["6M"]}}, + baltoy:{learnset:{allyswitch:["5M"],ancientpower:["3L25","4L25","4T","5L26","6L0"],bulldoze:["5M","6M"],calmmind:["4M","5M","6M"],chargebeam:["4M","5M","6M"],confusion:["3L1","4L1","5L1","6L0"],cosmicpower:["3L37","4L45","5L37","6L0"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],earthpower:["4L53","4T","5L51","5T","6L0"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["3L45","3T","4M","4L71","5M","5L60","6L0","6M"],extrasensory:["5L43","6L0"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T","5D"],guardsplit:["5L48","6L0"],gyroball:["4M","5M","6M"],harden:["3L3","4L3","5L4","6L0"],headbutt:["4T"],healblock:["4L61","5L54","6L0"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3L7","3T","4L7","4T","5L11","3S0","6L0"],naturalgift:["4M"],powersplit:["5L48","6L0"],powertrick:["4L31","5L31","6L0"],protect:["3M","4M","5M","6M"],psybeam:["3L11","4L11","5L15","3S0","6L0"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],rapidspin:["3L5","4L5","5L7","5D","6L0"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocktomb:["3M","3L15","4M","4L15","5M","5L18","3S0","6L0","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],sandstorm:["3M","3L31","4M","4L37","5M","5L34","6L0","6M"],secretpower:["3M","4M"],selfdestruct:["3L19","3T","4L19","5L21","6L0"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stealthrock:["4M","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],telekinesis:["5M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],zenheadbutt:["4T","5T","5D"],drillrun:["5T"],wonderroom:["5T"]}}, + claydol:{learnset:{allyswitch:["5M"],ancientpower:["3L25","4L25","4T","5L26","6L0"],bulldoze:["5M","6M"],calmmind:["4M","5M","6M"],chargebeam:["4M","5M","6M"],confusion:["3L1","4L1","5L1","6L0"],cosmicpower:["3L42","4L51","5L47","6L0"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],earthpower:["4L62","4T","5L59","5T","6L0"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["3L55","3T","4M","4L86","5M","5L72","6L0","6M"],extrasensory:["5L39","6L0"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],guardsplit:["5L54","6L0"],gyroball:["4M","5M","6M"],harden:["3L1","3L3","4L1","4L3","5L1","5L4","6L0","6L0"],headbutt:["4T"],healblock:["4L73","5L64","6L0"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","3L36","4M","4L36","5M","5L36","6L0","6M"],icebeam:["3M","4M","5M","6M"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],mimic:["3T"],mudslap:["3L7","3T","4L7","4T","5L11","6L0"],naturalgift:["4M"],powersplit:["5L54","6L0"],powertrick:["4L31","5L31","6L0"],protect:["3M","4M","5M","6M"],psybeam:["3L11","4L11","5L15","6L0"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],rapidspin:["3L1","3L5","4L1","4L5","5L1","5L7","6L0","6L0"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","3L15","4M","4L15","5M","5L18","6L0","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],sandstorm:["3M","3L31","4M","4L40","5M","5L34","6L0","6M"],secretpower:["3M","4M"],selfdestruct:["3L19","3T","4L19","5L21","6L0"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],telekinesis:["5M"],teleport:["3L1","4L1","5L1","6L0"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],zenheadbutt:["4T","5T"],drillrun:["5T"],wonderroom:["5T"]}}, + lileep:{learnset:{acid:["3L15","4L8","5L8","5D","5S0","6L8"],amnesia:["3L36","4L29","5L29","6L29"],ancientpower:["3L43","4L43","5L43","6L43"],astonish:["3L1","4L1","5L1","6L1"],attract:["3M","4M","5M","6M"],barrier:["3E","4E","5E","6E"],bodyslam:["3T"],bulletseed:["3M","4M"],captivate:["4M"],confuseray:["3L29","4L22","5L22","6L22"],constrict:["3L8","4L1","5L1","5S0","6L1"],curse:["4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],endure:["3T","4M","5E","6E"],energyball:["4M","4L50","5M","5L50","6L50","6M"],facade:["3M","4M","5M","6M"],flash:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gastroacid:["4L36","4T","5L36","5T","6L36"],gigadrain:["3M","4M","5D","5T"],grassknot:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],ingrain:["3L22","4L15","5L15","6L15"],megadrain:["5E","6E"],mimic:["3T"],mirrorcoat:["3E","4E","5E","5D","6E"],mudslap:["3T","4T"],naturalgift:["4M"],painsplit:["4T","5T"],protect:["3M","4M","5M","6M"],psychup:["3T"],recover:["3E","4E","5E","5S0","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3E","3T","4E","4M","5M","5S0","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spitup:["3L50","4L57","5L57","6L57"],stealthrock:["4M","5E","5T","6E"],stockpile:["3L50","4L57","5L57","6L57"],stringshot:["4T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["3L50","4L57","5L57","6L57"],swordsdance:["4M","5M","6M"],synthesis:["4T","5T"],tickle:["4E","5E","6E"],toxic:["3M","4M","5M","6M"],worryseed:["4T","5T"],wringout:["4E","4L64","5E","5L64","6L64","6E"],bind:["5T"],infestation:["6M"],confide:["6M"]}}, + cradily:{learnset:{acid:["3L1","3L15","4L1","4L8","5L1","5L8","6L1","6L8"],amnesia:["3L36","4L29","5L29","6L29"],ancientpower:["3L48","4L36","4T","5L36","6L36"],astonish:["3L1","4L1","5L1","6L1"],attract:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],bulldoze:["5M","6M"],bulletseed:["3M","4M"],captivate:["4M"],confuseray:["3L29","4L22","5L22","6L22"],constrict:["3L1","3L8","4L1","5L1","6L1"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","4L56","5M","5L56","6L56","6M"],facade:["3M","4M","5M","6M"],flash:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gastroacid:["4L46","4T","5L46","5T","6L46"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],ingrain:["3L1","3L22","4L1","4L15","5L1","5L15","6L1","6L15"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],painsplit:["4T","5T"],protect:["3M","4M","5M","6M"],psychup:["3T"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seedbomb:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],sludgewave:["5M","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spitup:["3L60","4L66","5L66","6L1","6L66"],stealthrock:["4M","5T"],stockpile:["3L60","4L66","5L66","6L1","6L66"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],stringshot:["4T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["3L60","4L66","5L66","6L1","6L66"],swordsdance:["4M","5M","6M"],synthesis:["4T","5T"],toxic:["3M","4M","5M","6M"],worryseed:["4T","5T"],wringout:["4L76","5L76","6L1","6L76"],bind:["5T"],infestation:["6M"],confide:["6M"]}}, + anorith:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["3L37","4L31","4T","5L31","6L31"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],crosspoison:["4E","5E","5D","5S0","6E"],crushclaw:["4L55","5L55","6L55"],curse:["4E","5E","6E"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3L43","3T","4L37","4T","5L37","6L37"],harden:["3L7","4L1","5L1","5S0","6L1"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],irondefense:["4T","5E","5T","6E"],knockoff:["3E","4E","4T","5E","5T","6E"],metalclaw:["3L25","4L19","5L19","6L19"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3L13","4L7","5L7","5S0","6L7"],naturalgift:["4M"],protect:["3M","3L31","4M","4L25","5M","5L25","6L25","6M"],rapidspin:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockblast:["3L55","4L49","5L49","6L49"],rockpolish:["4M","5M","6M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandattack:["4E","5E","6E"],sandstorm:["3M","4M","5M","6M"],scratch:["3L1","4L1","5L1","5D","6L1"],screech:["4E","5E","6E"],secretpower:["3M","4M"],slash:["3L49","4L43","5L43","6L43"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5D","5T"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swordsdance:["3E","3T","4E","4M","5M","6M"],toxic:["3M","4M","5M","6M"],watergun:["3L19","4L13","5L13","5S0","6L13"],waterpulse:["3M","4M","5E","6E"],xscissor:["4M","4L61","5M","5L61","6L61","6M"],bugbite:["5T"],confide:["6M"],aquajet:["6E"]}}, + armaldo:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["3L37","4L31","4T","5L31","6L31"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],crushclaw:["4L67","5L67","6L1","6L67"],cut:["3M","4M","5M","6M"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],falseswipe:["4M","5M","6M"],flashcannon:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3L46","3T","4L37","4T","5L37","6L37"],gigaimpact:["4M","5M","6M"],harden:["3L1","3L7","4L1","5L1","6L1"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],irondefense:["4T","5T"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lowkick:["4T","5T"],metalclaw:["3L25","4L19","5L19","6L19"],mimic:["3T"],mudslap:["3T","4T"],mudsport:["3L1","3L13","4L1","4L7","5L1","5L7","6L1","6L7"],naturalgift:["4M"],protect:["3M","3L31","4M","4L25","5M","5L25","6L25","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockblast:["3L64","4L55","5L55","6L55"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scratch:["3L1","4L1","5L1","6L1"],secretpower:["3M","4M"],seismictoss:["3T"],slash:["3L55","4L46","5L46","6L46"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5T"],swagger:["3T","4M","5M","6M"],swordsdance:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],watergun:["3L1","3L19","4L1","4L13","5L1","5L13","6L1","6L13"],waterpulse:["3M","4M"],xscissor:["4M","4L73","5M","5L73","6L73","6M"],bugbite:["5T"],confide:["6M"]}}, + feebas:{learnset:{attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],brine:["5E","6E"],captivate:["4M","5E","5D","6E"],confuseray:["3E","4E","5E","6E"],dive:["3M","4T","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonbreath:["3E","4E","5E","6E"],dragonpulse:["5E","5T","6E"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flail:["3L30","4L30","5L30","6L0"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],haze:["4E","5E","6E"],hiddenpower:["3M","4M","5M","6M"],hypnosis:["3E","4E","5E","6E"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["5E","5T","6E"],lightscreen:["3E","4E","5M","6M"],mimic:["3T"],mirrorcoat:["3E","4E","5E","5D","6E"],mist:["4E","5E","6E"],mudsport:["3E","4E","5E","6E"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],splash:["3L1","4L1","5L1","5D","6L0"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L15","4L15","5L15","6L0"],tickle:["4E","5E","6E"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"]}}, + milotic:{learnset:{aquaring:["4L49","5L49","6L0"],aquatail:["4L29","4T","5L29","5T","6L0"],attract:["3M","3L45","4M","4L41","5M","5L41","6L0","6M"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bulldoze:["5M","6M"],captivate:["4M","4L25","5L25","6L0"],dive:["3M","4T","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonpulse:["4M","5T"],dragontail:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L40","4L37","5L37","4S1","4S2","5S3","6L0"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","4S1","5S3","5S4","6M"],icywind:["3T","4T","4S2","5T"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],lightscreen:["5M","6M"],magiccoat:["4T","5T"],mimic:["3T"],mirrorcoat:["5S3"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","3L35","4M","4L33","5M","5L33","3S0","4S1","4S2","6L0","6M"],recover:["3L30","4L21","5L21","3S0","4S1","4S2","5S3","5S4","6L0"],refresh:["3L15","4L9","5L9","6L0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","3L50","4M","4L45","5M","5L45","6L0","6M"],scald:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","5S4","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],toxic:["3M","4M","5M","5S4","6M"],twister:["3L25","4L17","4T","5L17","3S0","6L0"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","4L1","5L1","6L0"],waterpulse:["3M","3L20","4M","4L13","5L13","3S0","6L0"],watersport:["3L10","4L5","5L5","6L0"],whirlpool:["4M"],wrap:["3L5","4L1","5L1","6L0"],bind:["5T"]}}, + castform:{learnset:{amnesia:["4E","5E","6E"],attract:["3M","4M","5M","6M"],avalanche:["4M"],blizzard:["3M","4M","5M","5L50","6L0","6M"],bodyslam:["3T"],captivate:["4M"],clearsmog:["5E","6E"],defensecurl:["3T"],disable:["4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],ember:["3L10","4L10","5L10","5D","6L0"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","5L50","6L0","6M"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["3E","4E","5E","6E"],hail:["3M","3L20","4M","4L20","5M","5L30","6L0","6M"],headbutt:["5L20","6L0"],hex:["5E","6E"],hiddenpower:["3M","4M","5M","6M"],hydropump:["5L50","6L0"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],lastresort:["4T","5T"],luckychant:["4E","5E","6E"],mimic:["3T"],naturalgift:["4M"],ominouswind:["4E","4T","5E","5D","6E"],powdersnow:["3L10","4L10","5L10","6L0"],protect:["3M","4M","5M","6M"],psychup:["3E","3T","4E","4M","5M","6M"],raindance:["3M","3L20","4M","4L20","5M","5L30","6L0","6M"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","3L20","4M","4L20","5M","5L30","6L0","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L0"],tailwind:["4T","5T"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],watergun:["3L10","4L10","5L10","6L0"],waterpulse:["3M","4M","5D"],weatherball:["3L30","4L30","5L40","6L0"],workup:["5M"]}}, + kecleon:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["3L49","4L64","4T","4L55","5L55","6L55"],aquatail:["4T","5T"],astonish:["3L1","4L1","5L1","6L1"],attract:["3M","4M","5M","6M"],bind:["3L4","4L4","5L4","5T","6L4"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],counter:["3T"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],disable:["3E","4E","5E","6E"],dizzypunch:["4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L7","4L7","5L7","5D","6L7"],fakeout:["4E","5E","6E"],feint:["4L14","5L14","6L14"],fireblast:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],foulplay:["5E","5T","6E"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],furyswipes:["3L12","4L10","5L10","6L10"],grassknot:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],lick:["3L1","4L1","5L1","6L1"],lowkick:["4T","5T"],magiccoat:["3E","4E","4T","5E","5T","6E"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],nastyplot:["4E","5E","6E"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psybeam:["3L17","4L15","4L18","5L18","6L18"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],recover:["4E","5E","6E"],recycle:["4M","5T"],reflecttype:["5D"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],roleplay:["4T","5T"],rollout:["3T","4T"],round:["5M","6M"],scratch:["3L1","4L1","5L1","6L1"],screech:["3L24","4L32","5L32","6L32"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","4L55","4L49","5M","5L49","6L49","6M"],shadowsneak:["4L20","4L22","5L22","6L22"],shockwave:["3M","4M"],skillswap:["3M","4M","5E","5T","5D","6E"],slash:["3L31","4L25","4L27","5L27","6L27"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5E","5T","6E"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stealthrock:["4M","5T"],strength:["3M","4M","5M","6M"],substitute:["3L40","3T","4M","4L39","4L37","5M","5L37","6L37","6M"],suckerpunch:["4L46","4T","4L43","5L43","6L43"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],synchronoise:["5L58","6L58"],tailwhip:["3L1","4L1","5L1","6L1"],thief:["3M","3L1","4M","4L1","5M","5L1","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["3E","4E","4T","5E","5T","6E"],trickroom:["4M","5M","6M"],waterpulse:["3M","4M"],workup:["5M"],afteryou:["5T"],wonderroom:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + shuppet:{learnset:{astonish:["3E","4E","5E","6E"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],confuseray:["4E","5E","6E"],curse:["3L20","4L13","5L13","6L19"],darkpulse:["4M","5T","6M"],destinybond:["3E","4E","5E","5D","6E"],disable:["3E","4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],embargo:["4M","4L38","5M","5L43","6L38","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L37","4L28","5L28","3S0","6L22"],flash:["3M","4M","5M","6M"],foresight:["3E","4E","5E","6E"],frustration:["3M","4M","5M","6M"],grudge:["3L56","4L46","5L50","6L46"],gunkshot:["5E","6E"],headbutt:["4T"],hex:["5L31","6L26"],hiddenpower:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],imprison:["3E","4E","5E","6E"],knockoff:["3L1","4L1","4T","5L1","5T","6L1"],magiccoat:["4T","5T"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L13","4L8","5L8","5D","6L7"],ominouswind:["4T","5E","6E"],painsplit:["4T","5D","5T"],payback:["4E","4M","5M","6M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],pursuit:["4E","5E","6E"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],screech:["3L8","4L5","5L5","6L4"],secretpower:["3M","4M"],shadowball:["3M","3L44","4M","4L31","5M","5L35","3S0","6L30","6M"],shadowsneak:["4E","4L20","5E","5L20","6L16","6E"],shockwave:["3M","4M"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","3L49","4M","4L43","5L46","5T","6L42"],snore:["3T"],spite:["3L25","4L16","4T","5L16","3S0","5T","6L10"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L35","4T","5L38","6L34"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4L50","4T","5L55","5T","6L50"],trickroom:["4M","5M","6M"],willowisp:["3L32","4M","4L23","5M","5L23","3S0","6L13","6M"],foulplay:["5T"],magicroom:["5T"],dazzlinggleam:["6M"],confide:["6M"],phantomforce:["6E"]}}, + banette:{learnset:{attract:["3M","4M","5M","6M"],bodyslam:["3T"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],cottonguard:["5S1"],curse:["3L1","3L20","4L1","4L13","5L1","5L13","3S0","6L1","6L19"],darkpulse:["4M","5T","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],embargo:["4M","4L42","5M","5L51","6L40","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3L39","4L28","5L28","3S0","5S1","6L22"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grudge:["3L64","4L58","5L66","6L52"],headbutt:["4T"],helpinghand:["3S0"],hex:["5L31","5S1","6L26"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],knockoff:["3L1","4L1","4T","5L1","5T","6L1"],magiccoat:["4T","5T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L1","3L13","4L1","4L5","5L1","5L8","6L1","6L7"],ominouswind:["4T"],painsplit:["4T","5T"],payback:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],screech:["3L1","3L8","4L1","4L8","5L1","5L5","6L1","6L4"],secretpower:["3M","4M"],shadowball:["3M","3L48","4M","4L31","5M","5L35","3S0","5S1","6L30","6M"],shadowclaw:["4M","5M","6M"],shadowsneak:["4L20","5L20","6L16"],shockwave:["3M","4M"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","3L55","4M","4L51","5L58","5T","6L46"],snore:["3T"],spite:["3L25","4L16","4T","5L16","5T","6L10"],substitute:["3T","4M","5M","6M"],suckerpunch:["4L35","4T","5L42","6L34"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4L66","4T","5L75","5T","6L58"],trickroom:["4M","5M","6M"],willowisp:["3L32","4M","4L23","5M","5L23","6L13","6M"],foulplay:["5T"],magicroom:["5T"],infestation:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + duskull:{learnset:{astonish:["3L16","4L14","5L14","3S1","6L14"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],confuseray:["3L23","4L17","5L17","3S1","6L17"],curse:["3L34","4L30","5L30","3S0","6L30"],darkpulse:["4M","5E","5T","6M","6E"],destinybond:["3E","4E","5E","6E"],disable:["3L5","4L6","5L6","5D","6L6"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],embargo:["4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","6E"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],foresight:["3L12","4L9","5L9","6L9"],frustration:["3M","4M","5M","6M"],futuresight:["3L49","4L46","5L49","6L49"],gravity:["4T","5T"],grudge:["3E","4E","5E","6E"],headbutt:["4T"],hex:["5L38","6L38"],helpinghand:["3S1"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],imprison:["3E","4E","5E","6E"],leer:["3L1","4L1","5L1","6L1"],meanlook:["3L45","4L38","5L41","3S0","6L41"],memento:["3E","4E","5E","6E"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L1","4L1","5L1","6L1"],ominouswind:["4E","4T","5E","6E"],painsplit:["3E","4E","4T","5E","5D","5T","6E"],payback:["4M","4L41","5M","5L46","6L46","6M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],pursuit:["3L27","4L25","5L25","3S0","6L25"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","3S1","6M"],shadowsneak:["4L22","5L22","6L22"],skillswap:["3M","4M","5E","5T","6E"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["5D","5T"],trickroom:["4M","5M","6M"],willowisp:["3L38","4M","4L33","5M","5L33","3S0","6L33","6M"],wonderroom:["5T"],infestation:["6M"],confide:["6M"]}}, + dusclops:{learnset:{astonish:["3L16","4L14","5L14","6L14"],attract:["3M","4M","5M","6M"],bind:["3L1","4L1","5L1","5T","6L1"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],confuseray:["3L23","4L17","5L17","6L17"],counter:["3T"],curse:["3L34","4L30","5L30","6L30"],darkpulse:["4M","5T","6M"],disable:["3L1","3L5","4L1","4L6","5L1","5L6","6L1","6L6"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],embargo:["4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4L1","4T","5L1","5T","6L1"],flash:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["3M","4M"],foresight:["3L12","4L9","5L9","6L9"],frustration:["3M","4M","5M","6M"],futuresight:["3L58","4L61","5L61","6L61"],gigaimpact:["4M","5M","6M"],gravity:["4L1","4T","5L1","5T","6L1"],headbutt:["4T"],hex:["5L42","6L42"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4L1","4T","5L1","5T","6L1"],icywind:["3T","4T","5T"],leer:["3L1","4L1","5L1","6L1"],meanlook:["3L51","4L43","5L49","6L49"],megakick:["3T"],megapunch:["3T"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L1","4L1","5L1","6L1"],ominouswind:["4T"],painsplit:["4T","5T"],payback:["4M","4L51","5M","5L58","6L58","6M"],protect:["3M","4M","5M","6M"],psychic:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],pursuit:["3L27","4L25","5L25","6L25"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shadowpunch:["3L37","4L37","5L37","6L37"],shadowsneak:["4L22","5L22","6L22"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thief:["3M","4M","5M","6M"],thunderpunch:["3T","4L1","4T","5L1","5T","6L1"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],willowisp:["3L41","4M","4L33","5M","5L33","6L33","6M"],wonderroom:["5T"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + dusknoir:{learnset:{astonish:["4L14","5L14","6L14"],attract:["4M","5M","6M"],bind:["4L1","5L1","5T","6L1"],blizzard:["4M","5M","6M"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],calmmind:["4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],confuseray:["4L17","5L17","6L17"],curse:["4L30","5L30","6L30"],darkpulse:["4M","5T","6M"],disable:["4L1","4L6","5L1","5L6","6L1","6L6"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],earthquake:["4M","5M","6M"],embargo:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],firepunch:["4L1","4T","5L1","5T","6L1"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],foresight:["4L9","5L9","6L9"],frustration:["4M","5M","6M"],futuresight:["4L61","5L61","6L61"],gigaimpact:["4M","5M","6M"],gravity:["4L1","4T","5L1","5T","6L1"],headbutt:["4T"],hex:["5L42","6L42"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],icepunch:["4L1","4T","5L1","5T","6L1"],icywind:["4T","5T"],leer:["4L1","5L1","6L1"],meanlook:["4L43","5L49","6L49"],mudslap:["4T"],naturalgift:["4M"],nightshade:["4L1","5L1","6L1"],ominouswind:["4T"],painsplit:["4T","5T"],payback:["4M","4L51","5M","5L58","6L58","6M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],pursuit:["4L25","5L25","6L25"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shadowpunch:["4L37","5L37","6L37"],shadowsneak:["4L22","5L22","6L22"],skillswap:["4M","5T"],sleeptalk:["4M","5T","6M"],snatch:["4M","5T"],snore:["4T","5T"],spite:["4T","5T"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],suckerpunch:["4T"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],taunt:["4M","5M","6M"],telekinesis:["5M"],thief:["4M","5M","6M"],thunderpunch:["4L1","4T","5L1","5T","6L1"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],willowisp:["4M","4L33","5M","5L33","6L33","6M"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + tropius:{learnset:{aerialace:["3M","4M","5M","6M"],aircutter:["4T"],airslash:["4L47","5L51","4S0","6L50"],attract:["3M","4M","5M","6M"],bestow:["5L57","6L1","6L57"],bodyslam:["3L37","3T","4L37","5L37","6L37"],bulldoze:["5M","6M"],bulletseed:["3M","4M","5E","6E"],captivate:["4M"],curse:["4E","5E","6E"],cut:["3M","4M","5M","6M"],defog:["4M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragondance:["4E","5E","6E"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigadrain:["3M","4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growth:["3L7","4L7","5L7","6L7"],gust:["3L1","4L1","5L1","5D","6L1"],headbutt:["3E","4E","4T","5E","6E"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],leafblade:["4E","5E","6E"],leafstorm:["4E","4L61","5E","5L71","6L1","6L71","6E"],leaftornado:["5L47","6L47"],leechseed:["3E","4E","5E","5D","6E"],leer:["3L1","4L1","5L1","6L1"],magicalleaf:["3L31","4L31","5L31","6L31"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M","4L57","5E","5L67","6L1","6L67","6E"],naturepower:["3E","4E","5E","6M","6E"],ominouswind:["4T"],outrage:["4T","5T"],protect:["3M","4M","5M","6M"],razorleaf:["3L11","4L11","5L11","6L11"],razorwind:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],silverwind:["4M","5D"],slam:["3E","4E","5E","6E"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","3L41","4M","4L51","5M","5L61","4S0","6L61","6M"],steelwing:["3M","4M","6M"],stomp:["3L17","4L17","5L17","6L17"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","4S0","6M"],swagger:["3T","4M","5M","6M"],sweetscent:["3L21","4L21","5L21","6L21"],swordsdance:["3T","4M","5M","6M"],synthesis:["3L47","4E","4L41","4T","5E","5L41","4S0","5T","6L41","6E"],tailwind:["4T","5T"],toxic:["3M","4M","5M","6M"],twister:["4T"],whirlwind:["3L27","4L27","5L27","6L27"],worryseed:["4T","5T"],seedbomb:["5T"],dragonpulse:["5T"],confide:["6M"]}}, + chingling:{learnset:{astonish:["4L9","5L9","6L9"],attract:["4M","5M","6M"],calmmind:["4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],confusion:["4L14","5L14","6L14"],curse:["4E","5E","6E"],disable:["4E","5E","6E"],doubleteam:["4M","5M","6M"],dreameater:["4E","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M"],entrainment:["5L25","6L25"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],futuresight:["4E","5E","6E"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],growl:["4L6","5L6","6L6"],healbell:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],hypnosis:["4E","5E","6E"],icywind:["4T","5T"],knockoff:["4T","5T"],lastresort:["4L22","5L22","5T","6L22"],lightscreen:["4M","5M","6M"],magiccoat:["4T","5T"],naturalgift:["4M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],psyshock:["5M","6M"],raindance:["4M","5M","6M"],recover:["4E","5E","6E"],recycle:["4M","5T"],reflect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rollout:["4T"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],signalbeam:["4T","5T"],skillswap:["4M","5E","5T","6E"],sleeptalk:["4M","5T","6M"],snatch:["4M","5T"],snore:["4T","5T"],storedpower:["5E","6E"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],taunt:["4M","5M","6M"],telekinesis:["5M"],thunderwave:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],uproar:["4L17","5L17","5T","6L17"],wish:["4E","5E","6E"],wrap:["4L1","5L1","6L1"],zenheadbutt:["4T","5T"],hypervoice:["5T"],bind:["5T"],dazzlinggleam:["6M"],confide:["6M"]}}, + chimecho:{learnset:{astonish:["3L9","4L9","5L9","3S0","6L9"],attract:["3M","4M","5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],confusion:["3L14","4L14","5L14","6L14"],curse:["3E","4E","5E","6E"],defensecurl:["3T"],disable:["3E","4E","5E","6E"],doubleedge:["3L33","3T","4L33","5L33","6L33"],doubleteam:["3M","4M","5M","6M"],dreameater:["3E","3T","4E","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],extrasensory:["4L46","5L46","6L46"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],futuresight:["4E","5E","6E"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],growl:["3L6","4L6","5L6","3S0","6L6"],healbell:["3L38","4L38","4T","5L38","5T","6L38"],healingwish:["4L49","5L57","6L1","6L57"],healpulse:["5L49","6L49"],helpinghand:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],hypervoice:["5D","5T"],hypnosis:["3E","4E","5E","5D","6E"],icywind:["3T","4T","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],mimic:["3T"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M","6M"],psychic:["3M","3L46","4M","5M","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],psywave:["3L30","4L30","5L30","6L30"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","3L41","4M","4L41","5M","5L41","6L41","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5E","5T","6E"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],storedpower:["5E","6E"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],synchronoise:["5L54","6L1","6L54"],takedown:["3L17","4L22","5L22","6L22"],taunt:["3M","4M","5M","6M"],telekinesis:["5M"],thunderwave:["4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],uproar:["3L22","4L17","4T","5L17","5T","6L17"],wish:["4E","5E","6E"],wrap:["3L1","4L1","5L1","5D","3S0","6L1"],yawn:["3L25","4L25","5L25","6L25"],zenheadbutt:["4T","5T"],bind:["5T"],dazzlinggleam:["6M"],confide:["6M"]}}, + absol:{learnset:{aerialace:["3M","4M","5M","6M"],assurance:["4E","5E","6E"],attract:["3M","4M","5M","6M"],batonpass:["3E","4E","5E","6E"],bite:["3L21","4L28","5L28","3S2","6L20"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4T","5T"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],counter:["3T"],curse:["3E","4E","5E","6E"],cut:["3M","4M","5M","6M"],darkpulse:["4M","5T","6M"],detect:["4L49","5L49","6L1","6L44"],doubleedge:["3E","3T","4E","5E","6E"],doubleteam:["3M","3L31","4M","4L33","5M","5L33","3S3","6L25","6M"],dreameater:["3T","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],feintattack:["3E","4E","5E","6E"],falseswipe:["4M","5M","6M"],feint:["4L1","5L1","5D","6L1"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],futuresight:["3L41","4L41","5L41","3S3","6L36"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hex:["5E","6E"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],knockoff:["4T","5T"],leer:["3L5","4L4","5L4","3S0","3S1","6L4"],magiccoat:["3E","4E","4T","5E","5T","6E"],meanlook:["4E","5E","6E"],mefirst:["4E","4L57","5E","5L57","6L1","6L60","6E"],megahorn:["4E","5E","5D","6E"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],nightslash:["4L52","5L52","6L41"],payback:["4M","5M","6M"],perishsong:["3L46","4L65","5E","5L65","3S3","6L1","6L65","6E"],protect:["3M","4M","5M","6M"],psychocut:["4L60","5L60","6L47"],psychup:["3T","4M","5M","6M"],punishment:["4E","5E","6E"],pursuit:["4L20","5L20","6L12"],quickattack:["3L13","4L12","5L12","6L9"],raindance:["3M","4M","5M","6M"],razorwind:["3L17","4L17","5L17","3S2","6L1","6L57"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scratch:["3L1","4L1","5L1","3S0","3S1","6L1"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],slash:["3L36","4L36","5L36","3S3","6L28"],sleeptalk:["3T","4M","5T","6M"],snarl:["5M","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],spite:["4T","3S1","3S2","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3E","3T","4E","4M","5M","6M"],suckerpunch:["4E","4L44","4T","5E","5L44","6L50","6E"],sunnyday:["3M","4M","5M","6M"],superpower:["4T","5D","5T"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3L26","3T","4M","4L25","5M","5L25","3S2","6L33","6M"],taunt:["3M","3L9","4M","4L9","5M","5L9","6L1","6L17","6M"],thief:["3M","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],willowisp:["4M","5M","6M"],wish:["3S0"],xscissor:["4M","5M","6M"],zenheadbutt:["4E","4T","5E","5T","6E"],foulplay:["5T"],confide:["6M"],playrough:["6E"]}}, + snorunt:{learnset:{attract:["3M","4M","5M","6M"],avalanche:["4M","5E","6E"],bide:["4E","5E","6E"],bite:["3L10","4L10","5L10","3S0","6L10"],blizzard:["3M","3L43","4M","4L46","5M","5L46","6L46","6M"],block:["3E","4E","4T","5E","5T","6E"],bodyslam:["3T"],captivate:["4M"],crunch:["3L28","4L31","5L31","6L31"],disable:["4E","5E","6E"],doubleedge:["3T"],doubleteam:["3M","3L7","4M","4L4","5M","5L4","6L4","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],faketears:["5E","6E"],flash:["3M","4M","5M","6M"],frostbreath:["5M","6M"],frustration:["3M","4M","5M","6M"],hail:["3M","3L37","4M","4L40","5M","5L40","6L40","6M"],headbutt:["3L19","4L19","4T","5L19","6L19"],hex:["5E","6E"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","3L34","4M","5M","6M"],icefang:["4L28","5L28","6L28"],iceshard:["4L37","5L37","6L37"],icywind:["3L16","3T","4L13","4T","5L13","5T","3S0","6L13"],leer:["3L1","4L1","5L1","6L1"],lightscreen:["3M","4M","5M","6M"],mimic:["3T"],naturalgift:["4M"],powdersnow:["3L1","4L1","5L1","5D","6L1"],protect:["3M","3L25","4M","4L22","5M","5L22","6L22","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["4E","4T","5E","6E"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],sing:["3S0"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spikes:["3E","4E","5E","6E"],spite:["4T","5T"],substitute:["3T","4M","5M","6M"],swagger:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M","5D","3S0"],weatherball:["4E","5E","5D","6E"],confide:["6M"]}}, + glalie:{learnset:{attract:["3M","4M","5M","6M"],avalanche:["4M"],bite:["3L1","3L10","4L1","4L10","5L1","5L10","6L1","6L10"],blizzard:["3M","3L53","4M","4L51","5M","5L51","6L51","6M"],block:["4T","5T"],bodyslam:["3T"],bulldoze:["5M","6M"],captivate:["4M"],crunch:["3L28","4L31","5L31","6L31"],darkpulse:["4M","5T","6M"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","3L1","3L7","4M","4L1","4L4","5M","5L1","5L4","6L1","6L4","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],frostbreath:["5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gyroball:["4M","5M","6M"],hail:["3M","3L42","4M","4L40","5M","5L40","6L40","6M"],headbutt:["3L19","4L19","4T","5L19","6L19"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","3L34","4M","4L37","5M","5L37","6L37","6M"],icefang:["4L28","5L28","6L28"],icywind:["3L16","3T","4L13","4T","5L13","5T","6L13"],ironhead:["4T","5T"],leer:["3L1","4L1","5L1","6L1"],lightscreen:["3M","4M","5M","6M"],mimic:["3T"],naturalgift:["4M"],payback:["4M","5M","6M"],powdersnow:["3L1","4L1","5L1","6L1"],protect:["3M","3L25","4M","4L22","5M","5L22","6L22","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","4M","5M","6M"],sheercold:["3L61","4L59","5L59","6L1","6L59"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],spite:["4T","5T"],substitute:["3T","4M","5M","6M"],superfang:["4T","5T"],swagger:["3T","4M","5M","6M"],taunt:["3M","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterpulse:["3M","4M"],confide:["6M"]}}, + froslass:{learnset:{astonish:["4L1","4L10","5L1","5L10","6L1","6L10"],attract:["4M","5M","6M"],avalanche:["4M"],blizzard:["4M","4L51","5M","5L51","6L51","6M"],block:["4T","5T"],captivate:["4M","4L31","5L31","6L31"],confuseray:["4L19","5L19","6L19"],destinybond:["4L59","5L59","6L1","6L59"],doubleteam:["4M","4L1","4L4","5M","5L1","5L4","6L1","6L4","6M"],dreameater:["4M","5M","6M"],embargo:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],frostbreath:["5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["4M","4L40","5M","5L40","6L40","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],icepunch:["4T","5T"],iceshard:["4L37","5L37","6L37"],icywind:["4L13","4T","5L13","5T","6L13"],leer:["4L1","5L1","6L1"],lightscreen:["4M","5M","6M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4L22","4T","5L22","6L22"],painsplit:["4T","5T"],payback:["4M","5M","6M"],powdersnow:["4L1","5L1","6L1"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rollout:["4T"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T","6M"],snatch:["4M","5T"],snore:["4T","5T"],spite:["4T","5T"],substitute:["4M","5M","6M"],suckerpunch:["4T"],swagger:["4M","5M","6M"],taunt:["4M","5M","6M"],telekinesis:["5M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderwave:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],wakeupslap:["4L28","5L28","6L28"],waterpulse:["4M"],confide:["6M"]}}, + spheal:{learnset:{aquaring:["4E","5E","6E"],aquatail:["4T","5T","5D"],attract:["3M","4M","5M","6M"],aurorabeam:["3L25","4L25","5L25","3S0","6L25"],blizzard:["3M","3L43","4M","4L43","5M","5L43","6L43","6M"],bodyslam:["3L19","3T","4L19","5L19","6L19"],brine:["4M"],bulldoze:["5M","6M"],captivate:["4M"],charm:["3S0"],curse:["3E","4E","5E","6E"],defensecurl:["3T","3L1","4L1","5L1","6L1"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],encore:["3L7","4L7","5L7","6L7"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fissure:["3E","4E","5E","5D","6E"],frostbreath:["5M","6M"],frustration:["3M","4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],hail:["3M","3L31","4M","4L31","5M","5L31","6L31","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],iceball:["3L13","4L13","5L13","6L13"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["3T","4T","3S0"],naturalgift:["4M"],powdersnow:["3L1","4L1","5L1","5D","6L1"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","3L37","4M","4L37","5M","5L37","6L37","6M"],"return":["3M","4M","5M","6M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T","5E","6E"],round:["5M","6M"],secretpower:["3M","4M"],sheercold:["3L49","4L49","5L49","6L49"],signalbeam:["4E","4T","5E","5T","6E"],sleeptalk:["3T","4M","5E","5T","6M","6E"],snore:["3L37","3T","4L37","4T","5L37","5T","6L37"],spitup:["3E","4E","5E","6E"],stockpile:["3E","4E","5E","6E"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superfang:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swallow:["3E","4E","5E","6E"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","4L1","5L1","3S0","6L1"],waterpulse:["3M","4M","5E","6E"],watersport:["3E","4E","5E","6E"],whirlpool:["4M"],yawn:["3E","4E","5E","6E"],confide:["6M"]}}, + sealeo:{learnset:{aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],aurorabeam:["3L25","4L25","5L25","6L25"],blizzard:["3M","3L47","4M","4L47","5M","5L47","6L47","6M"],bodyslam:["3L19","3T","4L19","5L19","6L19"],brine:["4M"],bulldoze:["5M","6M"],captivate:["4M"],defensecurl:["3T","3L1"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],encore:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frostbreath:["5M","6M"],frustration:["3M","4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],hail:["3M","3L31","4M","4L31","5M","5L31","6L31","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],iceball:["3L13","4L13","5L13","6L13"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],powdersnow:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","3L39","4M","4L39","5M","5L39","6L39","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M"],sheercold:["3L55","4L55","5L55","6L55"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3L39","3T","4L39","4T","5L39","5T","6L39"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superfang:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","4L32","5M","5L32","6L32","6M"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","4L1","5L1","6L1"],waterpulse:["3M","4M"],whirlpool:["4M"],confide:["6M"]}}, + walrein:{learnset:{aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],aurorabeam:["3L25","4L25","5L25","6L25"],avalanche:["4M"],blizzard:["3M","3L50","4M","4L52","5M","5L52","6L52","6M"],block:["4T","5T"],bodyslam:["3L19","3T","4L19","5L19","6L19"],brine:["4M"],bulldoze:["5M","6M"],captivate:["4M"],crunch:["4L1","5L1","6L1"],defensecurl:["3T","3L1"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],encore:["3L1","3L7","4L1","4L7","5L1","5L7","6L1","6L7"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frostbreath:["5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["4T"],gigaimpact:["4M","5M","6M"],growl:["3L1","4L1","5L1","6L1"],hail:["3M","3L31","4M","4L31","5M","5L31","5S0","6L31","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],iceball:["3L13","4L13","5L13","6L13"],icebeam:["3M","4M","5M","5S0","6M"],icefang:["4L44","5L44","6L44"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],powdersnow:["3L1","4L1","5L1","6L1"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","3L39","4M","4L39","5M","5L39","6L39","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],secretpower:["3M","4M"],sheercold:["3L61","4L65","5L65","5S0","6L65"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3L39","3T","4L39","4T","5L39","5T","6L39"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superfang:["4T","5T"],surf:["3M","4M","5M","5S0","6M"],swagger:["3T","4M","4L32","5M","5L32","6L32","6M"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","4L1","5L1","6L1"],waterpulse:["3M","4M"],whirlpool:["4M"],confide:["6M"]}}, + clamperl:{learnset:{aquaring:["4E","5E","5D","6E"],attract:["3M","4M","5M","6M"],barrier:["3E","4E","5E","6E"],blizzard:["3M","4M","5M","6M"],bodyslam:["3E","3T","4E","5E","6E"],brine:["4M","5E","6E"],captivate:["4M","5D"],clamp:["3L1","4L1","5L1","6L1"],confuseray:["3E","4E","5E","6E"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],irondefense:["3L1","4L1","4T","5L1","5T","6L1"],mimic:["3T"],muddywater:["4E","5E","6E"],mudsport:["3E","4E","5E","6E"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],refresh:["3E","4E","5E","6E"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],shellsmash:["5L51","6L50"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],supersonic:["3E","4E","5E","6E"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L1","4L1","5L1","6L1"],waterpulse:["3M","4M","5E","6E"],whirlpool:["3L1","4L1","4M","5L1","5D","6L1"],confide:["6M"]}}, + huntail:{learnset:{aquatail:["4L46","4T","5L46","5T","6L46"],attract:["3M","4M","5M","6M"],batonpass:["3L43","4L33","5L33","6L33"],bite:["3L8","4L6","5L6","6L6"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4T","5T"],brine:["4M","4L28","5L28","6L28"],captivate:["4M"],crunch:["3L36","4L42","5L42","6L42"],dive:["3M","4L37","4T","5M","5L37","6L37"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L50","4L51","5L51","6L50"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icefang:["4L24","5L24","6L24"],icywind:["3T","4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],scaryface:["3L29","4L19","5L19","6L19"],screech:["3L15","4L10","5L10","6L10"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","4M","5T"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],superfang:["4T","5T"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","3L22","4M","4L15","5L15","6L15"],whirlpool:["3L1","4L1","4M","5L1","6L1"],bind:["5T"],infestation:["6M"],confide:["6M"]}}, + gorebyss:{learnset:{agility:["3L15","4L10","5L10","6L10"],amnesia:["3L29","4L19","5L19","6L19"],aquaring:["4L24","5L24","6L24"],aquatail:["4L46","4T","5L46","5T","6L46"],attract:["3M","4M","5M","6M"],batonpass:["3L43","4L33","5L33","6L33"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4T","5T"],brine:["4M"],captivate:["4M","4L28","5L28","6L28"],confusion:["3L8","4L6","5L6","6L6"],dive:["3M","4L37","4T","5M","5L37","6L37"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L50","4L51","5L51","6L50"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychic:["3M","3L36","4M","4L42","5M","5L42","6L42","6M"],psychup:["4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","3L22","4M","4L15","5L15","6L15"],whirlpool:["3L1","4L1","4M","5L1","6L1"],bind:["5T"],infestation:["6M"],confide:["6M"]}}, + relicanth:{learnset:{amnesia:["3E","4E","5E","6E"],ancientpower:["3L43","4L43","4T","5L43","6L1","6L43"],aquatail:["4E","4T","5E","5T","6E"],attract:["3M","4M","5M","6M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],bounce:["4T","5T"],brine:["4M","5E","6E"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],dive:["3M","4L57","4T","5M","5L57","6L57"],doubleedge:["3L57","3T","4L50","5L50","6L50"],doubleteam:["3M","4M","5M","6M"],earthpower:["4T","5D","5T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],harden:["3L1","4L1","5L1","6L1"],headbutt:["4T"],headsmash:["4L78","5L78","6L1","6L78"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L64","4L71","5L71","6L1","6L71"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],magnitude:["3E","4E","5E","6E"],mimic:["3T"],muddywater:["4E","5E","6E"],mudshot:["5E","6E"],mudslap:["3T","4E","4T","5E","6E"],mudsport:["3L36","4L36","5L36","6L1","6L36"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","3L50","4M","4L64","5M","5L64","6L64","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3E","3T","4E","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","3L15","4M","4L15","5M","5L15","6L15","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],sandstorm:["3M","4M","5M","6M"],scald:["5M","6M"],secretpower:["3M","4M"],skullbash:["3E","4E","5E","6E"],sleeptalk:["3E","3T","4E","4M","5E","5D","5T","6M","6E"],smackdown:["5M","6M"],snore:["3T","4E","4T","5E","5T","6E"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],tackle:["3L1","4L1","5L1","6L1"],takedown:["3L29","4L29","5L29","6L29"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L8","4L8","5L8","5D","6L8"],waterpulse:["3M","4M"],watersport:["3E","4E","5E","6E"],whirlpool:["4M"],yawn:["3L22","4L22","5L22","6L22"],zenheadbutt:["5E","5T","6E"],confide:["6M"]}}, + luvdisc:{learnset:{agility:["3L16","4L9","5L9","6L9"],aquajet:["4E","5E","6E"],aquaring:["4E","4L37","5E","5L46","6L46","6E"],attract:["3M","3L28","4M","4L22","5M","5L27","6L27","6M"],blizzard:["3M","4M","5M","6M"],bounce:["4T","5T"],brine:["4M","5E","6E"],captivate:["4E","4M","4L40","5E","5L51","6L50","6E"],charm:["3L4","4L4","5L4","5D","6L4"],dive:["3M","4T","5M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],flail:["3L40","4L46","5L31","6L31"],frustration:["3M","4M","5M","6M"],hail:["3M","4M","5M","6M"],healpulse:["5E","6E"],hiddenpower:["3M","4M","5M","6M"],hydropump:["5L40","6L40"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5D","5T"],luckychant:["4L17","5L17","6L17"],mimic:["3T"],mudsport:["3E","4E","5E","5D","6E"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","3L48","4M","4L51","5M","5L55","6L55","6M"],scald:["5M","6M"],secretpower:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],splash:["3E","4E","5E","6E"],substitute:["3T","4M","5M","6M"],supersonic:["3E","4E","5E","6E"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],sweetkiss:["3L36","4L27","5L37","6L37"],swift:["3T","4T"],tackle:["3L1","4L1","5L1","6L1"],takedown:["3L24","4L14","5L14","6L14"],toxic:["3M","4M","5M","6M"],waterfall:["3M","4M","5M","6M"],watergun:["3L12","4L7","5L7","6L7"],waterpulse:["3M","4M","4L31","5L22","6L22"],watersport:["3E","4E","5E","6E"],whirlpool:["4M"],confide:["6M"]}}, + bagon:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bite:["3L5","4L5","5L5","5D","3S0","3S1","6L5"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],crunch:["3L41","4L46","5L46","6L46"],cut:["3M","4M","5M","6M"],defensecurl:["5E","6E"],doubleedge:["3L53","3T","4L55","5L55","6L55"],doubleteam:["3M","4M","5M","6M"],dracometeor:["4T","5T","6T"],dragonbreath:["3L33","4L31","5L31","6L31"],dragonclaw:["3M","3L49","4M","4L50","5M","5L50","6L50","6M"],dragondance:["3E","4E","5E","5D","6E"],dragonpulse:["4M","5E","5T","6E"],dragonrage:["3E","4E","5E","6E"],dragonrush:["4E","5E","6E"],ember:["3L25","4L25","5L25","6L25"],endure:["3T","4M","5E","6E"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],firefang:["4E","5E","6E"],flamethrower:["3M","4M","5M","6M"],focusenergy:["3L21","4L20","5L20","6L20"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],headbutt:["3L17","4L16","4T","5L16","6L16"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hydropump:["3E","4E","5E","6E"],incinerate:["5M","6M"],irondefense:["3S1"],leer:["3L9","4L10","5L10","6L10"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5D","5T"],protect:["3M","4M","5M","6M"],rage:["3L1","4L1","5L1","3S0","3S1","5S2","6L1"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],scaryface:["3L37","4L40","5L40","6L40"],secretpower:["3M","4M"],shadowclaw:["4E","4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],thrash:["3E","4E","5E","6E"],toxic:["3M","4M","5M","6M"],twister:["3E","4E","4T","5E","6E"],wish:["3S0"],zenheadbutt:["4L35","4T","5L35","5T","6L35"],hypervoice:["5T"],confide:["6M"]}}, + shelgon:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bite:["3L1","3L5","4L1","4L5","5L1","5L5","6L1","6L5"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],captivate:["4M"],crunch:["3L56","4L50","5L50","6L50"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],doubleedge:["3L78","3T","4L61","5L61","6L61"],doubleteam:["3M","4M","5M","6M"],dracometeor:["4T","5T","6T"],dragonbreath:["3L38","4L32","5L32","6L32"],dragonclaw:["3M","3L69","4M","4L55","5M","5L55","6L55","6M"],dragonpulse:["4M","5T"],ember:["3L25","4L25","5L25","6L25"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],focusenergy:["3L21","4L20","5L20","6L20"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],headbutt:["3L1","3L17","4L1","4L16","4T","5L1","5L16","6L1","6L16"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],incinerate:["5M","6M"],irondefense:["4T","5T"],leer:["3L1","3L9","4L1","4L10","5L1","5L10","6L1","6L10"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","3L30","4M","4L30","5M","5L30","6L30","6M"],rage:["3L1","4L1","5L1","6L1"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],scaryface:["3L47","4L43","5L43","6L43"],secretpower:["3M","4M"],shadowclaw:["4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["4T"],zenheadbutt:["4L37","4T","5L37","5T","6L37"],hypervoice:["5T"],confide:["6M"]}}, + salamence:{learnset:{aerialace:["3M","4M","5M","3S1","5S3","6M"],aircutter:["4T"],aquatail:["4T","5T"],attract:["3M","4M","5M","6M"],bite:["3L1","3L5","4L1","4L5","5L1","5L5","6L1","6L5"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],crunch:["3L61","4L53","5L53","6L53"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],defog:["4M"],doubleedge:["3L93","3T","4L70","5L70","6L1","6L70"],doubleteam:["3M","4M","5M","6M"],dracometeor:["4T","5T","6T"],dragonbreath:["3L38","4L32","5L32","3S0","6L32"],dragonclaw:["3M","3L79","4M","4L61","5M","5L61","3S1","4S2","5S3","6L61","6M"],dragondance:["3S1","5S3"],dragonpulse:["4M","5T"],dragontail:["5M","5L80","6L80","6M"],earthquake:["3M","4M","5M","6M"],ember:["3L25","4L25","5L25","6L25"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","4S2","6M"],firefang:["4L1","5L1","6L1"],flamethrower:["3M","4M","5M","6M"],fly:["3M","3L50","4M","4L50","5M","5L50","3S0","6L50","6M"],focusenergy:["3L21","4L20","5L20","6L20"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],headbutt:["3L1","3L17","4L1","4L16","4T","5L1","5L16","6L1","6L16"],heatwave:["4T","5T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hydropump:["4S2"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],irontail:["3M","4M","5T"],leer:["3L1","3L9","4L1","4L10","5L1","5L10","6L1","6L10"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],ominouswind:["4T"],outrage:["4T","5S3","5T"],protect:["3M","3L30","4M","4L30","5M","5L30","3S0","6L30","6M"],rage:["3L1","4L1","5L1","6L1"],raindance:["3M","4M","5M","6M"],refresh:["3S1"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],roost:["4M","5T","6M"],round:["5M","6M"],scaryface:["3L47","4L43","5L43","3S0","6L43"],secretpower:["3M","4M"],shadowclaw:["4M","5M","6M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],steelwing:["3M","4M","6M"],stoneedge:["4M","5M","4S2","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5T"],thunderfang:["4L1","5L1","6L1"],toxic:["3M","4M","5M","6M"],twister:["4T"],zenheadbutt:["4L37","4T","5L37","5T","6L37"],hypervoice:["5T"],confide:["6M"]}}, + beldum:{learnset:{headbutt:["4T"],irondefense:["4T","5T"],ironhead:["4T","5D","5T"],takedown:["3L1","4L1","5L1","5D","6L1"],zenheadbutt:["4T","5D","5T"]}}, + metang:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L56","4L44","5L44","6L38"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],bulletpunch:["4L32","5L32","6L32"],confusion:["3L20","4L1","4L20","5L1","5L20","3S0","6L1","6L20"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],gyroball:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","3L62","4M","4L56","5M","5L56","6L50","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irondefense:["3L44","4L40","4T","5L40","5T","6L47"],ironhead:["4T","5T"],lightscreen:["3M","4M","5M","6M"],magnetrise:["4L1","4T","5L1","5T","6L1"],metalclaw:["3L20","4L1","4L20","5L1","5L20","3S0","6L1","6L20"],meteormash:["3L50","4L48","5L48","6L44"],mimic:["3T"],miracleeye:["5L26","6L26"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychic:["3M","3L38","4M","4L36","5M","5L36","6L41","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],pursuit:["3L32","4L28","5L28","6L23"],raindance:["3M","4M","5M","6M"],reflect:["3M","4M","5M","6M"],refresh:["3S0"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scaryface:["3L26","4L24","5L24","6L35"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],takedown:["3L1","4L1","5L1","3S0","6L1"],telekinesis:["5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],zenheadbutt:["4L52","4T","5L52","5T","6L29"],poweruppunch:["6M"],confide:["6M"]}}, + metagross:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L66","4L44","5L44","5S4","6L38"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],bulletpunch:["4L32","5L32","4S0","5S1","5S2","6L32"],confusion:["3L1","3L20","4L1","4L20","5L1","5L20","6L1","6L20"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],doubleedge:["3T","5S4","5S5"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","5S1","5S3","5S6","6M"],endure:["3T","4M"],explosion:["3T","4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],gyroball:["4M","5M","6M"],hammerarm:["4L45","5L45","4S0","5S1","5S2","5S4","5S5","6L45"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","3L77","4M","4L71","5M","5L71","5S6","6L62","6M"],icepunch:["3T","4T","5T","5S2"],icywind:["3T","4T","5T"],irondefense:["3L44","4L40","4T","5L40","5T","5S4","6L53"],ironhead:["4T","5T"],lightscreen:["3M","4M","5M","6M"],magnetrise:["4L1","4T","5L1","5T","6L1"],metalclaw:["3L1","3L20","4L1","4L20","5L1","5L20","6L1","6L20"],meteormash:["3L55","4L53","5L53","4S0","5S1","5S3","5S5","5S6","6L44"],mimic:["3T"],miracleeye:["5L26","6L26"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","5S3","6M"],psychic:["3M","3L38","4M","4L36","5M","5L36","5S5","5S6","6L41","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],pursuit:["3L32","4L28","5L28","6L23"],raindance:["3M","4M","5M","6M"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scaryface:["3L1","3L26","4L24","5L24","6L35"],secretpower:["3M","4M"],selfdestruct:["3T"],shadowball:["3M","4M","5M","6M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],sludgebomb:["3M","4M","5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],takedown:["3L1","4L1","5L1","6L1"],telekinesis:["5M"],thunderpunch:["3T","4T","5T"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],zenheadbutt:["4L62","4T","5L62","4S0","5T","5S2","5S3","6L29"],poweruppunch:["6M"],confide:["6M"]}}, + regirock:{learnset:{ancientpower:["3L33","4L33","4T","5L33","3S0","6L0"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],chargebeam:["4M","4L49","5M","5L49","6L0","6M"],counter:["3T"],curse:["3L17","4L17","5L17","3S0","6L0"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],drainpunch:["4M","5T"],dynamicpunch:["3T"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["3L1","3T","4M","4L1","5M","5L1","6L0","6M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gravity:["4T","5T"],hammerarm:["4L81","5L81","6L0"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","3L65","4M","4L89","5M","5L89","3S0","6L0","6M"],icepunch:["3T","4T","5T"],irondefense:["3L41","4L41","5L41","5T","6L0"],ironhead:["4T","5T"],lockon:["3L57","4L57","5L57","6L0"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rockthrow:["3L9","4L9","5L9","6L0"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3T"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stomp:["4L1","5L1","6L0"],stoneedge:["4M","4L73","5M","5L73","6L0","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["3L25","4L25","4T","5L25","3S0","5T","6L0"],swagger:["3T","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],zapcannon:["3L49","4L65","5L65","6L0"]}}, + regice:{learnset:{amnesia:["3L41","4L41","5L41","6L0"],ancientpower:["3L33","4L33","4T","5L33","3S0","6L0"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],chargebeam:["4M","4L49","5M","5L49","6L0","6M"],counter:["3T"],curse:["3L17","4L17","5L17","3S0","6L0"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["3L1","3T","4M","4L1","5M","5L1","6L0","6M"],facade:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frostbreath:["5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gravity:["4T","5T"],hail:["3M","4M","5M","6M"],hammerarm:["4L81","5L81","6L0"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","3L65","4M","4L89","5M","5L89","3S0","6L0","6M"],icebeam:["3M","4M","4L73","5M","5L73","6L0","6M"],icepunch:["3T","4T","5T"],icywind:["3L9","3T","4L9","4T","5L9","5T","6L0"],ironhead:["4T","5T"],lockon:["3L57","4L57","5L57","6L0"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3T"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],stomp:["4L1","5L1","6L0"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],superpower:["3L25","4L25","4T","5L25","3S0","5T","6L0"],swagger:["3T","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],zapcannon:["3L49","4L65","5L65","6L0"]}}, + registeel:{learnset:{aerialace:["3M","4M","5M","6M"],amnesia:["3L41","4L41","5L41","6L0"],ancientpower:["3L33","4L33","4T","5L33","3S0","6L0"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulldoze:["5M","6M"],chargebeam:["4M","4L49","5M","5L49","6L0","6M"],counter:["3T"],curse:["3L17","4L17","5L17","3S0","6L0"],defensecurl:["3T"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dynamicpunch:["3T"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],explosion:["3L1","3T","4M","4L1","5M","5L1","6L0","6M"],facade:["3M","4M","5M","6M"],flashcannon:["4M","4L73","5M","5L73","6L0","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],gravity:["4T","5T"],hammerarm:["4L81","5L81","6L0"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","3L65","4M","4L89","5M","5L89","3S0","6L0","6M"],icepunch:["3T","4T","5T"],irondefense:["3L41","4L41","4T","5L41","5T","6L0"],ironhead:["4L73","4T","5L73","5T","6L0"],lockon:["3L57","4L57","5L57","6L0"],megakick:["3T"],megapunch:["3T"],metalclaw:["3L9","4L9","5L9","6L0"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],selfdestruct:["3T"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],stomp:["4L1","5L1","6L0"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["3L25","4L25","4T","5L25","3S0","5T","6L0"],swagger:["3T","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],zapcannon:["3L49","4L65","5L65","6L0"],magnetrise:["5T"]}}, + latias:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],charm:["3L50","4L55","5L55","3S0","3S1","6L0"],cut:["3M","4M","5M","6M"],defog:["4M"],dive:["3M","4T","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dracometeor:["4T","5T","6T"],dragonbreath:["3L20","4L20","5L20","6L0"],dragonclaw:["3M","4M","5M","6M"],dragonpulse:["4M","4L70","5L80","5T","6L0"],dreameater:["3T","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],guardsplit:["5L75","6L0"],healingwish:["4L60","5L85","6L0"],healpulse:["5L65","6L0"],helpinghand:["3L10","4L10","4T","5L10","5T","6L0"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],mimic:["3T"],mistball:["3L35","4L35","5L35","3S0","3S1","4S2","6L0"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["3M","4M","5M","6M"],psychic:["3M","3L40","4M","4L65","5M","5L60","3S0","3S1","6L0","6M"],psychoshift:["4L50","5L50","6L0"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],psywave:["3L1","4L1","5L1","6L0"],raindance:["3M","4M","5M","6M"],recover:["3L45","4L45","5L45","3S0","3S1","6L0"],reflect:["3M","4M","5M","6M"],reflecttype:["5L70","6L0"],refresh:["3L30","4L30","5L30","4S2","6L0"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],roleplay:["4T","5T"],roost:["4M","5T","6M"],round:["5M","6M"],safeguard:["3M","3L15","4M","4L15","5M","5L15","6L0","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],steelwing:["3M","4M"],substitute:["3T","4M","5M","6M"],suckerpunch:["4T"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5T"],telekinesis:["5M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],twister:["4T"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],watersport:["3L25","4L25","5L25","4S2","6L0"],whirlpool:["4M"],wish:["3L5","4L5","5L5","6L0"],zenheadbutt:["4L40","4T","5L40","4S2","5T","6L0"],covet:["5T"],magicroom:["5T"]}}, + latios:{learnset:{aerialace:["3M","4M","5M","6M"],attract:["3M","4M","5M","6M"],bodyslam:["3T"],bulldoze:["5M","6M"],calmmind:["3M","4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],cut:["3M","4M","5M","6M"],defog:["4M"],dive:["3M","4T","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dracometeor:["4T","5T","6T"],dragonbreath:["3L20","4L20","5L20","6L0"],dragonclaw:["3M","4M","5M","6M"],dragondance:["3L50","4L55","5L55","3S0","3S1","6L0"],dragonpulse:["4M","4L70","5L80","5T","6L0"],dreameater:["3T","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],flash:["3M","4M","5M","6M"],fly:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],healblock:["4L5","5L5","6L0"],healpulse:["5L65","6L0"],helpinghand:["3L10","4L10","4T","5L10","5T","6L0"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],lastresort:["4T","5T"],lightscreen:["3M","4M","5M","6M"],lusterpurge:["3L35","4L35","5L35","3S0","3S1","4S2","6L0"],magiccoat:["4T","5T"],memento:["3L5","4L60","5L85","6L0"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["4T","5T"],powersplit:["5L75","6L0"],protect:["3M","3L25","4M","4L25","5M","5L25","4S2","6L0","6M"],psychic:["3M","3L40","4M","4L65","5M","5L60","3S0","3S1","6L0","6M"],psychoshift:["4L50","5L50","6L0"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],psywave:["3L1","4L1","5L1","6L0"],raindance:["3M","4M","5M","6M"],recover:["3L45","4L45","5L45","3S0","3S1","6L0"],reflect:["3M","4M","5M","6M"],refresh:["3L30","4L30","5L30","4S2","6L0"],rest:["3M","4M","5M","6M"],retaliate:["5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],safeguard:["3M","3L15","4M","4L15","5M","5L15","6L0","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],steelwing:["3M","4M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],tailwind:["4T","5T"],telekinesis:["5M","5L70","6L0"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],twister:["4T"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],zenheadbutt:["4L40","4T","5L40","4S2","5T","6L0"],wonderroom:["5T"]}}, + kyogre:{learnset:{ancientpower:["3L15","4L15","4T","4L45","5L45","5S0","6L0"],aquaring:["4L30","5L30","6L0"],aquatail:["4L75","4T","4L65","5L65","5T","6L0"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],block:["4T","5T"],bodyslam:["3L20","3T","4L20","4L15","5L15","6L0"],brickbreak:["3M","4M","5M","6M"],brine:["4M"],bulldoze:["5M","6M"],calmmind:["3M","3L30","4M","4L30","4L60","5M","5L60","6L0","6M"],defensecurl:["3T"],dive:["3M","4T","5M","6M"],doubleedge:["3L65","3T","4L65","4L80","5L80","6L0"],doubleteam:["3M","4M","5M","6M"],earthquake:["3M","4M","5M","6M"],endure:["3T","4M"],facade:["3M","4M","5M","6M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["3M","4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hydropump:["3L45","4L45","4L90","5L90","6L0"],hyperbeam:["3M","4M","5M","6M"],icebeam:["3M","3L35","4M","4L35","5M","5L35","5S0","5S1","6L0","6M"],icywind:["3T","4T","5T"],ironhead:["4T","5T"],mimic:["3T"],muddywater:["4L20","5L20","6L0"],mudslap:["3T","4T"],naturalgift:["4M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","3L50","4M","4L50","5M","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],scald:["5M","6M"],scaryface:["3L5","4L5","5L5","6L0"],secretpower:["3M","4M"],sheercold:["3L60","4L60","4L75","5L75","5S1","6L0"],shockwave:["3M","4M"],signalbeam:["4T","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],thunder:["3M","4M","5M","5S0","5S1","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","3L1","4M","4L1","5L1","6L0"],waterspout:["3L75","4L80","4L50","5L50","5S0","5S1","6L0"],whirlpool:["4M"]}}, + groudon:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["3L15","4L15","4T","4L45","5L45","5S0","6L0"],block:["4T","5T"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","3L30","4M","4L30","4L60","5M","5L60","6L0","6M"],bulldoze:["5M","6M"],counter:["3T"],cut:["3M","4M","5M","6M"],defensecurl:["3T"],dig:["3M","4M","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dragonclaw:["3M","4M","5M","6M"],dragonpulse:["4M","5T"],dragontail:["5M","6M"],dynamicpunch:["3T"],earthpower:["4L75","4T","4L65","5L65","5T","5S1","6L0"],earthquake:["3M","3L35","4M","4L35","5M","5L35","5S0","6L0","6M"],endure:["3T","4M"],eruption:["3L75","4L80","4L50","5L50","5S0","5S1","6L0"],facade:["3M","4M","5M","6M"],fireblast:["3M","3L45","4M","4L45","4L90","5M","5L90","6L0","6M"],firepunch:["3T","4T","5T"],fissure:["3L60","4L60","4L75","5L75","6L0"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],hammerarm:["4L20","5L20","5S1","6L0"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","4M","5M","6M"],incinerate:["5M","6M"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],lavaplume:["4L15","5L15","6L0"],megakick:["3T"],megapunch:["3T"],mimic:["3T"],mudshot:["3L1","4L1","5L1","6L0"],mudslap:["3T","4T"],naturalgift:["4M"],overheat:["3M","4M","5M","6M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],rest:["3M","3L50","4M","4L50","4L30","5M","5L30","6L0","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],rollout:["3T","4T"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],sandstorm:["3M","4M","5M","6M"],scaryface:["3L5","4L5","5L5","6L0"],secretpower:["3M","4M"],seismictoss:["3T"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],slash:["3L20","4L20"],sleeptalk:["3T","4M","5T","6M"],smackdown:["5M","6M"],snore:["3T","4T","5T"],solarbeam:["3M","3L65","4M","4L65","4L80","5M","5L80","5S0","5S1","6L0","6M"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["3T","4M","5M","6M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],uproar:["4T","5T"]}}, + rayquaza:{learnset:{aerialace:["3M","4M","5M","6M"],airslash:["4L35","5L35","6L0"],ancientpower:["3L15","4L15","4T","4L45","5L45","5S0","6L0"],aquatail:["4T","5T"],avalanche:["4M"],blizzard:["3M","4M","5M","6M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],bulkup:["3M","4M","5M","6M"],bulldoze:["5M","6M"],crunch:["3L35","4L35","4L15","5L15","6L0"],dive:["3M","4T","5M","6M"],doubleedge:["3T"],doubleteam:["3M","4M","5M","6M"],dracometeor:["4T","5T","6T"],dragonclaw:["3M","3L20","4M","4L20","5M","6M"],dragondance:["3L30","4L30","4L60","5L60","5S0","6L0"],dragonpulse:["4M","4L75","4L90","5L90","5S0","5S1","5T","6L0"],dragontail:["5M","6M"],earthpower:["4T","5T"],earthquake:["3M","4M","5M","6M"],echoedvoice:["5M","6M"],endure:["3T","4M"],energyball:["4M","5M","6M"],extremespeed:["3L60","4L60","4L75","5L75","5S1","6L0"],facade:["3M","4M","5M","6M"],fireblast:["3M","4M","5M","6M"],flamethrower:["3M","4M","5M","6M"],fling:["4M","5M","6M"],fly:["3M","3L45","4M","4L45","4L65","5M","5L65","6L0","6M"],focusblast:["4M","5M","6M"],frustration:["3M","4M","5M","6M"],furycutter:["3T","4T"],gigaimpact:["4M","5M","6M"],gyroball:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["3M","3L75","4M","4L65","4L80","5M","5L80","5S1","6L0","6M"],hypervoice:["4L20","5L20","5T","6L0"],icebeam:["3M","4M","5M","6M"],icywind:["3T","4T","5T"],incinerate:["5M","6M"],ironhead:["4T","5T"],irontail:["3M","4M","5T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],outrage:["3L65","4L80","4T","4L50","5L50","5S0","5T","6L0"],overheat:["3M","4M","5M","6M"],protect:["3M","4M","5M","6M"],psychup:["3T","4M","5M","6M"],raindance:["3M","4M","5M","6M"],rest:["3M","3L50","4M","4L50","4L30","5M","5L30","6L0","6M"],"return":["3M","4M","5M","6M"],roar:["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandstorm:["3M","4M","5M","6M"],scaryface:["3L5","4L5","5L5","6L0"],secretpower:["3M","4M"],shadowclaw:["4M","5M","6M"],shockwave:["3M","4M"],skydrop:["5M","6M"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],stoneedge:["4M","5M","6M"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],surf:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3T","4T"],swordsdance:["4M","5M","6M"],tailwind:["4T","5T"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],twister:["3L1","4L1","4T","5L1","6L0"],uproar:["4T","5T"],vcreate:["5S1"],waterfall:["3M","4M","5M","6M"],waterpulse:["3M","4M"],whirlpool:["4M"],bind:["5T"]}}, + jirachi:{learnset:{aerialace:["3M","4M","5M","6M"],ancientpower:["4T"],bodyslam:["3T"],calmmind:["3M","4M","5M","6M"],chargebeam:["4M","5M","6M"],confusion:["3L1","4L1","5L1","3S0","4S2","4S3","6L0"],cosmicpower:["3L45","4L60","5L60","5S6","6L0"],defensecurl:["3T"],doomdesire:["3L50","4L70","5L70","6L0"],doubleedge:["3L35","3T","4L40","5L40","6L0"],doubleteam:["3M","4M","5M","6M"],dracometeor:["4S3","5S5"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],energyball:["4M","5M","6M"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],fling:["4M","5M","6M"],followme:["5S5"],frustration:["3M","4M","5M","6M"],futuresight:["3L40","4L55","5L55","6L0"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4L45","4T","5L45","5T","6L0"],headbutt:["4T"],healingwish:["4L50","5L50","5S4","5S6","5S7","6L0"],helpinghand:["3L15","4L15","4T","5L15","3S1","5T","6L0"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irondefense:["4T","5T"],ironhead:["4T","5T"],lastresort:["4L65","4T","5L65","5T","6L0"],lightscreen:["3M","4M","5M","6M"],magiccoat:["4T","5T"],meteormash:["5S4","5S5","5S6"],metronome:["3T"],mimic:["3T"],mudslap:["3T","4T"],naturalgift:["4M"],nightmare:["3T"],protect:["3M","4M","5M","6M"],psychic:["3M","3L20","4M","4L20","5M","5L20","3S1","5S4","6L0","6M"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],raindance:["3M","4M","5M","6M"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],refresh:["3L25","4L25","5L25","3S1","6L0"],rest:["3M","3L5","3L30","4M","4L5","4L30","5M","5L5","5L30","3S0","3S1","4S2","4S3","6L0","6L0","6M"],"return":["3M","4M","5M","5S7","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],sandstorm:["3M","4M","5M","6M"],secretpower:["3M","4M"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snore:["3T","4T","5T"],stealthrock:["4M","5T"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],swagger:["3T","4M","5M","6M"],swift:["3L10","3T","4L10","4T","5L10","5S4","5S7","6L0"],telekinesis:["5M"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],waterpulse:["3M","4M"],wish:["3L1","4L1","5L1","3S0","4S2","4S3","5S5","5S6","5S7","6L0"],zenheadbutt:["4L35","4T","5L35","5T","6L0"],magicroom:["5T"]}}, + deoxys:{learnset:{aerialace:["3M","4M","5M","6M"],agility:["3L35","4L73","5L73","6L0"],allyswitch:["5M"],amnesia:["3L35","4L73","5L73","6L0"],avalanche:["4M"],bodyslam:["3T"],brickbreak:["3M","4M","5M","6M"],calmmind:["3M","4M","5M","6M"],chargebeam:["4M","5M","6M"],cosmicpower:["3L35","4L73","5L73","3S3","6L0"],counter:["3L50","3T","4S6","4L97","5L97","6L0"],cut:["3M","4M","5M","6M"],darkpulse:["5S9"],detect:["4S6"],doubleedge:["3T"],doubleteam:["3L10","3M","4M","5M","4S5","4L17","5L17","6L0","6M"],drainpunch:["4M","5T"],dreameater:["3T","4M","5M","6M"],dynamicpunch:["3T"],endure:["3T","4M"],energyball:["4M","5M","6M"],extremespeed:["3L50","4S4","4S5","4L97","5L97","6L0"],facade:["3M","4M","5M","6M"],firepunch:["3T","4T","5T"],flash:["3M","4M","5M","6M"],flashcannon:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["3M","4M"],frustration:["3M","4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],headbutt:["4T"],hiddenpower:["3M","4M","5M","6M"],hyperbeam:["3M","3L50","4M","4L97","5M","5L97","3S3","4S7","6L0","6M"],icebeam:["3M","4M","5M","6M"],icepunch:["3T","4T","5T"],icywind:["3T","4T","5T"],irondefense:["3L35","4S4","5T","4L73","5L73","6L0"],knockoff:["3L15","4L25","4T","5L25","3S0","3S2","5T","6L0"],leer:["3L1","4L1","5L1","4S8","6L0"],lightscreen:["3M","4M","5M","6M"],lowkick:["4T","5T"],lowsweep:["5M","6M"],magiccoat:["4T","5T"],megakick:["3T"],megapunch:["3T"],meteormash:["4S7"],mimic:["3T"],mirrorcoat:["3L50","4S6","4L97","5L97","6L0"],mudslap:["3T","4T"],nastyplot:["5S9"],naturalgift:["4M"],nightmare:["3T"],nightshade:["3L5","4L9","5L9","4S8","6L0"],poisonjab:["4M","5M","6M"],protect:["3M","4M","5M","6M"],psychic:["3M","3L25","4M","4L41","5M","5L41","3S0","3S1","3S2","6L0","6M"],psychoboost:["3L45","4L89","5L89","3S3","4S4","4S5","4S6","4S7","4S8","5S9","6L0"],psychoshift:["4L57","5L57","6L0"],psychup:["3T","4M","5M","6M"],psyshock:["5M","6M"],pursuit:["3L20","4L33","5L33","3S1","3S2","6L0"],raindance:["3M","4M","5M","6M"],recover:["3L40","4L81","5L81","3S3","5S9","6L0"],recycle:["4M","5T"],reflect:["3M","4M","5M","6M"],rest:["3M","4M","5M","6M"],"return":["3M","4M","5M","6M"],rockslide:["3T","4M","5M","6M"],rocksmash:["3M","4M","5M","6M"],rocktomb:["3M","4M","5M","6M"],round:["5M","6M"],safeguard:["3M","4M","5M","6M"],secretpower:["3M","4M"],seismictoss:["3T"],shadowball:["3M","4M","5M","6M"],shockwave:["3M","4M"],signalbeam:["4T","5T"],skillswap:["3M","4M","5T"],sleeptalk:["3T","4M","5T","6M"],snatch:["3M","3L30","4M","4L49","5L49","3S0","5T","6L0"],snore:["3T","4T","5T"],solarbeam:["3M","4M","5M","6M"],spikes:["3L20","3S0","4L33","5L33","6L0"],stealthrock:["4M","5T"],strength:["3M","4M","5M","6M"],substitute:["3T","4M","5M","6M"],sunnyday:["3M","4M","5M","6M"],superpower:["3S1","4S7","4L49","5L49","6L0"],swagger:["3T","4M","5M","6M"],swift:["3L30","3T","4T","3S2","4S5","4L49","5L49","6L0"],taunt:["3L15","3M","4M","5M","3S1","4L25","5L25","6L0","6M"],telekinesis:["5M"],teleport:["3L10","4L17","5L17","6L0"],thunder:["3M","4M","5M","6M"],thunderbolt:["3M","4M","5M","6M"],thunderpunch:["3T","4T","5T"],thunderwave:["3T","4M","5M","6M"],torment:["3M","4M","5M","6M"],toxic:["3M","4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],waterpulse:["3M","4M"],wrap:["3L1","4L1","5L1","4S8","6L0"],zapcannon:["3L40","4S4","4L81","5L81","6L0"],zenheadbutt:["4L65","4T","5L65","5T","6L0"],bind:["5T"],roleplay:["4T","5T"],wonderroom:["5T"]}}, + turtwig:{learnset:{absorb:["4L9","5L9","5S0","5S1","6L0"],amnesia:["4E","5E","6E"],attract:["4M","5M","6M"],bite:["4L21","5L21","6L0"],bodyslam:["4E","5E","6E"],bulletseed:["4M"],captivate:["4M"],crunch:["4L37","5L37","6L0"],curse:["4L17","5L17","6L0"],cut:["4M","5M","6M"],doubleedge:["4E","5E","6E"],doubleteam:["4M","5M","6M"],earthpower:["4T","5E","5T","6E"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigadrain:["4M","4L41","5L41","5T","6L0"],grassknot:["4M","5M","6M"],grasspledge:["5T","6T"],growth:["4E","5E","6E"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],irontail:["4M","5T"],leafstorm:["4L45","5L45","6L0"],leechseed:["4L29","5L29","6L0"],lightscreen:["4M","5M","6M"],megadrain:["4L25","5L25","6L0"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M","6M"],razorleaf:["4L13","5L13","6L0"],reflect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockclimb:["4M"],rocksmash:["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],sandtomb:["4E","5E","6E"],secretpower:["4M"],seedbomb:["4E","4T","5E","5T","6E"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],spitup:["4E","5E","6E"],stealthrock:["4M","5T"],stockpile:["4E","5E","5S1","6E"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],superpower:["4E","5E","5T","6E"],swagger:["4M","5M","6M"],swallow:["4E","5E","6E"],swordsdance:["4M","5M","6M"],synthesis:["4L33","4T","5L33","5T","6L0"],tackle:["4L1","5L1","5S0","5S1","6L0"],thrash:["4E","5E","6E"],tickle:["4E","5E","6E"],toxic:["4M","5M","6M"],wideguard:["5E","6E"],withdraw:["4L5","5L5","5S0","5S1","6L0"],worryseed:["4E","4T","5E","5T","6E"]}}, + grotle:{learnset:{absorb:["4L9","5L9","6L0"],attract:["4M","5M","6M"],bite:["4L22","5L22","6L0"],bulletseed:["4M"],captivate:["4M"],crunch:["4L42","5L42","6L0"],curse:["4L17","5L17","6L0"],cut:["4M","5M","6M"],doubleteam:["4M","5M","6M"],earthpower:["4T","5T"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigadrain:["4M","4L47","5L47","5T","6L0"],grassknot:["4M","5M","6M"],grasspledge:["5T","6T"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],irontail:["4M","5T"],leafstorm:["4L52","5L52","6L0"],leechseed:["4L32","5L32","6L0"],lightscreen:["4M","5M","6M"],megadrain:["4L27","5L27","6L0"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M","6M"],razorleaf:["4L13","5L13","6L0"],reflect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockclimb:["4M"],rocksmash:["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],seedbomb:["4T","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],stealthrock:["4M","5T"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swordsdance:["4M","5M","6M"],synthesis:["4L37","4T","5L37","5T","6L0"],tackle:["4L1","5L1","6L0"],toxic:["4M","5M","6M"],withdraw:["4L1","4L5","5L1","5L5","6L0","6L0"],worryseed:["4T","5T"],superpower:["5T"]}}, + torterra:{learnset:{absorb:["4L1","4L9","5L1","5L9","6L0","6L0"],attract:["4M","5M","6M"],bite:["4L22","5L22","6L0"],block:["4T","5T"],bulldoze:["5M","6M"],bulletseed:["4M"],captivate:["4M"],crunch:["4L45","5L45","6L0"],curse:["4L17","5L17","6L0"],cut:["4M","5M","6M"],doubleteam:["4M","5M","6M"],earthpower:["4T","5T"],earthquake:["4M","4L32","5M","5L32","5S0","6L0","6M"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frenzyplant:["4T","5T","6T"],frustration:["4M","5M","6M"],gigadrain:["4M","4L51","5L51","5T","6L0"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],grasspledge:["5T","6T"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],ironhead:["4T","5T"],irontail:["4M","5T"],leafstorm:["4L57","5L57","6L0"],leechseed:["4L33","5L33","6L0"],lightscreen:["4M","5M","6M"],megadrain:["4L27","5L27","6L0"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T","5S0"],protect:["4M","5M","6M"],razorleaf:["4L1","4L13","5L1","5L13","6L0","6L0"],reflect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],sandstorm:["4M","5M","6M"],secretpower:["4M"],seedbomb:["4T","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],stealthrock:["4M","5T"],stoneedge:["4M","5M","5S0","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],superpower:["4T","5T"],swagger:["4M","5M","6M"],swordsdance:["4M","5M","6M"],synthesis:["4L39","4T","5L39","5T","6L0"],tackle:["4L1","5L1","6L0"],toxic:["4M","5M","6M"],withdraw:["4L1","4L5","5L1","5L5","6L0","6L0"],woodhammer:["4L1","5L1","5S0","6L0"],worryseed:["4T","5T"]}}, + chimchar:{learnset:{acrobatics:["5M","5L39","6L0","6M"],aerialace:["4M","5M","6M"],assist:["4E","5E","6E"],attract:["4M","5M","6M"],blazekick:["4E","5E","6E"],brickbreak:["4M","5M","6M"],bulkup:["4M","5M","6M"],captivate:["4M"],counter:["4E","5E","6E"],cut:["4M","5M","6M"],dig:["4M","5M","6M"],doublekick:["4E","5E","6E"],doubleteam:["4M","5M","6M"],ember:["4L7","5L7","5S1","5S3","6L0"],encore:["4E","5E","6E"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","4L31","5M","5L31","6L0","6M"],fakeout:["4E","5E","5S3","6E"],fireblast:["4M","5M","6M"],firepledge:["5T","6T"],firepunch:["4E","4T","5E","5T","6E"],firespin:["4L33","5L33","6L0"],flamecharge:["5M","6M"],flamethrower:["4M","4L41","5M","5L47","4S0","4S2","6L0","6M"],flamewheel:["4L17","5L17","6L0"],fling:["4M","5M","6M"],focusenergy:["4E","5E","6E"],focuspunch:["4M","5E","6E"],frustration:["4M","5M","6M"],furyswipes:["4L15","5L15","6L0"],grassknot:["4M","5M","4S0","4S2","6M"],headbutt:["4T"],heatwave:["4E","4T","5E","5T","6E"],helpinghand:["4E","4T","5E","4S0","4S2","5T","6E"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],incinerate:["5M","6M"],irontail:["4M","5T"],leer:["4L1","5L1","5S1","5S3","6L0"],lowkick:["4T","5T"],lowsweep:["5M","6M"],mudslap:["4T"],nastyplot:["4L23","5L23","6L0"],naturalgift:["4M"],overheat:["4M","5M","6M"],protect:["4M","5M","6M"],quickguard:["5E","6E"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockclimb:["4M"],rocksmash:["4M","5M","6M"],roleplay:["4T","5T"],rollout:["4T"],round:["5M","6M"],scratch:["4L1","5L1","5S1","6L0"],secretpower:["4M"],shadowclaw:["4M","5M","6M"],slackoff:["4L39","5L41","6L0"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],strength:["4M","5M","6M"],submission:["5E","6E"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],swordsdance:["4M","5M","6M"],taunt:["4M","4L9","5M","5L9","5S1","5S3","6L0","6M"],thunderpunch:["4E","4T","5E","4S0","4S2","5T","6E"],torment:["4M","4L25","5M","5L25","6L0","6M"],toxic:["4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],vacuumwave:["4T"],willowisp:["4M","5M","6M"],covet:["5T"],gunkshot:["5T"]}}, + monferno:{learnset:{acrobatics:["5M","5L46","6L0","6M"],aerialace:["4M","5M","6M"],attract:["4M","5M","6M"],brickbreak:["4M","5M","6M"],bulkup:["4M","5M","6M"],captivate:["4M"],closecombat:["4L36","5L36","6L0"],cut:["4M","5M","6M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],ember:["4L1","4L7","5L1","5L7","6L0","6L0"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M","6M"],feint:["4L26","5L26","6L0"],fireblast:["4M","5M","6M"],firepledge:["5T","6T"],firepunch:["4T","5T"],firespin:["4L39","5L39","6L0"],flamecharge:["5M","6M"],flamethrower:["4M","5M","6M"],flamewheel:["4L19","5L19","6L0"],flareblitz:["4L49","5L56","6L0"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],furyswipes:["4L16","5L16","6L0"],grassknot:["4M","5M","6M"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],incinerate:["5M","6M"],irontail:["4M","5T"],leer:["4L1","5L1","6L0"],lowkick:["4T","5T"],lowsweep:["5M","6M"],machpunch:["4L14","5L14","6L0"],mudslap:["4T"],naturalgift:["4M"],overheat:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],roleplay:["4T","5T"],rollout:["4T"],round:["5M","6M"],scratch:["4L1","5L1","6L0"],secretpower:["4M"],shadowclaw:["4M","5M","6M"],slackoff:["4L46","5L49","6L0"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],swordsdance:["4M","5M","6M"],taunt:["4M","4L9","5M","5L9","6L0","6M"],thunderpunch:["4T","5T"],torment:["4M","4L29","5M","5L29","6L0","6M"],toxic:["4M","5M","6M"],uturn:["4M","5M","6M"],vacuumwave:["4T"],willowisp:["4M","5M","6M"],workup:["5M"],covet:["5T"],dualchop:["5T"],gunkshot:["5T"]}}, + infernape:{learnset:{acrobatics:["5M","5L52","6L0","6M"],aerialace:["4M","5M","6M"],attract:["4M","5M","6M"],blastburn:["4T","5T","6T"],brickbreak:["4M","5M","6M"],bulkup:["4M","5M","6M"],bulldoze:["5M","6M"],calmmind:["4M","4L53","5M","5L58","6L0","6M"],captivate:["4M"],closecombat:["4L41","5L36","5S0","6L0"],covet:["5T"],cut:["4M","5M","6M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],dualchop:["5T"],earthquake:["4M","5M","6M"],ember:["4L1","4L7","5L1","5L7","6L0","6L0"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M","6M"],feint:["4L29","5L26","6L0"],fireblast:["4M","5M","5S0","6M"],firepledge:["5T","6T"],firepunch:["4T","5T"],firespin:["4L45","5L42","6L0"],flamecharge:["5M","6M"],flamethrower:["4M","5M","6M"],flamewheel:["4L21","5L19","6L0"],flareblitz:["4L57","5L68","6L0"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],furyswipes:["4L17","5L16","6L0"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","5S0","6M"],gunkshot:["4T","5T"],headbutt:["4T"],heatwave:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["4M","5M","6M"],incinerate:["5M","6M"],irontail:["4M","5T"],leer:["4L1","5L1","6L0"],lowkick:["4T","5T"],lowsweep:["5M","6M"],machpunch:["4L14","5L14","6L0"],mudslap:["4T"],naturalgift:["4M"],overheat:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["4M","5M","6M"],punishment:["4L33","5L29","6L0"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],roleplay:["4T","5T"],rollout:["4T"],round:["5M","6M"],scratch:["4L1","5L1","6L0"],secretpower:["4M"],shadowclaw:["4M","5M","6M"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],swordsdance:["4M","5M","6M"],taunt:["4M","4L1","4L9","5M","5L1","5L9","6L0","6L0","6M"],thunderpunch:["4T","5T"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],uturn:["4M","5M","5S0","6M"],vacuumwave:["4T"],willowisp:["4M","5M","6M"],workup:["5M"]}}, + piplup:{learnset:{aerialace:["4M","5M","6M"],agility:["4E","5E","6E"],aquaring:["4E","5E","6E"],attract:["4M","5M","6M"],bide:["4L18","4L22","5E","5L22","6E"],blizzard:["4M","5M","6M"],brickbreak:["4M","5M","6M"],brine:["4M","4L29","5L29","6L0"],bubble:["4L8","5L8","5S0","5S3","6L0"],bubblebeam:["4L22","4L18","5L18","6L0"],captivate:["4M"],cut:["4M","5M","6M"],defog:["4M"],dig:["4M","5M","6M"],dive:["4T","5M","6M"],doublehit:["4E","5E","6E"],doubleteam:["4M","5M","6M"],drillpeck:["4L39","5L39","6L0"],echoedvoice:["5M","6M"],endure:["4M"],facade:["4M","5M","6M"],featherdance:["4E","5E","5S1","5S2","5S3","6E"],flail:["4E","5E","6E"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],furyattack:["4L25","5L25","6L0"],grassknot:["4M","5M","6M"],growl:["4L4","5L4","5S0","5S3","6L0"],hail:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hydropump:["4E","4L43","5E","5L43","5S1","6E"],icebeam:["4M","5M","6M"],icywind:["4T","5E","5T","6E"],mist:["4L36","5L36","6L0"],mudslap:["4E","4T","5E","6E"],mudsport:["4E","5E","6E"],naturalgift:["4M"],peck:["4L15","5L15","5S1","5S2","6L0"],pluck:["4M","5M"],pound:["4L1","5L1","5S0","5S3","6L0"],protect:["4M","5M","6M"],quash:["5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","5S2","6M"],scald:["5M","6M"],secretpower:["4M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T","6M"],snore:["4E","4T","5E","5T","6E"],stealthrock:["4M","5T"],substitute:["4M","5M","6M"],supersonic:["4E","5E","6E"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],toxic:["4M","5M","6M"],waterfall:["4M","5M","6M"],waterpledge:["5T","6T"],waterpulse:["4M"],watersport:["4L11","5L11","5S1","6L0"],whirlpool:["4L32","4M","5L32","6L0"],yawn:["4E","5E","6E"],covet:["5T"],sing:["5S2"]}}, + prinplup:{learnset:{aerialace:["4M","5M","6M"],attract:["4M","5M","6M"],bide:["4L19","4L24","5L24","6L0"],blizzard:["4M","5M","6M"],brickbreak:["4M","5M","6M"],brine:["4M","4L33","5L33","6L0"],bubble:["4L8","5L8","6L0"],bubblebeam:["4L24","4L19","5L19","6L0"],captivate:["4M"],cut:["4M","5M","6M"],defog:["4M"],dig:["4M","5M","6M"],dive:["4T","5M","6M"],doubleteam:["4M","5M","6M"],drillpeck:["4L46","5L46","6L0"],echoedvoice:["5M","6M"],endure:["4M"],facade:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],furyattack:["4L28","5L28","6L0"],grassknot:["4M","5M","6M"],growl:["4L1","4L4","5L1","5L4","6L0","6L0"],hail:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],hydropump:["4L51","5L51","6L0"],icebeam:["4M","5M","6M"],icywind:["4T","5T"],metalclaw:["4L16","5L16","6L0"],mist:["4L42","5L42","6L0"],mudslap:["4T"],naturalgift:["4M"],peck:["4L15","5L15","6L0"],pluck:["4M","5M"],protect:["4M","5M","6M"],quash:["5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["4M"],shadowclaw:["4M","5M","6M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],tackle:["4L1","5L1","6L0"],toxic:["4M","5M","6M"],waterfall:["4M","5M","6M"],waterpledge:["5T","6T"],waterpulse:["4M"],watersport:["4L11","5L11","6L0"],whirlpool:["4L37","4M","5L37","6L0"],covet:["5T"]}}, + empoleon:{learnset:{aerialace:["4M","5M","6M"],aquajet:["4L36","5L36","5S0","6L0"],attract:["4M","5M","6M"],avalanche:["4M"],blizzard:["4M","5M","6M"],brickbreak:["4M","5M","6M"],brine:["4M","4L33","5L33","6L0"],bubble:["4L1","4L8","5L1","5L8","6L0","6L0"],bubblebeam:["4L24","4L19","5L19","6L0"],bulldoze:["5M","6M"],captivate:["4M"],cut:["4M","5M","6M"],defog:["4M"],dig:["4M","5M","6M"],dive:["4T","5M","6M"],doubleteam:["4M","5M","6M"],drillpeck:["4L52","5L52","6L0"],earthquake:["4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M"],facade:["4M","5M","6M"],flashcannon:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],furyattack:["4L28","5L28","6L0"],furycutter:["4T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","5S0","6M"],growl:["4L1","4L4","5L1","5L4","6L0","6L0"],hail:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],hydrocannon:["4T","5T","6T"],hydropump:["4L59","5L59","5S0","6L0"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","5S0","6M"],icywind:["4T","5T"],irondefense:["4T","5T"],knockoff:["4T","5T"],metalclaw:["4L16","5L16","6L0"],mist:["4L46","5L46","6L0"],mudslap:["4T"],naturalgift:["4M"],peck:["4L15","5L15","6L0"],pluck:["4M","5M"],protect:["4M","5M","6M"],quash:["5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["4M"],shadowclaw:["4M","5M","6M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],steelwing:["4M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],surf:["4M","5M","6M"],swagger:["4M","4L19","4L24","5M","5L24","6L0","6M"],swordsdance:["4M","4L11","5M","5L11","6L0","6M"],tackle:["4L1","5L1","6L0"],toxic:["4M","5M","6M"],waterfall:["4M","5M","6M"],waterpledge:["5T","6T"],waterpulse:["4M"],whirlpool:["4L39","4M","5L39","6L0"],covet:["5T"]}}, + starly:{learnset:{aerialace:["4M","4L25","5M","5L25","6L25","6M"],agility:["4L33","5L33","6L33"],aircutter:["4T"],astonish:["4E","5E","6E"],attract:["4M","5M","6M"],bravebird:["4L37","5L37","6L37"],captivate:["4M"],defog:["4M"],detect:["5E","6E"],doubleedge:["4E","5E","6E"],doubleteam:["4M","4L13","5M","5L13","6L13","6M"],echoedvoice:["5M","6M"],endeavor:["4L17","4T","5L17","5T","6L17"],endure:["4M"],facade:["4M","5M","6M"],featherdance:["4E","5E","6E"],finalgambit:["5L41","6L41"],fly:["4M","5M","6M"],foresight:["4E","5E","6E"],frustration:["4M","5M","6M"],furyattack:["4E","5E","6E"],growl:["4L1","5L1","4S0","6L1"],heatwave:["4T","5T"],hiddenpower:["4M","5M","6M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],protect:["4M","5M","6M"],pursuit:["4E","5E","6E"],quickattack:["4L5","5L5","6L5"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],revenge:["5E","6E"],roost:["4M","5E","5T","6M","6E"],round:["5M","6M"],sandattack:["4E","5E","6E"],secretpower:["4M"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],steelwing:["4M","5E","6M","6E"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],tackle:["4L1","5L1","4S0","6L1"],tailwind:["4T","5T"],takedown:["4L29","5L29","6L29"],thief:["4M","5M","6M"],toxic:["4M","5M","6M"],twister:["4T"],uproar:["5E","6E"],uturn:["4M","5M","6M"],whirlwind:["4L21","5L21","6L21"],wingattack:["4L9","5L9","6L9"],workup:["5M"],confide:["6M"]}}, + staravia:{learnset:{aerialace:["4M","4L28","5M","5L28","6L28","6M"],agility:["4L38","5L38","6L38"],aircutter:["4T"],attract:["4M","5M","6M"],bravebird:["4L43","5L43","6L43"],captivate:["4M"],defog:["4M"],doubleteam:["4M","4L13","5M","5L13","6L13","6M"],echoedvoice:["5M","6M"],endeavor:["4L18","4T","5L18","5T","6L18"],endure:["4M"],facade:["4M","5M","6M"],featherdance:["5D"],finalgambit:["5L48","6L48"],fly:["4M","5M","6M"],frustration:["4M","5M","6M"],growl:["4L1","5L1","6L1"],heatwave:["4T","5T"],hiddenpower:["4M","5M","6M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],protect:["4M","5M","6M"],quickattack:["4L1","4L5","5L1","5L5","6L1","6L5"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],secretpower:["4M"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],steelwing:["4M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],tackle:["4L1","5L1","6L1"],tailwind:["4T","5D","5T"],takedown:["4L33","5L33","6L33"],thief:["4M","5M","6M"],toxic:["4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],whirlwind:["4L23","5L23","6L23"],wingattack:["4L9","5L9","5D","6L9"],workup:["5M"],confide:["6M"]}}, + staraptor:{learnset:{aerialace:["4M","4L28","5M","5L28","6L28","6M"],agility:["4L41","5L41","6L41"],aircutter:["4T"],attract:["4M","5M","6M"],bravebird:["4L49","5L49","6L49"],captivate:["4M"],closecombat:["4L34","5L34","6L34"],defog:["4M"],doubleteam:["4M","4L13","5M","5L13","6L13","6M"],echoedvoice:["5M","6M"],endeavor:["4L18","4T","5L18","5T","6L18"],endure:["4M"],facade:["4M","5M","6M"],finalgambit:["5L57","6L57"],fly:["4M","5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],growl:["4L1","5L1","6L1"],heatwave:["4T","5T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],pluck:["4M","5M"],protect:["4M","5M","6M"],quickattack:["4L1","4L5","5L1","5L5","6L1","6L5"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],secretpower:["4M"],skyattack:["4T","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],steelwing:["4M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],tackle:["4L1","5L1","6L1"],tailwind:["4T","5T"],takedown:["4L33","5L33","6L33"],thief:["4M","5M","6M"],toxic:["4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],whirlwind:["4L23","5L23","6L23"],wingattack:["4L1","4L9","5L1","5L9","6L1","6L9"],workup:["5M"],confide:["6M"]}}, + bidoof:{learnset:{amnesia:["4L29","5L29","6L29"],aquatail:["4E","4T","5E","5D","5T","6E"],attract:["4M","5M","6M"],blizzard:["4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],curse:["4L45","5L45","6L45"],cut:["4M","5M","6M"],defensecurl:["4E","4L9","5E","5L9","6L9","6E"],dig:["4M","5M","6M"],doubleedge:["4E","5E","6E"],doubleteam:["4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M","5E","6E"],facade:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],furyswipes:["4E","5E","6E"],grassknot:["4M","5M","6M"],growl:["4L5","5L5","6L5","6E"],headbutt:["4L17","4T","5L17","6L17"],hiddenpower:["4M","5M","6M"],hyperfang:["4L21","5L21","6L21"],icebeam:["4M","5M","6M"],icywind:["4T","5T"],irontail:["4M","5T"],lastresort:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],odorsleuth:["4E","5E","6E"],pluck:["4M","5M"],protect:["4M","5M","6M"],quickattack:["4E","5E","6E"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],rockclimb:["5E","6E"],rocksmash:["4M","5M","6M"],rollout:["4E","4L13","4T","5E","5L13","6L13","6E"],round:["5M","6M"],secretpower:["4M","5D"],shadowball:["4M","5M","6M"],shockwave:["4M"],skullbash:["5E","6E"],sleeptalk:["4M","5E","5T","6M","6E"],snore:["4T","5T"],stealthrock:["4M","5T"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],superfang:["4L37","4T","5L37","5T","6L37"],superpower:["4L41","4T","5L41","5T","6L41"],swagger:["4M","5M","6M"],swift:["4T"],tackle:["4L1","5L1","5D","4S0","6L1","6E"],takedown:["4L33","5L33","6L33"],taunt:["4M","5M","6M"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],watersport:["4E","5E","6E"],workup:["5M"],yawn:["4L25","5L25","6L25"],covet:["5T"],confide:["6M"]}}, + bibarel:{learnset:{amnesia:["4L33","5L33","6L33"],aquatail:["4T","5T"],attract:["4M","5M","6M"],blizzard:["4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],curse:["4L53","5L53","6L53"],cut:["4M","5M","6M"],defensecurl:["4L9","5L9","6L9"],dig:["4M","5M","6M"],dive:["4T","5M"],doubleteam:["4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M"],facade:["4M","5M","6M"],fling:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],furycutter:["4T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growl:["4L1","4L5","5L1","5L5","6L1","6L5"],headbutt:["4L18","4T","5L18","6L18"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],hyperfang:["4L23","5L23","6L23"],icebeam:["4M","5M","6M"],icywind:["4T","5T"],irontail:["4M","5T"],lastresort:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],pluck:["4M","5M"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],rockclimb:["4M"],rocksmash:["4M","5M","6M"],rollout:["4L13","4T","5L13","6L13"],round:["5M","6M"],scald:["5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],superfang:["4L43","4T","5L43","5T","6L43"],superpower:["4L48","4T","5L48","5T","6L48"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],tackle:["4L1","5L1","6L1"],takedown:["4L38","5L38","6L38"],taunt:["4M","5M","6M"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],waterfall:["4M","5M","6M"],watergun:["4L15","5L15","6L15"],waterpulse:["4M"],whirlpool:["4M"],workup:["5M"],yawn:["4L28","5L28","6L28"],covet:["5T"],rototiller:["6L1"],confide:["6M"]}}, + kricketot:{learnset:{bide:["4L1","5L1","6L0"],bugbite:["4L16","4T","5L16","5T","6L0"],endeavor:["4T","5T","5D"],growl:["4L1","5L1","6L0"],mudslap:["4T"],snore:["4T","5T"],stringshot:["4T"],strugglebug:["5L6","5D","6L0"],uproar:["4T","5T","5D"]}}, + kricketune:{learnset:{aerialace:["4M","5M","6M"],attract:["4M","5M","6M"],bide:["4L1","5L1","6L0"],brickbreak:["4M","5M","6M"],bugbite:["4T","5T"],bugbuzz:["4L34","4L46","5L46","6L0"],captivate:["4M"],cut:["4M","5M","6M"],doubleteam:["4M","5M","6M"],echoedvoice:["5M","6M"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M","6M"],falseswipe:["4M","5M","6M"],flash:["4M","5M","6M"],focusenergy:["4L22","5L22","6L0"],frustration:["4M","5M","6M"],furycutter:["4L10","4T","5L10","6L0"],gigaimpact:["4M","5M","6M"],growl:["4L1","5L1","6L0"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["4M","5M","6M"],knockoff:["4T","5T"],leechlife:["4L14","5L14","6L0"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4L42","5L42","6L0"],perishsong:["4L38","4L50","5L50","6L0"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rocksmash:["4M","5M","6M"],round:["5M","6M"],screech:["4L30","4L34","5L34","6L0"],secretpower:["4M"],silverwind:["4M"],sing:["4L18","5L18","6L0"],slash:["4L26","5L26","6L0"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],strength:["4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swordsdance:["4M","5M","6M"],taunt:["4L38","4M","5M","5L38","6L0","6M"],toxic:["4M","5M","6M"],uproar:["4T","5T"],xscissor:["4M","4L26","4L30","5M","5L30","6L0","6M"],hypervoice:["5T"],healbell:["5T"],fellstinger:["6L0"]}}, + shinx:{learnset:{attract:["4M","5M","6M"],bite:["4L13","4L17","5L17","6L17"],captivate:["4M"],charge:["4L9","5L9","5D","6L9"],chargebeam:["4M","5M","6M"],crunch:["4L29","4L33","5L33","6L33"],discharge:["4L41","5L41","6L41"],doublekick:["5E","6E"],doubleteam:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],firefang:["4E","5E","6E"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],headbutt:["4T"],helpinghand:["5E","6E"],hiddenpower:["4M","5M","6M"],howl:["4E","5E","6E"],icefang:["4E","5E","6E"],irontail:["4M","5T"],leer:["4L5","5L5","6L5"],lightscreen:["4M","5M","6M"],magnetrise:["4T","5D","5T"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4E","5E","5D","6E"],protect:["4M","5M","6M"],quickattack:["4E","5E","6E"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","4L21","5M","5L21","6L21","6M"],round:["5M","6M"],scaryface:["4L37","5L37","6L37"],secretpower:["4M"],shockwave:["4M","5E","6E"],signalbeam:["4T","5E","5T","6E"],sleeptalk:["4M","5T","6M"],snarl:["5M","6M"],snore:["4T","5T"],spark:["4L17","4L13","5L13","6L13"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],swagger:["4M","4L25","5M","5L25","6L25","6M"],swift:["4T","5E","6E"],tackle:["4L1","5L1","6L1"],takedown:["4E","5E","6E"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderfang:["4E","4L33","4L29","5E","5L29","6L29","6E"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","5L45","6L45","6M"],babydolleyes:["6L11"],confide:["6M"]}}, + luxio:{learnset:{attract:["4M","5M","6M"],bite:["4L13","4L18","5L18","6L18"],captivate:["4M"],charge:["4L9","5L9","6L9"],chargebeam:["4M","5M","6M"],crunch:["4L33","4L38","5L38","6L38"],discharge:["4L48","5L48","6L48"],doubleteam:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],irontail:["4M","5T"],leer:["4L1","4L5","5L1","5L5","6L1","6L5"],lightscreen:["4M","5M","6M"],magnetrise:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","4L23","5M","5L23","6L23","6M"],round:["5M","6M"],scaryface:["4L43","5L43","6L43"],secretpower:["4M"],shockwave:["4M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T","6M"],snarl:["5M","6M"],snore:["4T","5T"],spark:["4L18","4L13","5L13","6L13"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],swagger:["4M","4L28","5M","5L28","6L28","6M"],swift:["4T"],tackle:["4L1","5L1","6L1"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderfang:["4L38","4L33","5L33","6L33"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","5L53","6L53","6M"],confide:["6M"]}}, + luxray:{learnset:{attract:["4M","5M","6M"],bite:["4L13","4L18","5L18","6L18"],captivate:["4M"],charge:["4L1","4L9","5L1","5L9","6L1","6L9"],chargebeam:["4M","5M","6M"],crunch:["4L35","4L42","5L42","6L42"],discharge:["4L56","5L56","6L56"],doubleteam:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],irontail:["4M","5T"],leer:["4L1","4L5","5L1","5L5","6L1","6L5"],lightscreen:["4M","5M","6M"],magnetrise:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","4L23","5M","5L23","6L23","6M"],round:["5M","6M"],scaryface:["4L49","5L49","6L49"],secretpower:["4M"],shockwave:["4M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T","6M"],snarl:["5M","6M"],snore:["4T","5T"],spark:["4L18","4L13","5L13","6L13"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],superpower:["4T","5T"],swagger:["4M","4L28","5M","5L28","6L28","6M"],swift:["4T"],tackle:["4L1","5L1","6L1"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderfang:["4L42","4L35","5L35","6L35"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","5L63","6L63","6M"],electricterrain:["6L1","6L67"],confide:["6M"]}}, + cranidos:{learnset:{ancientpower:["4L28","4T","5L33","6L33"],assurance:["4L24","5L24","6L24"],attract:["4M","5M","6M"],blizzard:["4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L28","6L28"],crunch:["4E","5E","5S0","6E"],curse:["4E","5E","6E"],dig:["4M","5M","6M"],doubleedge:["4E","5E","6E"],doubleteam:["4M","5M","6M"],dragonpulse:["4M","5T"],earthpower:["4T","5T"],earthquake:["4M","5M","6M"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],firepunch:["4T","5T","5D"],flamethrower:["4M","5M","6M"],fling:["4M","5M","6M"],focusenergy:["4L6","5L6","6L6"],frustration:["4M","5M","6M"],hammerarm:["4E","5E","6E"],headbutt:["4L1","4T","5L1","5D","5S0","6L1"],headsmash:["4L43","5L46","6L46"],hiddenpower:["4M","5M","6M"],icebeam:["4M","5M","6M"],incinerate:["5M","6M"],ironhead:["4T","5E","5T","5D","6E"],irontail:["4M","5E","5T","6E"],leer:["4E","4L1","5E","5L1","6L1","6E"],mudslap:["4T"],naturalgift:["4M"],payback:["4M","5M","6M"],protect:["4M","5M","6M"],pursuit:["4L10","5L10","5S0","6L10"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandstorm:["4M","5M","6M"],scaryface:["4L19","5L19","6L19"],screech:["4L37","5L42","6L42"],secretpower:["4M"],shockwave:["4M"],slam:["4E","5E","6E"],sleeptalk:["4M","5T","6M"],smackdown:["5M","6M"],snore:["4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stomp:["4E","5E","6E"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],superpower:["4T","5T"],swagger:["4M","5M","6M"],swordsdance:["4M","5M","6M"],takedown:["4L15","5L15","5S0","6L15"],thief:["4M","5M","6M"],thrash:["4E","5E","6E"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4T","5T"],toxic:["4M","5M","6M"],uproar:["4T","5T"],whirlwind:["4E","5E","6E"],zenheadbutt:["4L33","4T","5L37","5T","6L37"],poweruppunch:["6M"],confide:["6M"]}}, + rampardos:{learnset:{ancientpower:["4L28","4T","5L36","6L36"],assurance:["4L24","5L24","6L24"],attract:["4M","5M","6M"],avalanche:["4M"],blizzard:["4M","5M","6M"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],chipaway:["5L28","6L28"],cut:["4M","5M","6M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],dragonpulse:["4M","5T"],dragontail:["5M","6M"],earthpower:["4T","5T"],earthquake:["4M","5M","6M"],endeavor:["4L30","4T","5L30","5T","6L30"],endure:["4M"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],firepunch:["4T","5T"],flamethrower:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focusenergy:["4L6","5L6","6L6"],focuspunch:["4M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4L1","4T","5L1","6L1"],headsmash:["4L52","5L58","6L58"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],incinerate:["5M","6M"],ironhead:["4T","5T"],irontail:["4M","5T"],leer:["4L1","5L1","6L1"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T"],painsplit:["4T","5T"],payback:["4M","5M","6M"],protect:["4M","5M","6M"],pursuit:["4L10","5L10","6L10"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandstorm:["4M","5M","6M"],scaryface:["4L19","5L19","6L19"],screech:["4L43","5L51","6L51"],secretpower:["4M"],shockwave:["4M"],sleeptalk:["4M","5T","6M"],smackdown:["5M","6M"],snore:["4T","5T"],spite:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],superpower:["4T","5T"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swordsdance:["4M","5M","6M"],takedown:["4L15","5L15","6L15"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4T","5T"],toxic:["4M","5M","6M"],uproar:["4T","5T"],whirlpool:["4M"],zenheadbutt:["4L36","4T","5L43","5T","6L43"],poweruppunch:["6M"],confide:["6M"]}}, + shieldon:{learnset:{ancientpower:["4L28","4T","5L28","6L28"],attract:["4M","5M","6M"],blizzard:["4M","5M","6M"],bodyslam:["4E","5E","5S0","6E"],bulldoze:["5M","6M"],captivate:["4M"],counter:["4E","5E","5D","6E"],curse:["4E","5E","6E"],dig:["4M","5M","6M"],doubleedge:["4E","5E","6E"],doubleteam:["4M","5M","6M"],earthpower:["4T","5T"],earthquake:["4M","5M","6M"],endure:["4M","4L33","5L33","6L33"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],fissure:["4E","5E","5D","6E"],flamethrower:["4M","5M","6M"],flashcannon:["4M","5M","6M"],focusenergy:["4E","5E","6E"],frustration:["4M","5M","6M"],headbutt:["4E","4T","5E","6E"],heavyslam:["5L46","6L46"],hiddenpower:["4M","5M","6M"],icebeam:["4M","5M","6M"],incinerate:["5M","6M"],irondefense:["4L19","4T","5L19","5T","6L19"],ironhead:["4L43","4T","5L42","5T","6L42"],irontail:["4M","5T"],magnetrise:["4T","5T"],metalburst:["4L37","5L37","6L37"],metalsound:["4L10","5L10","5S0","6L10"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","4L1","5M","5L1","5D","5S0","6L1","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockblast:["4E","5E","6E"],rockpolish:["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandstorm:["4M","5M","6M"],scaryface:["4E","5E","6E"],screech:["4E","5E","6E"],secretpower:["4M"],shockwave:["4M"],sleeptalk:["4M","5T","6M"],smackdown:["5M","6M"],snore:["4T","5T"],stealthrock:["4M","5E","5T","6E"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","4L24","5M","5L24","6L24","6M"],tackle:["4L1","5L1","6L1"],takedown:["4L15","5L15","5S0","6L15"],taunt:["4M","4L6","5M","5L6","6L6","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],wideguard:["5E","6E"],confide:["6M"]}}, + bastiodon:{learnset:{ancientpower:["4L28","4T","5L28","6L28"],attract:["4M","5M","6M"],avalanche:["4M"],blizzard:["4M","5M","6M"],block:["4L30","4T","5L30","5T","6L30"],bulldoze:["5M","6M"],captivate:["4M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],earthpower:["4T","5T"],earthquake:["4M","5M","6M"],endure:["4M","4L36","5L36","6L36"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],flamethrower:["4M","5M","6M"],flashcannon:["4M","5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],heavyslam:["5L58","6L58"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],incinerate:["5M","6M"],irondefense:["4L19","4T","5L19","5T","6L19"],ironhead:["4L52","4T","5L51","5T","6L51"],irontail:["4M","5T"],magiccoat:["4T","5T"],magnetrise:["4T","5T"],metalburst:["4L43","5L43","6L43"],metalsound:["4L1","4L10","5L1","5L10","6L1","6L10"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["4M","4L1","5M","5L1","6L1","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandstorm:["4M","5M","6M"],secretpower:["4M"],shockwave:["4M"],sleeptalk:["4M","5T","6M"],smackdown:["5M","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","4L24","5M","5L24","6L24","6M"],tackle:["4L1","5L1","6L1"],takedown:["4L15","5L15","6L15"],taunt:["4M","4L1","4L6","5M","5L1","5L6","6L1","6L6","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],confide:["6M"]}}, + burmy:{learnset:{bugbite:["4L15","4T","5L15","5D","5T","6L15"],hiddenpower:["4L20","5L20","6L20","6M"],protect:["4L1","5L1","5D","6L1","6M","6M"],snore:["4T","5D","5T"],stringshot:["4T"],tackle:["4L10","5L10","6L10"],electroweb:["5T"],toxic:["6M"],venoshock:["6M"],sunnyday:["6M"],raindance:["6M"],"return":["6M"],flash:["6M","6M"],attract:["6M"],strugglebug:["6M"],infestation:["6M"]}}, + wormadam:{learnset:{attract:["4M","4L41","5M","5L41","6L41","6M"],bugbite:["4L15","4T","5L15","5T","6L15"],bulletseed:["4M"],captivate:["4M","4L35","5L35","6L35"],confusion:["4L23","5L23","6L23"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],endeavor:["4T","5T"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],flail:["4L38","5L38","6L38"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigadrain:["4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growth:["4L29","5L29","6L29"],hiddenpower:["4M","4L20","5M","5L20","6L20","6M"],hyperbeam:["4M","5M","6M"],leafstorm:["4L47","5L47","6L47"],naturalgift:["4M"],protect:["4M","4L10","5M","5L10","6L10","6M"],psybeam:["4L32","5L32","6L32"],psychic:["4M","4L44","5M","5L44","6L44","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],razorleaf:["4L26","5L26","6L26"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],seedbomb:["4T","5T"],shadowball:["4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["4M","5M","6M"],suckerpunch:["4T"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],synthesis:["4T","5T"],tackle:["4L1","5L1","6L1"],thief:["4M","5M","6M"],toxic:["4M","5M","6M"],uproar:["4T","5T"],venoshock:["5M","6M"],worryseed:["4T","5T"],electroweb:["5T"],infestation:["6M"],confide:["6M"]}}, + wormadamsandy:{learnset:{attract:["4M","4L41","5M","5L41","6L41","6M"],bugbite:["4L15","4T","5L15","5T","6L15"],bulldoze:["5M","6M"],captivate:["4M","4L35","5L35","6L35"],confusion:["4L23","5L23","6L23"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],earthpower:["4T","5T"],earthquake:["4M","5M","6M"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M","6M"],fissure:["4L47","5L47","6L47"],flail:["4L38","5L38","6L38"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],harden:["4L29","5L29","6L29"],hiddenpower:["4M","4L20","5M","5L20","6L20","6M"],hyperbeam:["4M","5M","6M"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","4L10","5M","5L10","6L10","6M"],psybeam:["4L32","5L32","6L32"],psychic:["4M","4L44","5M","5L44","6L44","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockblast:["4L26","5L26","6L26"],rocktomb:["4M","5M","6M"],rollout:["4T"],round:["5M","6M"],safeguard:["4M","5M","6M"],sandstorm:["4M","5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["4M","5M","6M"],suckerpunch:["4T"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],tackle:["4L1","5L1","6L1"],thief:["4M","5M","6M"],toxic:["4M","5M","6M"],uproar:["4T","5T"],venoshock:["5M","6M"],electroweb:["5T"],stealthrock:["5T"],infestation:["6M"],confide:["6M"]}}, + wormadamtrash:{learnset:{attract:["4M","4L41","5M","5L41","6L41","6M"],bugbite:["4L15","4T","5L15","5T","6L15"],captivate:["4M","4L35","5L35","6L35"],confusion:["4L23","5L23","6L23"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M","6M"],flail:["4L38","5L38","6L38"],flash:["4M","5M","6M"],flashcannon:["4M","5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],gunkshot:["4T","5T"],gyroball:["4M","5M","6M"],hiddenpower:["4M","4L20","5M","5L20","6L20","6M"],hyperbeam:["4M","5M","6M"],irondefense:["4T","5T"],ironhead:["4L47","4T","5L47","5T","6L47"],magnetrise:["4T","5T"],metalsound:["4L29","5L29","6L29"],mirrorshot:["4L26","5L26","6L26"],naturalgift:["4M"],protect:["4M","4L10","5M","5L10","6L10","6M"],psybeam:["4L32","5L32","6L32"],psychic:["4M","4L44","5M","5L44","6L44","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["4M","5M","6M"],suckerpunch:["4T"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],tackle:["4L1","5L1","6L1"],thief:["4M","5M","6M"],toxic:["4M","5M","6M"],uproar:["4T","5T"],venoshock:["5M","6M"],electroweb:["5T"],infestation:["6M"],confide:["6M"]}}, + mothim:{learnset:{acrobatics:["5M","6M"],aerialace:["4M","5M","6M"],aircutter:["4T"],airslash:["4L41","5L41","6L41"],attract:["4M","5M","6M"],bugbite:["4L15","4T","5L15","5T","6L15"],bugbuzz:["4L47","5L47","6L47"],camouflage:["4L35","5L35","6L35"],captivate:["4M"],confusion:["4L23","5L23","6L23"],defog:["4M"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigadrain:["4M","5T"],gigaimpact:["4M","5M","6M"],gust:["4L26","5L26","6L26"],hiddenpower:["4M","4L20","5M","5L20","6L20","6M"],hyperbeam:["4M","5M","6M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],poisonpowder:["4L29","5L29","6L29"],protect:["4M","4L10","5M","5L10","6L10","6M"],psybeam:["4L32","5L32","6L32"],psychic:["4M","4L44","5M","5L44","6L44","6M"],psychup:["4M","5M","6M"],quiverdance:["5L50","6L50"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],signalbeam:["4T","5T"],silverwind:["4M","4L38","5L38","6L38"],skillswap:["4M","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],tackle:["4L1","5L1","6L1"],tailwind:["4T","5T"],thief:["4M","5M","6M"],toxic:["4M","5M","6M"],twister:["4T"],uturn:["4M","5M","6M"],venoshock:["5M","6M"],electroweb:["5T"],infestation:["6M"],confide:["6M"]}}, + combee:{learnset:{aircutter:["4T","5D"],bugbite:["4L13","4T","5L13","5T","6L13"],bugbuzz:["5L29","6L29"],endeavor:["4T","5T"],gust:["4L1","5L1","5D","6L1"],mudslap:["4T"],ominouswind:["4T"],snore:["4T","5T"],stringshot:["4T"],sweetscent:["4L1","5L1","6L1"],swift:["4T"],tailwind:["4T","5T","5D"]}}, + vespiquen:{learnset:{acrobatics:["5M","6M"],aerialace:["4M","5M","6M"],aircutter:["4T"],airslash:["5L37","6L37"],attackorder:["4L37","5L37","6L45"],attract:["4M","5M","6M"],bugbite:["4T","5T"],captivate:["4M","4L33","5L33","6L41"],confuseray:["4L7","5L7","6L1"],cut:["4M","5M","6M"],defendorder:["4L13","5L13","6L17"],defog:["4M"],destinybond:["4L43","5L43","6L1","6L53"],doubleteam:["4M","5M","6M"],endeavor:["4T","5T"],endure:["4M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4L9","4T","5L9","6L5"],furyswipes:["4L19","5L19","6L13"],gigaimpact:["4M","5M","6M"],gust:["4L1","5L1","6L1"],healorder:["4L25","5L25","6L29"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["4M","5M","6M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T"],poisonsting:["4L3","5L3","6L1"],powergem:["4L21","5L21","6L25"],protect:["4M","5M","6M"],pursuit:["4L15","5L15","6L9"],quash:["5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roost:["4M","5T","6M"],round:["5M","6M"],secretpower:["4M"],signalbeam:["4T","5T"],silverwind:["4M"],slash:["4L31","5L31","6L21"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","5M","6M"],snore:["4T","5T"],stringshot:["4T"],strugglebug:["5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","4L39","5M","5L39","6L49","6M"],sweetscent:["4L1","5L1","6L1"],swift:["4T"],tailwind:["4T","5T"],thief:["4M","5M","6M"],toxic:["4M","4L27","5M","5L27","6L33","6M"],uturn:["4M","5M","6M"],venoshock:["5M","6M"],xscissor:["4M","5M","6M"],fellstinger:["6L1","6L57"],infestation:["6M"],confide:["6M"]}}, + pachirisu:{learnset:{attract:["4M","5M","6M"],bestow:["5E","6E"],bide:["4L1","5L1","6L1"],bite:["4E","5E","6E"],captivate:["4M"],charge:["5E","6E"],chargebeam:["4M","5M","6M"],charm:["4L9","5L9","6L9"],covet:["4E","5E","5D","5T","6E"],cut:["4M","5M","6M"],defensecurl:["4E","5E","6E"],dig:["4M","5M","6M"],discharge:["4L29","5L41","6L41"],doubleteam:["4M","5M","6M"],echoedvoice:["5M","6M"],electroball:["5L25","6L25"],endure:["4M","4L17","5L17","6L17"],facade:["4M","5M","6M"],faketears:["4E","5E","6E"],flail:["4E","5E","6E"],flash:["4M","5M","6M"],flatter:["4E","5E","6E"],fling:["4M","5M","6M"],followme:["5E","6E"],frustration:["4M","5M","6M"],grassknot:["4M","5M","6M"],growl:["4L1","5L1","6L1"],gunkshot:["4T","5T"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],hyperfang:["5L49","6L49"],irontail:["4M","5E","5T","6E"],lastresort:["4L37","4T","5L45","5T","6L45"],lightscreen:["4M","5M","6M"],magnetrise:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M","6M"],quickattack:["4L5","5L5","5D","6L5"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rollout:["4E","4T","5E","6E"],round:["5M","6M"],secretpower:["4M"],seedbomb:["4T","5T"],shockwave:["4M","5D"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],spark:["4L13","5L13","6L13"],substitute:["4M","5M","6M"],superfang:["4L33","4T","5L37","5T","6L37"],swagger:["4M","5M","6M"],sweetkiss:["4L25","5L29","6L29"],swift:["4L21","4T","5L21","6L21"],tailwhip:["5E","6E"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4T","5T"],thunderwave:["4M","5M","5L33","6L33","6M"],toxic:["4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],voltswitch:["5M","6M"],nuzzle:["6L19"],confide:["6M"]}}, + buizel:{learnset:{agility:["4L28","5L28","6L41"],aquajet:["4L21","5L21","6L24"],aquaring:["5E","6E"],aquatail:["5E","5L55","5T","6L38","6E"],attract:["4M","5M","6M"],batonpass:["4E","5E","6E"],blizzard:["4M","5M","6M"],brickbreak:["4M","5M","6M"],brine:["4M"],bulkup:["4M","5M","6M"],captivate:["4M"],dig:["4M","5M","6M"],dive:["4T","5M"],doublehit:["5L27","6L27"],doubleslap:["4E","5E","6E"],doubleteam:["4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M"],facade:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],furycutter:["4E","5E","6E"],furyswipes:["4E","5E","6E"],growl:["4L1","5L1","6L4"],hail:["4M","5M","6M"],headbutt:["4E","4T","5E","6E"],hiddenpower:["4M","5M","6M"],hydropump:["5L45","6L45"],icebeam:["4M","5M","6M"],icepunch:["4T","5T"],icywind:["4T","5T"],irontail:["4M","5T"],mefirst:["5E","6E"],mudslap:["4E","4T","5E","6E"],naturalgift:["4M"],odorsleuth:["4E","5E","6E"],protect:["4M","5M","6M"],pursuit:["4L10","5L10","6L18"],quickattack:["4L3","5L3","6L11"],raindance:["4M","5M","6M"],razorwind:["4L45","5L45","6L35"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["4M"],slash:["4E","5E","5D","6E"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],sonicboom:["4L1","5L1","6L1"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4L15","4T","5L15","6L21"],switcheroo:["5E","6E"],tailslap:["5E","6E"],toxic:["4M","5M","6M"],waterfall:["4M","5M","6M"],watergun:["4L6","5L6","5D","6L15"],waterpulse:["4M","5D"],watersport:["4L1","5L1","5D","6L7"],whirlpool:["4L36","4M","5L36","6L31"],poweruppunch:["6M"],confide:["6M"]}}, + floatzel:{learnset:{agility:["4L29","5L29","6L51"],aquajet:["4L21","5L21","6L24"],aquatail:["4T","5L62","5T","6L46"],attract:["4M","5M","6M"],blizzard:["4M","5M","6M"],brickbreak:["4M","5M","6M"],brine:["4M"],bulkup:["4M","5M","6M"],captivate:["4M"],crunch:["4L26","5L26","6L1"],dig:["4M","5M","6M"],dive:["4T","5M"],doublehit:["5L29","6L29"],doubleteam:["4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M"],facade:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],growl:["4L1","5L1","6L1","6L4"],hail:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hydropump:["5L57","6L57"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],icefang:["4L1","5L1","6L1"],icepunch:["4T","5T"],icywind:["4T","5T"],irontail:["4M","5T"],mudslap:["4T"],naturalgift:["4M"],payback:["4M","5M","6M"],protect:["4M","5M","6M"],pursuit:["4L10","5L10","6L18"],quickattack:["4L1","4L3","5L1","5L3","6L1","6L11"],raindance:["4M","5M","6M"],razorwind:["4L50","5L50","6L41"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["4M"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],sonicboom:["4L1","5L1","6L1"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4L15","4T","5L15","6L21"],taunt:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],waterfall:["4M","5M","6M"],watergun:["4L6","5L6","6L15"],waterpulse:["4M"],watersport:["4L1","5L1","6L1","6L7"],whirlpool:["4L39","4M","5L39","6L35"],lowkick:["4T","5T"],poweruppunch:["6M"],confide:["6M"]}}, + cherubi:{learnset:{aromatherapy:["4E","5E","6E"],attract:["4M","5M","6M"],bulletseed:["4M","5D"],captivate:["4M"],defensecurl:["5E","6E"],doubleteam:["4M","5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigadrain:["4M","5T"],grassknot:["4M","5M","6M"],grasswhistle:["4E","5E","6E"],growth:["4L7","5L7","6L0"],healingwish:["5E","6E"],healpulse:["5E","5D","6E"],helpinghand:["4L13","4T","5L13","5T","6L0"],hiddenpower:["4M","5M","6M"],leechseed:["4L10","5L10","5D","6L0"],luckychant:["4L40","5L40","6L0"],magicalleaf:["4L19","5L19","6L0"],morningsun:["5L1","6L0"],naturalgift:["4M","5E","6E"],naturepower:["4E","5E","6E"],protect:["4M","5M","6M"],razorleaf:["4E","5E","6E"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rollout:["4T","5E","6E"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],seedbomb:["4T","5E","5T","6E"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","4L37","5M","5L37","6L0","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","4L22","5M","5L22","6L0","6M"],swagger:["4M","5M","6M"],sweetscent:["4E","5E","6E"],swordsdance:["4M","5M","6M"],synthesis:["4T","5T"],tackle:["4L1","5L1","6L0"],takedown:["4L31","5L31","6L0"],tickle:["4E","5E","6E"],toxic:["4M","5M","6M"],weatherball:["4E","5E","6E"],worryseed:["4L28","4T","5L28","5T","6L0"]}}, + cherrim:{learnset:{attract:["4M","5M","6M"],bulletseed:["4M"],captivate:["4M"],doubleteam:["4M","5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigadrain:["4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growth:["4L1","4L7","5L1","5L7","6L0","6L0"],helpinghand:["4L13","4T","5L13","5T","6L0"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],leechseed:["4L10","5L10","6L0"],luckychant:["4L48","5L48","6L0"],magicalleaf:["4L19","5L19","6L0"],morningsun:["5L1","6L0"],naturalgift:["4M"],petaldance:["4L25","5L25","6L0"],protect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rollout:["4T"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],seedbomb:["4T","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","4L43","5M","5L43","6L0","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","4L22","5M","5L22","6L0","6M"],swagger:["4M","5M","6M"],swordsdance:["4M","5M","6M"],synthesis:["4T","5T"],tackle:["4L1","5L1","6L0"],takedown:["4L35","5L35","6L0"],toxic:["4M","5M","6M"],worryseed:["4L30","4T","5L30","5T","6L0"]}}, + shellos:{learnset:{amnesia:["4E","5E","6E"],ancientpower:["4T"],attract:["4M","5M","6M"],blizzard:["4M","5M","6M"],bodyslam:["4L29","5L29","6L29"],brine:["4M","5E","6E"],captivate:["4M"],clearsmog:["5E","6E"],counter:["4E","5E","6E"],curse:["4E","5E","6E"],dive:["4T","5M"],doubleteam:["4M","5M","6M"],earthpower:["4T","5T"],endure:["4M"],facade:["4M","5M","6M"],fissure:["4E","5E","6E"],frustration:["4M","5M","6M"],hail:["4M","5M","6M"],harden:["4L4","5L4","6L4"],headbutt:["4T"],hiddenpower:["4M","4L16","5M","5L16","6L16","6M"],icebeam:["4M","5M","6M"],icywind:["4T","5T"],memento:["4E","5E","6E"],mirrorcoat:["4E","5E","6E"],mist:["5E","6E"],mudbomb:["4L11","5L11","6L11"],muddywater:["4L37","5L37","6L37"],mudslap:["4L1","5L1","5D","6L1"],mudsport:["4L2","5L2","6L2"],naturalgift:["4M"],painsplit:["4T","5T"],protect:["4M","5M","6M"],raindance:["4M","4L22","5M","5L22","6L22","6M"],recover:["4L46","5L46","6L46"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],scald:["5M","6M"],secretpower:["4M","5D"],sleeptalk:["4M","5T","6M"],sludge:["4E","5E","6E"],snore:["4T","5T"],spitup:["4E","5E","6E"],stockpile:["4E","5E","6E"],stringshot:["4T"],substitute:["4M","5M","6M"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swallow:["4E","5E","6E"],toxic:["4M","5M","6M"],trumpcard:["4E","5E","6E"],waterpulse:["4M","4L7","5L7","6L7"],whirlpool:["4M"],yawn:["4E","5E","5D","6E"],infestation:["6M"],confide:["6M"],acidarmor:["6E"]}}, + gastrodon:{learnset:{ancientpower:["4T"],attract:["4M","5M","6M"],blizzard:["4M","5M","6M"],block:["4T","5T"],bodyslam:["4L29","5L29","6L29"],brine:["4M"],bulldoze:["5M","6M"],captivate:["4M"],dig:["4M","5M","6M"],dive:["4T","5M"],doubleteam:["4M","5M","6M"],earthpower:["4T","5T"],earthquake:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],hail:["4M","5M","6M"],harden:["4L1","4L4","5L1","5L4","6L1","6L4"],headbutt:["4T"],hiddenpower:["4M","4L16","5M","5L16","6L16","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],icywind:["4T","5T"],mudbomb:["4L11","5L11","6L11"],muddywater:["4L41","5L41","6L41"],mudslap:["4L1","4T","5L1","6L1"],mudsport:["4L1","4L2","5L1","5L2","6L1","6L2"],naturalgift:["4M"],painsplit:["4T","5T"],protect:["4M","5M","6M"],raindance:["4M","4L22","5M","5L22","6L22","6M"],recover:["4L54","5L54","6L54"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandstorm:["4M","5M","6M"],scald:["5M","6M"],secretpower:["4M"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","5M","6M"],sludgewave:["5M","6M"],snore:["4T","5T"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],stringshot:["4T"],substitute:["4M","5M","6M"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],toxic:["4M","5M","6M"],waterfall:["4M","5M","6M"],waterpulse:["4M","4L1","4L7","5L1","5L7","6L1","6L7"],whirlpool:["4M"],infestation:["6M"],confide:["6M"]}}, + drifloon:{learnset:{acrobatics:["5M","6M"],aircutter:["4T"],amnesia:["5L40","6L40"],astonish:["4L6","5L6","6L4"],attract:["4M","5M","6M"],batonpass:["4L33","5L38","6L44"],bodyslam:["4E","5E","6E"],calmmind:["4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],clearsmog:["5E","6E"],constrict:["4L1","5L1","6L1"],cut:["4M","5M","6M"],defog:["4M","5E","6E"],destinybond:["4E","5E","6E"],disable:["4E","5E","6E"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],embargo:["4M","5M","6M"],endure:["4M"],explosion:["4M","4L43","5M","5L46","6L50","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],focusenergy:["4L14","5L14","6L13"],frustration:["4M","5M","6M"],gust:["4L11","5L11","6L8"],gyroball:["4M","5M","6M"],haze:["4E","5E","6E"],hex:["5L22","6L27"],hiddenpower:["4M","5M","6M"],hypnosis:["4E","5E","5D","6E"],icywind:["4T","5T"],knockoff:["4T","5T"],magiccoat:["4T","5T"],memento:["4E","5E","6E"],minimize:["4L1","5L1","5D","6L1"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4L30","4T","5L33","6L20"],painsplit:["4T","5T"],payback:["4M","4L17","5M","5L17","6L16","6M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],recycle:["4M","5T"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rollout:["4T"],round:["5M","6M"],secretpower:["4M"],shadowball:["4M","4L38","5M","5L43","6L36","6M"],shockwave:["4M"],silverwind:["4M"],skillswap:["4M","5D","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],spite:["4T","5T"],spitup:["4L27","5L30","6L32"],stockpile:["4L22","5L27","6L25"],substitute:["4M","5M","6M"],suckerpunch:["4T"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swallow:["4L27","5L30","6L32"],swift:["4T"],tailwind:["4T","5T"],telekinesis:["5M"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],weatherball:["4E","5E","6E"],willowisp:["4M","5M","6M"],bind:["5T"],confide:["6M"]}}, + drifblim:{learnset:{acrobatics:["5M","6M"],aircutter:["4T"],amnesia:["5L46","6L46"],astonish:["4L1","4L6","5L1","5L6","6L1","6L4"],attract:["4M","5M","6M"],batonpass:["4L37","5L44","6L52"],calmmind:["4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],constrict:["4L1","5L1","6L1"],cut:["4M","5M","6M"],defog:["4M"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],embargo:["4M","5M","6M"],endure:["4M"],explosion:["4M","4L51","5M","5L56","6L60","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],fly:["4M","5M","6M"],focusenergy:["4L14","5L14","6L13"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],gust:["4L1","4L11","5L1","5L11","6L1","6L8"],gyroball:["4M","5M","6M"],hex:["5L22","6L27"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icywind:["4T","5T"],knockoff:["4T","5T"],magiccoat:["4T","5T"],minimize:["4L1","5L1","6L1"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4L32","4T","5L37","6L20"],painsplit:["4T","5T"],payback:["4M","4L17","5M","5L17","6L16","6M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],recycle:["4M","5T"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rollout:["4T"],round:["5M","6M"],secretpower:["4M"],shadowball:["4M","4L44","5M","5L51","6L40","6M"],shockwave:["4M"],silverwind:["4M"],skillswap:["4M","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],spite:["4T","5T"],spitup:["4L27","5L32","6L34"],stockpile:["4L22","5L27","6L25"],substitute:["4M","5M","6M"],suckerpunch:["4T"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swallow:["4L27","5L32","6L34"],swift:["4T"],tailwind:["4T","5T"],telekinesis:["5M"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],willowisp:["4M","5M","6M"],bind:["5T"],phantomforce:["6L1","6L65"],confide:["6M"]}}, + buneary:{learnset:{afteryou:["5L43","5T","6L0"],agility:["4L33","5L33","6L0"],attract:["4E","4M","5M","6M"],batonpass:["4L26","5L26","6L0"],bounce:["4L46","4T","5L56","5T","6L0"],captivate:["4M"],chargebeam:["4M","5M","6M"],charm:["4L43","5L46","6L0"],circlethrow:["5E","6E"],copycat:["5E","6E"],cut:["4M","5M","6M"],defensecurl:["4L1","5L1","6L0"],dig:["4M","5M","6M"],dizzypunch:["4L36","5L36","6L0"],doublehit:["4E","5E","6E"],doubleteam:["4M","5M","6M"],drainpunch:["4M","5D","5T"],encore:["4E","5E","6E"],endeavor:["4T","5T"],endure:["4M","4L6","5L6","6L0"],entrainment:["5L53","6L0"],facade:["4M","5M","6M"],fakeout:["4E","5E","5D","6E"],faketears:["4E","5E","6E"],firepunch:["4E","5E","5T","6E"],flail:["4E","5E","6E"],fling:["4M","5M","6M"],focuspunch:["4M","5E","6E"],foresight:["4L1","5L1","5D","6L0"],frustration:["4M","4L13","5M","5L13","6L0","6M"],grassknot:["4M","5M","6M"],headbutt:["4T"],healbell:["4T","5T"],healingwish:["4L53","5L63","6L0"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],icebeam:["4M","5M","6M"],icepunch:["4E","5E","5T","6E"],irontail:["4M","5T"],jumpkick:["4L23","5L23","6L0"],lastresort:["4T","5T"],lowkick:["4E","4T","5E","5T","6E"],magiccoat:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],pound:["4L1","5L1","6L0"],protect:["4M","5M","6M"],quickattack:["4L16","5L16","6L0"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],rocksmash:["4M","5M","6M"],round:["5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],skyuppercut:["4E","5E","6E"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],splash:["4L1","5L1","6L0"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],sweetkiss:["4E","5E","6E"],swift:["4T"],switcheroo:["4E","5E","6E"],thunderbolt:["4M","5M","6M"],thunderpunch:["4E","5E","5T","6E"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],uproar:["4T","5T"],waterpulse:["4M"],workup:["5M"],covet:["5T"],hypervoice:["5T"]}}, + lopunny:{learnset:{afteryou:["5L43","5T","6L0"],agility:["4L33","5L33","6L0"],attract:["4M","5M","6M"],batonpass:["4L26","5L26","6L0"],blizzard:["4M","5M","6M"],bounce:["4L46","4T","5L56","5T","6L0"],captivate:["4M"],chargebeam:["4M","5M","6M"],charm:["4L43","5L46","6L0"],cut:["4M","5M","6M"],defensecurl:["4L1","5L1","6L0"],dig:["4M","5M","6M"],dizzypunch:["4L36","5L36","6L0"],doubleteam:["4M","5M","6M"],drainpunch:["4M","5T"],endeavor:["4T","5T"],endure:["4M","4L6","5L6","6L0"],entrainment:["5L53","6L0"],facade:["4M","5M","6M"],firepunch:["4T","5T"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],foresight:["4L1","5L1","6L0"],frustration:["4M","5M","6M"],furycutter:["4T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["4T"],healbell:["4T","5T"],healingwish:["4L53","5L63","6L0"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],icepunch:["4T","5T"],irontail:["4M","5T"],jumpkick:["4L23","5L23","6L0"],lastresort:["4T","5T"],lowkick:["4T","5T"],lowsweep:["5M","6M"],magiccoat:["4L1","4T","5L1","5T","6L0"],mirrorcoat:["4L1","5L1","6L0"],mudslap:["4T"],naturalgift:["4M"],pound:["4L1","5L1","6L0"],protect:["4M","5M","6M"],quickattack:["4L16","5L16","6L0"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","4L13","5M","5L13","6L0","6M"],rocksmash:["4M","5M","6M"],round:["5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],splash:["4L1","5L1","6L0"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4T","5T"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],uproar:["4T","5T"],waterpulse:["4M"],workup:["5M"],covet:["5T"],hypervoice:["5T"]}}, + glameow:{learnset:{aerialace:["4M","5M","6M"],assist:["4L29","5L29","6L0"],assurance:["4E","5E","5D","6E"],attract:["4M","4L45","5M","5L44","6L0","6M"],bite:["4E","5E","6E"],captivate:["4M","4L32","5L32","6L0"],charm:["4L25","5L25","6L0"],cut:["4M","5M","6M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M"],facade:["4M","5M","6M"],feintattack:["4L17","5L17","6L0"],fakeout:["4L1","5L1","5D","6L0"],faketears:["4E","5E","6E"],flail:["4E","5E","6E"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],furyswipes:["4L20","5L20","6L0"],growl:["4L8","5L8","6L0"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","5L48","6L0","6M"],hypnosis:["4L13","5L13","6L0"],irontail:["4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5E","5T","6E"],mudslap:["4T"],naturalgift:["4M"],payback:["4M","5M","6M"],protect:["4M","5M","6M"],psychup:["4M","5M","6M"],quickattack:["4E","5E","6E"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],sandattack:["4E","5E","6E"],scratch:["4L5","5L5","6L0"],secretpower:["4M","5D"],shadowball:["4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["4M"],slash:["4L37","5L37","6L0"],sleeptalk:["4M","5T","6M"],snatch:["4M","5E","5T","6E"],snore:["4T","5T"],substitute:["4M","5M","6M"],suckerpunch:["4L41","4T","5L41","6L0"],sunnyday:["4M","5M","6M"],superfang:["4T","5T"],swagger:["4M","5M","6M"],swift:["4T"],tailwhip:["4E","5E","6E"],taunt:["4M","5M","6M"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],uturn:["4M","5M","6M"],wakeupslap:["5E","6E"],waterpulse:["4M"],workup:["5M"],covet:["5T"],foulplay:["5T"],hypervoice:["5T"]}}, + purugly:{learnset:{aerialace:["4M","5M","6M"],assist:["4L29","5L29","6L0"],attract:["4M","4L53","5M","5L52","6L0","6M"],bodyslam:["4L45","5L45","6L0"],bulldoze:["5M","6M"],captivate:["4M","4L32","5L32","6L0"],charm:["4L25","5L25","6L0"],cut:["4M","5M","6M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M"],facade:["4M","5M","6M"],feintattack:["4L17","5L17","6L0"],fakeout:["4L1","5L1","6L0"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],furyswipes:["4L20","5L20","6L0"],gigaimpact:["4M","5M","6M"],growl:["4L1","4L8","5L1","5L8","6L0","6L0"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","5L60","6L0","6M"],hyperbeam:["4M","5M","6M"],hypnosis:["4L13","5L13","6L0"],irontail:["4M","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],payback:["4M","5M","6M"],protect:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rollout:["4T"],round:["5M","6M"],scratch:["4L1","4L5","5L1","5L5","6L0","6L0"],secretpower:["4M"],shadowball:["4M","5M","6M"],shadowclaw:["4M","5M","6M"],shockwave:["4M"],slash:["4L37","5L37","6L0"],sleeptalk:["4M","5T","6M"],snatch:["4M","5T"],snore:["4T","5T"],substitute:["4M","5M","6M"],suckerpunch:["4T"],sunnyday:["4M","5M","6M"],superfang:["4T","5T"],swagger:["4M","4L38","5M","5L38","6L0","6M"],swift:["4T"],taunt:["4M","5M","6M"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],uturn:["4M","5M","6M"],waterpulse:["4M"],workup:["5M"],covet:["5T"],foulplay:["5T"],hypervoice:["5T"]}}, + stunky:{learnset:{acidspray:["5L32","6L32"],astonish:["4E","5E","6E"],attract:["4M","5M","6M"],captivate:["4M"],crunch:["4E","5E","6E"],cut:["4M","5M","6M"],darkpulse:["4M","5T","6M"],defog:["4M"],dig:["4M","5M","6M"],doubleedge:["4E","5E","6E"],doubleteam:["4M","5M","6M"],endure:["4M"],explosion:["4M","4L44","5M","5L49","6L49","6M"],facade:["4M","5M","6M"],feint:["4L18","5L18","6L18"],fireblast:["4M","5M","6M"],flameburst:["5E","6E"],flamethrower:["4M","5M","6M"],focusenergy:["4L1","5L1","6L1"],foulplay:["5E","5D","5T","6E"],frustration:["4M","5M","6M"],furycutter:["4T"],furyswipes:["4L11","4L10","5L10","6L10"],haze:["4E","5E","6E"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],incinerate:["5M","6M"],irontail:["4M","5E","5T","6E"],leer:["4E","5E","6E"],memento:["4L37","4L38","5L43","6L43"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4L31","4L32","5L37","6L37"],payback:["4M","5M","6M"],poisongas:["4L4","5L4","6L4"],protect:["4M","5M","6M"],punishment:["4E","5E","6E"],pursuit:["4E","5E","6E"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rocksmash:["4M","5M","6M"],round:["5M","6M"],scaryface:["4E","5E","6E"],scratch:["4L1","5L1","6L1"],screech:["4L7","5L7","5D","6L7"],secretpower:["4M"],shadowball:["4M","5M","6M"],shadowclaw:["4M","5M","6M"],slash:["4L25","4L22","5L22","6L22"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","5M","6M"],smog:["4E","5E","6E"],smokescreen:["4L15","4L14","5L14","6L14"],snarl:["5M","6M"],snatch:["4M","5T"],snore:["4T","5T"],substitute:["4M","5M","6M"],suckerpunch:["4T","5D"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],taunt:["4M","5M","6M"],thief:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","4L20","4L27","5M","5L27","6L27","6M"],venoshock:["5M","6M"],belch:["6L46"],confide:["6M"],playrough:["6E"]}}, + skuntank:{learnset:{acidspray:["5L32","6L32"],attract:["4M","5M","6M"],captivate:["4M"],cut:["4M","5M","6M"],darkpulse:["4M","5T","6M"],defog:["4M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],endure:["4M"],explosion:["4M","4L52","5M","5L61","6L61","6M"],facade:["4M","5M","6M"],feint:["4L18","5L18","6L18"],fireblast:["4M","5M","6M"],flamethrower:["4M","4L34","5M","5L34","6L34","6M"],focusenergy:["4L1","5L1","6L1"],frustration:["4M","5M","6M"],furycutter:["4T"],furyswipes:["4L11","4L10","5L10","6L10"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["4M","5M","6M"],incinerate:["5M","6M"],irontail:["4M","5T"],memento:["4L41","4L42","5L51","6L51"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4L31","4L32","5L41","6L41"],payback:["4M","5M","6M"],poisongas:["4L1","4L4","5L1","5L4","6L1","6L4"],poisonjab:["4M","5M","6M"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rocksmash:["4M","5M","6M"],round:["5M","6M"],scratch:["4L1","5L1","6L1"],screech:["4L7","5L7","6L7"],secretpower:["4M"],shadowball:["4M","5M","6M"],shadowclaw:["4M","5M","6M"],slash:["4L25","4L22","5L22","6L22"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","5M","6M"],smokescreen:["4L15","4L14","5L14","6L14"],snarl:["5M","6M"],snatch:["4M","5T"],snore:["4T","5T"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],suckerpunch:["4T"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],taunt:["4M","5M","6M"],thief:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","4L20","4L27","5M","5L27","6L27","6M"],venoshock:["5M","6M"],foulplay:["5T"],belch:["6L56"],confide:["6M"]}}, + bronzor:{learnset:{ancientpower:["4T"],bulldoze:["5M","6M"],calmmind:["4M","5M","6M"],chargebeam:["4M","5M","6M"],confuseray:["4L14","5L14","6L11"],confusion:["4L1","5L1","6L1"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],earthquake:["4M","5M","6M"],endure:["4M"],extrasensory:["4L19","5L19","6L39"],facade:["4M","5M","6M"],feintattack:["4L41","5L41","6L21"],flash:["4M","5M","6M"],flashcannon:["4M","5M","6M"],frustration:["4M","5M","6M"],futuresight:["4L37","5L37","6L29"],grassknot:["4M","5M","6M"],gravity:["4T","5D","5T"],gyroball:["4M","4L35","5M","5L35","6L35","6M"],healblock:["4L52","5L52","6L45"],heavyslam:["5L54","6L49"],hiddenpower:["4M","5M","6M"],hypnosis:["4L7","5L7","5D","6L5"],imprison:["4L12","5L12","6L9"],irondefense:["4L26","5L26","5T","6L19"],lightscreen:["4M","5M","6M"],metalsound:["5L31","6L31"],naturalgift:["4M"],payback:["4M","4L49","5M","5L49","6L41","6M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],psyshock:["5M","6M"],psywave:["5L15","6L15"],raindance:["4M","5M","6M"],recycle:["4M","5T"],reflect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["4T"],round:["5M","6M"],safeguard:["4M","4L30","5M","5L30","6L25","6M"],sandstorm:["4M","5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["4M","5D","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],stealthrock:["4M","5T"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],tackle:["4L1","5L1","6L1"],telekinesis:["5M"],toxic:["4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],wonderroom:["5T"],confide:["6M"]}}, + bronzong:{learnset:{ancientpower:["4T"],block:["4L33","4T","5L33","5T","6L33"],bulldoze:["5M","6M"],calmmind:["4M","5M","6M"],chargebeam:["4M","5M","6M"],confuseray:["4L14","5L14","6L11"],confusion:["4L1","5L1","6L1"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],earthquake:["4M","5M","6M"],endure:["4M"],explosion:["4M","5M","6M"],extrasensory:["4L19","5L19","6L42"],facade:["4M","5M","6M"],feintattack:["4L50","5L50","6L21"],flash:["4M","5M","6M"],flashcannon:["4M","5M","6M"],frustration:["4M","5M","6M"],futuresight:["4L43","5L43","6L29"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],gyroball:["4M","4L38","5M","5L38","6L36","6M"],healblock:["4L67","5L67","6L52"],heavyslam:["5L72","6L58"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],hypnosis:["4L1","4L7","5L1","5L7","6L1","6L5"],imprison:["4L1","4L12","5L1","5L12","6L1","6L9"],irondefense:["4L26","5L26","5T","6L19"],ironhead:["4T","5T"],lightscreen:["4M","5M","6M"],metalsound:["5L31","6L31"],naturalgift:["4M"],payback:["4M","4L61","5M","5L61","6L46","6M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],psyshock:["5M","6M"],psywave:["5L15","6L15"],raindance:["4M","4L1","5M","5L1","6L1","6M"],recycle:["4M","5T"],reflect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockpolish:["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],rollout:["4T"],round:["5M","6M"],safeguard:["4M","4L30","5M","5L30","6L25","6M"],sandstorm:["4M","5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],stealthrock:["4M","5T"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","4L1","5M","5L1","6L1","6M"],swagger:["4M","5M","6M"],tackle:["4L1","5L1","6L1"],telekinesis:["5M"],toxic:["4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],zenheadbutt:["4T","5T"],wonderroom:["5T"],confide:["6M"]}}, + chatot:{learnset:{aerialace:["4M","5M","6M"],agility:["4E","5E","6E"],aircutter:["5E","6E"],attract:["4M","5M","6M"],captivate:["4M"],chatter:["4L21","5L21","4S0","6L1","6L21"],defog:["4M","5E","6E"],doubleteam:["4M","5M","6M"],echoedvoice:["5M","5L37","6L37","6M"],encore:["4E","5E","6E"],endure:["4M"],facade:["4M","5M","6M"],featherdance:["4L41","5L53","6L50"],fly:["4M","5M","6M"],frustration:["4M","5M","6M"],furyattack:["4L17","5L17","4S0","6L17"],growl:["4L5","5L5","6L5"],heatwave:["4T","5T"],hiddenpower:["4M","5M","6M"],hypervoice:["4L45","5L57","5T","6L1","6L57"],mimic:["4L29","5L33","6L33"],mirrormove:["4L9","5L9","5D","4S0","6L9"],mudslap:["4T"],nastyplot:["4E","5E","5D","6E"],naturalgift:["4M"],nightshade:["4E","5E","6E"],ominouswind:["4T"],peck:["4L1","5L1","6L1"],pluck:["4M","5M"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roleplay:["4T","5D","5T"],roost:["4M","4L33","5L41","5T","6L41","6M"],round:["5M","5L29","6L29","6M"],secretpower:["4M"],sing:["4L13","5L13","6L13"],skyattack:["4T","5T"],sleeptalk:["4M","5E","5T","6M","6E"],snore:["4T","5T"],steelwing:["4M","5E","6M","6E"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],supersonic:["4E","5E","6E"],swagger:["4M","5M","6M"],swift:["4T"],synchronoise:["5L49","6L49"],tailwind:["4T","5T"],taunt:["4M","4L25","5M","5L25","4S0","6L1","6L25","6M"],thief:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],twister:["4T"],uproar:["4L37","4T","5L45","5T","6L45"],uturn:["4M","5M","6M"],workup:["5M"],confide:["6L1","6M"],boomburst:["6E"]}}, + spiritomb:{learnset:{attract:["4M","5M","6M"],calmmind:["4M","5M","6M"],captivate:["4M","5E","6E"],confuseray:["4L1","5L1","6L1"],curse:["4L1","5L1","6L1"],darkpulse:["4M","4L49","5L49","5T","5S0","6L49","6M"],destinybond:["4E","5E","6E"],doubleteam:["4M","5M","6M"],dreameater:["4M","4L19","5M","5L19","6L19","6M"],embargo:["4M","5M","5S0","6M"],endure:["4M"],facade:["4M","5M","6M"],feintattack:["4L7","5L7","6L7"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],grudge:["4E","5E","6E"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],hypnosis:["4L13","5L13","6L13"],icywind:["4T","5D","5T"],imprison:["4E","5E","6E"],memento:["4L43","5L43","6L43"],nastyplot:["4L37","5L37","6L37"],naturalgift:["4M"],nightmare:["5E","6E"],ominouswind:["4L25","4T","5L25","6L25"],painsplit:["4E","4T","5E","5D","5T","6E"],protect:["4M","5M","6M"],psychic:["4M","5M","5S0","6M"],psychup:["4M","5M","6M"],pursuit:["4L1","5L1","6L1"],quash:["5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shadowsneak:["4E","4L1","5E","5L1","6L1","6E"],shockwave:["4M"],silverwind:["4M","5S0"],sleeptalk:["4M","5T","6M"],smokescreen:["4E","5E","6E"],snarl:["5M","6M"],snatch:["4M","5T"],snore:["4T","5T"],spite:["4L1","4T","5L1","5D","5T","6L1"],substitute:["4M","5M","6M"],suckerpunch:["4L31","4T","5L31","6L31"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],taunt:["4M","5M","6M"],telekinesis:["5M"],thief:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],uproar:["4T","5T"],waterpulse:["4M"],willowisp:["4M","5M","6M"],foulplay:["5T"],wonderroom:["5T"],infestation:["6M"],confide:["6M"]}}, + gible:{learnset:{aerialace:["4M","5M","6M"],attract:["4M","5M","6M"],bodyslam:["4E","5E","6E"],bulldoze:["5M","6M"],captivate:["4M"],cut:["4M","5M","6M"],dig:["4M","4L31","5M","5L31","6L31","6M"],doubleedge:["4E","5E","6E"],doubleteam:["4M","5M","6M"],dracometeor:["4T","5T","6T"],dragonbreath:["4E","5E","6E"],dragonclaw:["4M","4L27","5M","5L27","6L27","6M"],dragonpulse:["4M","5T"],dragonrage:["4L7","5L7","5D","6L7"],dragonrush:["4L37","5L37","6L37"],earthpower:["4T","5T"],earthquake:["4M","5M","6M"],endure:["4M","5D"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],flamethrower:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],incinerate:["5M","6M"],ironhead:["4E","4T","5E","5T","6E"],irontail:["5E","5T","6E"],metalclaw:["4E","5E","6E"],mudshot:["4E","5E","6E"],mudslap:["4T"],naturalgift:["4M"],outrage:["4E","4T","5E","5T","5D","6E"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockclimb:["4M","5E","6E"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandattack:["4L3","5L3","6L3"],sandstorm:["4M","4L13","5M","5L13","6L13","6M"],sandtomb:["4E","4L19","5E","5L19","6L19","6E"],scaryface:["4E","5E","6E"],secretpower:["4M"],shadowclaw:["4M","5M","6M"],slash:["4L25","5L25","6L25"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],tackle:["4L1","5L1","6L1"],takedown:["4L15","5L15","6L15"],thrash:["4E","5E","6E"],toxic:["4M","5M","6M"],twister:["4E","4T","5E","6E"],confide:["6M"]}}, + gabite:{learnset:{aerialace:["4M","5M","6M"],attract:["4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],cut:["4M","5M","6M"],dig:["4M","4L40","5M","5L40","6L40","6M"],doubleteam:["4M","5M","6M"],dracometeor:["4T","5T","6T"],dragonclaw:["4M","4L33","5M","5L33","6L33","6M"],dragonpulse:["4M","5T"],dragonrage:["4L7","5L7","6L7"],dragonrush:["4L49","5L49","6L49"],dualchop:["5L24","5T","6L24"],earthpower:["4T","5T"],earthquake:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],flamethrower:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],incinerate:["5M","6M"],ironhead:["4T","5T"],irontail:["4M","5T"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandattack:["4L1","4L3","5L1","5L3","6L1","6L3"],sandstorm:["4M","4L13","5M","5L13","6L13","6M"],sandtomb:["4L19","5L19","6L19"],secretpower:["4M"],shadowclaw:["4M","5M","6M"],slash:["4L28","5L28","6L28"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],tackle:["4L1","5L1","6L1"],takedown:["4L15","5L15","6L15"],toxic:["4M","5M","6M"],twister:["4T"],confide:["6M"]}}, + garchomp:{learnset:{aerialace:["4M","5M","6M"],aquatail:["4T","5T"],attract:["4M","5M","6M"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],crunch:["4L48","5L48","5S1","6L48"],cut:["4M","5M","6M"],dig:["4M","4L40","5M","5L40","5S1","6L40","6M"],doubleteam:["4M","5M","6M"],dracometeor:["4T","5T","6T"],dragonclaw:["4M","4L33","5M","5L33","5S1","6L33","6M"],dragonpulse:["4M","5T"],dragonrage:["4L1","4L7","5L1","5L7","6L1","6L7"],dragonrush:["4L55","5L55","6L55"],dragontail:["5M","6M"],dualchop:["5L24","5T","6L24"],earthpower:["4T","5T"],earthquake:["4M","5M","5S0","6M"],endure:["4M"],facade:["4M","5M","6M"],falseswipe:["4M","5M","6M"],fireblast:["4M","5M","6M"],firefang:["4L1","5L1","6L1"],flamethrower:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["4M","5M","6M"],incinerate:["5M","6M"],ironhead:["4T","5T"],irontail:["4M","5T"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T","5S0","5S1"],poisonjab:["4M","5M","6M"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandattack:["4L1","4L3","5L1","5L3","6L1","6L3"],sandstorm:["4M","4L1","4L13","5M","5L1","5L13","6L1","6L13","6M"],sandtomb:["4L19","5L19","6L19"],secretpower:["4M"],shadowclaw:["4M","5M","6M"],slash:["4L28","5L28","6L28"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","5S0","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],swordsdance:["4M","5M","5S0","6M"],tackle:["4L1","5L1","6L1"],takedown:["4L15","5L15","6L15"],toxic:["4M","5M","6M"],twister:["4T"],whirlpool:["4M"],confide:["6M"]}}, + riolu:{learnset:{agility:["4E","5E","6E"],attract:["4M","5M","6M"],aurasphere:["4S0"],bite:["4E","5E","6E"],blazekick:["4E","5E","6E"],brickbreak:["4M","5M","6M"],bulkup:["4M","5M","6M"],bulldoze:["5M","6M"],bulletpunch:["4E","5E","4S0","5D","6E"],captivate:["4M"],circlethrow:["5E","6E"],copycat:["4L29","5L29","6L19"],counter:["4L6","5L6","6L6"],crosschop:["4E","5E","6E"],crunch:["4E","5E","6E"],detect:["4E","5E","6E"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],drainpunch:["4M","4S0","5T"],earthquake:["4M","5M","6M"],endure:["4M","4L1","5L1","5D","6L1"],facade:["4M","5M","6M"],feint:["4L15","5L15","6L11"],finalgambit:["5L55","6L50"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M","5D"],followme:["4E","5E","6E"],forcepalm:["4L11","5L11","6L15"],foresight:["4L1","5L1","6L1"],frustration:["4M","5M","6M"],furycutter:["4T"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],highjumpkick:["4E","5E","6E"],icepunch:["4T","5T"],irondefense:["4E","4T","5E","5T","6E"],irontail:["4M","5T"],lowkick:["4E","4T","5E","5T","6E"],lowsweep:["5M","6M"],magnetrise:["4T","5T"],mindreader:["4E","5E","6E"],mudslap:["4T"],nastyplot:["5L47","6L47"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["4M","5M","6M"],quickattack:["4L1","5L1","6L1"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],reversal:["4L19","5L19","6L29"],roar:["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],screech:["4L24","5L24","6L24"],secretpower:["4M"],shadowclaw:["4M","5M","4S0","6M"],skyuppercut:["4E","5E","6E"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],swordsdance:["4M","5M","6M"],thunderpunch:["4T","5T"],toxic:["4M","5M","6M"],vacuumwave:["4E","4T","5E","6E"],workup:["5M"],zenheadbutt:["4T","5T"],dualchop:["5T"],poweruppunch:["6M"],confide:["6M"]}}, + lucario:{learnset:{attract:["4M","5M","6M"],aurasphere:["4L37","5L51","4S0","6L1","6L42"],blazekick:["4S1"],bonerush:["4L19","5L19","4S1","6L29"],brickbreak:["4M","5M","6M"],bulkup:["4M","5M","6M"],bulldoze:["5M","6M"],bulletpunch:["5S2","5S3"],calmmind:["4M","5M","5L47","6L47","6M"],captivate:["4M"],closecombat:["4L42","5L55","5S3","6L1","6L55"],counter:["4L6","5L6","5S2","6L6"],darkpulse:["4M","4L1","5L1","4S0","5T","6M"],detect:["4L1","5L1","5S2","6L1"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],dragonpulse:["4M","4L47","5L60","4S0","5T","6L1","6L60"],drainpunch:["4M","5T"],earthquake:["4M","5M","6M"],endure:["4M"],extremespeed:["4L51","5L65","6L1","6L65"],facade:["4M","5M","6M"],feint:["4L15","5L15","6L11"],flashcannon:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],forcepalm:["4L11","5L11","4S1"],foresight:["4L1","5L1","6L1"],frustration:["4M","5M","6M"],furycutter:["4T"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],healpulse:["5L42","6L51"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["4M","5M","6M"],icepunch:["4T","5T"],irondefense:["4T","5T"],irontail:["4M","5T"],lowkick:["4T","5T"],lowsweep:["5M","6M"],magnetrise:["4T","5T"],mefirst:["4L29","5L29","6L37"],metalclaw:["4L1","5L1","5S2","6L1"],metalsound:["4L24","5L24","6L24"],mudslap:["4T"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],quickattack:["4L1","5L1","6L1"],quickguard:["5L33","6L33"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shadowclaw:["4M","5M","5S3","6M"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stoneedge:["4M","5M","5S3","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","4S1","6M"],swagger:["4M","5M","6M"],swift:["4T"],swordsdance:["4M","4L33","5M","5L37","6L19","6M"],thunderpunch:["4T","5T"],toxic:["4M","5M","6M"],vacuumwave:["4T"],waterpulse:["4M","4S0"],workup:["5M"],zenheadbutt:["4T","5T"],dualchop:["5T"],poweruppunch:["6L15","6M"],confide:["6M"]}}, + hippopotas:{learnset:{attract:["4M","5M","6M"],bite:["4L7","5L7","5D","6L7"],bodyslam:["4E","5E","6E"],bulldoze:["5M","6M"],captivate:["4M"],crunch:["4L31","5L31","6L31"],curse:["4E","5E","6E"],dig:["4M","4L19","5M","5L19","6L19","6M"],doubleedge:["4L44","5L44","6L44"],doubleteam:["4M","5M","6M"],earthpower:["4T","5T"],earthquake:["4M","4L37","5M","5L37","6L37","6M"],endure:["4M"],facade:["4M","5M","6M"],fissure:["4L50","5L50","6L50"],frustration:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],irontail:["4M","5T"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],revenge:["4E","5E","6E"],roar:["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandattack:["4L1","5L1","6L1"],sandstorm:["4M","5M","6M"],sandtomb:["4E","4L25","5E","5L25","6L25","6E"],secretpower:["4M"],slackoff:["4E","5E","6E"],sleeptalk:["4M","5E","5T","6M","6E"],snore:["4T","5T"],spitup:["4E","5E","6E"],stealthrock:["4M","5T"],stockpile:["4E","5E","5D","6E"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],superpower:["4T","5D","5T"],swagger:["4M","5M","6M"],swallow:["4E","5E","6E"],tackle:["4L1","5L1","6L1"],takedown:["4L19","5L19","6L19"],toxic:["4M","5M","6M"],waterpulse:["4M"],whirlwind:["5E","6E"],yawn:["4L13","5L13","6L13"],confide:["6M"]}}, + hippowdon:{learnset:{attract:["4M","5M","6M"],bite:["4L1","4L7","5L1","5L7","6L1","6L7"],bulldoze:["5M","6M"],captivate:["4M"],crunch:["4L31","5L31","6L31"],dig:["4M","4L19","5M","5L19","6L19","6M"],doubleedge:["4L50","5L50","6L50"],doubleteam:["4M","5M","6M"],earthpower:["4T","5T"],earthquake:["4M","4L40","5M","5L40","6L40","6M"],endure:["4M"],facade:["4M","5M","6M"],firefang:["4L1","5L1","6L1"],fissure:["4L60","5L60","6L60"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icefang:["4L1","5L1","6L1"],ironhead:["4T","5T"],irontail:["4M","5T"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandattack:["4L1","5L1","6L1"],sandstorm:["4M","5M","6M"],sandtomb:["4L25","5L25","6L25"],secretpower:["4M"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],superpower:["4T","5T"],swagger:["4M","5M","6M"],tackle:["4L1","5L1","6L1"],takedown:["4L19","5L19","6L19"],thunderfang:["4L1","5L1","6L1"],toxic:["4M","5M","6M"],waterpulse:["4M"],yawn:["4L1","4L13","5L1","5L13","6L1","6L13"],confide:["6M"]}}, + skorupi:{learnset:{acupressure:["4L17","5L17","6L13"],aerialace:["4M","5M","6M"],agility:["4E","5E","5D","6E"],aquatail:["4T","5D","5T"],attract:["4M","5M","6M"],bite:["4L1","5L1","5D","6L1"],brickbreak:["4M","5M","6M"],bugbite:["4L34","4T","5L34","5T","6L20"],captivate:["4M"],confuseray:["4E","5E","6E"],crosspoison:["4L50","5L61","6L49"],crunch:["4L45","5L56","6L45"],cut:["4M","5M","6M"],darkpulse:["4M","5T","6M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],feintattack:["4E","5E","6E"],falseswipe:["4M","5M","6M"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","5L45","6L30","6M"],irontail:["4M","5E","5T","6E"],knockoff:["4L23","4L6","5L6","5T","6L5"],leer:["4L6","4L1","5L1","6L1"],mudslap:["4T"],naturalgift:["4M"],nightslash:["4E","5E","5L38","6L38","6E"],payback:["4M","5M","6M"],pinmissile:["4L12","5L12","6L9"],poisonfang:["4L39","5L39","6L23"],poisonjab:["4M","5M","6M"],poisonsting:["4L1","5L1","6L1"],poisontail:["5E","6E"],protect:["4M","5M","6M"],pursuit:["4E","5E","5L16","6L16","6E"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],sandattack:["4E","5E","6E"],scaryface:["4L28","4L23","5L23","6L41"],screech:["4E","5E","6E"],secretpower:["4M"],shadowball:["4M","5M","6M"],slash:["4E","5E","6E"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","5M","6M"],snore:["4T","5T"],strength:["4M","5M","6M"],strugglebug:["5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swordsdance:["4M","5M","6M"],taunt:["4M","5M","6M"],thief:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],toxicspikes:["4L34","4L28","5L28","6L34"],twineedle:["5E","6E"],venoshock:["5M","5L50","6L27","6M"],whirlwind:["4E","5E","6E"],xscissor:["4M","5M","6M"],fellstinger:["6L47"],infestation:["6M"],confide:["6M"]}}, + drapion:{learnset:{acupressure:["4L17","5L17","6L13"],aerialace:["4M","5M","6M"],aquatail:["4T","5T"],attract:["4M","5M","6M"],bite:["4L1","5L1","6L1"],brickbreak:["4M","5M","6M"],bugbite:["4L34","4T","5L34","5T","6L20"],bulldoze:["5M","6M"],captivate:["4M"],crosspoison:["4L58","5L73","6L57"],crunch:["4L49","5L65","6L49"],cut:["4M","5M","6M"],darkpulse:["4M","5T","6M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],earthquake:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],falseswipe:["4M","5M","6M"],firefang:["4L1","5L1","6L1"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","5L48","6L30","6M"],hyperbeam:["4M","5M","6M"],icefang:["4L1","5L1","6L1"],irontail:["4M","5T"],knockoff:["4L23","4T","4L1","4L6","5L1","5L6","5T","6L1","6L5"],leer:["4L1","4L6","5L1","6L1"],mudslap:["4T"],naturalgift:["4M"],nightslash:["5L38","6L38"],payback:["4M","5M","6M"],pinmissile:["4L1","4L12","5L12","6L9"],poisonfang:["4L39","5L39","6L23"],poisonjab:["4M","5M","6M"],poisonsting:["4L1","5L1","6L1"],protect:["4M","5M","6M"],pursuit:["5L16","6L16"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scaryface:["4L28","4L23","5L23","6L43"],secretpower:["4M"],shadowball:["4M","5M","6M"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","5M","6M"],snarl:["5M","6M"],snore:["4T","5T"],strength:["4M","5M","6M"],strugglebug:["5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swordsdance:["4M","5M","6M"],taunt:["4M","5M","6M"],thief:["4M","5M","6M"],thunderfang:["4L1","5L1","6L1"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],toxicspikes:["4L34","4L28","5L28","6L34"],venoshock:["5M","5L56","6L27","6M"],xscissor:["4M","5M","6M"],fellstinger:["6L53"],infestation:["6M"],confide:["6M"]}}, + croagunk:{learnset:{acupressure:["5E","6E"],astonish:["4L1","5L1","5S0","6L1"],attract:["4M","5M","6M"],bounce:["4T","5T"],brickbreak:["4M","5M","6M"],bulkup:["4M","5M","6M"],bulldoze:["5M","6M"],bulletpunch:["4E","5E","6E"],captivate:["4M"],counter:["4E","5E","6E"],crosschop:["4E","5E","6E"],darkpulse:["4M","5T","6M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],drainpunch:["5E","5D","5T","6E"],dynamicpunch:["4E","5E","6E"],earthquake:["4M","5M","6M"],embargo:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],feintattack:["4L17","5L17","6L17"],fakeout:["4E","5E","6E"],feint:["4E","5E","6E"],flatter:["4L45","5L50","6L50"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],furycutter:["4T"],gunkshot:["4T","5D","5T"],headbutt:["4E","4T","5E","6E"],hiddenpower:["4M","5M","6M"],icepunch:["4T","5T"],icywind:["4T","5T"],knockoff:["4T","5T"],lowkick:["4T","5T"],lowsweep:["5M","6M"],meditate:["4E","5E","6E"],mefirst:["4E","5E","6E"],mudbomb:["4L29","5L29","6L29"],mudslap:["4L3","4T","5L3","5S0","5S1","6L3"],nastyplot:["4L36","5L38","6L38"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonjab:["4M","4L38","5M","5L43","5S1","6L43","6M"],poisonsting:["4L8","5L8","5D","5S0","5S1","6L8"],protect:["4M","5M","6M"],pursuit:["4L15","5L15","6L15"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],revenge:["4L22","5L22","6L22"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","4L43","5M","5L45","6L45","6M"],sludgewave:["5M","6M"],smellingsalts:["4E","5E","6E"],snatch:["4M","5T"],snore:["4T","5T"],spite:["4T","5T"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],suckerpunch:["4L31","4T","5L31","6L31"],sunnyday:["4M","5M","6M"],superfang:["4T","5T"],swagger:["4M","4L24","5M","5L24","6L24","6M"],taunt:["4M","4L10","5M","5L10","5S0","5S1","6L10","6M"],thief:["4M","5M","6M"],thunderpunch:["4T","5T"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],vacuumwave:["4E","4T","5E","6E"],venoshock:["5M","5L36","6L36","6M"],wakeupslap:["4E","5E","6E"],workup:["5M"],xscissor:["4M","5M","6M"],dualchop:["5T"],foulplay:["5T"],helpinghand:["5T"],belch:["6L47"],poweruppunch:["6M"],confide:["6M"]}}, + toxicroak:{learnset:{astonish:["4L1","5L1","6L1"],attract:["4M","5M","6M"],bounce:["4T","5T"],brickbreak:["4M","5M","6M"],bulkup:["4M","5M","6M"],bulldoze:["5M","6M"],captivate:["4M"],cut:["4M","5M","6M"],darkpulse:["4M","5T","6M"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],earthquake:["4M","5M","6M"],embargo:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],feintattack:["4L17","5L17","6L17"],flatter:["4L54","5L62","6L62"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],furycutter:["4T"],gigaimpact:["4M","5M","6M"],gunkshot:["4T","5T"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icepunch:["4T","5T"],icywind:["4T","5T"],knockoff:["4T","5T"],lowkick:["4T","5T"],lowsweep:["5M","6M"],mudbomb:["4L29","5L29","6L29"],mudslap:["4L1","4L3","4T","5L1","5L3","6L1","6L3"],nastyplot:["4L36","5L41","6L41"],naturalgift:["4M"],payback:["4M","5M","6M"],poisonjab:["4M","4L41","5M","5L49","6L49","6M"],poisonsting:["4L1","4L8","5L1","5L8","6L1","6L8"],protect:["4M","5M","6M"],pursuit:["4L15","5L15","6L15"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],revenge:["4L22","5L22","6L22"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","4L49","5M","5L54","6L54","6M"],sludgewave:["5M","6M"],snatch:["4M","5T"],snore:["4T","5T"],spite:["4T","5T"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],suckerpunch:["4L31","4T","5L31","6L31"],sunnyday:["4M","5M","6M"],superfang:["4T","5T"],swagger:["4M","4L24","5M","5L24","6L24","6M"],swordsdance:["4M","5M","6M"],taunt:["4M","4L10","5M","5L10","6L10","6M"],thief:["4M","5M","6M"],thunderpunch:["4T","5T"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],vacuumwave:["4T"],venoshock:["5M","5L36","6L36","6M"],workup:["5M"],xscissor:["4M","5M","6M"],dualchop:["5T"],foulplay:["5T"],drainpunch:["5T"],belch:["6L58"],poweruppunch:["6M"],confide:["6M"]}}, + carnivine:{learnset:{attract:["4M","5M","6M"],bind:["4L1","5L1","5T","6L1"],bite:["4L7","5L7","5D","6L7"],bugbite:["4T","5T"],bulletseed:["4M"],captivate:["4M"],crunch:["4L37","5L41","6L41"],cut:["4M","5M","6M"],doubleteam:["4M","5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],feintattack:["4L27","5L27","6L27"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],gastroacid:["4T","5T","5D"],gigadrain:["4M","5E","5T","6E"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],grasswhistle:["5E","6E"],growth:["4L1","5L1","6L1"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],ingrain:["4L21","5L21","6L21"],knockoff:["4T","5T"],leaftornado:["5L31","6L31"],leechseed:["4E","5E","6E"],magicalleaf:["4E","5E","6E"],mudslap:["4T"],naturalgift:["4M"],payback:["4M","5M","6M"],powerwhip:["4L47","5L51","6L50"],protect:["4M","5M","6M"],ragepowder:["5E","5D","6E"],razorleaf:["4E","5E","6E"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],secretpower:["4M"],seedbomb:["4T","5T"],slam:["4E","5E","6E"],sleeppowder:["4E","5E","6E"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","5M","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],spitup:["4L31","5L37","6L37"],stockpile:["4L31","5L37","6L37"],stunspore:["4E","5E","6E"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swallow:["4L31","5L37","6L37"],sweetscent:["4L17","5L17","6L17"],swordsdance:["4M","5M","6M"],synthesis:["4E","4T","5E","5T","6E"],thief:["4M","5M","6M"],toxic:["4M","5M","6M"],vinewhip:["4L11","5L11","6L11"],worryseed:["4E","4T","5E","5T","6E"],wringout:["4L41","5L47","6L47"],infestation:["6M"],naturepower:["6M"],confide:["6M"]}}, + finneon:{learnset:{agility:["4E","5E","6E"],aircutter:["4T"],aquaring:["4L33","5L33","6L0"],aquatail:["4E","4T","5E","5T","6E"],attract:["4M","4L10","5M","5L10","5D","6L0","6M"],aurorabeam:["5E","6E"],blizzard:["4M","5M","6M"],bounce:["4L45","4T","5L45","5T","6L0"],brine:["4M","5E","6E"],captivate:["4M","4L26","5L26","6L0"],charm:["4E","5E","6E"],defog:["4M"],dive:["4T","5M","6M"],doubleteam:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],flail:["4E","5E","6E"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gust:["4L17","5L17","6L0"],hail:["4M","5M","6M"],hiddenpower:["4M","5M","6M"],icebeam:["4M","5M","6M"],icywind:["4T","5T"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","5M","6M"],pound:["4L1","5L1","6L0"],protect:["4M","5M","6M"],psybeam:["4E","5E","6E"],psychup:["4M","5M","6M"],raindance:["4M","4L13","5M","5L13","6L0","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","4L29","5M","5L29","6L0","6M"],scald:["5M","6M"],secretpower:["4M"],signalbeam:["5E","5T","6E"],silverwind:["4M","4L49","5L49","6L0"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],soak:["5L54","6L0"],splash:["4E","5E","6E"],substitute:["4M","5M","6M"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],sweetkiss:["4E","5E","5D","6E"],swift:["4T"],tailwind:["4T","5T"],tickle:["4E","5E","6E"],toxic:["4M","5M","6M"],twister:["4T"],uturn:["4M","4L42","5M","5L42","6L0","6M"],waterfall:["4M","5M","6M"],watergun:["4L6","5L6","6L0"],waterpulse:["4M","4L22","5L22","5D","6L0"],whirlpool:["4L38","4M","5L38","6L0"]}}, + lumineon:{learnset:{aircutter:["4T"],aquaring:["4L35","5L35","6L0"],aquatail:["4T","5T"],attract:["4M","4L1","4L10","5M","5L1","5L10","6L0","6L0","6M"],blizzard:["4M","5M","6M"],bounce:["4L53","4T","5L53","5T","6L0"],brine:["4M"],captivate:["4M","4L26","5L26","6L0"],defog:["4M"],dive:["4T","5M","6M"],doubleteam:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],gust:["4L17","5L17","6L0"],hail:["4M","5M","6M"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],icywind:["4T","5T"],naturalgift:["4M"],ominouswind:["4T"],payback:["4M","5M","6M"],pound:["4L1","5L1","6L0"],protect:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","4L13","5M","5L13","6L0","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","4L29","5M","5L29","6L0","6M"],scald:["5M","6M"],secretpower:["4M"],silverwind:["4M","4L59","5L59","6L0"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],soak:["5L66","6L0"],substitute:["4M","5M","6M"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],tailwind:["4T","5T"],toxic:["4M","5M","6M"],twister:["4T"],uturn:["4M","4L48","5M","5L48","6L0","6M"],waterfall:["4M","5M","6M"],watergun:["4L1","4L6","5L1","5L6","6L0","6L0"],waterpulse:["4M","4L22","5L22","6L0"],whirlpool:["4L42","4M","5L42","6L0"],signalbeam:["5T"]}}, + snover:{learnset:{attract:["4M","5M","6M"],avalanche:["4M","5E","5D","6E"],blizzard:["4M","4L41","5M","5L41","6L41","6M"],bulletseed:["4M","5E","6E"],captivate:["4M"],doubleedge:["4E","5E","6E"],doubleteam:["4M","5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frostbreath:["5M","6M"],frustration:["4M","5M","6M"],gigadrain:["4M","5T","5D"],grassknot:["4M","5M","6M"],grasswhistle:["4L13","5L13","6L13"],growth:["4E","5E","6E"],hail:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],icebeam:["4M","5M","6M"],icepunch:["4T","5T"],iceshard:["4L26","5L26","6L26"],icywind:["4L9","4T","5L9","5T","6L9"],ingrain:["4L31","5L31","6L31"],irontail:["4M","5T"],leechseed:["4E","5E","6E"],leer:["4L1","5L1","6L1"],lightscreen:["4M","5M","6M"],magicalleaf:["4E","5E","6E"],mist:["4E","4L21","5E","5L21","6L21","6E"],mudslap:["4T"],naturalgift:["4M","5E","6E"],powdersnow:["4L1","5L1","6L1"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],razorleaf:["4L5","5L5","5D","6L5"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],seedbomb:["4E","4T","5E","5T","6E"],shadowball:["4M","5M","6M"],sheercold:["4L46","5L46","6L46"],skullbash:["4E","5E","6E"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],stomp:["4E","5E","6E"],substitute:["4M","5M","6M"],swagger:["4M","4L17","5M","5L17","6L17","6M"],swordsdance:["4M","5M","6M"],synthesis:["4T","5T"],toxic:["4M","5M","6M"],waterpulse:["4M"],woodhammer:["4L36","5L36","6L36"],worryseed:["4T","5T"],confide:["6M"]}}, + abomasnow:{learnset:{attract:["4M","5M","6M"],avalanche:["4M"],blizzard:["4M","4L47","5M","5L47","6L47","6M"],block:["4T","5T"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],bulletseed:["4M"],captivate:["4M"],doubleteam:["4M","5M","6M"],earthquake:["4M","5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frostbreath:["5M","6M"],frustration:["4M","5M","6M"],gigadrain:["4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],grasswhistle:["4L13","5L13","6L13"],hail:["4M","5M","6M"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],icepunch:["4L1","4T","5L1","5T","6L1"],iceshard:["4L26","5L26","6L26"],icywind:["4L1","4L9","4T","5L1","5L9","5T","6L1","6L9"],ingrain:["4L31","5L31","6L31"],irontail:["4M","5T"],leer:["4L1","5L1","6L1"],lightscreen:["4M","5M","6M"],mist:["4L21","5L21","6L21"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T"],powdersnow:["4L1","5L1","6L1"],protect:["4M","5M","6M"],raindance:["4M","5M","6M"],razorleaf:["4L1","4L5","5L1","5L5","6L1","6L5"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],seedbomb:["4T","5T"],shadowball:["4M","5M","6M"],sheercold:["4L58","5L58","6L58"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],swagger:["4M","4L17","5M","5L17","6L17","6M"],swordsdance:["4M","5M","6M"],synthesis:["4T","5T"],toxic:["4M","5M","6M"],waterpulse:["4M"],woodhammer:["4L36","5L36","6L36"],worryseed:["4T","5T"],confide:["6M"]}}, + rotom:{learnset:{astonish:["4L1","5L1","5S0","6L1"],charge:["4L43","5L57","6L1","6L57"],chargebeam:["4M","5M","6M"],confuseray:["4L1","5L1","6L1"],darkpulse:["4M","5T","6M"],discharge:["4L50","5L64","6L1","6L64"],doubleteam:["4M","4L15","5M","5L15","6L15","6M"],dreameater:["4M","5M","6M"],electroball:["5L43","6L43"],endure:["4M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],hex:["5L50","6L50"],hiddenpower:["4M","5M","6M"],lightscreen:["4M","5M","6M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4L29","4T","5L29","6L29"],painsplit:["4T","5T"],protect:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],reflect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M","4L22","5L22","5D","6L22"],signalbeam:["4T","5D","5T"],sleeptalk:["4M","5T","6M"],snatch:["4M","5T"],snore:["4T","5T"],spite:["4T","5T"],substitute:["4M","4L36","5M","5L36","6L36","6M"],suckerpunch:["4T"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],telekinesis:["5M"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thundershock:["4L1","4T","5T","5L1","5S0","6L1"],thunderwave:["4M","4L1","5M","5L1","5D","6L1","6M"],toxic:["4M","5M","6M"],trick:["4L1","4T","5L1","5T","5S0","6L1"],uproar:["4L8","5L8","5T","5S0","6L8"],voltswitch:["5M","6M"],willowisp:["4M","5M","6M"],electroweb:["5T"],confide:["6M"]}}, + rotomheat:{learnset:{astonish:["4L1","5L1","5S0"],charge:["4L43","5L57"],chargebeam:["4M","5M"],confuseray:["4L1","5L1"],darkpulse:["4M"],discharge:["4L50","5L64"],doubleteam:["4M","4L15","5M","5L15"],dreameater:["4M","5M"],electroball:["5L43"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],hex:["5L50"],hiddenpower:["4M","5M"],lightscreen:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T","4L29","5L29"],overheat:["4T","5T","6L1"],painsplit:["4T"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M","4L22","5L22"],signalbeam:["4T"],sleeptalk:["4M"],snatch:["4M"],snore:["4T"],spite:["4T"],substitute:["4M","4L36","5M","5L36"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thundershock:["4L1","5L1","5S0"],thunderwave:["4M","4L1","5M","5L1"],toxic:["4M","5M"],trick:["4T","4L1","5L1","5S0"],uproar:["4L8","5L8","5S0"],voltswitch:["5M"],willowisp:["4M","5M"]}}, + rotomwash:{learnset:{astonish:["4L1","5L1","5S0"],charge:["4L43","5L57"],chargebeam:["4M","5M"],confuseray:["4L1","5L1"],darkpulse:["4M"],discharge:["4L50","5L64"],doubleteam:["4M","4L15","5M","5L15"],dreameater:["4M","5M"],electroball:["5L43"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],hex:["5L50"],hiddenpower:["4M","5M"],hydropump:["4T","5T","6L1"],lightscreen:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T","4L29","5L29"],painsplit:["4T"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M","4L22","5L22"],signalbeam:["4T"],sleeptalk:["4M"],snatch:["4M"],snore:["4T"],spite:["4T"],substitute:["4M","4L36","5M","5L36"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thundershock:["4L1","5L1","5S0"],thunderwave:["4M","4L1","5M","5L1"],toxic:["4M","5M"],trick:["4T","4L1","5L1","5S0"],uproar:["4L8","5L8","5S0"],voltswitch:["5M"],willowisp:["4M","5M"]}}, + rotomfrost:{learnset:{astonish:["4L1","5L1","5S0"],blizzard:["4T","5T","6L1"],charge:["4L43","5L57"],chargebeam:["4M","5M"],confuseray:["4L1","5L1"],darkpulse:["4M"],discharge:["4L50","5L64"],doubleteam:["4M","4L15","5M","5L15"],dreameater:["4M","5M"],electroball:["5L43"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],hex:["5L50"],hiddenpower:["4M","5M"],lightscreen:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T","4L29","5L29"],painsplit:["4T"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M","4L22","5L22"],signalbeam:["4T"],sleeptalk:["4M"],snatch:["4M"],snore:["4T"],spite:["4T"],substitute:["4M","4L36","5M","5L36"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thundershock:["4L1","5L1","5S0"],thunderwave:["4M","4L1","5M","5L1"],toxic:["4M","5M"],trick:["4T","4L1","5L1","5S0"],uproar:["4L8","5L8","5S0"],voltswitch:["5M"],willowisp:["4M","5M"]}}, + rotomfan:{learnset:{airslash:["4T","5T","5S0","6L1"],astonish:["4L1","5L1"],charge:["4L43","5L57"],chargebeam:["4M","5M"],confuseray:["4L1","5L1"],darkpulse:["4M"],discharge:["4L50","5L64"],doubleteam:["4M","4L15","5M","5L15"],dreameater:["4M","5M"],electroball:["5L43"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],hex:["5L50"],hiddenpower:["4M","5M"],lightscreen:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T","4L29","5L29"],painsplit:["4T"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M","4L22","5L22"],signalbeam:["4T"],sleeptalk:["4M"],snatch:["4M"],snore:["4T"],spite:["4T"],substitute:["4M","4L36","5M","5L36"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thundershock:["4L1","5L1","5S0"],thunderwave:["4M","4L1","5M","5L1"],toxic:["4M","5M"],trick:["4T","4L1","5L1","5S0"],uproar:["4L8","5L8","5S0"],voltswitch:["5M"],willowisp:["4M","5M"]}}, + rotommow:{learnset:{astonish:["4L1","5L1","5S0"],charge:["4L43","5L57"],chargebeam:["4M","5M"],confuseray:["4L1","5L1"],darkpulse:["4M"],discharge:["4L50","5L64"],doubleteam:["4M","4L15","5M","5L15"],dreameater:["4M","5M"],electroball:["5L43"],endure:["4M"],facade:["4M","5M"],flash:["4M","5M"],frustration:["4M","5M"],hex:["5L50"],hiddenpower:["4M","5M"],leafstorm:["4T","5T","6L1"],lightscreen:["4M","5M"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4T","4L29","5L29"],painsplit:["4T"],protect:["4M","5M"],psychup:["4M","5M"],raindance:["4M","5M"],reflect:["4M","5M"],rest:["4M","5M"],"return":["4M","5M"],round:["5M"],secretpower:["4M"],shadowball:["4M","5M"],shockwave:["4M","4L22","5L22"],signalbeam:["4T"],sleeptalk:["4M"],snatch:["4M"],snore:["4T"],spite:["4T"],substitute:["4M","4L36","5M","5L36"],suckerpunch:["4T"],sunnyday:["4M","5M"],swagger:["4M","5M"],swift:["4T"],telekinesis:["5M"],thief:["4M","5M"],thunder:["4M","5M"],thunderbolt:["4M","5M"],thundershock:["4L1","5L1","5S0"],thunderwave:["4M","4L1","5M","5L1"],toxic:["4M","5M"],trick:["4T","4L1","5L1","5S0"],uproar:["4L8","5L8","5S0"],voltswitch:["5M"],willowisp:["4M","5M"]}}, + uxie:{learnset:{acrobatics:["5M","6M"],amnesia:["4L46","5L46","6L0"],calmmind:["4M","5M","6M"],chargebeam:["4M","5M","6M"],confusion:["4L21","4L1","5L1","6L0"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],endure:["4M","4L16","5L16","6L0"],energyball:["4M","5M","6M"],extrasensory:["4L51","5L51","6L0"],facade:["4M","5M","6M"],firepunch:["4T","5T"],flail:["4L61","5L61","6L0"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],futuresight:["4L36","5L36","6L0"],gigadrain:["4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["4T"],healbell:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icepunch:["4T","5T"],imprison:["4L6","5L6","6L0"],irontail:["4M","5T"],knockoff:["4T","5T"],lightscreen:["4M","5M","6M"],magiccoat:["4T","5T"],memento:["4L76","5L76","6L0"],mudslap:["4T"],naturalgift:["4M","4L66","5L66","6L0"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],psyshock:["5M","6M"],raindance:["4M","5M","6M"],recycle:["4M","5T"],reflect:["4M","5M","6M"],rest:["4M","4L1","5M","5L1","6L0","6M"],"return":["4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],safeguard:["4M","5M","6M"],sandstorm:["4M","5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],stealthrock:["4M","5T"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4L21","5L21","6L0"],telekinesis:["5M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4T","5T"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],uturn:["4M","5M","6M"],waterpulse:["4M"],yawn:["4L31","5L31","6L0"],zenheadbutt:["4T","5T"],foulplay:["5T"],magicroom:["5T"],wonderroom:["5T"]}}, + mesprit:{learnset:{acrobatics:["5M","6M"],blizzard:["4M","5M","6M"],calmmind:["4M","5M","6M"],chargebeam:["4M","5M","6M"],charm:["4L46","5L46","6L0"],confusion:["4L21","4L1","5L1","6L0"],copycat:["4L61","5L61","6L0"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],extrasensory:["4L51","5L51","6L0"],facade:["4M","5M","6M"],firepunch:["4T","5T"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],futuresight:["4L36","5L36","6L0"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["4T"],healingwish:["4L76","5L76","6L0"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],icepunch:["4T","5T"],imprison:["4L6","5L6","6L0"],irontail:["4M","5T"],knockoff:["4T","5T"],lightscreen:["4M","5M","6M"],luckychant:["4L31","5L31","6L0"],magiccoat:["4T","5T"],mudslap:["4T"],naturalgift:["4M","4L66","5L66","6L0"],protect:["4M","4L16","5M","5L16","6L0","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],psyshock:["5M","6M"],raindance:["4M","5M","6M"],recycle:["4M","5T"],reflect:["4M","5M","6M"],rest:["4M","4L1","5M","5L1","6L0","6M"],"return":["4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],safeguard:["4M","5M","6M"],sandstorm:["4M","5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T","4L21","5L21","6L0"],telekinesis:["5M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4T","5T"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],uturn:["4M","5M","6M"],waterpulse:["4M"],zenheadbutt:["4T","5T"],magicroom:["5T"],wonderroom:["5T"]}}, + azelf:{learnset:{acrobatics:["5M","6M"],calmmind:["4M","5M","6M"],chargebeam:["4M","5M","6M"],confusion:["4L21","4L1","5L1","6L0"],detect:["4L16","5L16","6L0"],doubleteam:["4M","5M","6M"],dreameater:["4M","5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],explosion:["4M","4L76","5M","5L76","6L0","6M"],extrasensory:["4L51","5L51","6L0"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],firepunch:["4T","5T"],flamethrower:["4M","5M","6M"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],futuresight:["4L36","5L36","6L0"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],headbutt:["4T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icepunch:["4T","5T"],imprison:["4L6","5L6","6L0"],incinerate:["5M","6M"],irontail:["4M","5T"],knockoff:["4T","5T"],lastresort:["4L61","4T","5L61","5T","6L0"],lightscreen:["4M","5M","6M"],magiccoat:["4T","5T"],mudslap:["4T"],nastyplot:["4L46","5L46","6L0"],naturalgift:["4M","4L66","5L66","6L0"],payback:["4M","5M","6M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],psyshock:["5M","6M"],raindance:["4M","5M","6M"],recycle:["4M","5T"],reflect:["4M","5M","6M"],rest:["4M","4L1","5M","5L1","6L0","6M"],"return":["4M","5M","6M"],roleplay:["4T","5T"],round:["5M","6M"],safeguard:["4M","5M","6M"],sandstorm:["4M","5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],shockwave:["4M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T","4L21","5L21","6L0"],taunt:["4M","5M","6M"],telekinesis:["5M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4T","5T"],thunderwave:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],uproar:["4L31","4T","5L31","5T","6L0"],uturn:["4M","5M","6M"],waterpulse:["4M"],zenheadbutt:["4T","5T"],magicroom:["5T"],wonderroom:["5T"]}}, + dialga:{learnset:{aerialace:["4M","5M","6M"],ancientpower:["4L20","4T","4L10","5L10","6L0"],aurasphere:["4L90","4L37","5L37","5S0","6L0"],blizzard:["4M","5M","6M"],brickbreak:["4M","5M","6M"],bulkup:["4M","5M","6M"],bulldoze:["5M","6M"],cut:["4M","5M","6M"],doubleteam:["4M","5M","6M"],dracometeor:["4T","5T","5S0","6T"],dragonbreath:["4L1","5L1","6L0"],dragonclaw:["4M","4L30","4L28","5M","5L28","6L0","6M"],dragonpulse:["4M","5T","5S0"],dragontail:["5M","6M"],earthpower:["4L60","4T","4L33","5L33","5T","6L0"],earthquake:["4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],flamethrower:["4M","5M","6M"],flash:["4M","5M","6M"],flashcannon:["4M","4L80","4L42","5M","5L50","6L0","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],gigaimpact:["4M","5M","6M"],gravity:["4T","5T"],headbutt:["4T"],healblock:["4L50"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],incinerate:["5M","6M"],irondefense:["4T","5T"],ironhead:["4T","5T"],irontail:["4M","5L42","5T","6L0"],magnetrise:["4T","5T"],metalburst:["4L24","5L24","6L0"],metalclaw:["4L10","4L6","5L6","6L0"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T"],overheat:["4M","5M","6M"],powergem:["4L19","5L19","6L0"],protect:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],roaroftime:["4L40","4L46","5L46","5S0","6L0"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],sandstorm:["4M","5M","6M"],scaryface:["4L1","5L1","6L0"],secretpower:["4M"],shadowclaw:["4M","5M","6M"],shockwave:["4M"],slash:["4L70","4L15","5L15","6L0"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],trickroom:["4M","5M","6M"],twister:["4T"],hypervoice:["5T"]}}, + palkia:{learnset:{aerialace:["4M","5M","6M"],ancientpower:["4L20","4T","4L10","5L10","6L0"],aquatail:["4L80","4T","4L24","5L24","5L42","5T","6L0","6L0"],aurasphere:["4L90","4L37","5L37","5S0","6L0"],avalanche:["4M"],blizzard:["4M","5M","6M"],brickbreak:["4M","5M","6M"],brine:["4M"],bulkup:["4M","5M","6M"],bulldoze:["5M","6M"],cut:["4M","5M","6M"],dive:["4T","5M","6M"],doubleteam:["4M","5M","6M"],dracometeor:["4T","5T","5S0","6T"],dragonbreath:["4L1","5L1","6L0"],dragonclaw:["4M","4L30","4L28","5M","5L28","6L0","6M"],dragonpulse:["4M","5T"],dragontail:["5M","6M"],earthpower:["4L60","4T","4L33","5L33","5T","6L0"],earthquake:["4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],flamethrower:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],furycutter:["4T"],gigaimpact:["4M","5M","6M"],gravity:["4T","5T"],hail:["4M","5M","6M"],headbutt:["4T"],healblock:["4L50"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],hydropump:["4L42","5L50","5S0","6L0"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],incinerate:["5M","6M"],mudslap:["4T"],naturalgift:["4M"],outrage:["4T","5T"],powergem:["4L19","5L19","6L0"],protect:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],sandstorm:["4M","5M","6M"],scaryface:["4L1","5L1","6L0"],secretpower:["4M"],shadowclaw:["4M","5M","6M"],shockwave:["4M"],slash:["4L70","4L15","5L15","6L0"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],spacialrend:["4L40","4L46","5L46","5S0","6L0"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],trickroom:["4M","5M","6M"],twister:["4T"],waterpulse:["4M","4L10","4L6","5L6","6L0"],whirlpool:["4M"],hypervoice:["5T"]}}, + heatran:{learnset:{ancientpower:["4L1","4T","5L1","4S0","6L0"],attract:["4M","5M","6M"],bugbite:["4T","5T"],bulldoze:["5M","6M"],captivate:["4M"],crunch:["4L33","5L33","6L0"],darkpulse:["4M","5T"],dig:["4M","5M","6M"],doubleteam:["4M","5M","6M"],dragonpulse:["4M","5T"],earthpower:["4L73","4T","5L73","4S0","5T","6L0"],earthquake:["4M","5M","6M"],endure:["4M"],eruption:["4S0"],explosion:["4M","5M","6M"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],firefang:["4L17","5L17","6L0"],firespin:["4L57","5L57","6L0"],flamecharge:["5M","6M"],flamethrower:["4M","5M","6M"],flashcannon:["4M","5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],headbutt:["4T"],heatwave:["4L81","4T","5L81","5T","6L0"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],incinerate:["5M","6M"],irondefense:["4T","5T"],ironhead:["4L65","4T","5L65","5T","6L0"],lavaplume:["4L49","5L49","6L0"],leer:["4L9","5L9","6L0"],magmastorm:["4L96","5L96","4S0","6L0"],metalsound:["4L25","5L25","6L0"],mudslap:["4T"],naturalgift:["4M"],overheat:["4M","5M","6M"],payback:["4M","5M","6M"],protect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],scaryface:["4L41","5L41","6L0"],secretpower:["4M"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],stealthrock:["4M","5T"],stoneedge:["4M","4L88","5M","5L88","6L0","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],taunt:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],uproar:["4T","5T"],willowisp:["4M","5M","6M"]}}, + regigigas:{learnset:{aerialace:["4M","5M","6M"],ancientpower:["4T"],avalanche:["4M"],block:["4T","5T"],brickbreak:["4M","5M","6M"],bulldoze:["5M","6M"],confuseray:["4L1","5L1","6L0"],crushgrip:["4L75","5L75","4S0","6L0"],dizzypunch:["4L1","5L1","6L0"],doubleteam:["4M","5M","6M"],drainpunch:["4M","5T"],earthpower:["4T","5T"],earthquake:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],firepunch:["4L1","4T","5L1","5T","6L0"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],foresight:["4L1","5L1","6L0"],frustration:["4M","5M","6M"],gigaimpact:["4M","4L100","5M","5L100","6L0","6M"],gravity:["4T","5T"],headbutt:["4T"],heavyslam:["5L90","6L0"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icepunch:["4L1","4T","5L1","5T","6L0"],icywind:["4T","4S0","5T"],ironhead:["4T","4S0","5T"],knockoff:["4L1","5L1","5T","6L0"],megapunch:["4L1"],mudslap:["4T"],naturalgift:["4M"],payback:["5M","5L65","6L0","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],revenge:["4L25","5L25","6L0"],rockclimb:["4M"],rockpolish:["4M","5M","6M"],rockslide:["4M","5M","4S0","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],shockwave:["4M"],sleeptalk:["4M","5T","6M"],smackdown:["5M","6M"],snore:["4T","5T"],stomp:["4L1"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],superpower:["4L25","4T","5T"],swagger:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderpunch:["4L1","4T","5L1","5T","6L0"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],wideguard:["5L40","6L0"],zenheadbutt:["4L50","4T","5L50","5T","6L0"]}}, + giratina:{learnset:{aerialace:["4M","5M","6M"],aircutter:["4T"],ancientpower:["4L20","4T","4L10","5L10","6L0"],aquatail:["4T","5T"],aurasphere:["4L90","4L37","5L37","5S0","6L0"],bulldoze:["5M","6M"],calmmind:["4M","5M","6M"],chargebeam:["4M","5M","6M"],cut:["4M","5M","6M"],darkpulse:["4M","5T"],defog:["4M"],destinybond:["4L24","5L24","6L0"],doubleteam:["4M","5M","6M"],dracometeor:["4T","5T","6T"],dragonbreath:["4L1","5L1","6L0"],dragonclaw:["4M","4L30","4L28","5M","5L28","5S0","6L0","6M"],dragonpulse:["4M","5T","5S0"],dragontail:["5M","6M"],dreameater:["4M","5M","6M"],earthpower:["4L60","4T","4L33","5L33","5T","6L0"],earthquake:["4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],fly:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],gigaimpact:["4M","5M","6M"],gravity:["4T","5T"],headbutt:["4T"],healblock:["4L50"],hex:["5L50","6L0"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["4M","5M","6M"],icywind:["4T","5T"],ironhead:["4T","5T"],irontail:["4M","5T"],magiccoat:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],ominouswind:["4L10","4T","4L6","5L6","6L0"],outrage:["4T","5T"],painsplit:["4T","5T"],payback:["4M","5M","6M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],rockclimb:["4M"],rocksmash:["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],scaryface:["4L1","5L1","6L0"],secretpower:["4M"],shadowball:["4M","5M","6M"],shadowclaw:["4M","4L80","4L42","5M","5L42","6L0","6M"],shadowforce:["4L40","4L46","5L46","5S0","6L0"],shadowsneak:["4L19","5L19","6L0"],shockwave:["4M"],silverwind:["4M"],slash:["4L70","4L15","5L15","6L0"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],spite:["4T","5T"],steelwing:["4M"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],tailwind:["4T","5T"],telekinesis:["5M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],twister:["4T"],willowisp:["4M","5M","6M"],hypervoice:["5T"]}}, + cresselia:{learnset:{attract:["4M","5M","6M"],aurorabeam:["4L29","5L29","6L0"],calmmind:["4M","5M","6M"],captivate:["4M"],chargebeam:["4M","5M","6M"],confusion:["4L1","5L1","6L0"],doubleteam:["4M","4L1","5M","5L1","6L0","6M"],dreameater:["4M","5M","6M"],endure:["4M"],energyball:["4M","5M","5S0","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],futuresight:["4L38","5L38","6L0"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","5S0","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","5S0","6M"],icywind:["4T","5T"],lightscreen:["4M","5M","6M"],lunardance:["4L84","5L84","6L0"],magiccoat:["4T","5T"],mist:["4L20","5L20","6L0"],moonlight:["4L57","5L57","6L0"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M","6M"],psychic:["4M","4L93","5M","5L93","6L0","6M"],psychocut:["4L66","5L66","6L0"],psychoshift:["4L75","5L75","6L0"],psychup:["4M","5M","6M"],psyshock:["5M","5S0","6M"],raindance:["4M","5M","6M"],recycle:["4M","5T"],reflect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","4L11","5M","5L11","6L0","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],slash:["4L47","5L47","6L0"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],telekinesis:["5M"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],zenheadbutt:["4T","5T"],magicroom:["5T"]}}, + phione:{learnset:{acidarmor:["4L31","5L31","6L0"],ancientpower:["4T"],aquaring:["4L54","5L54","6L0"],blizzard:["4M","5M","6M"],bounce:["4T","5T"],brine:["4M"],bubble:["4L1","5L1","6L0"],bubblebeam:["4L24","5L24","6L0"],charm:["4L9","5L9","6L0"],dive:["4L61","4T","5M","5L61","6L0","6M"],doubleteam:["4M","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],grassknot:["4M","5M","4S0","6M"],hail:["4M","5M","6M"],healbell:["4T","5T"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],icebeam:["4M","5M","6M"],icywind:["4T","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","4L69","5M","5L69","4S0","6L0","6M"],rest:["4M","5M","4S0","6M"],"return":["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],scald:["5M","6M"],secretpower:["4M"],signalbeam:["4T","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],substitute:["4M","5M","6M"],supersonic:["4L16","5L16","6L0"],surf:["4M","5M","4S0","6M"],swagger:["4M","5M","6M"],swift:["4T"],toxic:["4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],waterfall:["4M","5M","6M"],waterpulse:["4M","4L46","5L46","6L0"],watersport:["4L1","5L1","6L0"],whirlpool:["4L39","4M","5L39","6L0"],covet:["5T"]}}, + manaphy:{learnset:{acidarmor:["4L31","5L31","4S2","4S3","4S4","6L0"],ancientpower:["4T"],aquaring:["4L54","5L54","4S5","6L0"],blizzard:["4M","5M","6M"],bounce:["4T","5T"],brine:["4M"],bubble:["4L1","5L1","4S0","4S1","6L0"],bubblebeam:["4L24","5L24","6L0"],calmmind:["4M","5M","6M"],charm:["4L9","5L9","6L0"],dive:["4L61","4T","5M","5L61","6L0","6M"],doubleteam:["4M","5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],hail:["4M","5M","6M"],healbell:["4T","5T"],heartswap:["4L76","5L76","4S2","4S3","4S4","4S5","6L0"],helpinghand:["4T","5T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],icebeam:["4M","5M","6M"],icywind:["4T","5T"],knockoff:["4T","5T"],lastresort:["4T","5T"],lightscreen:["4M","5M","6M"],mudslap:["4T"],naturalgift:["4M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],raindance:["4M","4L69","5M","5L69","6L0","6M"],reflect:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],scald:["5M","6M"],secretpower:["4M"],shadowball:["4M","5M","6M"],signalbeam:["4T","5T"],skillswap:["4M","5T"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],substitute:["4M","5M","6M"],supersonic:["4L16","5L16","6L0"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],tailglow:["4L1","5L1","4S0","4S1","6L0"],toxic:["4M","5M","6M"],uproar:["4T","5T"],uturn:["4M","5M","6M"],waterfall:["4M","5M","6M"],waterpulse:["4M","4L46","5L46","4S2","4S3","4S4","4S5","6L0"],watersport:["4L1","5L1","4S0","4S1","4S5","6L0"],whirlpool:["4L39","4M","5L39","4S2","4S3","4S4","6L0"],covet:["5T"]}}, + darkrai:{learnset:{aerialace:["4M","5M","6M"],blizzard:["4M","5M","6M"],brickbreak:["4M","5M","6M"],calmmind:["4M","5M","6M"],chargebeam:["4M","5M","6M"],cut:["4M","5M","6M"],darkpulse:["4M","4L93","5L93","4S1","5T","6L0"],darkvoid:["4L66","5L66","4S1","5S4","6L0"],disable:["4L1","5L1","6L0"],doubleteam:["4M","4L47","5M","5L47","4S1","4S3","6L0","6M"],drainpunch:["4M","5T"],dreameater:["4M","4L84","5M","5L84","6L0","6M"],embargo:["4M","4L75","5M","6M"],endure:["4M"],facade:["4M","5M","6M"],feintattack:["4L29","5L29","4S3","5S4","6L0"],flash:["4M","5M","6M"],fling:["4M","5M","6M"],focusblast:["4M","5M","6M"],focuspunch:["4M"],frustration:["4M","5M","6M"],gigaimpact:["4M","5M","6M"],haze:["4L57","5L57","6L0"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],hypnosis:["4L20","5L20","4S0","4S2","4S3","6L0"],icebeam:["4M","5M","6M"],icywind:["4T","5T"],incinerate:["5M","6M"],knockoff:["4T","5T"],lastresort:["4T","5T"],mudslap:["4T"],nastyplot:["4L75","5L75","6L0"],naturalgift:["4M"],nightmare:["4L38","5L38","4S0","4S2","4S3","5S4","6L0"],nightshade:["4L1"],ominouswind:["4T","4L1","5L1","5S4","6L0"],payback:["4M","5M","6M"],poisonjab:["4M","5M","6M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],pursuit:["4L29"],quickattack:["4L11","5L11","6L0"],raindance:["4M","5M","6M"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],roaroftime:["4S0","4S2"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],round:["5M","6M"],secretpower:["4M"],shadowball:["4M","5M","4S1","6M"],shadowclaw:["4M","5M","6M"],shockwave:["4M"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","5M","6M"],snarl:["5M","6M"],snatch:["4M","5T"],snore:["4T","5T"],spacialrend:["4S0","4S2"],spite:["4T","5T"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],suckerpunch:["4T"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],swordsdance:["4M","5M","6M"],taunt:["4M","5M","6M"],thief:["4M","5M","6M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderwave:["4M","5M","6M"],torment:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],willowisp:["4M","5M","6M"],xscissor:["4M","5M","6M"],foulplay:["5T"],wonderroom:["5T"]}}, + shaymin:{learnset:{aromatherapy:["4L64","5L64","4S0","6L0"],bulletseed:["4M"],defensecurl:["4L1"],doubleteam:["4M","5M","6M"],earthpower:["4T","5T"],endeavor:["4T","5T"],endure:["4M"],energyball:["4M","4L73","5M","5L73","4S0","6L0","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigadrain:["4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],grasswhistle:["4L82"],growth:["4L1","5L1","4S1","4S2","6L0"],headbutt:["4T"],healingwish:["4L91","5L91","6L0"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],lastresort:["4T","5T"],leechseed:["4L19","5L19","4S1","4S2","5S3","6L0"],luckychant:["4L91"],magicalleaf:["4L10","5L10","4S1","4S2","6L0"],mudslap:["4T"],naturalgift:["4M","4L46","5L46","6L0"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],seedbomb:["4T","5T"],seedflare:["4L100","5L100","4S0","5S3","6L0"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],substitute:["4M","5M","4S0","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],sweetkiss:["4L82","5L82","6L0"],sweetscent:["4L37","5L37","5S3","6L0"],swift:["4T"],swordsdance:["4M","5M","6M"],synthesis:["4L28","4T","5L28","4S1","4S2","5S3","5T","6L0"],toxic:["4M","5M","6M"],worryseed:["4L55","4T","5L55","5T","6L0"],zenheadbutt:["4T","5T"],covet:["5T"]}}, + shayminsky:{learnset:{aircutter:["4T"],airslash:["4L64","5L64","6L0"],aromatherapy:["4S0"],bulletseed:["4M"],doubleteam:["4M","5M","6M"],endure:["4M"],energyball:["4M","4L73","5M","5L73","4S0","6L0","6M"],facade:["4M","5M","6M"],flash:["4M","5M","6M"],frustration:["4M","5M","6M"],gigadrain:["4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],growth:["4L1","5L1","4S1","4S2","6L0"],headbutt:["4T"],hiddenpower:["4M","5M","6M"],hyperbeam:["4M","5M","6M"],lastresort:["4T","5T"],leafstorm:["4L91","5L91","6L0"],leechseed:["4L19","5L19","4S1","4S2","5S3","6L0"],magicalleaf:["4L10","5L10","4S1","4S2","6L0"],mudslap:["4T"],naturalgift:["4M","4L46","5L46","6L0"],ominouswind:["4T"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],quickattack:["4L28","5L28","6L0"],rest:["4M","5M","6M"],"return":["4M","5M","6M"],round:["5M","6M"],safeguard:["4M","5M","6M"],secretpower:["4M"],seedbomb:["4T","5T"],seedflare:["4L100","5L100","4S0","5S3","6L0"],sleeptalk:["4M","5T","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],substitute:["4M","5M","4S0","6M"],sunnyday:["4M","5M","6M"],swagger:["4M","5M","6M"],sweetkiss:["4L82","5L82","6L0"],sweetscent:["4L37","5L37","5S3","6L0"],swift:["4T"],swordsdance:["4M","5M","6M"],synthesis:["4T","4S1","4S2","5S3","5T"],tailwind:["4T","5T"],toxic:["4M","5M","6M"],worryseed:["4L55","4T","5L55","5T","6L0"],zenheadbutt:["4T","5T"],covet:["5T"]}}, + arceus:{learnset:{aerialace:["4M","5M","6M"],ancientpower:["4T"],aquatail:["4T","5T"],avalanche:["4M"],blizzard:["4M","5M","6M"],brickbreak:["4M","5M","6M"],brine:["4M"],bulldoze:["5M","6M"],bulletseed:["4M"],calmmind:["4M","5M","6M"],chargebeam:["4M","5M","6M"],cosmicpower:["4L1","5L1","6L0"],cut:["4M","5M","6M"],darkpulse:["4M","5T"],defog:["4M"],dive:["4T"],doubleteam:["4M","5M","6M"],dracometeor:["4T","5T","6T"],dragonclaw:["4M","5M","6M"],dragonpulse:["4M","5T"],dreameater:["4M","5M","6M"],earthpower:["4L20","4T","5L20","5T","6L0"],earthquake:["4M","5M","6M"],echoedvoice:["5M","6M"],endure:["4M"],energyball:["4M","5M","6M"],extremespeed:["4L40","5L40","6L0"],facade:["4M","5M","6M"],fireblast:["4M","5M","6M"],flamethrower:["4M","5M","6M"],flash:["4M","5M","6M"],flashcannon:["4M","5M","6M"],fly:["4M","5M","6M"],focusblast:["4M","5M","6M"],frustration:["4M","5M","6M"],furycutter:["4T"],futuresight:["4L60","5L60","6L0"],gigadrain:["4M","5T"],gigaimpact:["4M","5M","6M"],grassknot:["4M","5M","6M"],gravity:["4L10","4T","5L10","5T","6L0"],hail:["4M","5M","6M"],headbutt:["4T"],heatwave:["4T","5T"],hiddenpower:["4M","5M","6M"],honeclaws:["5M","6M"],hyperbeam:["4M","4L80","5M","5L80","5S1","6L0","6M"],hypervoice:["4L30","5L30","5T","6L0"],icebeam:["4M","5M","6M"],icywind:["4T","5T"],incinerate:["5M","6M"],irondefense:["4T","5T"],ironhead:["4T","5T"],irontail:["4M","5T"],judgment:["4L100","5L100","4S0","5S1","6L0"],lastresort:["4T","5T"],lightscreen:["4M","5M","6M"],magiccoat:["5T"],mudslap:["4T"],naturalgift:["4M","4L1","5L1","6L0"],ominouswind:["4T"],outrage:["4T","5T"],overheat:["4M","5M","6M"],payback:["4M","5M","6M"],perishsong:["4L90","5L90","5S1","6L0"],poisonjab:["4M","5M","6M"],protect:["4M","5M","6M"],psychic:["4M","5M","6M"],psychup:["4M","5M","6M"],psyshock:["5M","6M"],punishment:["4L1","5L1","6L0"],quash:["5M","6M"],raindance:["4M","5M","6M"],recover:["4L70","5L70","5S1","6L0"],recycle:["4M","5T"],reflect:["4M","5M","6M"],refresh:["4L50","5L50","6L0"],rest:["4M","5M","6M"],retaliate:["5M","6M"],"return":["4M","5M","6M"],roar:["4M","5M","6M"],roaroftime:["4S0"],rockclimb:["4M"],rockslide:["4M","5M","6M"],rocksmash:["4M","5M","6M"],rocktomb:["4M","5M","6M"],roleplay:["4T"],round:["5M","6M"],safeguard:["4M","5M","6M"],sandstorm:["4M","5M","6M"],secretpower:["4M"],seismictoss:["4L1","5L1","6L0"],shadowball:["4M","5M","6M"],shadowclaw:["4M","5M","6M"],shadowforce:["4S0"],shockwave:["4M"],signalbeam:["4T","5T"],silverwind:["4M"],sleeptalk:["4M","5T","6M"],sludgebomb:["4M","5M","6M"],snarl:["5M","6M"],snore:["4T","5T"],solarbeam:["4M","5M","6M"],spacialrend:["4S0"],stealthrock:["4M","5T"],stoneedge:["4M","5M","6M"],strength:["4M","5M","6M"],substitute:["4M","5M","6M"],sunnyday:["4M","5M","6M"],surf:["4M","5M","6M"],swagger:["4M","5M","6M"],swift:["4T"],swordsdance:["4M","5M","6M"],tailwind:["4T","5T"],telekinesis:["5M"],thunder:["4M","5M","6M"],thunderbolt:["4M","5M","6M"],thunderwave:["4M","5M","6M"],toxic:["4M","5M","6M"],trick:["4T","5T"],trickroom:["4M","5M","6M"],twister:["4T"],waterfall:["4M","5M","6M"],waterpulse:["4M"],whirlpool:["4M"],willowisp:["4M","5M","6M"],workup:["5M"],xscissor:["4M","5M","6M"],zenheadbutt:["4T","5T"]}}, + victini:{learnset:{blueflare:["5S2"],boltstrike:["5S2"],brickbreak:["5M","6M"],chargebeam:["5M","6M"],confusion:["5L1","5S0","6L0"],doubleedge:["5L65","6L0"],doubleteam:["5M","6M"],embargo:["5M","6M"],endure:["5L9","5S0","6L0"],energyball:["5M","6M"],facade:["5M","6M"],finalgambit:["5L81","6L0"],fireblast:["5M","6M"],flameburst:["5L41","6L0"],flamecharge:["5M","5L25","6L0","6M"],flamethrower:["5M","6M"],flareblitz:["5L73","6L0"],flash:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],focusenergy:["5L1","6L0"],frustration:["5M","6M"],fusionbolt:["5S1"],fusionflare:["5S1"],gigaimpact:["5M","6M"],glaciate:["5S2"],grassknot:["5M","6M"],headbutt:["5L17","6L0"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],incinerate:["5M","5L1","5S0","6L0","6M"],inferno:["5L57","6L0"],lightscreen:["5M","6M"],overheat:["5M","5L97","6L0","6M"],protect:["5M","6M"],psychic:["5M","6M"],psychup:["5M","6M"],psyshock:["5M","6M"],quickattack:["5L1","5S0","6L0"],rest:["5M","6M"],"return":["5M","6M"],reversal:["5L33","6L0"],rocksmash:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],searingshot:["5L1","5S1","6L0"],shadowball:["5M","6M"],solarbeam:["5M","6M"],storedpower:["5L89","6L0"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],telekinesis:["5M"],thunder:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],uturn:["5M","6M"],vcreate:["5S1","5S2"],wildcharge:["5M","6M"],willowisp:["5M","6M"],workup:["5M"],zenheadbutt:["5L49","5T","6L0"],signalbeam:["5T"],bounce:["5T"],uproar:["5T"],thunderpunch:["5T"],firepunch:["5T"],magiccoat:["5T"],lastresort:["5T"],snore:["5T"],heatwave:["5T"],roleplay:["5T"],helpinghand:["5T"],trick:["5T"],sleeptalk:["5T","6M"],skillswap:["5T"]}}, + snivy:{learnset:{aerialace:["5M","6M"],aromatherapy:["5S0"],attract:["5M","6M"],calmmind:["5M","6M"],captivate:["5E","6E"],coil:["5L31","6L0"],cut:["5M","6M"],doubleteam:["5M","6M"],energyball:["5M","5S0","6M"],facade:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],gastroacid:["5L40","5T","6L0"],gigadrain:["5L34","5T","6L0"],glare:["5E","6E"],grassknot:["5M","6M"],grasspledge:["5T","6T"],growth:["5L13","5S0","6L0"],hiddenpower:["5M","6M"],irontail:["5E","5T","6E"],leafblade:["5L28","6L0"],leafstorm:["5L43","6L0"],leaftornado:["5L16","6L0"],leechseed:["5L19","6L0"],leer:["5L4","6L0"],lightscreen:["5M","6M"],magicalleaf:["5E","6E"],meanlook:["5E","6E"],megadrain:["5L22","6L0"],mirrorcoat:["5E","6E"],naturalgift:["5E","6E"],protect:["5M","6M"],pursuit:["5E","6E"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],slam:["5L25","6L0"],solarbeam:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],sweetscent:["5E","6E"],swordsdance:["5M","6M"],synthesis:["5S0","5T"],tackle:["5L1","6L0"],taunt:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],twister:["5E","6E"],vinewhip:["5L7","6L0"],wrap:["5L10","6L0"],wringout:["5L37","6L0"],seedbomb:["5T"],aquatail:["5T"],bind:["5T"],snore:["5T"],knockoff:["5T"],worryseed:["5T"],snatch:["5T"],sleeptalk:["5T","6M"]}}, + servine:{learnset:{aerialace:["5M","6M"],attract:["5M","6M"],calmmind:["5M","6M"],coil:["5L36","6L0"],cut:["5M","6M"],doubleteam:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],gastroacid:["5L48","5T","6L0"],gigadrain:["5L40","5T","6L0"],grassknot:["5M","6M"],grasspledge:["5T","6T"],growth:["5L13","6L0"],hiddenpower:["5M","6M"],leafblade:["5L32","6L0"],leafstorm:["5L52","6L0"],leaftornado:["5L16","6L0"],leechseed:["5L20","6L0"],leer:["5L1","5L4","6L0","6L0"],lightscreen:["5M","6M"],megadrain:["5L24","6L0"],protect:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],slam:["5L28","6L0"],solarbeam:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","6M"],tackle:["5L1","6L0"],taunt:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],vinewhip:["5L1","5L7","6L0","6L0"],wrap:["5L1","5L10","6L0","6L0"],wringout:["5L44","6L0"],seedbomb:["5T"],aquatail:["5T"],irontail:["5T"],bind:["5T"],snore:["5T"],knockoff:["5T"],synthesis:["5T"],worryseed:["5T"],snatch:["5T"],sleeptalk:["5T","6M"]}}, + serperior:{learnset:{aerialace:["5M","6M"],attract:["5M","6M"],calmmind:["5M","6M"],coil:["5L38","6L0"],cut:["5M","6M"],doubleteam:["5M","6M"],dragontail:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],frenzyplant:["5T","6T"],frustration:["5M","6M"],gastroacid:["5L56","5T","6L0"],gigadrain:["5L44","5T","5S0","6L0"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],grasspledge:["5T","6T"],growth:["5L13","6L0"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],leafblade:["5L32","6L0"],leafstorm:["5L62","5S0","6L0"],leaftornado:["5L16","6L0"],leechseed:["5L20","5S0","6L0"],leer:["5L1","5L4","6L0","6L0"],lightscreen:["5M","6M"],megadrain:["5L24","6L0"],protect:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rocksmash:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],slam:["5L28","6L0"],solarbeam:["5M","6M"],strength:["5M","6M"],substitute:["5M","5S0","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","6M"],tackle:["5L1","6L0"],taunt:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],vinewhip:["5L1","5L7","6L0","6L0"],wrap:["5L1","5L10","6L0","6L0"],wringout:["5L50","6L0"],seedbomb:["5T"],aquatail:["5T"],dragonpulse:["5T"],irontail:["5T"],bind:["5T"],snore:["5T"],knockoff:["5T"],synthesis:["5T"],worryseed:["5T"],outrage:["5T"],snatch:["5T"],sleeptalk:["5T","6M"]}}, + tepig:{learnset:{assurance:["5L31","6L0"],attract:["5M","6M"],bodyslam:["5E","6E"],covet:["5E","5T","6E"],curse:["5E","6E"],defensecurl:["5L13","6L0"],doubleteam:["5M","6M"],echoedvoice:["5M","6M"],ember:["5L7","6L0"],endeavor:["5E","5T","6E"],facade:["5M","6M"],fireblast:["5M","6M"],firepledge:["5T","6T"],flamecharge:["5M","5L15","6L0","6M"],flamethrower:["5M","5L33","6L0","6M"],flareblitz:["5L43","6L0"],frustration:["5M","6M"],grassknot:["5M","6M"],gyroball:["5M","6M"],headsmash:["5L37","6L0"],heatcrash:["5L27","6L0"],heavyslam:["5E","6E"],hiddenpower:["5M","6M"],incinerate:["5M","6M"],magnitude:["5E","6E"],odorsleuth:["5L9","6L0"],overheat:["5M","6M"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],roar:["5M","5L39","6L0","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],rollout:["5L21","6L0"],round:["5M","6M"],sleeptalk:["5E","5T","6E"],smog:["5L19","6L0"],solarbeam:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],superpower:["5E","5T","6E"],swagger:["5M","6M"],tackle:["5L1","6L0"],tailwhip:["5L3","6L0"],takedown:["5L25","6L0"],taunt:["5M","6M"],thrash:["5E","6E"],toxic:["5M","6M"],wildcharge:["5M","6M"],willowisp:["5M","6M"],yawn:["5E","6E"],irontail:["5T"],snore:["5T"],heatwave:["5T"],helpinghand:["5T"]}}, + pignite:{learnset:{armthrust:["5L17","6L0"],assurance:["5L36","6L0"],attract:["5M","6M"],brickbreak:["5M","6M"],bulldoze:["5M","6M"],defensecurl:["5L13","6L0"],doubleteam:["5M","6M"],echoedvoice:["5M","6M"],ember:["5L1","5L7","6L0","6L0"],facade:["5M","6M"],fireblast:["5M","6M"],firepledge:["5T","6T"],flamecharge:["5M","5L15","6L0","6M"],flamethrower:["5M","5L39","6L0","6M"],flareblitz:["5L52","6L0"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],grassknot:["5M","6M"],gyroball:["5M","6M"],headsmash:["5L44","6L0"],heatcrash:["5L31","6L0"],hiddenpower:["5M","6M"],incinerate:["5M","6M"],lowsweep:["5M","6M"],odorsleuth:["5L1","5L9","6L0","6L0"],overheat:["5M","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],roar:["5M","5L47","6L0","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],rollout:["5L23","6L0"],round:["5M","6M"],smog:["5L20","6L0"],solarbeam:["5M","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],tackle:["5L1","6L0"],tailwhip:["5L1","5L3","6L0","6L0"],takedown:["5L28","6L0"],taunt:["5M","6M"],toxic:["5M","6M"],wildcharge:["5M","6M"],willowisp:["5M","6M"],workup:["5M"],covet:["5T"],lowkick:["5T"],thunderpunch:["5T"],firepunch:["5T"],superpower:["5T"],irontail:["5T"],snore:["5T"],heatwave:["5T"],helpinghand:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"]}}, + emboar:{learnset:{armthrust:["5L17","6L0"],assurance:["5L38","6L0"],attract:["5M","6M"],blastburn:["5T","6T"],brickbreak:["5M","6M"],bulkup:["5M","6M"],bulldoze:["5M","6M"],defensecurl:["5L13","6L0"],doubleteam:["5M","6M"],earthquake:["5M","6M"],echoedvoice:["5M","6M"],ember:["5L1","5L7","6L0","6L0"],facade:["5M","6M"],fireblast:["5M","6M"],firepledge:["5T","6T"],flamecharge:["5M","5L15","6L0","6M"],flamethrower:["5M","5L43","6L0","6M"],flareblitz:["5L62","5S0","6L0"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],gyroball:["5M","6M"],hammerarm:["5L1","5S0","6L0"],headsmash:["5L50","5S0","6L0"],heatcrash:["5L31","6L0"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],incinerate:["5M","6M"],lowsweep:["5M","6M"],odorsleuth:["5L1","5L9","6L0","6L0"],overheat:["5M","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],roar:["5M","5L55","6L0","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],rollout:["5L23","6L0"],round:["5M","6M"],scald:["5M","6M"],smackdown:["5M","6M"],smog:["5L20","6L0"],solarbeam:["5M","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],tackle:["5L1","6L0"],tailwhip:["5L1","5L3","6L0","6L0"],takedown:["5L28","6L0"],taunt:["5M","6M"],toxic:["5M","6M"],wildcharge:["5M","5S0","6M"],willowisp:["5M","6M"],workup:["5M"],covet:["5T"],ironhead:["5T"],lowkick:["5T"],thunderpunch:["5T"],firepunch:["5T"],block:["5T"],superpower:["5T"],irontail:["5T"],snore:["5T"],heatwave:["5T"],helpinghand:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"]}}, + oshawott:{learnset:{aerialace:["5M","6M"],airslash:["5E","6E"],aquajet:["5L29","6L0"],aquatail:["5L35","5T","6L0"],assurance:["5E","6E"],attract:["5M","6M"],blizzard:["5M","6M"],brine:["5E","6E"],copycat:["5E","6E"],cut:["5M","6M"],detect:["5E","6E"],dig:["5M","6M"],dive:["5M","6M"],doubleteam:["5M","6M"],encore:["5L31","6L0"],facade:["5M","6M"],falseswipe:["5M","6M"],fling:["5M","6M"],focusenergy:["5L13","6L0"],frustration:["5M","6M"],furycutter:["5L19","6L0"],grassknot:["5M","6M"],hail:["5M","6M"],hiddenpower:["5M","6M"],hydropump:["5L43","6L0"],icebeam:["5M","6M"],nightslash:["5E","6E"],protect:["5M","6M"],raindance:["5M","6M"],razorshell:["5L17","6L0"],rest:["5M","6M"],retaliate:["5M","5L37","6L0","6M"],"return":["5M","6M"],revenge:["5L25","6L0"],rocksmash:["5M","6M"],round:["5M","6M"],scald:["5M","6M"],screech:["5E","6E"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L41","6L0","6M"],tackle:["5L1","6L0"],tailwhip:["5L5","6L0"],taunt:["5M","6M"],toxic:["5M","6M"],trumpcard:["5E","6E"],waterfall:["5M","6M"],watergun:["5L7","6L0"],waterpledge:["5T","6T"],waterpulse:["5L23","6L0"],watersport:["5L11","6L0"],xscissor:["5M","6M"],covet:["5T"],icywind:["5T"],irontail:["5T"],snore:["5T"],helpinghand:["5T"],sleeptalk:["5T","6M"]}}, + dewott:{learnset:{aerialace:["5M","6M"],aquajet:["5L33","6L0"],aquatail:["5L41","5T","6L0"],attract:["5M","6M"],blizzard:["5M","6M"],cut:["5M","6M"],dig:["5M","6M"],dive:["5M","6M"],doubleteam:["5M","6M"],encore:["5L36","6L0"],facade:["5M","6M"],falseswipe:["5M","6M"],fling:["5M","6M"],focusenergy:["5L13","6L0"],frustration:["5M","6M"],furycutter:["5L20","6L0"],grassknot:["5M","6M"],hail:["5M","6M"],hiddenpower:["5M","6M"],hydropump:["5L52","6L0"],icebeam:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],razorshell:["5L17","6L0"],rest:["5M","6M"],retaliate:["5M","5L44","6L0","6M"],"return":["5M","6M"],revenge:["5L28","6L0"],rocksmash:["5M","6M"],round:["5M","6M"],scald:["5M","6M"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L49","6L0","6M"],tackle:["5L1","6L0"],tailwhip:["5L1","5L5","6L0","6L0"],taunt:["5M","6M"],toxic:["5M","6M"],waterfall:["5M","6M"],watergun:["5L1","5L7","6L0","6L0"],waterpledge:["5T","6T"],waterpulse:["5L25","6L0"],watersport:["5L1","5L11","6L0","6L0"],xscissor:["5M","6M"],covet:["5T"],icywind:["5T"],irontail:["5T"],snore:["5T"],helpinghand:["5T"],sleeptalk:["5T","6M"]}}, + samurott:{learnset:{aerialace:["5M","6M"],aquajet:["5L33","6L0"],aquatail:["5L45","5T","6L0"],attract:["5M","6M"],blizzard:["5M","6M"],cut:["5M","6M"],dig:["5M","6M"],dive:["5M","6M"],doubleteam:["5M","6M"],dragontail:["5M","6M"],encore:["5L38","6L0"],facade:["5M","6M"],falseswipe:["5M","6M"],fling:["5M","6M"],focusenergy:["5L13","6L0"],frustration:["5M","6M"],furycutter:["5L20","6L0"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],hail:["5M","6M"],hiddenpower:["5M","6M"],hydrocannon:["5T","6T"],hydropump:["5L62","5S0","6L0"],hyperbeam:["5M","6M"],icebeam:["5M","5S0","6M"],megahorn:["5L1","5S0","6L0"],protect:["5M","6M"],raindance:["5M","6M"],razorshell:["5L17","6L0"],rest:["5M","6M"],retaliate:["5M","5L50","6L0","6M"],"return":["5M","6M"],revenge:["5L28","6L0"],rocksmash:["5M","6M"],round:["5M","6M"],scald:["5M","6M"],slash:["5L36","6L0"],strength:["5M","6M"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L57","6L0","6M"],tackle:["5L1","6L0"],tailwhip:["5L1","5L5","6L0","6L0"],taunt:["5M","6M"],toxic:["5M","6M"],waterfall:["5M","6M"],watergun:["5L1","5L7","6L0","6L0"],waterpledge:["5T","6T"],waterpulse:["5L25","6L0"],watersport:["5L1","5L11","6L0","6L0"],xscissor:["5M","6M"],block:["5T"],covet:["5T"],superpower:["5T","5S0"],icywind:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],helpinghand:["5T"],sleeptalk:["5T","6M"]}}, + patrat:{learnset:{afteryou:["5L23","5T","6L23"],assurance:["5E","6E"],attract:["5M","6M"],batonpass:["5L33","6L33"],bide:["5L8","6L8"],bite:["5L6","6L6"],crunch:["5L16","6L16"],cut:["5M","6M"],detect:["5L11","6L11"],dig:["5M","6M"],doubleteam:["5M","6M"],facade:["5M","6M"],flail:["5E","6E"],fling:["5M","6M"],foresight:["5E","6E"],frustration:["5M","6M"],grassknot:["5M","6M"],hiddenpower:["5M","6M"],hyperfang:["5L28","6L28"],hypnosis:["5L18","6L18"],irontail:["5E","5T","6E"],leer:["5L3","6L3"],meanlook:["5L31","6L31"],protect:["5M","6M"],pursuit:["5E","6E"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],revenge:["5E","6E"],round:["5M","6M"],sandattack:["5L13","6L13"],screech:["5E","6E"],shadowball:["5M","6M"],slam:["5L36","6L36"],substitute:["5M","6M"],sunnyday:["5M","6M"],superfang:["5L21","5T","6L21"],swagger:["5M","6M"],swordsdance:["5M","6M"],tackle:["5L1","6L1"],thunderbolt:["5M","6M"],toxic:["5M","6M"],workup:["5M","5L26","6L26"],covet:["5T"],seedbomb:["5T"],lowkick:["5T"],gunkshot:["5T"],lastresort:["5T"],aquatail:["5T"],zenheadbutt:["5T"],snore:["5T"],helpinghand:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + watchog:{learnset:{afteryou:["5L25","5T","6L25"],attract:["5M","6M"],batonpass:["5L39","6L39"],bide:["5L8","6L8"],bite:["5L1","5L6","6L1","6L6"],confuseray:["5L20","6L20"],crunch:["5L16","6L16"],cut:["5M","6M"],detect:["5L11","6L11"],dig:["5M","6M"],doubleteam:["5M","6M"],dreameater:["5M","6M"],facade:["5M","6M"],flamethrower:["5M","6M"],flash:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],hyperfang:["5L32","6L32"],hypnosis:["5L18","6L18"],leer:["5L1","5L3","6L1","6L3"],lightscreen:["5M","6M"],lowkick:["5L1","5T","6L1"],meanlook:["5L36","6L36"],protect:["5M","6M"],psychup:["5M","5L29","6L29","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],rocksmash:["5M","6M"],round:["5M","6M"],sandattack:["5L13","6L13"],shadowball:["5M","6M"],slam:["5L43","6L43"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],superfang:["5L22","5T","6L22"],swagger:["5M","6M"],swordsdance:["5M","6M"],tackle:["5L1","6L1"],thunder:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],workup:["5M"],covet:["5T"],signalbeam:["5T"],seedbomb:["5T"],gunkshot:["5T"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],lastresort:["5T"],aquatail:["5T"],zenheadbutt:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],helpinghand:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"],rototiller:["6L1"],poweruppunch:["6M"],confide:["6M"]}}, + lillipup:{learnset:{aerialace:["5M","6M"],attract:["5M","6M"],bite:["5L8","6L8"],charm:["5E","6E"],crunch:["5L22","6L22"],dig:["5M","6M"],doubleteam:["5M","6M"],endure:["5E","6E"],facade:["5M","6M"],firefang:["5E","6E"],frustration:["5M","6M"],gigaimpact:["5M","5L40","6L40","6M"],helpinghand:["5L12","5T","6L12"],hiddenpower:["5M","6M"],howl:["5E","6E"],icefang:["5E","6E"],lastresort:["5L36","5T","6L36"],leer:["5L1","6L1"],lick:["5E","6E"],mudslap:["5E","6E"],odorsleuth:["5L5","6L5"],protect:["5M","6M"],pursuit:["5E","6E"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","5L29","6L29","6M"],"return":["5M","6M"],reversal:["5L33","6L33"],roar:["5M","5L26","6L26","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sandattack:["5E","6E"],shadowball:["5M","6M"],snarl:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],tackle:["5L1","6L1"],takedown:["5L15","6L15"],thunderbolt:["5M","6M"],thunderfang:["5E","6E"],thunderwave:["5M","6M"],toxic:["5M","6M"],wildcharge:["5M","6M"],workup:["5M","5L19","6L19"],yawn:["5E","6E"],covet:["5T"],uproar:["5T"],hypervoice:["5T"],snore:["5T"],sleeptalk:["5T","6M"],babydolleyes:["6L10"],playrough:["6L45"],confide:["6M"]}}, + herdier:{learnset:{aerialace:["5M","6M"],attract:["5M","6M"],bite:["5L1","5L8","6L8"],crunch:["5L24","6L24"],dig:["5M","6M"],doubleteam:["5M","6M"],facade:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","5L47","6L47","6M"],helpinghand:["5L12","5T","6L12"],hiddenpower:["5M","6M"],lastresort:["5L42","5T","6L42"],leer:["5L1","6L1"],odorsleuth:["5L1","5L5","6L5"],payback:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","5L33","6L33","6M"],"return":["5M","6M"],reversal:["5L38","6L38"],roar:["5M","5L29","6L29","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],shadowball:["5M","6M"],snarl:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],tackle:["5L1","6L1"],takedown:["5L15","6L15"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],wildcharge:["5M","6M"],workup:["5M","5L20","6L20"],covet:["5T"],uproar:["5T"],hypervoice:["5T"],snore:["5T"],sleeptalk:["5T","6M"],playrough:["6L52"],confide:["6M"]}}, + stoutland:{learnset:{aerialace:["5M","6M"],attract:["5M","6M"],bite:["5L1","5L8","6L8"],crunch:["5L24","6L24"],dig:["5M","6M"],doubleteam:["5M","6M"],facade:["5M","6M"],firefang:["5L1","6L1"],frustration:["5M","6M"],gigaimpact:["5M","5L59","6L59","6M"],helpinghand:["5L12","5T","6L12"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],icefang:["5L1","6L1"],lastresort:["5L51","5T","6L51"],leer:["5L1","6L1"],odorsleuth:["5L1","5L5","6L5"],payback:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","5L36","6L36","6M"],"return":["5M","6M"],reversal:["5L42","6L42"],roar:["5M","5L29","6L29","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],shadowball:["5M","6M"],snarl:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],tackle:["5L1","6L1"],takedown:["5L15","6L15"],thunder:["5M","6M"],thunderbolt:["5M","6M"],thunderfang:["5L1","6L1"],thunderwave:["5M","6M"],toxic:["5M","6M"],wildcharge:["5M","6M"],workup:["5M","5L20","6L20"],covet:["5T"],ironhead:["5T"],uproar:["5T"],superpower:["5T"],hypervoice:["5T"],snore:["5T"],sleeptalk:["5T","6M"],playrough:["6L63"],confide:["6M"]}}, + purrloin:{learnset:{aerialace:["5M","6M"],assist:["5L6","6L6"],assurance:["5L28","6L28"],attract:["5M","6M"],captivate:["5L33","6L33"],charm:["5E","6E"],covet:["5E","5T","6E"],cut:["5M","6M"],doubleteam:["5M","6M"],dreameater:["5M","6M"],echoedvoice:["5M","6M"],embargo:["5M","6M"],encore:["5E","6E"],facade:["5M","6M"],feintattack:["5E","6E"],fakeout:["5L21","6L21"],faketears:["5E","6E"],foulplay:["5E","5T","6E"],frustration:["5M","6M"],furyswipes:["5L12","6L12"],grassknot:["5M","6M"],growl:["5L3","6L3"],hiddenpower:["5M","6M"],honeclaws:["5M","5L24","6L24","6M"],nastyplot:["5L42","6L42"],nightslash:["5L37","6L37"],payback:["5M","6M"],payday:["5E","6E"],protect:["5M","6M"],psychup:["5M","6M"],pursuit:["5L15","6L15"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],sandattack:["5L10","6L10"],scratch:["5L1","6L1"],shadowball:["5M","6M"],shadowclaw:["5M","6M"],slash:["5L30","6L30"],snarl:["5M","6M"],snatch:["5L39","5T","6L39"],substitute:["5M","6M"],suckerpunch:["5L46","6L46"],sunnyday:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],thief:["5M","6M"],thunderwave:["5M","6M"],torment:["5M","5L19","6L19","6M"],toxic:["5M","6M"],uturn:["5M","6M"],yawn:["5E","6E"],seedbomb:["5T"],gunkshot:["5T"],darkpulse:["5T","6M"],hypervoice:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T","6M"],playrough:["6L49"],confide:["6M"]}}, + liepard:{learnset:{aerialace:["5M","6M"],assist:["5L1","5L6","6L1","6L6"],assurance:["5L31","6L31"],attract:["5M","6M"],cut:["5M","6M"],doubleteam:["5M","6M"],dreameater:["5M","6M"],echoedvoice:["5M","6M"],embargo:["5M","6M"],encore:["5S0"],facade:["5M","6M"],fakeout:["5L22","5S0","6L22"],frustration:["5M","6M"],furyswipes:["5L12","6L12"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],growl:["5L1","5L3","6L1","6L3"],hiddenpower:["5M","6M"],honeclaws:["5M","5L26","6L26","6M"],hyperbeam:["5M","6M"],nastyplot:["5L50","6L50"],nightslash:["5L43","6L43"],payback:["5M","6M"],protect:["5M","6M"],psychup:["5M","6M"],pursuit:["5L15","6L15"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rocksmash:["5M","6M"],round:["5M","6M"],sandattack:["5L1","5L10","6L1","6L10"],scratch:["5L1","6L1"],shadowball:["5M","6M"],shadowclaw:["5M","6M"],slash:["5L34","6L34"],snarl:["5M","6M"],snatch:["5L47","5T","6L47"],substitute:["5M","6M"],suckerpunch:["5L55","6L55"],sunnyday:["5M","6M"],swagger:["5M","5S0","6M"],taunt:["5M","5L38","6L38","6M"],thief:["5M","6M"],thunderwave:["5M","6M"],torment:["5M","5L19","6L19","6M"],toxic:["5M","6M"],uturn:["5M","6M"],covet:["5T"],seedbomb:["5T"],gunkshot:["5T"],foulplay:["5T","5S0"],darkpulse:["5T","6M"],hypervoice:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T","6M"],playrough:["6L58"],confide:["6M"]}}, + pansage:{learnset:{acrobatics:["5M","5L31","6L31","6M"],astonish:["5E","6E"],attract:["5M","6M"],bite:["5L19","5S0","6L19"],bulletseed:["5E","5S0","6E"],covet:["5E","5T","6E"],crunch:["5L43","6L43"],cut:["5M","6M"],dig:["5M","5S0","5S2","6M"],doubleteam:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],fling:["5M","5L28","6L28","6M"],frustration:["5M","6M"],furyswipes:["5L13","6L13"],grassknot:["5M","5L34","6L34","6M"],grasswhistle:["5E","6E"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],leafstorm:["5E","5S1","6E"],leechseed:["5L16","6L16"],leer:["5L4","5S1","6L4"],lick:["5L7","5S1","6L7"],lowkick:["5E","5T","6E"],lowsweep:["5M","6M"],magicalleaf:["5E","6E"],nastyplot:["5E","6E"],naturalgift:["5L40","6L40"],payback:["5M","6M"],protect:["5M","6M"],recycle:["5L37","5T","6L37"],rest:["5M","6M"],"return":["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","5S2","6M"],roleplay:["5E","5T","6E"],round:["5M","6M"],scratch:["5L1","6L1"],seedbomb:["5L22","5T","5S2","6L22"],shadowclaw:["5M","6M"],solarbeam:["5M","5S0","5S2","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],thief:["5M","6M"],tickle:["5E","6E"],torment:["5M","5L25","6L25","6M"],toxic:["5M","6M"],vinewhip:["5L10","5S1","6L10"],workup:["5M"],gunkshot:["5T"],uproar:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],synthesis:["5T"],gigadrain:["5T"],worryseed:["5T"],helpinghand:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"],playnice:["6L1"],naturepower:["6M"],confide:["6M"],disarmingvoice:["6E"]}}, + simisage:{learnset:{acrobatics:["5M","6M"],attract:["5M","6M"],brickbreak:["5M","6M"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],furyswipes:["5L1","6L1"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],leer:["5L1","6L1"],lick:["5L1","6L1"],lowsweep:["5M","6M"],payback:["5M","6M"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],seedbomb:["5L1","5T","6L1"],shadowclaw:["5M","6M"],solarbeam:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],thief:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],workup:["5M"],covet:["5T"],lowkick:["5T"],gunkshot:["5T"],uproar:["5T"],superpower:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],synthesis:["5T"],roleplay:["5T"],gigadrain:["5T"],worryseed:["5T"],helpinghand:["5T"],endeavor:["5T"],recycle:["5T"],sleeptalk:["5T","6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + pansear:{learnset:{acrobatics:["5M","5L31","6L31","6M"],amnesia:["5L25","6L25"],astonish:["5E","6E"],attract:["5M","6M"],bite:["5L19","6L19"],covet:["5E","5T","6E"],crunch:["5L43","6L43"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],facade:["5M","6M"],fireblast:["5M","5L34","6L34","6M"],firepunch:["5E","5T","6E"],firespin:["5E","6E"],flameburst:["5L22","6L22"],flamecharge:["5M","6M"],flamethrower:["5M","6M"],fling:["5M","5L28","6L28","6M"],frustration:["5M","6M"],furyswipes:["5L13","6L13"],grassknot:["5M","6M"],heatwave:["5E","5T","5S0","6E"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],incinerate:["5M","5L10","5S0","6L10","6M"],leer:["5L4","5S0","6L4"],lick:["5L7","5S0","6L7"],lowkick:["5E","5T","6E"],lowsweep:["5M","6M"],nastyplot:["5E","6E"],naturalgift:["5L40","6L40"],overheat:["5M","6M"],payback:["5M","6M"],protect:["5M","6M"],recycle:["5L37","5T","6L37"],rest:["5M","6M"],"return":["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],roleplay:["5E","5T","6E"],round:["5M","6M"],scratch:["5L1","6L1"],shadowclaw:["5M","6M"],sleeptalk:["5E","5T","6M","6E"],solarbeam:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],thief:["5M","6M"],tickle:["5E","6E"],torment:["5M","6M"],toxic:["5M","6M"],willowisp:["5M","6M"],workup:["5M"],yawn:["5L16","6L16"],gunkshot:["5T"],uproar:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],helpinghand:["5T"],endeavor:["5T"],playnice:["6L1"],confide:["6M"],disarmingvoice:["6E"]}}, + simisear:{learnset:{acrobatics:["5M","6M"],attract:["5M","6M"],brickbreak:["5M","6M"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],facade:["5M","6M"],fireblast:["5M","6M"],flameburst:["5L1","6L1"],flamecharge:["5M","6M"],flamethrower:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],furyswipes:["5L1","6L1"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],incinerate:["5M","6M"],leer:["5L1","6L1"],lick:["5L1","6L1"],lowsweep:["5M","6M"],overheat:["5M","6M"],payback:["5M","6M"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],shadowclaw:["5M","6M"],solarbeam:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],thief:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],willowisp:["5M","6M"],workup:["5M"],covet:["5T"],lowkick:["5T"],gunkshot:["5T"],uproar:["5T"],firepunch:["5T"],superpower:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],heatwave:["5T"],roleplay:["5T"],helpinghand:["5T"],endeavor:["5T"],recycle:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"]}}, + panpour:{learnset:{acrobatics:["5M","5L31","6L31","6M"],aquaring:["5E","6E"],aquatail:["5E","5T","6E"],astonish:["5E","6E"],attract:["5M","6M"],bite:["5L19","6L19"],blizzard:["5M","6M"],brine:["5L34","6L34"],covet:["5E","5T","6E"],crunch:["5L43","6L43"],cut:["5M","6M"],dig:["5M","6M"],dive:["5M"],doubleteam:["5M","6M"],facade:["5M","6M"],fling:["5M","5L28","6L28","6M"],frustration:["5M","6M"],furyswipes:["5L13","6L13"],grassknot:["5M","6M"],hail:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hydropump:["5E","5S0","6E"],icebeam:["5M","6M"],leer:["5L4","5S0","6L4"],lick:["5L7","5S0","6L7"],lowkick:["5E","5T","6E"],lowsweep:["5M","6M"],mudsport:["5E","6E"],nastyplot:["5E","6E"],naturalgift:["5L40","6L40"],payback:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],recycle:["5L37","5T","6L37"],rest:["5M","6M"],"return":["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],roleplay:["5E","5T","6E"],round:["5M","6M"],scald:["5M","5L22","6L22","6M"],scratch:["5L1","6L1"],shadowclaw:["5M","6M"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],taunt:["5M","5L25","6L25","6M"],thief:["5M","6M"],tickle:["5E","6E"],torment:["5M","6M"],toxic:["5M","6M"],waterfall:["5M","6M"],watergun:["5L10","5S0","6L10"],watersport:["5L16","6L16"],workup:["5M"],gunkshot:["5T"],uproar:["5T"],icepunch:["5T"],icywind:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],helpinghand:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"],playnice:["6L1"],confide:["6M"],disarmingvoice:["6E"]}}, + simipour:{learnset:{acrobatics:["5M","6M"],attract:["5M","6M"],blizzard:["5M","6M"],brickbreak:["5M","6M"],cut:["5M","6M"],dig:["5M","6M"],dive:["5M"],doubleteam:["5M","6M"],facade:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],furyswipes:["5L1","6L1"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],hail:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],icebeam:["5M","6M"],leer:["5L1","6L1"],lick:["5L1","6L1"],lowsweep:["5M","6M"],payback:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],scald:["5M","5L1","6L1","6M"],shadowclaw:["5M","6M"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],thief:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],waterfall:["5M","6M"],workup:["5M"],covet:["5T"],lowkick:["5T"],gunkshot:["5T"],uproar:["5T"],icepunch:["5T"],superpower:["5T"],icywind:["5T"],aquatail:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],helpinghand:["5T"],endeavor:["5T"],recycle:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"]}}, + munna:{learnset:{attract:["5M","6M"],barrier:["5E","6E"],batonpass:["5E","6E"],calmmind:["5M","5L35","6L35","6M"],chargebeam:["5M","6M"],curse:["5E","6E"],defensecurl:["5L1","6L1"],doubleteam:["5M","6M"],dreameater:["5M","5L41","6L41","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],futuresight:["5L31","6L31"],gyroball:["5M","6M"],helpinghand:["5E","5T","6E"],hiddenpower:["5M","6M"],hypnosis:["5L19","6L19"],imprison:["5L13","6L13"],lightscreen:["5M","6M"],luckychant:["5L5","6L5"],magiccoat:["5E","5T","6E"],moonlight:["5L17","6L17"],nightmare:["5L29","6L29"],protect:["5M","6M"],psybeam:["5L11","6L11"],psychic:["5M","5L37","6L37","6M"],psychup:["5M","6M"],psyshock:["5M","6M"],psywave:["5L1","6L1"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],secretpower:["5E","6E"],shadowball:["5M","6M"],sleeptalk:["5E","5T","6M","6E"],sonicboom:["5E","6E"],storedpower:["5L47","6L47"],substitute:["5M","6M"],swagger:["5M","6M"],swift:["5E","6E"],synchronoise:["5L25","6L25"],telekinesis:["5M","5L43","6L43"],thunderwave:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],yawn:["5L7","6L7"],zenheadbutt:["5L23","5T","6L23"],signalbeam:["5T"],gravity:["5T"],snore:["5T"],healbell:["5T"],painsplit:["5T"],worryseed:["5T"],afteryou:["5T"],trick:["5T"],wonderroom:["5T"],skillswap:["5T"],dazzlinggleam:["6M"],confide:["6M"],healingwish:["6E"]}}, + musharna:{learnset:{attract:["5M","6M"],calmmind:["5M","6M"],chargebeam:["5M","6M"],defensecurl:["5L1","5S0","6L1"],doubleteam:["5M","6M"],dreameater:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],gyroball:["5M","6M"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],hypnosis:["5L1","5S0","6L1"],lightscreen:["5M","6M"],luckychant:["5L1","5S0","6L1"],protect:["5M","6M"],psybeam:["5L1","5S0","6L1"],psychic:["5M","6M"],psychup:["5M","6M"],psyshock:["5M","6M"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],telekinesis:["5M"],thunderwave:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],signalbeam:["5T"],magiccoat:["5T"],gravity:["5T"],zenheadbutt:["5T"],snore:["5T"],healbell:["5T"],painsplit:["5T"],worryseed:["5T"],afteryou:["5T"],helpinghand:["5T"],trick:["5T"],wonderroom:["5T"],sleeptalk:["5T","6M"],skillswap:["5T"],dazzlinggleam:["6M"],confide:["6M"]}}, + pidove:{learnset:{aerialace:["5M","6M"],aircutter:["5L15","5S0","6L15"],airslash:["5L29","6L29"],attract:["5M","6M"],bestow:["5E","6E"],detect:["5L22","6L22"],doubleteam:["5M","6M"],echoedvoice:["5M","6M"],facade:["5M","5L43","6L43","6M"],featherdance:["5L36","6L36"],fly:["5M","6M"],frustration:["5M","6M"],growl:["5L4","6L4"],gust:["5L1","5S0","5D","6L1"],hiddenpower:["5M","6M"],hypnosis:["5E","5D","6E"],leer:["5L8","6L8"],luckychant:["5E","6E"],morningsun:["5E","5D","6E"],pluck:["5M"],protect:["5M","6M"],quickattack:["5L11","5S0","6L11"],raindance:["5M","6M"],razorwind:["5L32","6L32"],rest:["5M","6M"],"return":["5M","6M"],roost:["5L18","5T","6L18","6M"],round:["5M","6M"],skyattack:["5L50","5T","6L50"],steelwing:["5E","6M","6E"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","5L39","6L39","6M"],tailwind:["5L46","5T","6L46"],taunt:["5M","5L25","6L25","6M"],toxic:["5M","6M"],uproar:["5E","5T","6E"],uturn:["5M","6M"],wish:["5E","6E"],workup:["5M"],snore:["5T"],heatwave:["5T"],sleeptalk:["5T","6M"],confide:["6M"],nightslash:["6E"]}}, + tranquill:{learnset:{aerialace:["5M","6M"],aircutter:["5L15","6L15"],airslash:["5L32","6L32"],attract:["5M","6M"],detect:["5L23","6L23"],doubleteam:["5M","6M"],echoedvoice:["5M","6M"],facade:["5M","5L50","6L50","6M"],featherdance:["5L41","6L41"],fly:["5M","6M"],frustration:["5M","6M"],growl:["5L1","5L4","6L1","6L4"],gust:["5L1","6L1"],hiddenpower:["5M","6M"],leer:["5L1","5L8","6L1","6L8"],pluck:["5M"],protect:["5M","6M"],quickattack:["5L1","5L11","6L1","6L11"],raindance:["5M","6M"],razorwind:["5L36","6L36"],rest:["5M","6M"],"return":["5M","6M"],roost:["5L18","5T","6L18","6M"],round:["5M","6M"],skyattack:["5L59","5T","6L59"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","5L45","6L45","6M"],tailwind:["5L54","5T","6L54"],taunt:["5M","5L27","6L27","6M"],toxic:["5M","6M"],uturn:["5M","6M"],workup:["5M"],uproar:["5T"],snore:["5T"],heatwave:["5T"],sleeptalk:["5T","6M"],steelwing:["6M"],confide:["6M"]}}, + unfezant:{learnset:{aerialace:["5M","6M"],aircutter:["5L15","6L15"],airslash:["5L33","6L33"],attract:["5M","6M"],detect:["5L23","6L23"],doubleteam:["5M","6M"],echoedvoice:["5M","6M"],facade:["5M","5L55","6L55","6M"],featherdance:["5L44","6L44"],fly:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],growl:["5L1","5L4","6L1","6L4"],gust:["5L1","6L1"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],leer:["5L1","5L8","6L1","6L8"],pluck:["5M"],protect:["5M","6M"],psychup:["5M","6M"],quickattack:["5L1","5L11","6L1","6L11"],raindance:["5M","6M"],razorwind:["5L38","6L38"],rest:["5M","6M"],"return":["5M","6M"],roost:["5L18","5T","6L18","6M"],round:["5M","6M"],skyattack:["5L66","5T","6L66"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","5L49","6L49","6M"],tailwind:["5L60","5T","6L60"],taunt:["5M","5L27","6L27","6M"],toxic:["5M","6M"],uturn:["5M","6M"],workup:["5M"],uproar:["5T"],snore:["5T"],heatwave:["5T"],sleeptalk:["5T","6M"],steelwing:["6M"],confide:["6M"]}}, + blitzle:{learnset:{agility:["5L36","6L36"],attract:["5M","6M"],charge:["5L8","6L8"],chargebeam:["5M","6M"],discharge:["5L32","6L32"],doubleedge:["5E","6E"],doublekick:["5E","6E"],doubleteam:["5M","6M"],endure:["5E","6E"],facade:["5M","6M"],flamecharge:["5M","5L18","6L18","6M"],flash:["5M","6M"],frustration:["5M","6M"],hiddenpower:["5M","6M"],lightscreen:["5M","6M"],mefirst:["5E","6E"],protect:["5M","6M"],pursuit:["5L22","6L22"],quickattack:["5L1","6L1"],rage:["5E","6E"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],sandattack:["5E","6E"],screech:["5E","6E"],shockwave:["5E","5L11","6L11","6E"],spark:["5L25","6L25"],stomp:["5L29","6L29"],substitute:["5M","6M"],swagger:["5M","6M"],tailwhip:["5L4","6L4"],takedown:["5E","6E"],thrash:["5L43","6L43"],thunder:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","5L15","6L15","6M"],toxic:["5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","5L39","6L39","6M"],signalbeam:["5T"],bounce:["5T"],magnetrise:["5T"],snore:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + zebstrika:{learnset:{agility:["5L42","6L42"],attract:["5M","6M"],charge:["5L1","5L8","6L1","6L8"],chargebeam:["5M","6M"],discharge:["5L36","6L36"],doubleteam:["5M","6M"],facade:["5M","6M"],flamecharge:["5M","5L18","6L18","6M"],flash:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],lightscreen:["5M","6M"],overheat:["5M","6M"],protect:["5M","6M"],pursuit:["5L22","6L22"],quickattack:["5L1","6L1"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rocksmash:["5M","6M"],round:["5M","6M"],shockwave:["5L11","6L11"],spark:["5L25","6L25"],stomp:["5L31","6L31"],substitute:["5M","6M"],swagger:["5M","6M"],tailwhip:["5L1","5L4","6L1","6L4"],thrash:["5L53","6L53"],thunder:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","5L1","5L15","6L1","6L15","6M"],toxic:["5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","5L47","6L47","6M"],signalbeam:["5T"],bounce:["5T"],magnetrise:["5T"],snore:["5T"],sleeptalk:["5T","6M"],iondeluge:["6L1","6L58"],confide:["6M"]}}, + roggenrola:{learnset:{attract:["5M","6M"],autotomize:["5E","6E"],bulldoze:["5M","6M"],curse:["5E","6E"],doubleteam:["5M","6M"],earthquake:["5M","6M"],explosion:["5M","5L40","6L40","6M"],facade:["5M","6M"],flashcannon:["5M","6M"],frustration:["5M","6M"],gravity:["5E","5T","6E"],harden:["5L4","6L4"],headbutt:["5L10","6L10"],heavyslam:["5E","6E"],hiddenpower:["5M","6M"],irondefense:["5L20","5T","6L20"],lockon:["5E","6E"],magnitude:["5E","6E"],mudslap:["5L17","6L17"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockblast:["5L14","6L14"],rockpolish:["5M","6M"],rockslide:["5M","5L27","6L27","6M"],rocksmash:["5M","6M"],rocktomb:["5E","5M","6M","6E"],round:["5M","6M"],sandattack:["5L7","6L7"],sandstorm:["5M","5L33","6L33","6M"],smackdown:["5M","5L23","6L23","6M"],stealthrock:["5L30","5T","6L30"],stoneedge:["5M","5L36","6L36","6M"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],tackle:["5L1","6L1"],takedown:["5E","6E"],toxic:["5M","6M"],block:["5T"],earthpower:["5T"],snore:["5T"],sleeptalk:["5T","6M"],naturepower:["6M"],confide:["6M"]}}, + boldore:{learnset:{attract:["5M","6M"],bulldoze:["5M","6M"],doubleteam:["5M","6M"],earthquake:["5M","6M"],explosion:["5M","5L55","6L55","6M"],facade:["5M","6M"],flashcannon:["5M","6M"],frustration:["5M","6M"],harden:["5L1","5L4","6L1","6L4"],headbutt:["5L1","5L10","6L1","6L10"],hiddenpower:["5M","6M"],irondefense:["5L20","5T","6L20"],mudslap:["5L17","6L17"],powergem:["5L25","6L25"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockblast:["5L14","6L14"],rockpolish:["5M","6M"],rockslide:["5M","5L30","6L30","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sandattack:["5L1","5L7","6L1","6L7"],sandstorm:["5M","5L42","6L42","6M"],smackdown:["5M","5L23","5D","6L23","6M"],stealthrock:["5L36","5T","6L36"],stoneedge:["5M","5L48","6L48","6M"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],tackle:["5L1","6L1"],toxic:["5M","6M"],block:["5T"],earthpower:["5T"],gravity:["5T"],snore:["5T"],sleeptalk:["5T","6M"],curse:["5D"],heavyslam:["5D"],naturepower:["6M"],confide:["6M"]}}, + gigalith:{learnset:{attract:["5M","6M"],bulldoze:["5M","6M"],doubleteam:["5M","6M"],earthquake:["5M","6M"],explosion:["5M","5L55","6L55","6M"],facade:["5M","6M"],flashcannon:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],harden:["5L1","5L4","6L1","6L4"],headbutt:["5L1","5L10","6L1","6L10"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],irondefense:["5L20","5T","6L20"],mudslap:["5L17","6L17"],powergem:["5L25","6L25"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockblast:["5L14","6L14"],rockpolish:["5M","6M"],rockslide:["5M","5L30","6L30","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sandattack:["5L1","5L7","6L1","6L7"],sandstorm:["5M","5L42","6L42","6M"],smackdown:["5M","5L23","6L23","6M"],solarbeam:["5M","6M"],stealthrock:["5L36","5T","6L36"],stoneedge:["5M","5L48","6L48","6M"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],tackle:["5L1","6L1"],toxic:["5M","6M"],ironhead:["5T"],block:["5T"],earthpower:["5T"],gravity:["5T"],superpower:["5T"],snore:["5T"],sleeptalk:["5T","6M"],naturepower:["6M"],confide:["6M"]}}, + woobat:{learnset:{acrobatics:["5M","6M"],aerialace:["5M","6M"],aircutter:["5L21","6L21"],airslash:["5L32","6L32"],amnesia:["5L29","6L29"],assurance:["5L12","6L12"],attract:["5M","5L25","6L25","6M"],calmmind:["5M","5L29","6L29","6M"],chargebeam:["5M","6M"],charm:["5E","6E"],confusion:["5L1","6L1"],doubleteam:["5M","6M"],dreameater:["5M","6M"],embargo:["5M","6M"],endeavor:["5L47","5T","6L47"],energyball:["5M","6M"],facade:["5M","6M"],faketears:["5E","6E"],flash:["5M","6M"],flatter:["5E","6E"],fly:["5M","6M"],frustration:["5M","6M"],futuresight:["5L36","6L36"],gust:["5L8","6L8"],gyroball:["5M","6M"],heartstamp:["5L15","6L15"],helpinghand:["5E","5T","6E"],hiddenpower:["5M","6M"],imprison:["5L19","6L19"],knockoff:["5E","5T","6E"],lightscreen:["5M","6M"],odorsleuth:["5L4","6L4"],pluck:["5M"],protect:["5M","6M"],psychic:["5M","5L41","6L41","6M"],psychup:["5M","6M"],psyshock:["5M","6M"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],roost:["5E","5T","6M","6E"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],storedpower:["5E","6E"],substitute:["5M","6M"],supersonic:["5E","6E"],swagger:["5M","6M"],synchronoise:["5E","6E"],taunt:["5M","6M"],telekinesis:["5M"],thief:["5M","6M"],thunderwave:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],uturn:["5M","6M"],superfang:["5T"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],zenheadbutt:["5T"],snore:["5T"],heatwave:["5T"],tailwind:["5T"],gigadrain:["5T"],afteryou:["5T"],trick:["5T"],sleeptalk:["5T","6M"],skillswap:["5T"],steelwing:["6M"],confide:["6M"],psychoshift:["6E"],venomdrench:["6E"]}}, + swoobat:{learnset:{acrobatics:["5M","6M"],aerialace:["5M","6M"],aircutter:["5L21","6L21"],airslash:["5L32","6L32"],amnesia:["5L29","6L29"],assurance:["5L1","5L12","6L1","6L12"],attract:["5M","5L25","6L25","6M"],calmmind:["5M","5L29","6L29","6M"],chargebeam:["5M","6M"],confusion:["5L1","6L1"],doubleteam:["5M","6M"],dreameater:["5M","6M"],embargo:["5M","6M"],endeavor:["5L47","5T","6L47"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],fly:["5M","6M"],frustration:["5M","6M"],futuresight:["5L36","6L36"],gigaimpact:["5M","6M"],gust:["5L1","5L8","6L1","6L8"],gyroball:["5M","6M"],heartstamp:["5L15","6L15"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],imprison:["5L19","6L19"],lightscreen:["5M","6M"],odorsleuth:["5L1","5L4","6L1","6L4"],pluck:["5M"],protect:["5M","6M"],psychic:["5M","5L41","6L41","6M"],psychup:["5M","6M"],psyshock:["5M","6M"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],telekinesis:["5M"],thief:["5M","6M"],thunderwave:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],uturn:["5M","6M"],superfang:["5T"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],zenheadbutt:["5T"],snore:["5T"],knockoff:["5T"],heatwave:["5T"],tailwind:["5T"],skyattack:["5T"],gigadrain:["5T"],roost:["5T","6M"],afteryou:["5T"],helpinghand:["5T"],trick:["5T"],sleeptalk:["5T","6M"],skillswap:["5T"],steelwing:["6M"],confide:["6M"]}}, + drilbur:{learnset:{aerialace:["5M","6M"],attract:["5M","6M"],brickbreak:["5M","6M"],bulldoze:["5M","6M"],crushclaw:["5E","6E"],cut:["5M","6M"],dig:["5M","5L19","6L19","6M"],doubleteam:["5M","6M"],drillrun:["5L43","5T","6L43"],earthpower:["5E","5T","6E"],earthquake:["5M","5L33","6L33","6M"],facade:["5M","6M"],fissure:["5L47","6L47"],fling:["5M","6M"],frustration:["5M","6M"],furyswipes:["5L12","6L12"],hiddenpower:["5M","6M"],honeclaws:["5M","5L22","6L22","6M"],irondefense:["5E","5T","6E"],metalclaw:["5L15","6L15"],metalsound:["5E","5D","6E"],mudslap:["5L8","6L8"],mudsport:["5L1","6L1"],poisonjab:["5M","6M"],protect:["5M","6M"],rapidspin:["5E","5L5","5D","6L5","6E"],rest:["5M","6M"],"return":["5M","6M"],rockclimb:["5E","5D","6E"],rockslide:["5M","5L29","6L29","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sandstorm:["5M","5L40","6L40","6M"],scratch:["5L1","6L1"],shadowclaw:["5M","6M"],skullbash:["5E","6E"],slash:["5L26","6L26"],sludgebomb:["5M","6M"],strength:["5M","6M"],submission:["5E","6E"],substitute:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L36","6L36","6M"],toxic:["5M","6M"],xscissor:["5M","6M"],snore:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + excadrill:{learnset:{aerialace:["5M","6M"],attract:["5M","6M"],brickbreak:["5M","6M"],bulldoze:["5M","6M"],cut:["5M","6M"],dig:["5M","5L19","6L19","6M"],doubleteam:["5M","6M"],drillrun:["5L55","5T","6L55"],earthquake:["5M","5L36","6L36","6M"],facade:["5M","6M"],fissure:["5L62","6L62"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],furyswipes:["5L12","6L12"],gigaimpact:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","5L22","6L22","6M"],horndrill:["5L31","6L31"],hyperbeam:["5M","6M"],metalclaw:["5L15","6L15"],mudslap:["5L1","5L8","6L1","6L8"],mudsport:["5L1","6L1"],poisonjab:["5M","6M"],protect:["5M","6M"],rapidspin:["5L1","5L5","6L1","6L5"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","5L29","6L29","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sandstorm:["5M","5L49","6L49","6M"],scratch:["5L1","6L1"],shadowclaw:["5M","6M"],slash:["5L26","6L26"],sludgebomb:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L42","6L42","6M"],toxic:["5M","6M"],xscissor:["5M","6M"],ironhead:["5T"],earthpower:["5T"],magnetrise:["5T"],irondefense:["5T"],snore:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"],rototiller:["6L1"],confide:["6M"]}}, + audino:{learnset:{afteryou:["5L40","5T","6L40"],amnesia:["5E","6E"],attract:["5M","5L15","6L15","6M"],bestow:["5E","6E"],blizzard:["5M","6M"],calmmind:["5M","6M"],chargebeam:["5M","6M"],dig:["5M","6M"],doubleedge:["5L50","6L50"],doubleslap:["5L10","5S0","6L10"],doubleteam:["5M","6M"],dreameater:["5M","6M"],echoedvoice:["5M","6M"],encore:["5E","5D","6E"],entrainment:["5L25","6L25"],facade:["5M","6M"],fireblast:["5M","6M"],flamethrower:["5M","6M"],flash:["5M","6M"],fling:["5M","6M"],frustration:["5M","6M"],grassknot:["5M","6M"],growl:["5L1","6L1"],healbell:["5E","5T","6E"],healingwish:["5E","6E"],healpulse:["5L35","5S0","5S1","6L35"],helpinghand:["5L1","5S0","5S1","5T","5D","6L1"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],icebeam:["5M","6M"],incinerate:["5M","6M"],lastresort:["5L55","5T","6L1","6L55"],lightscreen:["5M","6M"],luckychant:["5E","6E"],pound:["5L1","6L1"],present:["5S1"],protect:["5M","6M"],psychic:["5M","6M"],psychup:["5M","6M"],psyshock:["5M","6M"],raindance:["5M","6M"],reflect:["5M","6M"],refresh:["5L5","5S0","5S1","6L5"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],secretpower:["5L20","6L20"],shadowball:["5M","6M"],simplebeam:["5L45","6L45"],sleeptalk:["5E","5T","6M","6E"],solarbeam:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],sweetkiss:["5E","6E"],takedown:["5L30","6L30"],telekinesis:["5M"],thunder:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],wildcharge:["5M","6M"],wish:["5E","6E"],workup:["5M"],yawn:["5E","5D","6E"],covet:["5T"],signalbeam:["5T"],lowkick:["5T"],uproar:["5T"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],magiccoat:["5T"],gravity:["5T"],icywind:["5T"],zenheadbutt:["5T"],hypervoice:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],painsplit:["5T"],drainpunch:["5T"],snatch:["5T"],skillswap:["5T"],playnice:["6L1"],poweruppunch:["6M"],dazzlinggleam:["6M"],confide:["6M"],drainingkiss:["6E"]}}, + timburr:{learnset:{attract:["5M","6M"],bide:["5L8","6L8"],brickbreak:["5M","6M"],bulkup:["5M","5L28","6L28","6M"],chipaway:["5L24","6L24"],cometpunch:["5E","6E"],counter:["5E","6E"],detect:["5E","6E"],dig:["5M","6M"],doubleteam:["5M","6M"],drainpunch:["5E","5T","6E"],dynamicpunch:["5L34","6L34"],endure:["5E","6E"],facade:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],focusenergy:["5L4","6L4"],focuspunch:["5L46","6L46"],forcepalm:["5E","6E"],foresight:["5E","6E"],frustration:["5M","6M"],grassknot:["5M","6M"],hammerarm:["5L40","6L40"],hiddenpower:["5M","6M"],leer:["5L1","6L1"],lowkick:["5L12","5T","6L12"],lowsweep:["5M","6M"],machpunch:["5E","6E"],payback:["5M","6M"],poisonjab:["5M","6M"],pound:["5L1","6L1"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],reversal:["5E","6E"],rockslide:["5M","5L31","6L31","6M"],rocksmash:["5M","6M"],rockthrow:["5L16","6L16"],rocktomb:["5M","6M"],round:["5M","6M"],scaryface:["5L37","6L37"],smackdown:["5M","6M"],smellingsalts:["5E","6E"],stoneedge:["5M","5L43","6L43","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],superpower:["5L49","5T","6L49"],swagger:["5M","6M"],taunt:["5M","6M"],toxic:["5M","6M"],wakeupslap:["5L20","6L20"],wideguard:["5E","6E"],workup:["5M"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],block:["5T"],snore:["5T"],knockoff:["5T"],helpinghand:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"],crosschop:["6E"]}}, + gurdurr:{learnset:{attract:["5M","6M"],bide:["5L1","5L8","6L1","6L8"],brickbreak:["5M","6M"],bulkup:["5M","5L29","6L29","6M"],chipaway:["5L24","6L24"],dig:["5M","6M"],doubleteam:["5M","6M"],dynamicpunch:["5L37","6L37"],facade:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],focusenergy:["5L1","5L4","6L1","6L4"],focuspunch:["5L53","6L53"],frustration:["5M","6M"],grassknot:["5M","6M"],hammerarm:["5L45","6L45"],hiddenpower:["5M","6M"],leer:["5L1","6L1"],lowkick:["5L12","5T","5D","6L12"],lowsweep:["5M","6M"],machpunch:["5D"],payback:["5M","6M"],poisonjab:["5M","6M"],pound:["5L1","6L1"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],rockslide:["5M","5L33","6L33","6M"],rocksmash:["5M","6M"],rockthrow:["5L16","6L16"],rocktomb:["5M","6M"],round:["5M","6M"],scaryface:["5L41","6L41"],smackdown:["5M","6M"],stoneedge:["5M","5L49","6L49","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],superpower:["5L57","5T","6L57"],swagger:["5M","6M"],taunt:["5M","6M"],toxic:["5M","6M"],wakeupslap:["5L20","6L20"],workup:["5M"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],block:["5T"],snore:["5T"],knockoff:["5T"],drainpunch:["5T","5D"],helpinghand:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"]}}, + conkeldurr:{learnset:{attract:["5M","6M"],bide:["5L1","5L8","6L1","6L8"],brickbreak:["5M","6M"],bulkup:["5M","5L29","6L29","6M"],bulldoze:["5M","6M"],chipaway:["5L24","6L24"],dig:["5M","6M"],doubleteam:["5M","6M"],dynamicpunch:["5L37","6L37"],earthquake:["5M","6M"],facade:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],focusenergy:["5L1","5L4","6L1","6L4"],focuspunch:["5L53","6L53"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],hammerarm:["5L45","6L45"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],leer:["5L1","6L1"],lowkick:["5L12","5T","6L12"],lowsweep:["5M","6M"],payback:["5M","6M"],poisonjab:["5M","6M"],pound:["5L1","6L1"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],rockslide:["5M","5L33","6L33","6M"],rocksmash:["5M","6M"],rockthrow:["5L16","6L16"],rocktomb:["5M","6M"],round:["5M","6M"],scaryface:["5L41","6L41"],smackdown:["5M","6M"],stoneedge:["5M","5L49","6L49","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],superpower:["5L57","5T","6L57"],swagger:["5M","6M"],taunt:["5M","6M"],toxic:["5M","6M"],wakeupslap:["5L20","6L20"],workup:["5M"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],block:["5T"],snore:["5T"],knockoff:["5T"],drainpunch:["5T"],helpinghand:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"]}}, + tympole:{learnset:{aquaring:["5L20","6L20"],attract:["5M","6M"],bubble:["5L1","6L1"],bubblebeam:["5L12","6L12"],doubleteam:["5M","6M"],earthpower:["5E","5T","5D","6E"],echoedvoice:["5M","5L38","6L38","6M"],facade:["5M","6M"],flail:["5L34","6L34"],frustration:["5M","6M"],growl:["5L1","6L1"],hail:["5M","6M"],hiddenpower:["5M","6M"],hydropump:["5L42","6L42"],hypervoice:["5L45","5T","6L45"],mist:["5E","6E"],mudbomb:["5E","6E"],muddywater:["5L27","6L27"],mudshot:["5L16","6L16"],mudsport:["5E","6E"],protect:["5M","6M"],raindance:["5M","5L31","6L31","6M"],refresh:["5E","6E"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","5L9","5D","6L9","6M"],scald:["5M","6M"],sleeptalk:["5E","5T","6M","6E"],sludgebomb:["5M","6M"],sludgewave:["5M","6M"],snore:["5E","5T","6E"],substitute:["5M","6M"],supersonic:["5L5","6L5"],surf:["5M","6M"],swagger:["5M","6M"],toxic:["5M","6M"],uproar:["5L23","5T","6L23"],waterpulse:["5E","5D","6E"],bounce:["5T"],icywind:["5T"],endeavor:["5T"],infestation:["6M"],confide:["6M"]}}, + palpitoad:{learnset:{aquaring:["5L20","6L20"],attract:["5M","6M"],bubble:["5L1","6L1"],bubblebeam:["5L12","6L12"],bulldoze:["5M","6M"],doubleteam:["5M","6M"],echoedvoice:["5M","5L42","6L42","6M"],facade:["5M","6M"],flail:["5L37","6L37"],frustration:["5M","6M"],growl:["5L1","6L1"],hail:["5M","6M"],hiddenpower:["5M","6M"],hydropump:["5L47","6L47"],hypervoice:["5L51","5T","6L51"],muddywater:["5L28","6L28"],mudshot:["5L16","6L16"],protect:["5M","6M"],raindance:["5M","5L33","6L33","6M"],rest:["5M","6M"],"return":["5M","6M"],rocksmash:["5M","6M"],round:["5M","5L1","5L9","6L1","6L9","6M"],scald:["5M","6M"],sludgebomb:["5M","6M"],sludgewave:["5M","6M"],substitute:["5M","6M"],supersonic:["5L1","5L5","6L1","6L5"],surf:["5M","6M"],swagger:["5M","6M"],toxic:["5M","6M"],uproar:["5L23","5T","6L23"],bounce:["5T"],earthpower:["5T"],icywind:["5T"],snore:["5T"],gastroacid:["5T"],endeavor:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"],infestation:["6M"],confide:["6M"]}}, + seismitoad:{learnset:{acid:["5L36","6L36"],aquaring:["5L20","6L20"],attract:["5M","6M"],brickbreak:["5M","6M"],bubble:["5L1","6L1"],bubblebeam:["5L12","6L12"],bulldoze:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],drainpunch:["5L44","5T","6L44"],earthquake:["5M","6M"],echoedvoice:["5M","5L49","6L49","6M"],facade:["5M","6M"],flail:["5L39","6L39"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],growl:["5L1","6L1"],hail:["5M","6M"],hiddenpower:["5M","6M"],hydropump:["5L53","6L53"],hyperbeam:["5M","6M"],hypervoice:["5L59","5T","6L59"],muddywater:["5L28","6L28"],mudshot:["5L16","6L16"],payback:["5M","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],raindance:["5M","5L33","6L33","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","5L1","5L9","6L1","6L9","6M"],scald:["5M","6M"],sludgebomb:["5M","6M"],sludgewave:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],supersonic:["5L1","5L5","6L1","6L5"],surf:["5M","6M"],swagger:["5M","6M"],toxic:["5M","6M"],uproar:["5L23","5T","6L23"],venoshock:["5M","6M"],bounce:["5T"],lowkick:["5T"],icepunch:["5T"],earthpower:["5T"],icywind:["5T"],snore:["5T"],knockoff:["5T"],gastroacid:["5T"],endeavor:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + throh:{learnset:{attract:["5M","6M"],bide:["5L5","6L5"],bind:["5L1","5T","5D","6L1"],bodyslam:["5L29","6L29"],brickbreak:["5M","6M"],bulkup:["5M","5L33","6L33","6M"],bulldoze:["5M","6M"],circlethrow:["5L37","6L37"],dig:["5M","6M"],doubleteam:["5M","6M"],earthquake:["5M","6M"],endure:["5L41","6L41"],facade:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],focusenergy:["5L9","6L9"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],hiddenpower:["5M","6M"],leer:["5L1","6L1"],lowsweep:["5M","6M"],payback:["5M","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],revenge:["5L21","6L21"],reversal:["5L53","6L50"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],seismictoss:["5L13","6L13"],stoneedge:["5M","6M"],stormthrow:["5L25","6L25"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],superpower:["5L49","5T","5D","6L48"],swagger:["5M","6M"],taunt:["5M","6M"],toxic:["5M","6M"],vitalthrow:["5L17","6L17"],wideguard:["5L45","6L45"],workup:["5M"],lowkick:["5T"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T","5D"],block:["5T"],snore:["5T"],knockoff:["5T"],painsplit:["5T"],helpinghand:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"]}}, + sawk:{learnset:{attract:["5M","6M"],bide:["5L5","6L5"],brickbreak:["5M","5L29","6L29","6M"],bulkup:["5M","5L33","6L33","6M"],bulldoze:["5M","6M"],closecombat:["5L49","6L48"],counter:["5L21","6L21"],dig:["5M","6M"],doublekick:["5L13","6L13"],doubleteam:["5M","6M"],earthquake:["5M","6M"],endure:["5L41","6L41"],facade:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],focusenergy:["5L9","6L9"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],hiddenpower:["5M","6M"],karatechop:["5L25","6L25"],leer:["5L1","6L1"],lowsweep:["5M","5L17","6L17","6M"],payback:["5M","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],quickguard:["5L45","6L45"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","5L37","6L37","6M"],"return":["5M","6M"],reversal:["5L53","6L50"],rockslide:["5M","6M"],rocksmash:["5M","5L1","5D","6L1","6M"],rocktomb:["5M","6M"],round:["5M","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],toxic:["5M","6M"],workup:["5M"],dualchop:["5T","5D"],lowkick:["5T"],thunderpunch:["5T","5D"],firepunch:["5T"],icepunch:["5T"],block:["5T"],superpower:["5T"],snore:["5T"],knockoff:["5T"],painsplit:["5T"],helpinghand:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"]}}, + sewaddle:{learnset:{agility:["5E","6E"],airslash:["5E","6E"],attract:["5M","6M"],batonpass:["5E","6E"],bugbite:["5L8","5T","6L8"],bugbuzz:["5L36","6L36"],calmmind:["5M","6M"],camouflage:["5E","6E"],cut:["5M","6M"],doubleteam:["5M","6M"],dreameater:["5M","6M"],endure:["5L29","6L29"],energyball:["5M","6M"],facade:["5M","6M"],flail:["5L43","6L43"],flash:["5M","6M"],frustration:["5M","6M"],grassknot:["5M","6M"],hiddenpower:["5M","6M"],lightscreen:["5M","6M"],mefirst:["5E","6E"],mindreader:["5E","6E"],payback:["5M","6M"],protect:["5M","6M"],razorleaf:["5L15","6L15"],razorwind:["5E","6E"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],screech:["5E","6E"],silverwind:["5E","6E"],solarbeam:["5M","6M"],stringshot:["5L1","6L1"],strugglebug:["5M","5L22","6L22","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],tackle:["5L1","6L1"],toxic:["5M","6M"],signalbeam:["5T"],seedbomb:["5T"],magiccoat:["5T"],irondefense:["5T"],electroweb:["5T"],snore:["5T"],synthesis:["5T"],gigadrain:["5T"],worryseed:["5T"],sleeptalk:["5T","6M"],stickyweb:["6L31"],naturepower:["6M"],confide:["6M"]}}, + swadloon:{learnset:{attract:["5M","6M"],bugbite:["5L1","5T","6L1"],calmmind:["5M","6M"],cut:["5M","6M"],doubleteam:["5M","6M"],dreameater:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],grassknot:["5M","6M"],grasswhistle:["5L1","6L1"],hiddenpower:["5M","6M"],lightscreen:["5M","6M"],payback:["5M","6M"],protect:["5M","5L20","6L20","6M"],razorleaf:["5L1","6L1"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],solarbeam:["5M","6M"],stringshot:["5L1","6L1"],strugglebug:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],tackle:["5L1","6L1"],toxic:["5M","6M"],signalbeam:["5T"],seedbomb:["5T"],magiccoat:["5T"],irondefense:["5T"],electroweb:["5T"],snore:["5T"],synthesis:["5T"],gigadrain:["5T"],worryseed:["5T"],sleeptalk:["5T","6M"],naturepower:["6M"],confide:["6M"]}}, + leavanny:{learnset:{aerialace:["5M","6M"],attract:["5M","6M"],bugbite:["5L1","5L8","5T","6L1","6L8"],calmmind:["5M","6M"],cut:["5M","6M"],doubleteam:["5M","6M"],dreameater:["5M","6M"],energyball:["5M","6M"],entrainment:["5L43","6L43"],facade:["5M","6M"],falseswipe:["5M","5L1","6L1","6M"],flash:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],helpinghand:["5L32","5T","6L32"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],leafblade:["5L36","6L36"],leafstorm:["5L50","6L50"],lightscreen:["5M","6M"],payback:["5M","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],razorleaf:["5L1","5L15","6L1","6L15"],reflect:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowclaw:["5M","6M"],slash:["5L29","6L29"],solarbeam:["5M","6M"],stringshot:["5L1","6L1"],strugglebug:["5M","5L22","6L22","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L46","6L46","6M"],tackle:["5L1","6L1"],toxic:["5M","6M"],xscissor:["5M","5L39","6L39","6M"],signalbeam:["5T"],seedbomb:["5T"],magiccoat:["5T"],irondefense:["5T"],electroweb:["5T"],snore:["5T"],knockoff:["5T"],synthesis:["5T"],healbell:["5T"],gigadrain:["5T"],worryseed:["5T"],sleeptalk:["5T","6M"],fellstinger:["6L34"],steelwing:["6M"],naturepower:["6M"],confide:["6M"]}}, + venipede:{learnset:{agility:["5L29","6L29"],attract:["5M","6M"],bugbite:["5L22","5T","6L22"],defensecurl:["5L1","6L1"],doubleedge:["5L43","6L43"],doubleteam:["5M","6M"],facade:["5M","6M"],frustration:["5M","6M"],gyroball:["5M","6M"],hiddenpower:["5M","6M"],payback:["5M","6M"],pinmissile:["5E","6E"],poisonjab:["5M","6M"],poisonsting:["5L5","6L5"],poisontail:["5L19","6L19"],protect:["5M","5L15","6L15","6M"],pursuit:["5L12","6L12"],rest:["5M","6M"],"return":["5M","6M"],rockclimb:["5E","5L40","6L40","6E"],rocksmash:["5M","6M"],rollout:["5L1","6L1"],round:["5M","6M"],screech:["5L8","6L8"],sludgebomb:["5M","6M"],solarbeam:["5M","6M"],spikes:["5E","6E"],steamroller:["5L33","6L33"],strugglebug:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],takedown:["5E","6E"],toxic:["5M","5L36","6L36","6M"],toxicspikes:["5E","6E"],twineedle:["5E","6E"],venoshock:["5M","5L26","6L26","6L38","6M"],irondefense:["5T"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"],infestation:["6M"],confide:["6M"]}}, + whirlipede:{learnset:{agility:["5L32","6L32"],attract:["5M","6M"],bugbite:["5L23","5T","6L23"],defensecurl:["5L1","6L1"],doubleedge:["5L50","6L50"],doubleteam:["5M","6M"],facade:["5M","6M"],frustration:["5M","6M"],gyroball:["5M","6M"],hiddenpower:["5M","6M"],irondefense:["5L22","5T","6L22"],payback:["5M","6M"],poisonjab:["5M","6M"],poisonsting:["5L1","5L5","6L1","6L5"],poisontail:["5L19","6L19"],protect:["5M","5L15","6L15","6M"],pursuit:["5L12","6L12"],rest:["5M","6M"],"return":["5M","6M"],rockclimb:["5L46","6L46"],rocksmash:["5M","6M"],rollout:["5L1","6L1"],round:["5M","6M"],screech:["5L1","5L8","6L1","6L8"],sludgebomb:["5M","6M"],solarbeam:["5M","6M"],steamroller:["5L37","6L37"],strugglebug:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],toxic:["5M","5L41","6L41","6M"],venoshock:["5M","5L28","6L28","6M"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"],venomdrench:["6L43"],infestation:["6M"],confide:["6M"]}}, + scolipede:{learnset:{agility:["5L33","6L33"],attract:["5M","6M"],batonpass:["5L30","6L30"],bugbite:["5L23","5T","6L23"],bulldoze:["5M","6M"],cut:["5M","6M"],defensecurl:["5L1","6L1"],dig:["5M","6M"],doubleedge:["5L55","6L55"],doubleteam:["5M","6M"],earthquake:["5M","6M"],facade:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],gyroball:["5M","6M"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],megahorn:["5L1","6L1","6L65"],payback:["5M","6M"],poisonjab:["5M","6M"],poisonsting:["5L1","5L5","6L1","6L5"],poisontail:["5L19","5D","6L19"],protect:["5M","5L15","6L15","6M"],pursuit:["5L12","6L12"],rest:["5M","6M"],"return":["5M","6M"],rockclimb:["5L50","6L50"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],rollout:["5L1","6L1"],round:["5M","6M"],screech:["5L1","5L8","6L1","6L8"],sludgebomb:["5M","6M"],solarbeam:["5M","6M"],steamroller:["5L39","6L39"],strength:["5M","6M"],strugglebug:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","6M"],toxic:["5M","5L44","6L44","6M"],venoshock:["5M","5L28","6L28","6M"],xscissor:["5M","6M"],irondefense:["5T"],superpower:["5T","5D"],aquatail:["5T"],irontail:["5T"],snore:["5T"],endeavor:["5T"],snatch:["5T"],sleeptalk:["5T","6M"],toxicspikes:["5D"],venomdrench:["6L47"],infestation:["6M"],confide:["6M"]}}, + cottonee:{learnset:{absorb:["5L1","6L0"],attract:["5M","6M"],beatup:["5E","6E"],charm:["5L28","6L0"],cottonguard:["5L37","6L0"],cottonspore:["5L17","6L0"],doubleteam:["5M","6M"],dreameater:["5M","6M"],encore:["5E","5D","6E"],endeavor:["5L44","5T","6L0"],energyball:["5M","5L35","6L0","6M"],facade:["5M","6M"],faketears:["5E","6E"],flash:["5M","6M"],frustration:["5M","6M"],gigadrain:["5L26","5T","6L0"],grassknot:["5M","6M"],grasswhistle:["5E","6E"],growth:["5L4","6L0"],helpinghand:["5L31","5T","6L0"],hiddenpower:["5M","6M"],leechseed:["5L8","5D","6L0"],megadrain:["5L13","6L0"],memento:["5E","6E"],naturalgift:["5E","6E"],poisonpowder:["5L22","6L0"],protect:["5M","6M"],razorleaf:["5L19","6L0"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],solarbeam:["5M","5L46","6L0","6M"],stunspore:["5L10","6L0"],substitute:["5M","6M"],sunnyday:["5M","5L40","6L0","6M"],swagger:["5M","6M"],switcheroo:["5E","6E"],taunt:["5M","6M"],tickle:["5E","6E"],toxic:["5M","6M"],worryseed:["5E","5T","5D","6E"],covet:["5T"],seedbomb:["5T"],snore:["5T"],knockoff:["5T"],tailwind:["5T"],sleeptalk:["5T","6M"]}}, + whimsicott:{learnset:{attract:["5M","6M"],beatup:["5S0"],cottonspore:["5L1","6L0"],doubleteam:["5M","6M"],dreameater:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],fling:["5M","6M"],frustration:["5M","6M"],gigadrain:["5S0","5T"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],growth:["5L1","6L0"],gust:["5L10","6L0"],helpinghand:["5S0","5T"],hiddenpower:["5M","6M"],hurricane:["5L46","6L0"],hyperbeam:["5M","6M"],leechseed:["5L1","6L0"],lightscreen:["5M","6M"],megadrain:["5L1","6L0"],protect:["5M","6M"],psychic:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],solarbeam:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","5S0","6M"],tailwind:["5L28","5T","6L0"],taunt:["5M","6M"],thief:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],uturn:["5M","6M"],covet:["5T"],seedbomb:["5T"],snore:["5T"],knockoff:["5T"],worryseed:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"]}}, + petilil:{learnset:{absorb:["5L1","6L1"],afteryou:["5L44","5T","6L44"],aromatherapy:["5L28","6L28"],attract:["5M","6M"],bide:["5E","6E"],charm:["5E","5D","6E"],cut:["5M","6M"],doubleteam:["5M","6M"],dreameater:["5M","6M"],endure:["5E","6E"],energyball:["5M","5L35","6L35","6M"],entrainment:["5L37","6L37"],facade:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],gigadrain:["5L26","5T","6L26"],grassknot:["5M","6M"],grasswhistle:["5E","6E"],growth:["5L4","6L4"],healingwish:["5E","6E"],helpinghand:["5L31","5T","6L31"],hiddenpower:["5M","6M"],ingrain:["5E","6E"],leafstorm:["5L46","6L46"],leechseed:["5L8","6L8"],magicalleaf:["5L19","6L19"],megadrain:["5L13","6L13"],naturalgift:["5E","6E"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],sleeppowder:["5L10","5D","6L10"],solarbeam:["5M","6M"],stunspore:["5L22","6L22"],substitute:["5M","6M"],sunnyday:["5M","5L40","6L40","6M"],swagger:["5M","6M"],sweetscent:["5E","5D","6E"],synthesis:["5L17","5T","6L17"],toxic:["5M","6M"],worryseed:["5E","5T","6E"],covet:["5T"],seedbomb:["5T"],snore:["5T"],healbell:["5T"],sleeptalk:["5T","6M"],naturepower:["6M"],confide:["6M"]}}, + lilligant:{learnset:{attract:["5M","6M"],cut:["5M","6M"],doubleteam:["5M","6M"],dreameater:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],growth:["5L1","6L1"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],leechseed:["5L1","6L1"],lightscreen:["5M","6M"],megadrain:["5L1","6L1"],petaldance:["5L46","6L46"],protect:["5M","6M"],quiverdance:["5L28","6L28"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],solarbeam:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","6M"],synthesis:["5L1","5T","6L1"],teeterdance:["5L10","6L10"],toxic:["5M","6M"],covet:["5T"],seedbomb:["5T"],snore:["5T"],roleplay:["5T"],healbell:["5T"],gigadrain:["5T"],worryseed:["5T"],afteryou:["5T"],helpinghand:["5T"],sleeptalk:["5T","6M"],petalblizzard:["6L50"],naturepower:["6M"],confide:["6M"]}}, + basculin:{learnset:{agility:["5E","5D","6E"],aquajet:["5L13","6L13"],aquatail:["5L28","5T","6L28"],attract:["5M","6M"],bite:["5L10","6L10"],brine:["5E","6E"],bubblebeam:["5E","6E"],chipaway:["5L16","6L16"],crunch:["5L24","6L24"],cut:["5M","6M"],dive:["5M"],doubleedge:["5L36","6L36"],doubleteam:["5M","6M"],facade:["5M","6M"],finalgambit:["5L51","6L50"],flail:["5L46","6L1","6L46"],frustration:["5M","6M"],hail:["5M","6M"],headbutt:["5L7","5D","6L7"],hiddenpower:["5M","6M"],icebeam:["5M","6M"],muddywater:["5E","6E"],mudshot:["5E","6E"],protect:["5M","6M"],rage:["5E","6E"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],revenge:["5E","6E"],round:["5M","6M"],scald:["5M","6M"],scaryface:["5L41","6L41"],soak:["5L32","6L32"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],swift:["5E","6E"],tackle:["5L1","6L1"],takedown:["5L20","6L20"],taunt:["5M","6M"],thrash:["5L56","6L1","6L56"],toxic:["5M","6M"],uproar:["5L4","5T","6L4"],waterfall:["5M","6M"],watergun:["5L1","6L1"],whirlpool:["5E","6E"],bounce:["5T"],superpower:["5T"],icywind:["5T"],zenheadbutt:["5T","5D"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"],tailwhip:["6L1"],confide:["6M"]}}, + sandile:{learnset:{assurance:["5L16","6L16"],attract:["5M","6M"],beatup:["5E","6E"],bite:["5L4","6L4"],bulldoze:["5M","6M"],counter:["5E","6E"],crunch:["5L28","6L28"],cut:["5M","6M"],dig:["5M","5L31","6L31","6M"],doubleedge:["5E","6E"],doubleteam:["5M","6M"],earthquake:["5M","5L43","6L43","6M"],embargo:["5M","5L22","6L22","6M"],facade:["5M","6M"],firefang:["5E","6E"],focusenergy:["5E","6E"],foulplay:["5L37","5T","6L37"],frustration:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],incinerate:["5M","6M"],leer:["5L1","6L1"],meanlook:["5E","6E"],mudslap:["5L19","6L19"],payback:["5M","6M"],protect:["5M","6M"],pursuit:["5E","6E"],rage:["5L1","6L1"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],roar:["5M","6M"],rockclimb:["5E","6E"],rockslide:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sandattack:["5L7","6L7"],sandstorm:["5M","5L40","6L40","6M"],sandtomb:["5L13","6L13"],scaryface:["5L34","6L34"],sludgebomb:["5M","6M"],snarl:["5M","6M"],stoneedge:["5M","6M"],substitute:["5M","6M"],swagger:["5M","5L25","6L25","6M"],taunt:["5M","6M"],thief:["5M","6M"],thrash:["5L46","6L46"],thunderfang:["5E","6E"],torment:["5M","5L10","6L10","6M"],toxic:["5M","6M"],uproar:["5E","5T","6E"],aquatail:["5T"],darkpulse:["5T","6M"],earthpower:["5T"],irontail:["5T"],sleeptalk:["5T","6M"],snatch:["5T"],snore:["5T"],spite:["5T"],stealthrock:["5T"],confide:["6M"]}}, + krokorok:{learnset:{assurance:["5L16","6L16"],attract:["5M","6M"],bite:["5L1","5L4","6L1","6L4"],brickbreak:["5M","6M"],bulldoze:["5M","6M"],crunch:["5L28","6L28"],cut:["5M","6M"],dig:["5M","5L32","6L32","6M"],doubleteam:["5M","6M"],earthquake:["5M","5L48","6L48","6M"],embargo:["5M","5L22","6L22","6M"],facade:["5M","6M"],fling:["5M","6M"],foulplay:["5L40","5T","6L40"],frustration:["5M","6M"],grassknot:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],incinerate:["5M","6M"],leer:["5L1","6L1"],lowsweep:["5M","6M"],mudslap:["5L19","6L19"],payback:["5M","6M"],protect:["5M","6M"],rage:["5L1","6L1"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],roar:["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sandattack:["5L1","5L7","6L1","6L7"],sandstorm:["5M","5L44","6L44","6M"],sandtomb:["5L13","6L13"],scaryface:["5L36","6L36"],shadowclaw:["5M","6M"],sludgebomb:["5M","6M"],snarl:["5M","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","5L25","6L25","6M"],taunt:["5M","6M"],thief:["5M","6M"],thrash:["5L52","6L52"],torment:["5M","5L10","6L10","6M"],toxic:["5M","6M"],lowkick:["5T"],uproar:["5T"],earthpower:["5T"],aquatail:["5T"],darkpulse:["5T","6M"],irontail:["5T"],snore:["5T"],knockoff:["5T"],spite:["5T"],snatch:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"]}}, + krookodile:{learnset:{aerialace:["5M","6M"],assurance:["5L16","6L16"],attract:["5M","6M"],bite:["5L1","5L4","6L1","6L4"],brickbreak:["5M","6M"],bulkup:["5M","6M"],bulldoze:["5M","6M"],crunch:["5L28","5D","6L28"],cut:["5M","6M"],dig:["5M","5L32","6L32","6M"],doubleteam:["5M","6M"],dragonclaw:["5M","6M"],dragontail:["5M","6M"],earthquake:["5M","5L54","6L54","6M"],embargo:["5M","5L22","6L22","6M"],facade:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],foulplay:["5L42","5T","6L42"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],incinerate:["5M","6M"],leer:["5L1","6L1"],lowsweep:["5M","6M"],mudslap:["5L19","6L19"],outrage:["5L60","5T","6L1","6L60"],payback:["5M","6M"],protect:["5M","6M"],rage:["5L1","6L1"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],roar:["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sandattack:["5L1","5L7","6L1","6L7"],sandstorm:["5M","5L48","6L48","6M"],sandtomb:["5L13","6L13"],scaryface:["5L36","6L36"],shadowclaw:["5M","6M"],sludgebomb:["5M","6M"],smackdown:["5M","6M"],snarl:["5M","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","5L25","6L25","6M"],taunt:["5M","6M"],thief:["5M","6M"],torment:["5M","5L10","6L10","6M"],toxic:["5M","6M"],lowkick:["5T"],uproar:["5T"],block:["5T"],earthpower:["5T"],superpower:["5T"],aquatail:["5T"],darkpulse:["5T","6M"],dragonpulse:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],spite:["5T"],snatch:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"],counter:["5D"],meanlook:["5D"],poweruppunch:["6M"],confide:["6M"]}}, + darumaka:{learnset:{attract:["5M","6M"],bellydrum:["5L30","6L0"],brickbreak:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],encore:["5E","6E"],endure:["5E","6E"],facade:["5M","5L19","6L0","6M"],fireblast:["5M","6M"],firefang:["5L11","6L0"],firepunch:["5L22","5T","6L0"],flamecharge:["5M","6M"],flamethrower:["5M","6M"],flamewheel:["5E","6E"],flareblitz:["5L33","6L0"],fling:["5M","6M"],focusenergy:["5E","6E"],focuspunch:["5E","6E"],frustration:["5M","6M"],grassknot:["5M","6M"],gyroball:["5M","6M"],hammerarm:["5E","6E"],headbutt:["5L14","6L0"],hiddenpower:["5M","6M"],incinerate:["5M","5L6","6L0","6M"],overheat:["5M","5L42","6L0","6M"],protect:["5M","6M"],rage:["5L9","6L0"],rest:["5M","6M"],"return":["5M","6M"],roar:["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],rollout:["5L3","6L0"],round:["5M","6M"],sleeptalk:["5E","5T","6E"],solarbeam:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],superpower:["5L39","5T","6L0"],swagger:["5M","6M"],tackle:["5L1","6L0"],takedown:["5E","6E"],taunt:["5M","5L35","6L0","6M"],thief:["5M","6M"],thrash:["5L27","6L0"],toxic:["5M","6M"],uproar:["5L17","5T","6L0"],uturn:["5M","6M"],willowisp:["5M","6M"],workup:["5M","5L25","6L0"],yawn:["5E","6E"],zenheadbutt:["5T"],snore:["5T"],heatwave:["5T"],endeavor:["5T"]}}, + darmanitan:{learnset:{attract:["5M","6M"],bellydrum:["5L30","5S0","6L0"],brickbreak:["5M","6M"],bulkup:["5M","6M"],bulldoze:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],earthquake:["5M","6M"],facade:["5M","5L19","6L0","6M"],fireblast:["5M","6M"],firefang:["5L11","6L0"],firepunch:["5L22","5T","6L0"],flamecharge:["5M","6M"],flamethrower:["5M","6M"],flareblitz:["5L33","5S0","6L0"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],gyroball:["5M","6M"],hammerarm:["5L35","5S0","6L0"],headbutt:["5L14","6L0"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],incinerate:["5M","5L1","5L6","6L0","6L0","6M"],overheat:["5M","5L54","6L0","6M"],payback:["5M","6M"],protect:["5M","6M"],psychic:["5M","6M"],rage:["5L1","5L9","6L0","6L0"],rest:["5M","6M"],"return":["5M","6M"],roar:["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],rollout:["5L1","5L3","6L0","6L0"],round:["5M","6M"],smackdown:["5M","6M"],solarbeam:["5M","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],superpower:["5L47","5T","6L0"],swagger:["5M","5L17","6L0","6M"],tackle:["5L1","6L0"],taunt:["5M","5L39","6L0","6M"],thief:["5M","6M"],thrash:["5L27","5S0","6L0"],torment:["5M","6M"],toxic:["5M","6M"],uturn:["5M","6M"],willowisp:["5M","6M"],workup:["5M","5L25","6L0"],uproar:["5T"],zenheadbutt:["5T"],snore:["5T"],heatwave:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"]}}, + maractus:{learnset:{absorb:["5L1","6L1"],acupressure:["5L29","6L29"],aerialace:["5M","6M"],afteryou:["5L57","5T","6L1","6L57"],attract:["5M","6M"],bounce:["5E","5T","6E"],bulletseed:["5E","6E"],cottonguard:["5L55","6L1","6L55"],cottonspore:["5L18","6L18"],doubleteam:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],frustration:["5M","6M"],gigadrain:["5L26","5T","6L26"],grassknot:["5M","6M"],grasswhistle:["5E","6E"],growth:["5L6","6L6"],hiddenpower:["5M","6M"],ingrain:["5L33","6L33"],leechseed:["5E","5D","6E"],megadrain:["5L13","6L13"],needlearm:["5L22","6L22"],peck:["5L1","6L1"],petaldance:["5L38","6L38"],pinmissile:["5L10","5D","6L10"],poisonjab:["5M","6M"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],seedbomb:["5E","5T","6E"],solarbeam:["5M","5L50","6L50","6M"],spikes:["5E","5D","6E"],substitute:["5M","6M"],suckerpunch:["5L42","6L42"],sunnyday:["5M","5L45","6L45","6M"],swagger:["5M","6M"],sweetscent:["5L3","6L3"],synthesis:["5L15","5T","6L15"],toxic:["5M","6M"],woodhammer:["5E","6E"],worryseed:["5E","5T","6E"],uproar:["5T"],hypervoice:["5T"],snore:["5T"],knockoff:["5T"],drainpunch:["5T"],helpinghand:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"],petalblizzard:["6L48"],naturepower:["6M"],confide:["6M"]}}, + dwebble:{learnset:{aerialace:["5M","6M"],attract:["5M","6M"],block:["5E","5T","6E"],bugbite:["5L23","5T","6L23"],bulldoze:["5M","6M"],counter:["5E","6E"],curse:["5E","6E"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],earthquake:["5M","6M"],endure:["5E","6E"],facade:["5M","6M"],feintattack:["5L13","6L13"],flail:["5L41","6L41"],frustration:["5M","6M"],furycutter:["5L1","6L1"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],irondefense:["5E","5T","6E"],nightslash:["5E","6E"],poisonjab:["5M","6M"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockblast:["5L5","6L5"],rockpolish:["5M","5L19","6L19","6M"],rockslide:["5M","5L29","6L29","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],rockwrecker:["5L43","6L43"],round:["5M","6M"],sandattack:["5L11","6L11"],sandstorm:["5M","6M"],sandtomb:["5E","6E"],shadowclaw:["5M","6M"],shellsmash:["5L37","6L37"],slash:["5L31","6L31"],smackdown:["5M","5L17","6L17","6M"],solarbeam:["5M","6M"],spikes:["5E","6E"],stealthrock:["5L24","5T","6L24"],stoneedge:["5M","6M"],strength:["5M","6M"],strugglebug:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","6M"],toxic:["5M","6M"],withdraw:["5L7","6L7"],xscissor:["5M","5L35","6L35","6M"],snore:["5T"],knockoff:["5T"],sleeptalk:["5T","6M"],naturepower:["6M"],confide:["6M"]}}, + crustle:{learnset:{aerialace:["5M","6M"],attract:["5M","6M"],bugbite:["5L23","5T","6L23"],bulldoze:["5M","6M"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],earthquake:["5M","6M"],facade:["5M","6M"],feintattack:["5L13","6L13"],flail:["5L50","6L50"],frustration:["5M","6M"],gigaimpact:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockblast:["5L1","5L5","6L1","6L5"],rockpolish:["5M","5L19","6L19","6M"],rockslide:["5M","5L29","5D","6L29","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],rockwrecker:["5L55","6L55"],round:["5M","6M"],sandattack:["5L1","5L11","6L1","6L11"],sandstorm:["5M","6M"],shadowclaw:["5M","6M"],shellsmash:["5L1","5L43","6L1","6L43"],slash:["5L31","6L31"],smackdown:["5M","5L17","6L17","6M"],solarbeam:["5M","6M"],stealthrock:["5L24","5T","6L24"],stoneedge:["5M","6M"],strength:["5M","6M"],strugglebug:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","6M"],toxic:["5M","6M"],withdraw:["5L1","5L7","6L1","6L7"],xscissor:["5M","5L38","6L38","6M"],block:["5T"],irondefense:["5T"],snore:["5T"],knockoff:["5T"],sleeptalk:["5T","6M"],counter:["5D"],nightslash:["5D"],naturepower:["6M"],confide:["6M"]}}, + scraggy:{learnset:{amnesia:["5E","6E"],attract:["5M","6M"],brickbreak:["5M","5L20","6L20","6M"],bulkup:["5M","6M"],chipaway:["5L27","6L27"],counter:["5E","6E"],crunch:["5L38","6L38"],detect:["5E","6E"],dig:["5M","6M"],doubleteam:["5M","6M"],dragonclaw:["5M","6M"],dragondance:["5E","6E"],dragontail:["5M","6M"],drainpunch:["5E","5T","5D","6E"],facade:["5M","5L42","6L42","6M"],feintattack:["5E","5L9","6L9","6E"],fakeout:["5E","5D","6E"],firepunch:["5E","5T","6E"],fling:["5M","6M"],focusblast:["5M","6M"],focuspunch:["5L49","6L48"],frustration:["5M","6M"],grassknot:["5M","6M"],headbutt:["5L12","5S0","6L12"],headsmash:["5L53","6L50"],hiddenpower:["5M","6M"],highjumpkick:["5L31","5S0","6L31"],icepunch:["5E","5T","6E"],incinerate:["5M","6M"],leer:["5L1","5S0","6L1"],lowkick:["5L1","5S0","5T","5D","6L1"],lowsweep:["5M","6M"],payback:["5M","5L23","6L23","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],roar:["5M","6M"],rockclimb:["5L45","6L45"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sandattack:["5L5","6L5"],scaryface:["5L34","6L34"],sludgebomb:["5M","6M"],smackdown:["5M","6M"],snarl:["5M","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","5L16","6L16","6M"],taunt:["5M","6M"],thunderpunch:["5E","5T","6E"],torment:["5M","6M"],toxic:["5M","6M"],workup:["5M"],zenheadbutt:["5E","5T","6E"],superfang:["5T"],dualchop:["5T"],ironhead:["5T"],foulplay:["5T"],irondefense:["5T"],darkpulse:["5T","6M"],dragonpulse:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],spite:["5T"],snatch:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"],quickguard:["6E"]}}, + scrafty:{learnset:{attract:["5M","6M"],brickbreak:["5M","5L20","6L20","6M"],bulkup:["5M","6M"],chipaway:["5L27","6L27"],crunch:["5L38","6L38"],dig:["5M","6M"],doubleteam:["5M","6M"],dragonclaw:["5M","6M"],dragontail:["5M","6M"],drainpunch:["5S0","5T"],facade:["5M","5L45","6L45","6M"],feintattack:["5L1","5L9","6L1","6L9"],firepunch:["5S0","5T"],fling:["5M","6M"],focusblast:["5M","6M"],focuspunch:["5L58","6L58"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],headbutt:["5L12","6L12"],headsmash:["5L65","6L65"],hiddenpower:["5M","6M"],highjumpkick:["5L31","6L31"],hyperbeam:["5M","6M"],incinerate:["5M","6M"],leer:["5L1","6L1"],lowkick:["5L1","5T","6L1"],lowsweep:["5M","6M"],payback:["5M","5L23","5S0","6L23","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],roar:["5M","6M"],rockclimb:["5L51","6L51"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sandattack:["5L1","5L5","6L1","6L5"],scaryface:["5L34","6L34"],sludgebomb:["5M","6M"],smackdown:["5M","6M"],snarl:["5M","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","5S0","6M"],sunnyday:["5M","6M"],swagger:["5M","5L16","6L16","6M"],taunt:["5M","6M"],thief:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],workup:["5M"],superfang:["5T"],dualchop:["5T"],ironhead:["5T"],thunderpunch:["5T"],icepunch:["5T"],foulplay:["5T"],irondefense:["5T"],darkpulse:["5T","6M"],zenheadbutt:["5T"],dragonpulse:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],spite:["5T"],outrage:["5T"],snatch:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"]}}, + sigilyph:{learnset:{aerialace:["5M","6M"],aircutter:["5L21","6L21"],airslash:["5L41","6L41"],ancientpower:["5E","6E"],attract:["5M","6M"],calmmind:["5M","6M"],chargebeam:["5M","6M"],cosmicpower:["5L48","6L48"],doubleteam:["5M","6M"],dreameater:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],flashcannon:["5M","6M"],fly:["5M","6M"],frustration:["5M","6M"],gravity:["5L38","5T","6L38"],gust:["5L1","6L1"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],hypnosis:["5L4","5D","6L4"],icebeam:["5M","6M"],lightscreen:["5M","5L24","6L24","6M"],miracleeye:["5L1","6L1"],mirrormove:["5L34","6L34"],pluck:["5M"],protect:["5M","6M"],psybeam:["5L18","6L18"],psychic:["5M","5L44","6L44","6M"],psychoshift:["5E","6E"],psychup:["5M","6M"],psyshock:["5M","6M"],psywave:["5L8","6L8"],raindance:["5M","6M"],reflect:["5M","5L28","6L28","6M"],rest:["5M","6M"],"return":["5M","6M"],roost:["5E","5T","6M","6E"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],skillswap:["5E","5T","6E"],skyattack:["5L51","5T","6L50"],smackdown:["5M","6M"],solarbeam:["5M","6M"],steelwing:["5E","6M","6E"],storedpower:["5E","5D","6E"],substitute:["5M","6M"],swagger:["5M","6M"],synchronoise:["5L31","6L31"],tailwind:["5L11","5T","6L11"],telekinesis:["5M"],thief:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],whirlwind:["5L14","6L14"],signalbeam:["5T"],magiccoat:["5T"],icywind:["5T"],darkpulse:["5T","6M"],zenheadbutt:["5T"],snore:["5T"],heatwave:["5T","5D"],trick:["5T"],magicroom:["5T"],sleeptalk:["5T","6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + yamask:{learnset:{astonish:["5L1","6L0"],attract:["5M","6M"],calmmind:["5M","6M"],curse:["5L29","6L0"],destinybond:["5L49","6L0"],disable:["5E","5L5","6E"],doubleteam:["5M","6M"],dreameater:["5M","6M"],embargo:["5M","6M"],endure:["5E","6E"],energyball:["5M","6M"],facade:["5M","6M"],faketears:["5E","6E"],flash:["5M","6M"],frustration:["5M","6M"],grudge:["5L41","6L0"],guardsplit:["5L33","6L0"],haze:["5L9","6L0"],healblock:["5E","6E"],hex:["5L17","6L0"],hiddenpower:["5M","6M"],imprison:["5E","6E"],meanlook:["5L45","6L0"],memento:["5E","6E"],nastyplot:["5E","6E"],nightmare:["5E","6E"],nightshade:["5L13","6L0"],ominouswind:["5L25","6L0"],payback:["5M","6M"],powersplit:["5L33","6L0"],protect:["5M","5L1","6L0","6M"],psychic:["5M","6M"],psychup:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","5L37","6L0","6M"],substitute:["5M","6M"],swagger:["5M","6M"],telekinesis:["5M"],thief:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],willowisp:["5M","5L21","6L0","6M"],magiccoat:["5T"],block:["5T"],irondefense:["5T"],darkpulse:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],painsplit:["5T"],spite:["5T"],afteryou:["5T"],trick:["5T"],wonderroom:["5T"],snatch:["5T"],sleeptalk:["5T","6M"],skillswap:["5T"]}}, + cofagrigus:{learnset:{astonish:["5L1","6L0"],attract:["5M","6M"],calmmind:["5M","6M"],curse:["5L29","6L0"],destinybond:["5L57","6L0"],disable:["5L1","5L5","6L0","6L0"],doubleteam:["5M","6M"],dreameater:["5M","6M"],embargo:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],grudge:["5L45","6L0"],guardsplit:["5L33","6L0"],haze:["5L1","5L9","6L0","6L0"],hex:["5L17","6L0"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],meanlook:["5L51","6L0"],nightshade:["5L13","6L0"],ominouswind:["5L25","6L0"],payback:["5M","6M"],powersplit:["5L33","6L0"],protect:["5M","5L1","6L0","6M"],psychic:["5M","6M"],psychup:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],scaryface:["5L34","6L0"],shadowball:["5M","5L39","6L0","6M"],substitute:["5M","6M"],swagger:["5M","6M"],telekinesis:["5M"],thief:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],willowisp:["5M","5L21","6L0","6M"],magiccoat:["5T"],block:["5T"],irondefense:["5T"],darkpulse:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],painsplit:["5T"],spite:["5T"],afteryou:["5T"],trick:["5T"],wonderroom:["5T"],snatch:["5T"],sleeptalk:["5T","6M"],skillswap:["5T"]}}, + tirtouga:{learnset:{ancientpower:["5L18","6L18"],aquajet:["5L15","5S0","6L15"],aquatail:["5L41","5T","6L41"],attract:["5M","6M"],bide:["5E","5L1","6L1","6E"],bite:["5L8","5S0","6L8"],blizzard:["5M","6M"],bodyslam:["5E","5S0","6E"],brine:["5L28","6L28"],bulldoze:["5M","6M"],crunch:["5L21","6L21"],curse:["5L35","6L35"],dig:["5M","6M"],dive:["5M"],doubleteam:["5M","6M"],earthquake:["5M","6M"],facade:["5M","6M"],flail:["5E","5D","6E"],frustration:["5M","6M"],hiddenpower:["5M","6M"],hydropump:["5L51","6L50"],icebeam:["5M","6M"],irondefense:["5E","5T","5D","6E"],knockoff:["5E","6E"],protect:["5M","5L11","5S0","6L11","6M"],raindance:["5M","5L48","6L48","6M"],rest:["5M","6M"],"return":["5M","6M"],rockpolish:["5M","6M"],rockslide:["5M","5L45","6L45","6M"],rocksmash:["5M","6M"],rockthrow:["5E","6E"],rocktomb:["5M","6M"],rollout:["5L5","5D","6L5"],round:["5M","6M"],sandstorm:["5M","6M"],scald:["5M","6M"],shellsmash:["5L38","6L38"],slam:["5E","6E"],smackdown:["5M","5L31","6L31","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],toxic:["5M","6M"],waterfall:["5M","6M"],watergun:["5L1","6L1"],waterpulse:["5E","6E"],whirlpool:["5E","6E"],wideguard:["5L25","6L25"],withdraw:["5L1","6L1"],block:["5T"],earthpower:["5T"],icywind:["5T"],irontail:["5T"],snore:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + carracosta:{learnset:{ancientpower:["5L18","6L18"],aquajet:["5L15","6L15"],aquatail:["5L45","5T","6L45"],attract:["5M","6M"],bide:["5L1","6L1"],bite:["5L8","6L8"],blizzard:["5M","6M"],brine:["5L28","6L28"],bulldoze:["5M","6M"],crunch:["5L21","6L21"],curse:["5L35","6L35"],dig:["5M","6M"],dive:["5M"],doubleteam:["5M","6M"],earthquake:["5M","6M"],facade:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],hiddenpower:["5M","6M"],hydropump:["5L61","6L61"],hyperbeam:["5M","6M"],icebeam:["5M","6M"],protect:["5M","5L11","6L11","6M"],raindance:["5M","5L56","6L56","6M"],rest:["5M","6M"],"return":["5M","6M"],rockpolish:["5M","6M"],rockslide:["5M","5L51","6L51","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],rollout:["5L1","5L5","6L1","6L5"],round:["5M","6M"],sandstorm:["5M","6M"],scald:["5M","6M"],shellsmash:["5L40","6L40"],smackdown:["5M","5L31","6L31","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],toxic:["5M","6M"],waterfall:["5M","6M"],watergun:["5L1","6L1"],wideguard:["5L25","6L25"],withdraw:["5L1","6L1"],ironhead:["5T"],lowkick:["5T"],block:["5T"],earthpower:["5T"],irondefense:["5T"],superpower:["5T"],icywind:["5T"],irontail:["5T"],snore:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + archen:{learnset:{acrobatics:["5M","5L28","6L28","6M"],aerialace:["5M","6M"],agility:["5L21","6L21"],ancientpower:["5L18","6L18"],attract:["5M","6M"],bite:["5E","6E"],bulldoze:["5M","6M"],crunch:["5L35","6L35"],cut:["5M","6M"],defog:["5E","6E"],dig:["5M","6M"],doubleteam:["5M","5L8","5S0","6L8","6M"],dragonbreath:["5L31","6L31"],dragonclaw:["5M","5L48","6L48","6M"],dragonpulse:["5E","5T","6E"],earthpower:["5E","5T","6E"],earthquake:["5M","6M"],endeavor:["5L38","5T","6L38"],facade:["5M","6M"],frustration:["5M","6M"],headsmash:["5E","5S0","6E"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],knockoff:["5E","6E"],leer:["5L1","6L1"],pluck:["5M","5L15","6L15"],protect:["5M","6M"],quickattack:["5L1","6L1"],quickguard:["5L25","6L25"],rest:["5M","6M"],"return":["5M","6M"],roar:["5M","6M"],rockpolish:["5M","6M"],rockslide:["5M","5L45","6L45","6M"],rocksmash:["5M","6M"],rockthrow:["5L5","6L5"],rocktomb:["5M","6M"],round:["5M","6M"],sandstorm:["5M","6M"],scaryface:["5L11","5S0","6L11"],shadowclaw:["5M","6M"],smackdown:["5M","6M"],steelwing:["5E","6M","6E"],stoneedge:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],thrash:["5L51","6L50"],torment:["5M","6M"],toxic:["5M","6M"],uturn:["5M","5L41","6L41","6M"],wingattack:["5L1","5S0","6L1"],bounce:["5T"],uproar:["5T"],irondefense:["5T"],aquatail:["5T"],irontail:["5T"],snore:["5T"],heatwave:["5T"],tailwind:["5T"],roost:["5T","6M"],stealthrock:["5T"],sleeptalk:["5T","6M"],confide:["6M"],switcheroo:["6E"]}}, + archeops:{learnset:{acrobatics:["5M","5L28","6L28","6M"],aerialace:["5M","6M"],agility:["5L21","6L21"],ancientpower:["5L18","6L18"],attract:["5M","6M"],bulldoze:["5M","6M"],crunch:["5L35","6L35"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","5L8","6L8","6M"],dragonbreath:["5L31","6L31"],dragonclaw:["5M","5L56","6L56","6M"],dragontail:["5M","6M"],earthquake:["5M","6M"],endeavor:["5L40","5T","6L40"],facade:["5M","6M"],fly:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],leer:["5L1","6L1"],pluck:["5M","5L15","6L15"],protect:["5M","6M"],quickattack:["5L1","6L1"],quickguard:["5L25","6L25"],rest:["5M","6M"],"return":["5M","6M"],roar:["5M","6M"],rockpolish:["5M","6M"],rockslide:["5M","5L51","6L51","6M"],rocksmash:["5M","6M"],rockthrow:["5L1","5L5","6L1","6L5"],rocktomb:["5M","6M"],round:["5M","6M"],sandstorm:["5M","6M"],scaryface:["5L11","6L11"],shadowclaw:["5M","6M"],smackdown:["5M","6M"],stoneedge:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],thrash:["5L61","6L61"],torment:["5M","6M"],toxic:["5M","6M"],uturn:["5M","5L45","6L45","6M"],wingattack:["5L1","6L1"],bounce:["5T"],uproar:["5T"],earthpower:["5T"],irondefense:["5T"],aquatail:["5T"],dragonpulse:["5T"],irontail:["5T"],snore:["5T"],heatwave:["5T"],tailwind:["5T"],skyattack:["5T"],roost:["5T","6M"],outrage:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"],steelwing:["6M"],confide:["6M"]}}, + trubbish:{learnset:{acidspray:["5L12","6L12"],amnesia:["5L40","6L40"],attract:["5M","6M"],clearsmog:["5L34","6L34"],curse:["5E","6E"],doubleslap:["5L14","6L14"],doubleteam:["5M","6M"],explosion:["5M","5L47","6L47","6M"],facade:["5M","6M"],frustration:["5M","6M"],gunkshot:["5L45","5T","6L45"],haze:["5E","6E"],hiddenpower:["5M","6M"],mudsport:["5E","6E"],payback:["5M","6M"],poisongas:["5L1","6L1"],pound:["5L1","6L1"],protect:["5M","6M"],raindance:["5M","6M"],recycle:["5L3","5T","6L3"],rest:["5M","6M"],"return":["5M","6M"],rockblast:["5E","6E"],rollout:["5E","6E"],round:["5M","6M"],sandattack:["5E","6E"],selfdestruct:["5E","6E"],sludge:["5L18","6L18"],sludgebomb:["5M","5L29","6L29","6M"],sludgewave:["5M","6M"],spikes:["5E","6E"],stockpile:["5L23","6L23"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swallow:["5L23","6L23"],takedown:["5L25","6L25"],thief:["5M","6M"],toxic:["5M","5L36","6L36","6M"],toxicspikes:["5L7","6L7"],venoshock:["5M","6M"],seedbomb:["5T"],darkpulse:["5T","6M"],snore:["5T"],painsplit:["5T"],gigadrain:["5T"],drainpunch:["5T"],spite:["5T"],sleeptalk:["5T","6M"],belch:["6L42"],infestation:["6M"],confide:["6M"]}}, + garbodor:{learnset:{acidspray:["5L12","6L12"],amnesia:["5L46","6L46"],attract:["5M","6M"],bodyslam:["5L25","6L25"],clearsmog:["5L34","6L34"],doubleslap:["5L14","6L14"],doubleteam:["5M","6M"],explosion:["5M","5L59","6L59","6M"],facade:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],gunkshot:["5L54","5T","6L54"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],payback:["5M","6M"],poisongas:["5L1","6L1"],pound:["5L1","6L1"],protect:["5M","6M"],psychic:["5M","6M"],raindance:["5M","6M"],recycle:["5L1","5L3","5T","6L1","6L3"],rest:["5M","6M"],"return":["5M","6M"],rockpolish:["5M","6M"],round:["5M","6M"],sludge:["5L18","6L18"],sludgebomb:["5M","5L29","6L29","6M"],sludgewave:["5M","6M"],smackdown:["5M","6M"],solarbeam:["5M","6M"],stockpile:["5L23","6L23"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swallow:["5L23","6L23"],thief:["5M","6M"],thunderbolt:["5M","6M"],toxic:["5M","5L39","6L39","6M"],toxicspikes:["5L1","5L7","6L1","6L7"],venoshock:["5M","6M"],seedbomb:["5T"],darkpulse:["5T","6M"],snore:["5T"],painsplit:["5T"],gigadrain:["5T"],drainpunch:["5T"],spite:["5T"],sleeptalk:["5T","6M"],belch:["6L49"],infestation:["6M"],confide:["6M"]}}, + zorua:{learnset:{aerialace:["5M","6M"],agility:["5L37","6L37"],attract:["5M","6M"],calmmind:["5M","6M"],captivate:["5E","6E"],counter:["5E","6E"],cut:["5M","6M"],darkpulse:["5E","5T","6M","6E"],detect:["5E","6E"],dig:["5M","6M"],doubleteam:["5M","6M"],embargo:["5M","5L41","6L41","6M"],extrasensory:["5E","6E"],facade:["5M","6M"],feintattack:["5L17","6L17"],faketears:["5L9","6L9"],fling:["5M","6M"],foulplay:["5L29","5T","6L29"],frustration:["5M","6M"],furyswipes:["5L13","6L13"],grassknot:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],imprison:["5L53","6L53"],incinerate:["5M","6M"],leer:["5L1","6L1"],memento:["5E","6E"],nastyplot:["5L49","6L49"],nightdaze:["5L57","6L57"],payback:["5M","6M"],protect:["5M","6M"],psychup:["5M","6M"],punishment:["5L45","6L45"],pursuit:["5L5","6L5"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],roar:["5M","6M"],round:["5M","6M"],scaryface:["5L21","6L21"],scratch:["5L1","6L1"],shadowball:["5M","6M"],snarl:["5M","6M"],snatch:["5E","5T","6E"],substitute:["5M","6M"],suckerpunch:["5E","6E"],sunnyday:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","6M"],taunt:["5M","5L25","6L25","6M"],thief:["5M","6M"],torment:["5M","5L33","6L33","6M"],toxic:["5M","6M"],uturn:["5M","6M"],covet:["5T"],bounce:["5T"],uproar:["5T"],hypervoice:["5T"],snore:["5T"],knockoff:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T","6M"],confide:["6M"],copycat:["6E"]}}, + zoroark:{learnset:{aerialace:["5M","6M"],agility:["5L39","5S0","6L39"],attract:["5M","6M"],calmmind:["5M","6M"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],embargo:["5M","5L44","5S0","6L44","6M"],facade:["5M","6M"],feintattack:["5L17","6L17"],flamethrower:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],foulplay:["5L29","5T","6L29"],frustration:["5M","6M"],furyswipes:["5L13","6L13"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","5L1","5L9","6L1","6L9","6M"],hyperbeam:["5M","6M"],imprison:["5L59","6L1","6L59"],incinerate:["5M","6M"],leer:["5L1","6L1"],lowsweep:["5M","6M"],nastyplot:["5L54","6L54"],nightdaze:["5L64","6L1","6L64"],nightslash:["5L30","6L30"],payback:["5M","6M"],protect:["5M","6M"],psychup:["5M","6M"],punishment:["5L49","5S0","6L49"],pursuit:["5L1","5L5","6L1","6L5"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],roar:["5M","6M"],rocksmash:["5M","6M"],round:["5M","6M"],scaryface:["5L21","6L21"],scratch:["5L1","6L1"],shadowball:["5M","6M"],shadowclaw:["5M","6M"],snarl:["5M","5S0","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","6M"],taunt:["5M","5L25","6L25","6M"],thief:["5M","6M"],torment:["5M","5L34","6L34","6M"],toxic:["5M","6M"],uturn:["5M","5L1","6L1","6M"],covet:["5T"],bounce:["5T"],lowkick:["5T"],uproar:["5T"],darkpulse:["5T","6M"],hypervoice:["5T"],snore:["5T"],knockoff:["5T"],spite:["5T"],trick:["5T"],snatch:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + minccino:{learnset:{afteryou:["5L49","5T","6L49"],aquatail:["5E","5T","6E"],attract:["5M","6M"],calmmind:["5M","6M"],captivate:["5L39","6L39"],charm:["5L27","6L27"],dig:["5M","6M"],doubleslap:["5L13","6L13"],doubleteam:["5M","6M"],echoedvoice:["5M","5L33","6L33","6M"],encore:["5L15","6L15"],endure:["5E","6E"],facade:["5M","6M"],faketears:["5E","6E"],flail:["5E","6E"],fling:["5M","6M"],frustration:["5M","6M"],grassknot:["5M","6M"],growl:["5L3"],helpinghand:["5L7","5T","6L7"],hiddenpower:["5M","6M"],hypervoice:["5L43","5T","6L43"],irontail:["5E","5T","6E"],knockoff:["5E","5T","6E"],lastresort:["5L45","5T","6L45"],mudslap:["5E","6E"],pound:["5L1","6L1"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],sing:["5L21","6L21"],slam:["5L37","6L37"],sleeptalk:["5E","5T","6M","6E"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swift:["5L19","6L19"],tailslap:["5L25","6L25"],tailwhip:["5E","6E"],thief:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],tickle:["5L9","6L9"],toxic:["5M","6M"],uturn:["5M","6M"],wakeupslap:["5L31","6L31"],workup:["5M"],covet:["5T"],seedbomb:["5T"],gunkshot:["5T"],uproar:["5T"],snore:["5T"],babydolleyes:["6L3"],dazzlinggleam:["6M"],confide:["6M"]}}, + cinccino:{learnset:{attract:["5M","6M"],bulletseed:["5L1","6L1"],calmmind:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],echoedvoice:["5M","6M"],facade:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],helpinghand:["5L1","5T","6L1"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],lightscreen:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],rockblast:["5L1","6L1"],round:["5M","6M"],safeguard:["5M","6M"],sing:["5L1","6L1"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],tailslap:["5L1","6L1"],thief:["5M","6M"],thunder:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],tickle:["5L1","6L1"],toxic:["5M","6M"],uturn:["5M","6M"],workup:["5M"],covet:["5T"],seedbomb:["5T"],gunkshot:["5T"],uproar:["5T"],lastresort:["5T"],aquatail:["5T"],hypervoice:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],afteryou:["5T"],sleeptalk:["5T","6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + gothita:{learnset:{attract:["5M","6M"],calmmind:["5M","6M"],captivate:["5E","6E"],chargebeam:["5M","6M"],charm:["5L46","6L46"],confusion:["5L3","6L3"],darkpulse:["5E","6E"],doubleslap:["5L14","6L14"],doubleteam:["5M","6M"],dreameater:["5M","6M"],embargo:["5M","5L19","6L19","6M"],energyball:["5M","6M"],facade:["5M","6M"],feintattack:["5L24","6L24"],faketears:["5L10","6L10"],flash:["5M","6M"],flatter:["5L28","6L28"],fling:["5M","6M"],frustration:["5M","6M"],futuresight:["5L31","6L31"],grassknot:["5M","6M"],healblock:["5L33","6L33"],hiddenpower:["5M","6M"],lightscreen:["5M","6M"],magicroom:["5L48","5T","6L48"],meanlook:["5E","6E"],miracleeye:["5E","6E"],mirrorcoat:["5E","6E"],payback:["5M","6M"],pound:["5L1","6L1"],protect:["5M","6M"],psybeam:["5L16","6L16"],psychic:["5M","5L37","6L37","6M"],psychup:["5M","6M"],psyshock:["5M","5L25","6L25","6M"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],telekinesis:["5M","5L40","6L40"],thief:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],tickle:["5L7","6L7"],torment:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],uproar:["5E","5T","6E"],covet:["5T"],signalbeam:["5T"],magiccoat:["5T"],foulplay:["5T"],gravity:["5T"],zenheadbutt:["5T"],snore:["5T"],roleplay:["5T"],healbell:["5T"],helpinghand:["5T"],trick:["5T"],recycle:["5T"],snatch:["5T"],sleeptalk:["5T","6M"],skillswap:["5T"],playnice:["6L8"],confide:["6M"]}}, + gothorita:{learnset:{attract:["5M","6M"],calmmind:["5M","6M"],chargebeam:["5M","6M"],charm:["5L50","6L50"],confusion:["5L1","5L3","6L1","6L3"],doubleslap:["5L14","6L14"],doubleteam:["5M","6M"],dreameater:["5M","6M"],embargo:["5M","5L19","6L19","6M"],energyball:["5M","6M"],facade:["5M","6M"],feintattack:["5L24","6L24"],faketears:["5L1","5L10","6L10"],flash:["5M","6M"],flatter:["5L28","5S0","5S1","6L28"],fling:["5M","6M"],frustration:["5M","6M"],futuresight:["5L31","5S0","5S1","6L31"],grassknot:["5M","6M"],healblock:["5L34","6L34"],hiddenpower:["5M","6M"],imprison:["5S1"],lightscreen:["5M","6M"],magicroom:["5L53","5T","6L53"],payback:["5M","6M"],pound:["5L1","6L1"],protect:["5M","6M"],psybeam:["5L16","6L16"],psychic:["5M","5L39","6L39","6M"],psychup:["5M","6M"],psyshock:["5M","5L25","5S0","5S1","6L25","6M"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],telekinesis:["5M","5L43","6L43"],thief:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],tickle:["5L1","5L7","6L1","6L7"],torment:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],covet:["5T"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],foulplay:["5T"],gravity:["5T"],zenheadbutt:["5T"],snore:["5T"],roleplay:["5T"],healbell:["5T"],helpinghand:["5T"],trick:["5T"],recycle:["5T"],snatch:["5T"],sleeptalk:["5T","6M"],skillswap:["5T"],mirrorcoat:["5S0"],playnice:["6L1"],confide:["6M"]}}, + gothitelle:{learnset:{attract:["5M","6M"],brickbreak:["5M","6M"],calmmind:["5M","6M"],chargebeam:["5M","6M"],charm:["5L54","6L54"],confusion:["5L1","5L3","6L1","6L3"],doubleslap:["5L14","6L14"],doubleteam:["5M","6M"],dreameater:["5M","6M"],embargo:["5M","5L19","6L19","6M"],energyball:["5M","6M"],facade:["5M","6M"],feintattack:["5L24","6L24"],faketears:["5L1","5L10","6L10"],flash:["5M","6M"],flatter:["5L28","6L28"],fling:["5M","6M"],frustration:["5M","6M"],futuresight:["5L31","6L31"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],healblock:["5L34","6L34"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],lightscreen:["5M","6M"],lowsweep:["5M","6M"],magicroom:["5L59","5T","6L59"],payback:["5M","6M"],pound:["5L1","6L1"],protect:["5M","6M"],psybeam:["5L16","6L16"],psychic:["5M","5L39","6L39","6M"],psychup:["5M","6M"],psyshock:["5M","5L25","6L25","6M"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],telekinesis:["5M","5L45","6L45"],thief:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],tickle:["5L1","5L7","6L1","6L7"],torment:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],covet:["5T"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],foulplay:["5T"],gravity:["5T"],zenheadbutt:["5T"],snore:["5T"],roleplay:["5T"],healbell:["5T"],helpinghand:["5T"],trick:["5T"],recycle:["5T"],snatch:["5T"],sleeptalk:["5T","6M"],skillswap:["5T"],playnice:["6L1"],poweruppunch:["6M"],confide:["6M"]}}, + solosis:{learnset:{acidarmor:["5E","6E"],astonish:["5E","6E"],attract:["5M","6M"],calmmind:["5M","6M"],charm:["5L19","6L19"],confuseray:["5E","6E"],doubleteam:["5M","6M"],dreameater:["5M","6M"],embargo:["5M","6M"],endeavor:["5L28","5T","6L28"],energyball:["5M","6M"],explosion:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],flashcannon:["5M","6M"],frustration:["5M","6M"],futuresight:["5L31","6L31"],gyroball:["5M","6M"],healblock:["5L46","6L46"],hiddenpower:["5M","5L14","6L14","6M"],imprison:["5E","6E"],lightscreen:["5M","5L16","6L16","6M"],nightshade:["5E","6E"],painsplit:["5L33","5T","6L33"],protect:["5M","6M"],psychic:["5M","5L37","6L37","6M"],psychup:["5M","6M"],psyshock:["5M","5L25","6L25","6M"],psywave:["5L1","6L1"],raindance:["5M","6M"],recover:["5L24","6L24"],reflect:["5M","5L3","6L3","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocktomb:["5M","6M"],rollout:["5L7","6L7"],round:["5M","6M"],safeguard:["5M","6M"],secretpower:["5E","6E"],shadowball:["5M","6M"],skillswap:["5L40","5T","6L40"],snatch:["5L10","5T","6L10"],substitute:["5M","6M"],swagger:["5M","6M"],telekinesis:["5M"],thunder:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],trick:["5E","5T","6E"],trickroom:["5M","6M"],wonderroom:["5L48","5T","6L48"],signalbeam:["5T"],magiccoat:["5T"],gravity:["5T"],zenheadbutt:["5T"],snore:["5T"],roleplay:["5T"],afteryou:["5T"],sleeptalk:["5T","6M"],infestation:["6M"],confide:["6M"]}}, + duosion:{learnset:{attract:["5M","6M"],calmmind:["5M","6M"],charm:["5L19","6L19"],doubleteam:["5M","6M"],dreameater:["5M","6M"],embargo:["5M","6M"],endeavor:["5L28","5T","6L28"],energyball:["5M","6M"],explosion:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],flashcannon:["5M","6M"],frustration:["5M","6M"],futuresight:["5L31","6L31"],gyroball:["5M","6M"],healblock:["5L50","6L50"],hiddenpower:["5M","5L14","6L14","6M"],lightscreen:["5M","5L16","6L16","6M"],painsplit:["5L34","5T","6L34"],protect:["5M","6M"],psychic:["5M","5L39","6L39","6M"],psychup:["5M","6M"],psyshock:["5M","5L25","6L25","6M"],psywave:["5L1","6L1"],raindance:["5M","6M"],recover:["5L24","5D","6L24"],reflect:["5M","5L1","5L3","6L1","6L3","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocktomb:["5M","6M"],rollout:["5L1","5L7","6L1","6L7"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],skillswap:["5L43","5T","6L43"],snatch:["5L1","5L10","5T","6L1","6L10"],substitute:["5M","6M"],swagger:["5M","6M"],telekinesis:["5M"],thunder:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],wonderroom:["5L53","5T","6L53"],signalbeam:["5T"],magiccoat:["5T"],gravity:["5T"],zenheadbutt:["5T"],snore:["5T"],roleplay:["5T"],afteryou:["5T"],trick:["5T","5D"],sleeptalk:["5T","6M"],imprison:["5D"],infestation:["6M"],confide:["6M"]}}, + reuniclus:{learnset:{attract:["5M","6M"],calmmind:["5M","6M"],charm:["5L19","6L19"],dizzypunch:["5L41","6L41"],doubleteam:["5M","6M"],dreameater:["5M","6M"],embargo:["5M","6M"],endeavor:["5L28","5T","6L28"],energyball:["5M","6M"],explosion:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],flashcannon:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],futuresight:["5L31","6L31"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],gyroball:["5M","6M"],healblock:["5L54","6L54"],hiddenpower:["5M","5L14","6L14","6M"],hyperbeam:["5M","6M"],lightscreen:["5M","5L16","6L16","6M"],painsplit:["5L34","5T","6L34"],protect:["5M","6M"],psychic:["5M","5L39","6L39","6M"],psychup:["5M","6M"],psyshock:["5M","5L25","6L25","6M"],psywave:["5L1","6L1"],raindance:["5M","6M"],recover:["5L24","6L24"],reflect:["5M","5L1","5L3","6L1","6L3","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],rollout:["5L1","5L7","6L1","6L7"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],skillswap:["5L45","5T","6L45"],snatch:["5L1","5L10","5T","6L1","6L10"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],telekinesis:["5M"],thunder:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],wonderroom:["5L59","5T","6L59"],signalbeam:["5T"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],magiccoat:["5T"],gravity:["5T"],superpower:["5T"],zenheadbutt:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],drainpunch:["5T"],afteryou:["5T"],helpinghand:["5T"],trick:["5T"],sleeptalk:["5T","6M"],infestation:["6M"],poweruppunch:["6M"],confide:["6M"]}}, + ducklett:{learnset:{aerialace:["5M","5L15","6L15","6M"],aircutter:["5E","6E"],airslash:["5L27","6L27"],aquaring:["5L24","6L24"],attract:["5M","6M"],bravebird:["5L41","6L41"],brine:["5E","5D","6E"],bubblebeam:["5L19","6L19"],defog:["5L6","5D","6L6"],dive:["5M"],doubleteam:["5M","6M"],facade:["5M","6M"],featherdance:["5L21","6L21"],fly:["5M","6M"],frustration:["5M","6M"],gust:["5E","6E"],hail:["5M","6M"],hiddenpower:["5M","6M"],hurricane:["5L46","6L46"],icebeam:["5M","6M"],luckychant:["5E","6E"],mefirst:["5E","5D","6E"],mirrormove:["5E","6E"],pluck:["5M"],protect:["5M","6M"],raindance:["5M","5L34","6L34","6M"],rest:["5M","6M"],"return":["5M","6M"],roost:["5L30","5T","6L30","6M"],round:["5M","6M"],scald:["5M","6M"],steelwing:["5E","6M","6E"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],tailwind:["5L37","5T","6L37"],toxic:["5M","6M"],watergun:["5L1","6L1"],waterpulse:["5L13","6L13"],watersport:["5L3","6L3"],wingattack:["5L9","6L9"],uproar:["5T"],icywind:["5T"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"],confide:["6M"],mudsport:["6E"]}}, + swanna:{learnset:{aerialace:["5M","5L15","6L15","6M"],airslash:["5L27","6L27"],aquaring:["5L24","6L24"],attract:["5M","6M"],bravebird:["5L47","6L47"],bubblebeam:["5L19","6L19"],defog:["5L1","5L6","6L1","6L6"],dive:["5M"],doubleteam:["5M","6M"],facade:["5M","6M"],featherdance:["5L21","6L21"],fly:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],hail:["5M","6M"],hiddenpower:["5M","6M"],hurricane:["5L55","6L55"],hyperbeam:["5M","6M"],icebeam:["5M","6M"],pluck:["5M"],protect:["5M","6M"],raindance:["5M","5L34","6L34","6M"],rest:["5M","6M"],"return":["5M","6M"],roost:["5L30","5T","6L30","6M"],round:["5M","6M"],scald:["5M","6M"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],tailwind:["5L40","5T","6L40"],toxic:["5M","6M"],watergun:["5L1","6L1"],waterpulse:["5L13","6L13"],watersport:["5L1","5L3","6L1","6L3"],wingattack:["5L1","5L9","6L1","6L9"],uproar:["5T"],icywind:["5T"],snore:["5T"],skyattack:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"],steelwing:["6M"],confide:["6M"]}}, + vanillite:{learnset:{acidarmor:["5L31","6L31"],astonish:["5L7","6L7"],attract:["5M","6M"],autotomize:["5E","6E"],avalanche:["5L19","6L19"],blizzard:["5M","5L49","6L49","6M"],doubleteam:["5M","6M"],explosion:["5M","6M"],facade:["5M","6M"],flashcannon:["5M","6M"],frostbreath:["5M","6M"],frustration:["5M","6M"],hail:["5M","5L40","6L40","6M"],harden:["5L4","6L4"],hiddenpower:["5M","6M"],icebeam:["5M","5L35","6L35","6M"],iceshard:["5E","6E"],iciclespear:["5L1","6L1"],icywind:["5L13","5T","6L13"],imprison:["5E","6E"],irondefense:["5E","5T","6E"],lightscreen:["5M","6M"],magnetrise:["5E","5T","6E"],mirrorcoat:["5L44","6L44"],mirrorshot:["5L26","6L26"],mist:["5L16","6L16"],naturalgift:["5E","6E"],powdersnow:["5E","6E"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],sheercold:["5L53","6L53"],substitute:["5M","6M"],swagger:["5M","6M"],taunt:["5M","5L22","6L22","6M"],toxic:["5M","6M"],uproar:["5L10","5T","6L10"],waterpulse:["5E","6E"],signalbeam:["5T"],magiccoat:["5T"],snore:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + vanillish:{learnset:{acidarmor:["5L31","6L31"],astonish:["5L1","5L7","6L1","6L7"],attract:["5M","6M"],avalanche:["5L19","6L19"],blizzard:["5M","5L53","6L53","6M"],doubleteam:["5M","6M"],explosion:["5M","6M"],facade:["5M","6M"],flashcannon:["5M","6M"],frostbreath:["5M","6M"],frustration:["5M","6M"],hail:["5M","5L42","6L42","6M"],harden:["5L1","5L4","6L1","6L4"],hiddenpower:["5M","6M"],icebeam:["5M","5L36","6L36","6M"],iciclespear:["5L1","6L1"],icywind:["5L13","5T","6L13"],lightscreen:["5M","6M"],mirrorcoat:["5L47","6L47"],mirrorshot:["5L26","5D","6L26"],mist:["5L16","6L16"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],sheercold:["5L58","6L58"],substitute:["5M","6M"],swagger:["5M","6M"],taunt:["5M","5L22","6L22","6M"],toxic:["5M","6M"],uproar:["5L1","5L10","5T","6L1","6L10"],signalbeam:["5T"],magiccoat:["5T"],magnetrise:["5T"],irondefense:["5T"],snore:["5T"],sleeptalk:["5T","6M"],iceshard:["5D"],imprison:["5D"],confide:["6M"]}}, + vanilluxe:{learnset:{acidarmor:["5L31","6L31"],astonish:["5L1","5L7","6L1","6L7"],attract:["5M","6M"],avalanche:["5L19","6L19"],blizzard:["5M","5L59","6L59","6M"],doubleteam:["5M","6M"],explosion:["5M","6M"],facade:["5M","6M"],flashcannon:["5M","6M"],frostbreath:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],hail:["5M","5L42","6L42","6M"],harden:["5L1","5L4","6L1","6L4"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],icebeam:["5M","5L36","6L36","6M"],iciclespear:["5L1","6L1"],icywind:["5L13","5T","6L13"],lightscreen:["5M","6M"],mirrorcoat:["5L50","6L50"],mirrorshot:["5L26","6L26"],mist:["5L16","6L16"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],sheercold:["5L67","6L1","6L67"],substitute:["5M","6M"],swagger:["5M","6M"],taunt:["5M","5L22","6L22","6M"],toxic:["5M","6M"],uproar:["5L1","5L10","5T","6L1","6L10"],weatherball:["5L1","6L1"],signalbeam:["5T"],magiccoat:["5T"],magnetrise:["5T"],irondefense:["5T"],snore:["5T"],sleeptalk:["5T","6M"],freezedry:["6L1"],confide:["6M"]}}, + deerling:{learnset:{agility:["5E","6E"],aromatherapy:["5L28","5S0","6L28"],attract:["5M","6M"],batonpass:["5E","6E"],camouflage:["5L1","6L1"],charm:["5L36","6L36"],doubleedge:["5L46","6L46"],doublekick:["5L10","6L10"],doubleteam:["5M","6M"],echoedvoice:["5M","6M"],energyball:["5M","5L32","6L32","6M"],facade:["5M","6M"],feintattack:["5L16","5S0","6L16"],faketears:["5E","6E"],flash:["5M","6M"],frustration:["5M","6M"],grassknot:["5M","6M"],grasswhistle:["5E","6E"],growl:["5L4","6L4"],hiddenpower:["5M","6M"],jumpkick:["5L24","5S0","6L24"],leechseed:["5L13","6L13"],lightscreen:["5M","6M"],naturalgift:["5E","6E"],naturepower:["5L41","6L41","6M"],odorsleuth:["5E","6E"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],sandattack:["5L7","6L7"],shadowball:["5M","6M"],sleeptalk:["5E","5T","6M","6E"],solarbeam:["5M","5L51","6L51","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],synthesis:["5E","5T","6E"],tackle:["5L1","6L1"],takedown:["5L20","5S0","6L20"],thunderwave:["5M","6M"],toxic:["5M","6M"],wildcharge:["5M","6M"],workup:["5M"],worryseed:["5E","5T","6E"],seedbomb:["5T"],bounce:["5T"],lastresort:["5T"],snore:["5T"],gigadrain:["5T"],confide:["6M"]}}, + sawsbuck:{learnset:{aromatherapy:["5L28","6L28"],attract:["5M","6M"],camouflage:["5L1","6L1"],charm:["5L36","6L36"],cut:["5M","6M"],doubleedge:["5L52","6L52"],doublekick:["5L10","6L10"],doubleteam:["5M","6M"],echoedvoice:["5M","6M"],energyball:["5M","5L32","6L32","6M"],facade:["5M","6M"],feintattack:["5L16","6L16"],flash:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],growl:["5L1","5L4","6L1","6L4"],hiddenpower:["5M","6M"],hornleech:["5L37","6L37"],hyperbeam:["5M","6M"],jumpkick:["5L24","6L24"],leechseed:["5L13","6L13"],lightscreen:["5M","6M"],megahorn:["5L1","6L1"],naturepower:["5L44","6L44","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],rocksmash:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],sandattack:["5L1","5L7","6L1","6L7"],shadowball:["5M","6M"],solarbeam:["5M","5L60","6L60","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","6M"],tackle:["5L1","6L1"],takedown:["5L20","6L20"],thunderwave:["5M","6M"],toxic:["5M","6M"],wildcharge:["5M","6M"],workup:["5M"],seedbomb:["5T"],bounce:["5T"],lastresort:["5T"],snore:["5T"],synthesis:["5T"],gigadrain:["5T"],worryseed:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + emolga:{learnset:{acrobatics:["5M","5L30","6L30","6M"],aerialace:["5M","6M"],agility:["5L46","6L46"],airslash:["5E","5D","6E"],astonish:["5E","6E"],attract:["5M","6M"],batonpass:["5E","6E"],charge:["5L10","6L10"],chargebeam:["5M","6M"],charm:["5E","5D","6E"],covet:["5E","5T","6E"],cut:["5M","6M"],discharge:["5L50","6L50"],doubleteam:["5M","5L19","6L19","6M"],electroball:["5L26","6L26"],encore:["5L38","6L38"],facade:["5M","6M"],flash:["5M","6M"],fling:["5M","6M"],frustration:["5M","6M"],hiddenpower:["5M","6M"],irontail:["5E","5T","6E"],lightscreen:["5M","5L34","6L34","6M"],protect:["5M","6M"],pursuit:["5L16","6L16"],quickattack:["5L4","5D","6L4"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],roost:["5E","5T","6M","6E"],round:["5M","6M"],shockwave:["5E","5L22","6L22","6E"],spark:["5L13","6L13"],substitute:["5M","6M"],swagger:["5M","6M"],tailwhip:["5L7","6L7"],taunt:["5M","6M"],thunder:["5M","6M"],thunderbolt:["5M","6M"],thundershock:["5L1","6L1"],thunderwave:["5M","6M"],tickle:["5E","6E"],toxic:["5M","6M"],uturn:["5M","6M"],voltswitch:["5M","5L42","6L42","6M"],wildcharge:["5M","6M"],signalbeam:["5T"],lastresort:["5T"],snore:["5T"],knockoff:["5T"],tailwind:["5T"],helpinghand:["5T"],sleeptalk:["5T","6M"],nuzzle:["6L15"],confide:["6M"]}}, + karrablast:{learnset:{aerialace:["5M","6M"],attract:["5M","6M"],bugbite:["5E","5T","5D","6E"],bugbuzz:["5L28","5S0","6L28"],counter:["5E","6E"],cut:["5M","6M"],doubleedge:["5L56","6L56"],doubleteam:["5M","6M"],endure:["5L8","5D","6L8"],energyball:["5M","6M"],facade:["5M","6M"],feintattack:["5E","6E"],falseswipe:["5M","5L25","5S0","6L25","6M"],flail:["5L49","5S1","6L49"],frustration:["5M","6M"],furyattack:["5L16","5S0","6L16"],furycutter:["5L13","6L13"],headbutt:["5L20","5S0","6L20"],hiddenpower:["5M","6M"],hornattack:["5E","6E"],knockoff:["5E","5T","6E"],leer:["5L4","6L4"],megahorn:["5E","5S1","5D","6E"],peck:["5L1","6L1"],poisonjab:["5M","6M"],protect:["5M","6M"],pursuit:["5E","6E"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],scaryface:["5L40","6L40"],screech:["5E","6E"],slash:["5L32","6L32"],strugglebug:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L52","6L52","6M"],takedown:["5L37","5S1","6L37"],toxic:["5M","6M"],xscissor:["5M","5L44","5S1","6L44","6M"],irondefense:["5T"],snore:["5T"],gigadrain:["5T"],sleeptalk:["5T","6M"],infestation:["6M"],confide:["6M"]}}, + escavalier:{learnset:{aerialace:["5M","6M"],attract:["5M","6M"],bugbuzz:["5L28","6L28"],cut:["5M","6M"],doubleteam:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],falseswipe:["5M","5L25","6L25","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],furyattack:["5L16","6L16"],gigaimpact:["5M","5L56","6L56","6M"],headbutt:["5L20","6L20"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],irondefense:["5L40","5T","6L40"],ironhead:["5L37","5T","6L37"],leer:["5L1","5L4","6L1","6L4"],peck:["5L1","6L1"],poisonjab:["5M","6M"],protect:["5M","6M"],quickguard:["5L1","5L8","6L1","6L8"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],reversal:["5L49","6L49"],rocksmash:["5M","6M"],round:["5M","6M"],slash:["5L32","6L32"],strugglebug:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L52","6L52","6M"],toxic:["5M","6M"],twineedle:["5L1","5L13","6L1","6L13"],xscissor:["5M","5L44","6L44","6M"],bugbite:["5T"],snore:["5T"],knockoff:["5T"],gigadrain:["5T"],sleeptalk:["5T","6M"],doubleedge:["6L1"],fellstinger:["6L1","6L60"],infestation:["6M"],confide:["6M"]}}, + foongus:{learnset:{absorb:["5L1","6L1"],astonish:["5L8","6L8"],attract:["5M","6M"],bide:["5L12","6L12"],bodyslam:["5E","6E"],clearsmog:["5L39","6L39"],defensecurl:["5E","6E"],doubleteam:["5M","6M"],endure:["5E","6E"],energyball:["5M","6M"],facade:["5M","6M"],feintattack:["5L20","6L20"],flash:["5M","6M"],frustration:["5M","6M"],gastroacid:["5E","5T","6E"],gigadrain:["5L28","5T","6L28"],grassknot:["5M","6M"],growth:["5E","5L6","6L6","6E"],hiddenpower:["5M","6M"],ingrain:["5L18","6L18"],megadrain:["5L15","6L15"],payback:["5M","6M"],poisonpowder:["5E","6E"],protect:["5M","6M"],ragepowder:["5L45","6L45"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rollout:["5E","6E"],round:["5M","6M"],sludgebomb:["5M","6M"],solarbeam:["5M","5L43","6L43","6M"],spore:["5L50","6L50"],stunspore:["5E","6E"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],sweetscent:["5L24","6L24"],synthesis:["5L35","5T","6L35"],toxic:["5M","5L32","6L32","6M"],venoshock:["5M","6M"],seedbomb:["5T"],foulplay:["5T"],snore:["5T"],worryseed:["5T"],afteryou:["5T"],sleeptalk:["5T","6M"],naturepower:["6M"],confide:["6M"]}}, + amoonguss:{learnset:{absorb:["5L1","6L1"],astonish:["5L1","5L8","6L1","6L8"],attract:["5M","6M"],bide:["5L1","5L12","6L1","6L12"],clearsmog:["5L43","6L43"],doubleteam:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],feintattack:["5L20","6L20"],flash:["5M","6M"],frustration:["5M","6M"],gigadrain:["5L28","5T","6L28"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],growth:["5L1","5L6","6L1","6L6"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],ingrain:["5L18","6L18"],megadrain:["5L15","6L15"],payback:["5M","6M"],protect:["5M","6M"],ragepowder:["5L54","6L54"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],sludgebomb:["5M","6M"],solarbeam:["5M","5L49","6L49","6M"],spore:["5L62","6L62"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],sweetscent:["5L24","6L24"],synthesis:["5L35","5T","6L35"],toxic:["5M","5L32","6L32","6M"],venoshock:["5M","6M"],seedbomb:["5T"],foulplay:["5T"],snore:["5T"],gastroacid:["5T"],worryseed:["5T"],afteryou:["5T"],sleeptalk:["5T","6M"],naturepower:["6M"],confide:["6M"]}}, + frillish:{learnset:{absorb:["5L5","6L0"],acidarmor:["5E","6E"],attract:["5M","6M"],blizzard:["5M","6M"],brine:["5L32","6L0"],bubble:["5L1","6L0"],bubblebeam:["5L13","6L0"],confuseray:["5E","6E"],constrict:["5E","6E"],dive:["5M","6M"],doubleteam:["5M","6M"],dreameater:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],hail:["5M","6M"],hex:["5L43","6L0"],hiddenpower:["5M","6M"],hydropump:["5L49","6L0"],icebeam:["5M","6M"],mist:["5E","6E"],nightshade:["5L9","6L0"],ominouswind:["5L27","6L0"],painsplit:["5E","5T","6E"],protect:["5M","6M"],psychic:["5M","6M"],psychup:["5M","6M"],raindance:["5M","5L37","6L0","6M"],recover:["5E","5L17","6E"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],scald:["5M","6M"],shadowball:["5M","6M"],sludgebomb:["5M","6M"],sludgewave:["5M","6M"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],waterfall:["5M","6M"],waterpulse:["5L22","6L0"],watersport:["5L1","6L0"],waterspout:["5L61","6L0"],willowisp:["5M","6M"],wringout:["5L55","6L0"],magiccoat:["5T"],icywind:["5T"],darkpulse:["5T"],bind:["5T"],snore:["5T"],gigadrain:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T","6M"]}}, + jellicent:{learnset:{absorb:["5L1","5L5","6L0","6L0"],attract:["5M","6M"],blizzard:["5M","6M"],brine:["5L32","5S0","6L0"],bubble:["5L1","6L0"],bubblebeam:["5L13","6L0"],dive:["5M","6M"],doubleteam:["5M","6M"],dreameater:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],hail:["5M","6M"],hex:["5L45","6L0"],hiddenpower:["5M","6M"],hydropump:["5L53","6L0"],hyperbeam:["5M","6M"],icebeam:["5M","6M"],nightshade:["5L1","5L9","6L0","6L0"],ominouswind:["5L27","5S0","6L0"],protect:["5M","6M"],psychic:["5M","6M"],psychup:["5M","6M"],raindance:["5M","5L37","5S0","6L0","6M"],recover:["5L17","6L0"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],scald:["5M","6M"],shadowball:["5M","6M"],sludgebomb:["5M","6M"],sludgewave:["5M","6M"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],waterfall:["5M","6M"],waterpulse:["5L22","5S0","6L0"],watersport:["5L1","6L0"],waterspout:["5L69","6L0"],willowisp:["5M","6M"],wringout:["5L61","6L0"],magiccoat:["5T"],icywind:["5T"],darkpulse:["5T"],bind:["5T"],snore:["5T"],painsplit:["5T"],gigadrain:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T","6M"]}}, + alomomola:{learnset:{aquajet:["5L9","6L9"],aquaring:["5L5","5D","6L5"],attract:["5M","6M"],blizzard:["5M","6M"],brine:["5L41","6L41"],calmmind:["5M","6M"],dive:["5M"],doubleslap:["5L13","6L13"],doubleteam:["5M","6M"],endure:["5E","6E"],facade:["5M","6M"],frustration:["5M","6M"],hail:["5M","6M"],healingwish:["5L57","6L1","6L57"],healpulse:["5L17","6L17"],helpinghand:["5L49","5T","6L49"],hiddenpower:["5M","6M"],hydropump:["5L61","6L1","6L61"],icebeam:["5M","6M"],lightscreen:["5M","6M"],mirrorcoat:["5E","5D","6E"],mist:["5E","6E"],painsplit:["5E","5T","5D","6E"],pound:["5L1","6L1"],protect:["5M","5L21","6L21","6M"],psychic:["5M","6M"],psychup:["5M","6M"],raindance:["5M","6M"],refresh:["5E","6E"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","5L45","6L45","6M"],scald:["5M","6M"],shadowball:["5M","6M"],soak:["5L33","6L33"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],tickle:["5E","6E"],toxic:["5M","6M"],wakeupslap:["5L29","6L29"],waterfall:["5M","6M"],waterpulse:["5L25","6L25"],watersport:["5L1","6L1"],wideguard:["5L53","6L1","6L53"],wish:["5L37","6L37"],bounce:["5T"],magiccoat:["5T"],icywind:["5T"],snore:["5T"],knockoff:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + joltik:{learnset:{agility:["5L37","6L37"],attract:["5M","6M"],bugbite:["5L18","5T","6L18"],bugbuzz:["5L48","6L48"],chargebeam:["5M","6M"],crosspoison:["5E"],cut:["5M","6M"],disable:["5E"],discharge:["5L45","6L45"],doubleteam:["5M","6M"],electroball:["5L29","6L29"],electroweb:["5L15","5T","6L15"],energyball:["5M","6M"],facade:["5M","6M"],feintattack:["5E"],flash:["5M","6M"],frustration:["5M","6M"],furycutter:["5L12","6L12"],gastroacid:["5L23","5T","6L23"],hiddenpower:["5M","6M"],leechlife:["5L1","6L1"],lightscreen:["5M","6M"],pinmissile:["5E"],poisonjab:["5M","6M"],poisonsting:["5E"],protect:["5M","6M"],pursuit:["5E"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockclimb:["5E"],round:["5M","6M"],screech:["5L7","6L7"],signalbeam:["5L34","5T","6L34"],slash:["5L26","6L26"],spiderweb:["5L1","6L1"],stringshot:["5L1","6L1"],strugglebug:["5M","6M"],substitute:["5M","6M"],suckerpunch:["5L40","6L40"],swagger:["5M","6M"],thief:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","5L4","6L4","6M"],toxic:["5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],xscissor:["5M","6M"],bounce:["5T"],magnetrise:["5T"],snore:["5T"],gigadrain:["5T"],sleeptalk:["5T","6M"],infestation:["6M"],confide:["6M"]}}, + galvantula:{learnset:{agility:["5L40","6L40"],attract:["5M","6M"],bugbite:["5L18","5T","6L18"],bugbuzz:["5L60","6L60"],chargebeam:["5M","6M"],cut:["5M","6M"],discharge:["5L54","6L54"],doubleteam:["5M","6M"],electroball:["5L29","5D","6L29"],electroweb:["5L15","5T","6L15"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],furycutter:["5L12","6L12"],gastroacid:["5L23","5T","6L23"],gigaimpact:["5M","6M"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],leechlife:["5L1","6L1"],lightscreen:["5M","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],screech:["5L7","6L7"],signalbeam:["5L34","5T","6L34"],slash:["5L26","6L26"],spiderweb:["5L1","6L1"],stringshot:["5L1","6L1"],strugglebug:["5M","6M"],substitute:["5M","6M"],suckerpunch:["5L46","6L46"],swagger:["5M","6M"],thief:["5M","6M"],thunder:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","5L1","5L4","6L1","6L4","6M"],toxic:["5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],xscissor:["5M","6M"],bounce:["5T"],magnetrise:["5T"],snore:["5T"],gigadrain:["5T"],sleeptalk:["5T","6M"],pursuit:["5D"],disable:["5D"],stickyweb:["6L1","6L65"],infestation:["6M"],confide:["6M"]}}, + ferroseed:{learnset:{bulletseed:["5E","6E"],curse:["5L9","6L9"],doubleteam:["5M","6M"],energyball:["5M","6M"],explosion:["5M","5L55","6L55","6M"],facade:["5M","6M"],flash:["5M","6M"],flashcannon:["5M","5L52","6L52","6M"],frustration:["5M","6M"],gravity:["5E","5T","6E"],gyroball:["5M","5L21","6L21","6M"],harden:["5L1","6L1"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],ingrain:["5L35","6L35"],irondefense:["5L26","5T","6L26"],ironhead:["5L43","5T","6L43"],leechseed:["5E","6E"],metalclaw:["5L14","6L14"],mirrorshot:["5L30","6L30"],payback:["5M","5L47","6L47","6M"],pinmissile:["5L18","6L18"],poisonjab:["5M","6M"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockclimb:["5E","6E"],rockpolish:["5M","6M"],rocksmash:["5M","6M"],rollout:["5L6","6L6"],round:["5M","6M"],seedbomb:["5E","5T","6E"],selfdestruct:["5L38","6L38"],solarbeam:["5M","6M"],spikes:["5E","6E"],stealthrock:["5E","5T","6E"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],tackle:["5L1","6L1"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],worryseed:["5E","5T","6E"],magnetrise:["5T"],snore:["5T"],gigadrain:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"],naturepower:["6M"],confide:["6M"],acidspray:["6E"]}}, + ferrothorn:{learnset:{aerialace:["5M","6M"],bulldoze:["5M","6M"],curse:["5L1","5L9","6L1","6L9"],cut:["5M","6M"],doubleteam:["5M","6M"],energyball:["5M","6M"],explosion:["5M","5L67","6L67","6M"],facade:["5M","6M"],flash:["5M","6M"],flashcannon:["5M","5L61","6L61","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],gyroball:["5M","5L21","6L21","6M"],harden:["5L1","6L1"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],ingrain:["5L35","6L35"],irondefense:["5L26","5T","6L26"],ironhead:["5L46","5T","6L46"],metalclaw:["5L14","6L14"],mirrorshot:["5L30","6L30"],payback:["5M","5L53","6L53","6M"],pinmissile:["5L18","6L18"],poisonjab:["5M","6M"],powerwhip:["5L40","6L40"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockclimb:["5L1","6L1"],rockpolish:["5M","6M"],rocksmash:["5M","6M"],rollout:["5L1","5L6","6L1","6L6"],round:["5M","6M"],sandstorm:["5M","6M"],selfdestruct:["5L38","6L38"],shadowclaw:["5M","6M"],solarbeam:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","6M"],tackle:["5L1","6L1"],thunder:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],seedbomb:["5T"],gravity:["5T"],magnetrise:["5T"],snore:["5T"],knockoff:["5T"],gigadrain:["5T"],worryseed:["5T"],endeavor:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"],naturepower:["6M"],confide:["6M"]}}, + klink:{learnset:{autotomize:["5L31","6L31"],bind:["5L21","5T","6L21"],charge:["5L6","6L6"],chargebeam:["5M","5L26","6L26","6M"],discharge:["5L42","6L42"],doubleteam:["5M","6M"],facade:["5M","6M"],flashcannon:["5M","6M"],frustration:["5M","6M"],geargrind:["5L16","6L16"],hiddenpower:["5M","6M"],hyperbeam:["5M","5L57","6L57","6M"],lockon:["5L51","6L50"],metalsound:["5L45","6L45"],mirrorshot:["5L36","6L36"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockpolish:["5M","6M"],rocksmash:["5M","6M"],round:["5M","6M"],sandstorm:["5M","6M"],screech:["5L39","6L39"],shiftgear:["5L48","6L48"],substitute:["5M","6M"],swagger:["5M","6M"],thunderbolt:["5M","6M"],thundershock:["5L11","6L11"],thunderwave:["5M","6M"],toxic:["5M","6M"],vicegrip:["5L1","6L1"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],zapcannon:["5L54","6L54"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],gravity:["5T"],magnetrise:["5T"],irondefense:["5T"],snore:["5T"],recycle:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + klang:{learnset:{autotomize:["5L31","6L31"],bind:["5L21","5T","6L21"],charge:["5L1","5L6","6L6"],chargebeam:["5M","5L26","5D","6L26","6M"],discharge:["5L44","6L44"],doubleteam:["5M","6M"],facade:["5M","6M"],flashcannon:["5M","6M"],frustration:["5M","6M"],geargrind:["5L1","5L16","6L16"],hiddenpower:["5M","6M"],hyperbeam:["5M","5L64","6L64","6M"],lockon:["5L56","6L56"],metalsound:["5L48","6L48"],mirrorshot:["5L36","6L36"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockpolish:["5M","6M"],rocksmash:["5M","6M"],round:["5M","6M"],sandstorm:["5M","6M"],screech:["5L40","6L40"],shiftgear:["5L52","6L52"],substitute:["5M","6M"],swagger:["5M","6M"],thunderbolt:["5M","6M"],thundershock:["5L1","5L11","6L11"],thunderwave:["5M","6M"],toxic:["5M","6M"],vicegrip:["5L1","6L1"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],zapcannon:["5L60","6L60"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],gravity:["5T","5D"],magnetrise:["5T","5D"],irondefense:["5T"],snore:["5T"],recycle:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + klinklang:{learnset:{autotomize:["5L31","6L31"],bind:["5L21","5T","6L21"],charge:["5L1","5L6","6L6"],chargebeam:["5M","5L25","6L25","6M"],discharge:["5L44","6L44"],doubleteam:["5M","6M"],facade:["5M","6M"],flashcannon:["5M","6M"],frustration:["5M","6M"],geargrind:["5L1","5L16","6L16"],gigaimpact:["5M","6M"],hiddenpower:["5M","6M"],hyperbeam:["5M","5L72","6L72","6M"],lockon:["5L60","6L60"],metalsound:["5L48","6L48"],mirrorshot:["5L36","6L36"],protect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockpolish:["5M","6M"],rocksmash:["5M","6M"],round:["5M","6M"],sandstorm:["5M","6M"],screech:["5L40","6L40"],shiftgear:["5L54","6L54"],substitute:["5M","6M"],swagger:["5M","6M"],thunder:["5M","6M"],thunderbolt:["5M","6M"],thundershock:["5L1","5L11","6L11"],thunderwave:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],vicegrip:["5L1","6L1"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],zapcannon:["5L66","6L1","6L66"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],gravity:["5T"],magnetrise:["5T"],irondefense:["5T"],snore:["5T"],recycle:["5T"],sleeptalk:["5T","6M"],magneticflux:["6L1","6L76"],confide:["6M"]}}, + tynamo:{learnset:{chargebeam:["5L1","6L0"],spark:["5L1","6L0"],tackle:["5L1","6L0"],thunderwave:["5L1","6L0"],magnetrise:["5T"]}}, + eelektrik:{learnset:{acid:["5L19","6L0"],acidspray:["5L49","6L0"],acrobatics:["5M","6M"],attract:["5M","6M"],bind:["5L9","5T","6L0"],chargebeam:["5M","5L1","6L0","6M"],coil:["5L54","6L0"],crunch:["5L39","6L0"],discharge:["5L29","6L0"],doubleteam:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],flashcannon:["5M","6M"],frustration:["5M","6M"],gastroacid:["5L64","5T","6L0"],headbutt:["5L1","6L0"],hiddenpower:["5M","6M"],lightscreen:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],spark:["5L1","6L0"],substitute:["5M","6M"],swagger:["5M","6M"],thrash:["5L74","6L0"],thunder:["5M","6M"],thunderbolt:["5M","5L44","6L0","6M"],thunderwave:["5M","5L1","6L0","6M"],toxic:["5M","6M"],uturn:["5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","5L59","6L0","6M"],zapcannon:["5L69","6L0"],superfang:["5T"],signalbeam:["5T"],bounce:["5T"],magnetrise:["5T"],aquatail:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],gigadrain:["5T"],sleeptalk:["5T","6M"]}}, + eelektross:{learnset:{acid:["5L1","6L0"],acrobatics:["5M","6M"],attract:["5M","6M"],brickbreak:["5M","6M"],chargebeam:["5M","6M"],crunch:["5L1","6L0"],crushclaw:["5L1","6L0"],cut:["5M","6M"],discharge:["5L1","6L0"],doubleteam:["5M","6M"],dragonclaw:["5M","6M"],dragontail:["5M","6M"],facade:["5M","6M"],flamethrower:["5M","6M"],flash:["5M","6M"],flashcannon:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],headbutt:["5L1","6L0"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],lightscreen:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],roar:["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],thunder:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],uturn:["5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],superfang:["5T"],signalbeam:["5T"],bounce:["5T"],thunderpunch:["5T"],firepunch:["5T"],magnetrise:["5T"],superpower:["5T"],aquatail:["5T"],irontail:["5T"],bind:["5T"],snore:["5T"],knockoff:["5T"],gigadrain:["5T"],drainpunch:["5T"],gastroacid:["5T"],sleeptalk:["5T","6M"]}}, + elgyem:{learnset:{allyswitch:["5M"],astonish:["5E","6E"],attract:["5M","6M"],barrier:["5E","5D","6E"],calmmind:["5M","5L43","6L0","6M"],chargebeam:["5M","6M"],confusion:["5L1","6L0"],disable:["5E","6E"],doubleteam:["5M","6M"],dreameater:["5M","6M"],echoedvoice:["5M","6M"],embargo:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],growl:["5L4","6L0"],guardsplit:["5L50","6L0"],guardswap:["5E","6E"],headbutt:["5L18","6L0"],healblock:["5L8","5D","6L0"],hiddenpower:["5M","5L22","6L0","6M"],imprison:["5L25","6L0"],lightscreen:["5M","6M"],miracleeye:["5L11","6L0"],nastyplot:["5E","5D","6E"],powersplit:["5L50","6L0"],powerswap:["5E","6E"],protect:["5M","6M"],psybeam:["5L15","6L0"],psychic:["5M","5L39","6L0","6M"],psychup:["5M","5L36","6L0","6M"],psyshock:["5M","6M"],raindance:["5M","6M"],recover:["5L46","6L0"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],simplebeam:["5L29","6L0"],skillswap:["5E","5T","6E"],substitute:["5M","6M"],swagger:["5M","6M"],synchronoise:["5L53","6L0"],telekinesis:["5M"],teleport:["5E","6E"],thief:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],wonderroom:["5L56","5T","6L0"],zenheadbutt:["5L32","5T","6L0"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],gravity:["5T"],darkpulse:["5T"],snore:["5T"],roleplay:["5T"],painsplit:["5T"],afteryou:["5T"],trick:["5T"],recycle:["5T"],snatch:["5T"],sleeptalk:["5T","6M"]}}, + beheeyem:{learnset:{allyswitch:["5M"],attract:["5M","6M"],calmmind:["5M","5L45","6L0","6M"],chargebeam:["5M","6M"],confusion:["5L1","6L0"],doubleteam:["5M","6M"],dreameater:["5M","6M"],echoedvoice:["5M","6M"],embargo:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],growl:["5L1","5L4","6L0","6L0"],guardsplit:["5L56","6L0"],headbutt:["5L18","6L0"],healblock:["5L1","5L8","6L0","6L0"],hiddenpower:["5M","5L22","6L0","6M"],hyperbeam:["5M","6M"],imprison:["5L25","6L0"],lightscreen:["5M","6M"],miracleeye:["5L1","5L11","6L0","6L0"],powersplit:["5L58","6L0"],protect:["5M","6M"],psybeam:["5L15","6L0"],psychic:["5M","5L39","6L0","6M"],psychup:["5M","5L36","6L0","6M"],psyshock:["5M","6M"],raindance:["5M","6M"],recover:["5L50","6L0"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],simplebeam:["5L29","6L0"],substitute:["5M","6M"],swagger:["5M","6M"],synchronoise:["5L63","6L0"],telekinesis:["5M"],thief:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],wonderroom:["5L68","5T","6L0"],zenheadbutt:["5L32","5T","6L0"],signalbeam:["5T"],uproar:["5T"],magiccoat:["5T"],gravity:["5T"],darkpulse:["5T"],snore:["5T"],roleplay:["5T"],painsplit:["5T"],afteryou:["5T"],trick:["5T"],recycle:["5T"],snatch:["5T"],sleeptalk:["5T","6M"],skillswap:["5T"]}}, + litwick:{learnset:{acid:["5E","6E"],acidarmor:["5E","6E"],astonish:["5L1","6L1"],attract:["5M","6M"],calmmind:["5M","6M"],captivate:["5E","6E"],clearsmog:["5E","6E"],confuseray:["5L10","6L10"],curse:["5L43","6L43"],doubleteam:["5M","6M"],dreameater:["5M","6M"],embargo:["5M","6M"],ember:["5L1","6L1"],endure:["5E","6E"],energyball:["5M","6M"],facade:["5M","6M"],fireblast:["5M","6M"],firespin:["5L7","6L7"],flameburst:["5L20","6L20"],flamecharge:["5M","6M"],flamethrower:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],haze:["5E","6E"],heatwave:["5E","5T","6E"],hex:["5L28","6L28"],hiddenpower:["5M","6M"],imprison:["5L24","6L24"],incinerate:["5M","6M"],inferno:["5L38","6L38"],memento:["5L33","6L33"],minimize:["5L3","6L3"],nightshade:["5L13","6L13"],overheat:["5M","5L61","6L61","6M"],painsplit:["5L55","5T","6L55"],payback:["5M","6M"],protect:["5M","6M"],psychic:["5M","6M"],psychup:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","5L49","6L49","6M"],smog:["5L5","6L5"],solarbeam:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],telekinesis:["5M"],thief:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],willowisp:["5M","5L16","6L16","6M"],darkpulse:["5T","6M"],snore:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + lampent:{learnset:{astonish:["5L1","6L1"],attract:["5M","6M"],calmmind:["5M","6M"],confuseray:["5L10","6L10"],curse:["5L45","6L45"],doubleteam:["5M","6M"],dreameater:["5M","6M"],embargo:["5M","6M"],ember:["5L1","6L1"],energyball:["5M","6M"],facade:["5M","6M"],fireblast:["5M","6M"],firespin:["5L7","6L7"],flameburst:["5L20","6L20"],flamecharge:["5M","6M"],flamethrower:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],hex:["5L28","6L28"],hiddenpower:["5M","6M"],imprison:["5L24","6L24"],incinerate:["5M","6M"],inferno:["5L38","6L38"],memento:["5L33","6L33"],minimize:["5L1","5L3","6L1","6L3"],nightshade:["5L13","6L13"],overheat:["5M","5L69","6L69","6M"],painsplit:["5L61","5T","6L61"],payback:["5M","6M"],protect:["5M","6M"],psychic:["5M","6M"],psychup:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","5L53","6L53","6M"],smog:["5L1","5L5","6L1","6L5"],solarbeam:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],telekinesis:["5M"],thief:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],willowisp:["5M","5L16","6L16","6M"],darkpulse:["5T","6M"],snore:["5T"],heatwave:["5T"],spite:["5T"],trick:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + chandelure:{learnset:{attract:["5M","6M"],calmmind:["5M","6M"],confuseray:["5L1","6L1"],doubleteam:["5M","6M"],dreameater:["5M","6M"],embargo:["5M","6M"],energyball:["5M","5S0","6M"],facade:["5M","6M"],fireblast:["5M","6M"],flameburst:["5L1","6L1"],flamecharge:["5M","6M"],flamethrower:["5M","6M"],flash:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],heatwave:["5S0","5T"],hex:["5L1","6L1"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],incinerate:["5M","6M"],overheat:["5M","6M"],payback:["5M","6M"],protect:["5M","6M"],psychic:["5M","5S0","6M"],psychup:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","5S0","6M"],smog:["5L1","6L1"],solarbeam:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],telekinesis:["5M"],thief:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],willowisp:["5M","6M"],darkpulse:["5T","6M"],snore:["5T"],painsplit:["5T","6L1"],spite:["5T"],trick:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + axew:{learnset:{aerialace:["5M","6M"],assurance:["5L7","6L7"],attract:["5M","6M"],counter:["5E","5D","6E"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],dracometeor:["5T","6T"],dragonclaw:["5M","5L28","5S1","6L28","6M"],dragondance:["5L32","6L32"],dragonpulse:["5E","5L41","5T","6L41","6E"],dragonrage:["5L10","5S0","5S1","5D","5S2","6L10"],dualchop:["5L13","5T","6L13"],endeavor:["5E","5T","6E"],endure:["5E","5S1","6E"],facade:["5M","6M"],falseswipe:["5M","5L24","6L24","6M"],fling:["5M","6M"],focusenergy:["5E","6E"],frustration:["5M","6M"],gigaimpact:["5M","5L61","5S2","6L61","6M"],guillotine:["5L51","6L50"],harden:["5E","6E"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],incinerate:["5M","6M"],irontail:["5E","5T","6E"],leer:["5L4","6L4"],nightslash:["5E","5D","6E"],outrage:["5L56","5T","5S2","6L56"],payback:["5M","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],razorwind:["5E","6E"],rest:["5M","6M"],"return":["5M","5S1","6M"],reversal:["5E","6E"],roar:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],scaryface:["5L16","6L16"],scratch:["5L1","5S0","5S2","6L1"],slash:["5L20","6L20"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L46","6L46","6M"],taunt:["5M","5L36","6L36","6M"],toxic:["5M","6M"],xscissor:["5M","6M"],superpower:["5T"],aquatail:["5T"],snore:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + fraxure:{learnset:{aerialace:["5M","6M"],assurance:["5L1","5L7","6L1","6L7"],attract:["5M","6M"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],dracometeor:["5T","6T"],dragonclaw:["5M","5L28","6L28","6M"],dragondance:["5L32","6L32"],dragonpulse:["5L42","5T","6L42"],dragonrage:["5L1","5L10","6L1","6L10"],dragontail:["5M","6M"],dualchop:["5L13","5T","6L13"],facade:["5M","6M"],falseswipe:["5M","5L24","6L24","6M"],fling:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","5L66","6L66","6M"],guillotine:["5L54","6L54"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],incinerate:["5M","6M"],leer:["5L1","5L4","6L1","6L4"],outrage:["5L60","5T","6L60"],payback:["5M","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],roar:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],scaryface:["5L16","6L16"],scratch:["5L1","6L1"],shadowclaw:["5M","6M"],slash:["5L20","6L20"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L48","6L48","6M"],taunt:["5M","5L36","6L36","6M"],toxic:["5M","6M"],xscissor:["5M","6M"],lowkick:["5T"],superpower:["5T"],aquatail:["5T"],irontail:["5T"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + haxorus:{learnset:{aerialace:["5M","6M"],assurance:["5L1","5L7","6L1","6L7"],attract:["5M","6M"],brickbreak:["5M","6M"],bulldoze:["5M","6M"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],dracometeor:["5T","6T"],dragonclaw:["5M","5L28","6L28","6M"],dragondance:["5L32","5S0","6L32"],dragonpulse:["5L42","5T","6L42"],dragonrage:["5L1","5L10","6L1","6L10"],dragontail:["5M","6M"],dualchop:["5L13","5T","5S0","6L13"],earthquake:["5M","5S0","6M"],facade:["5M","6M"],falseswipe:["5M","5L24","6L24","6M"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","5L74","6L74","6M"],grassknot:["5M","6M"],guillotine:["5L58","6L58"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],incinerate:["5M","6M"],leer:["5L1","5L4","6L1","6L4"],outrage:["5L66","5T","6L1","6L66"],payback:["5M","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],roar:["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],scaryface:["5L16","6L16"],scratch:["5L1","6L1"],shadowclaw:["5M","6M"],slash:["5L20","6L20"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L50","6L50","6M"],taunt:["5M","5L36","6L36","6M"],toxic:["5M","6M"],xscissor:["5M","5S0","6M"],lowkick:["5T"],superpower:["5T"],aquatail:["5T"],irontail:["5T"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + cubchoo:{learnset:{aerialace:["5M","6M"],assurance:["5E","6E"],attract:["5M","6M"],avalanche:["5E","6E"],bide:["5L9","5S0","6L9"],blizzard:["5M","5L45","6L45","6M"],brine:["5L21","6L21"],charm:["5L29","6L29"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],echoedvoice:["5M","6M"],encore:["5E","6E"],endure:["5L25","6L25"],facade:["5M","6M"],flail:["5L36","6L36"],fling:["5M","6M"],focuspunch:["5E","6E"],frostbreath:["5M","6M"],frustration:["5M","6M"],furyswipes:["5L17","6L17"],grassknot:["5M","6M"],growl:["5L5","5S0","6L1"],hail:["5M","5L49","6L49","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],icebeam:["5M","6M"],icepunch:["5E","5T","6E"],icywind:["5L13","5S0","5T","6L13"],nightslash:["5E","6E"],powdersnow:["5L1","5S0","6L5"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","5L41","6L41","6M"],"return":["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],shadowclaw:["5M","6M"],sheercold:["5L57","6L57"],slash:["5L33","6L33"],sleeptalk:["5E","5T","6M","6E"],strength:["5M","6M"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],thrash:["5L53","6L53"],toxic:["5M","6M"],yawn:["5E","6E"],covet:["5T"],lowkick:["5T"],superpower:["5T"],snore:["5T"],playnice:["6L15"],poweruppunch:["6M"],confide:["6M"]}}, + beartic:{learnset:{aerialace:["5M","6M"],aquajet:["5L1","6L1"],attract:["5M","6M"],bide:["5L1","5L9","6L1"],blizzard:["5M","5L45","6L45","6M"],brickbreak:["5M","6M"],brine:["5L21","6L21"],bulkup:["5M","6M"],bulldoze:["5M","6M"],cut:["5M","6M"],dig:["5M","6M"],dive:["5M"],doubleteam:["5M","6M"],echoedvoice:["5M","6M"],endure:["5L25","6L25"],facade:["5M","6M"],flail:["5L36","6L36"],fling:["5M","6M"],focusblast:["5M","6M"],frostbreath:["5M","6M"],frustration:["5M","6M"],furyswipes:["5L17","6L17"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],growl:["5L1","5L5","6L1"],hail:["5M","5L53","6L53","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],icebeam:["5M","6M"],iciclecrash:["5L37","6L37"],icywind:["5L1","5L13","5T","6L1","6L13"],powdersnow:["5L1","6L1"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","5L41","6L41","6M"],"return":["5M","6M"],roar:["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],shadowclaw:["5M","6M"],sheercold:["5L66","6L1","6L66"],slash:["5L33","6L33"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],superpower:["5L1","5T","6L1"],surf:["5M","6M"],swagger:["5M","5L29","6L29","6M"],swordsdance:["5M","6M"],taunt:["5M","6M"],thrash:["5L59","6L1","6L59"],toxic:["5M","6M"],covet:["5T"],lowkick:["5T"],icepunch:["5T"],snore:["5T"],sleeptalk:["5T","6M"],playnice:["6L9"],poweruppunch:["6M"],confide:["6M"]}}, + cryogonal:{learnset:{acidarmor:["5L29","6L29"],acrobatics:["5M","6M"],attract:["5M","6M"],aurorabeam:["5L25","6L25"],bind:["5L1","5T","6L1"],blizzard:["5M","6M"],confuseray:["5L45","6L45"],doubleteam:["5M","6M"],explosion:["5M","6M"],facade:["5M","6M"],flashcannon:["5M","6M"],frostbreath:["5M","6M"],frustration:["5M","6M"],hail:["5M","6M"],haze:["5L21","6L1","6L21"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],icebeam:["5M","5L33","6L33","6M"],iceshard:["5L5","6L1","6L5"],icywind:["5L17","5T","6L17"],lightscreen:["5M","5L37","6L37","6M"],mist:["5L21","6L1","6L21"],nightslash:["5L57","6L1","6L57"],poisonjab:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rapidspin:["5L13","6L13"],recover:["5L49","6L49"],reflect:["5M","5L37","6L37","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],sharpen:["5L9","6L9"],sheercold:["5L61","6L1","6L61"],slash:["5L41","6L41"],solarbeam:["5M","5L53","6L53","6M"],substitute:["5M","6M"],swagger:["5M","6M"],toxic:["5M","6M"],signalbeam:["5T"],magiccoat:["5T"],irondefense:["5T"],snore:["5T"],knockoff:["5T"],sleeptalk:["5T","6M"],freezedry:["6L50"],confide:["6M"]}}, + shelmet:{learnset:{acid:["5L4","5D","6L4"],acidarmor:["5L32","6L32"],attract:["5M","6M"],batonpass:["5E","5D","6E"],bide:["5L8","6L8"],bodyslam:["5L40","5S1","6L40"],bugbuzz:["5L44","5S1","6L44"],curse:["5L13","6L13"],doubleedge:["5E","6E"],doubleteam:["5M","6M"],encore:["5E","5S1","5D","6E"],endure:["5E","6E"],energyball:["5M","6M"],facade:["5M","6M"],feint:["5E","6E"],finalgambit:["5L56","6L56"],frustration:["5M","6M"],gigadrain:["5L37","5S1","5T","6L37"],guardsplit:["5E","6E"],guardswap:["5L52","6L50"],hiddenpower:["5M","6M"],leechlife:["5L1","6L1"],megadrain:["5L20","5S0","6L20"],mindreader:["5E","6E"],mudslap:["5E","6E"],protect:["5M","5L28","5S0","6L28","6M"],pursuit:["5E","6E"],raindance:["5M","6M"],recover:["5L49","6L49"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],sludgebomb:["5M","6M"],spikes:["5E","6E"],strugglebug:["5M","5L16","5S0","6L16","6M"],substitute:["5M","6M"],swagger:["5M","6M"],toxic:["5M","6M"],venoshock:["5M","6M"],yawn:["5L25","5S0","6L25"],bugbite:["5T"],signalbeam:["5T"],snore:["5T"],gastroacid:["5T"],sleeptalk:["5T","6M"],infestation:["6M"],confide:["6M"]}}, + accelgor:{learnset:{acidspray:["5L1","5L4","6L1","6L4"],agility:["5L32","6L32"],attract:["5M","6M"],bugbuzz:["5L44","6L44"],doubleteam:["5M","5L1","5L8","6L1","6L8","6M"],energyball:["5M","6M"],facade:["5M","6M"],finalgambit:["5L56","6L1","6L56"],focusblast:["5M","6M"],frustration:["5M","6M"],gigadrain:["5L37","5T","6L37"],gigaimpact:["5M","6M"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],leechlife:["5L1","6L1"],mefirst:["5L28","6L28"],megadrain:["5L20","6L20"],powerswap:["5L52","6L1","6L52"],protect:["5M","6M"],quickattack:["5L1","5L13","6L1","6L13"],raindance:["5M","6M"],recover:["5L49","6L49"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],sandstorm:["5M","6M"],sludgebomb:["5M","6M"],strugglebug:["5M","5L16","6L16","6M"],substitute:["5M","6M"],swagger:["5M","6M"],swift:["5L25","6L25"],toxic:["5M","6M"],uturn:["5M","5L40","6L40","6M"],venoshock:["5M","6M"],bugbite:["5T"],signalbeam:["5T"],snore:["5T"],knockoff:["5T"],gastroacid:["5T"],sleeptalk:["5T","6M"],infestation:["6M"],confide:["6M"]}}, + stunfisk:{learnset:{astonish:["5E","6E"],attract:["5M","6M"],bide:["5L5","6L5"],bounce:["5L35","5T","6L35"],bulldoze:["5M","6M"],camouflage:["5L17","6L17"],curse:["5E","5D","6E"],dig:["5M","6M"],discharge:["5L25","6L25"],doubleteam:["5M","6M"],earthpower:["5E","5T","6E"],earthquake:["5M","6M"],endure:["5L30","6L30"],facade:["5M","6M"],fissure:["5L61","6L1","6L61"],flail:["5L55","6L1","6L55"],flash:["5M","6M"],frustration:["5M","6M"],hiddenpower:["5M","6M"],mudbomb:["5L21","6L21"],muddywater:["5L40","6L40"],mudshot:["5L13","6L13"],mudslap:["5L1","5D","6L1"],mudsport:["5L1","6L1"],painsplit:["5E","5T","6E"],payback:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],revenge:["5L50","6L50"],rockslide:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sandstorm:["5M","6M"],scald:["5M","6M"],shockwave:["5E","6E"],sleeptalk:["5E","5T","6M","6E"],sludgebomb:["5M","6M"],sludgewave:["5M","6M"],spark:["5E","6E"],spite:["5E","5T","6E"],stoneedge:["5M","6M"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],thunder:["5M","6M"],thunderbolt:["5M","5L45","6L45","6M"],thundershock:["5L9","6L9"],thunderwave:["5M","6M"],toxic:["5M","6M"],yawn:["5E","5D","6E"],uproar:["5T"],foulplay:["5T"],magnetrise:["5T"],electroweb:["5T"],aquatail:["5T"],snore:["5T"],endeavor:["5T"],stealthrock:["5T"],tackle:["6L1"],watergun:["6L1"],infestation:["6M"],confide:["6M"],eerieimpulse:["6E"],reflecttype:["6E"],mefirst:["6E"]}}, + mienfoo:{learnset:{acrobatics:["5M","6M"],aerialace:["5M","6M"],attract:["5M","6M"],aurasphere:["5L61","6L61"],batonpass:["5E","6E"],bounce:["5L49","5T","6L49"],brickbreak:["5M","6M"],bulkup:["5M","6M"],calmmind:["5M","5L25","6L25","6M"],detect:["5L9","6L9"],dig:["5M","6M"],doubleslap:["5L17","6L17"],doubleteam:["5M","6M"],drainpunch:["5L33","5T","6L33"],endure:["5E","6E"],facade:["5M","6M"],fakeout:["5L13","6L13"],feint:["5E","6E"],fling:["5M","6M"],focusblast:["5M","6M"],forcepalm:["5L29","6L29"],frustration:["5M","6M"],grassknot:["5M","6M"],hiddenpower:["5M","6M"],highjumpkick:["5L53","6L50"],jumpkick:["5L37","6L37"],knockoff:["5E","5T","6E"],lowkick:["5E","5T","6E"],lowsweep:["5M","6M"],meditate:["5L5","6L5"],mefirst:["5E","6E"],payback:["5M","6M"],poisonjab:["5M","6M"],pound:["5L1","6L1"],protect:["5M","6M"],psychup:["5M","6M"],quickguard:["5L45","6L45"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],reversal:["5L57","6L57"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],smellingsalts:["5E","6E"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swift:["5L21","6L21"],swordsdance:["5M","6M"],taunt:["5M","6M"],toxic:["5M","6M"],uturn:["5M","5L41","6L41","6M"],vitalthrow:["5E","6E"],workup:["5M"],dualchop:["5T"],snore:["5T"],roleplay:["5T"],helpinghand:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"],allyswitch:["6E"]}}, + mienshao:{learnset:{acrobatics:["5M","6M"],aerialace:["5M","6M"],attract:["5M","6M"],aurasphere:["5L70","6L1","6L70"],bounce:["5L49","5T","6L49"],brickbreak:["5M","6M"],bulkup:["5M","6M"],calmmind:["5M","5L25","6L25","6M"],detect:["5L1","5L9","6L1","6L9"],dig:["5M","6M"],doubleslap:["5L17","6L17"],doubleteam:["5M","6M"],drainpunch:["5L33","5T","6L33"],facade:["5M","6M"],fakeout:["5L1","5L13","6L1","6L13"],fling:["5M","6M"],focusblast:["5M","6M"],forcepalm:["5L29","6L29"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],hiddenpower:["5M","6M"],highjumpkick:["5L56","6L56"],hyperbeam:["5M","6M"],jumpkick:["5L37","6L37"],lowsweep:["5M","6M"],meditate:["5L1","5L5","6L1","6L5"],payback:["5M","6M"],poisonjab:["5M","6M"],pound:["5L1","6L1"],protect:["5M","6M"],psychup:["5M","6M"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],reversal:["5L63","6L1","6L63"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swift:["5L21","6L21"],swordsdance:["5M","6M"],taunt:["5M","6M"],toxic:["5M","6M"],uturn:["5M","5L41","6L41","6M"],wideguard:["5L45","6L45"],workup:["5M"],dualchop:["5T"],lowkick:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],helpinghand:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"]}}, + druddigon:{learnset:{aerialace:["5M","6M"],attract:["5M","6M"],bite:["5L9","5D","6L9"],bulldoze:["5M","6M"],chargebeam:["5M","6M"],chipaway:["5L31","6L31"],crunch:["5L25","6L25"],crushclaw:["5E","6E"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],dracometeor:["5T","6T"],dragonclaw:["5M","5L27","6L27","6M"],dragonrage:["5L18","6L18"],dragontail:["5M","5L45","6L45","6M"],earthquake:["5M","6M"],facade:["5M","6M"],feintattack:["5E","6E"],firefang:["5E","5D","6E"],flamethrower:["5M","6M"],flashcannon:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],glare:["5E","6E"],hiddenpower:["5M","6M"],honeclaws:["5M","5L5","6L5","6M"],hyperbeam:["5M","6M"],incinerate:["5M","6M"],irontail:["5E","5T","6E"],leer:["5L1","5S0","6L1"],metalclaw:["5E","6E"],nightslash:["5L40","6L40"],outrage:["5L62","5T","6L62"],payback:["5M","6M"],poisontail:["5E","6E"],protect:["5M","6M"],pursuit:["5E","6E"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],revenge:["5L35","6L35"],roar:["5M","6M"],rockclimb:["5L49","6L49"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],scaryface:["5L13","6L13"],scratch:["5L1","5S0","6L1"],shadowclaw:["5M","6M"],slash:["5L21","6L21"],sludgebomb:["5M","6M"],smackdown:["5M","6M"],snarl:["5M","6M"],snatch:["5E","5T","6E"],strength:["5M","6M"],substitute:["5M","6M"],suckerpunch:["5E","5D","6E"],sunnyday:["5M","6M"],superpower:["5L55","5T","6L55"],surf:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],thunderfang:["5E","6E"],torment:["5M","6M"],toxic:["5M","6M"],ironhead:["5T"],gunkshot:["5T"],thunderpunch:["5T"],firepunch:["5T"],aquatail:["5T"],darkpulse:["5T","6M"],dragonpulse:["5T"],snore:["5T"],heatwave:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"]}}, + golett:{learnset:{astonish:["5L1","6L1"],brickbreak:["5M","6M"],bulldoze:["5M","6M"],curse:["5L40","6L40"],defensecurl:["5L1","6L1"],doubleteam:["5M","6M"],dynamicpunch:["5L30","6L30"],earthquake:["5M","5L45","6L45","6M"],facade:["5M","6M"],flash:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],focuspunch:["5L55","6L55"],frustration:["5M","6M"],grassknot:["5M","6M"],gyroball:["5M","6M"],hammerarm:["5L50","6L50"],hiddenpower:["5M","6M"],icebeam:["5M","6M"],irondefense:["5L17","5T","6L17"],lowsweep:["5M","6M"],magnitude:["5L25","6L25"],megapunch:["5L21","6L21"],mudslap:["5L5","6L5"],nightshade:["5L35","6L35"],pound:["5L1","6L1"],protect:["5M","6M"],psychic:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockpolish:["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],rollout:["5L9","5D","6L9"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],shadowpunch:["5L13","6L13"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],telekinesis:["5M"],thief:["5M","6M"],toxic:["5M","6M"],signalbeam:["5T"],lowkick:["5T"],thunderpunch:["5T","5D"],firepunch:["5T","5D"],icepunch:["5T"],magiccoat:["5T"],block:["5T"],earthpower:["5T"],gravity:["5T"],superpower:["5T"],icywind:["5T"],snore:["5T"],drainpunch:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"]}}, + golurk:{learnset:{astonish:["5L1","6L1"],brickbreak:["5M","6M"],bulldoze:["5M","6M"],chargebeam:["5M","6M"],curse:["5L40","6L40"],defensecurl:["5L1","6L1"],doubleteam:["5M","6M"],dynamicpunch:["5L30","6L30"],earthquake:["5M","5L50","6L50","6M"],facade:["5M","6M"],flash:["5M","6M"],flashcannon:["5M","6M"],fling:["5M","6M"],fly:["5M","6M"],focusblast:["5M","6M"],focuspunch:["5L70","6L1","6L70"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],gyroball:["5M","5S0","6M"],hammerarm:["5L60","5S0","6L60"],heavyslam:["5L43","6L43"],hiddenpower:["5M","6M"],hyperbeam:["5M","5S0","6M"],icebeam:["5M","6M"],irondefense:["5L17","5T","6L17"],lowsweep:["5M","6M"],magnitude:["5L25","6L25"],megapunch:["5L21","6L21"],mudslap:["5L1","5L5","6L1","6L5"],nightshade:["5L35","6L35"],pound:["5L1","6L1"],protect:["5M","6M"],psychic:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockpolish:["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],rollout:["5L9","6L9"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],shadowpunch:["5L13","5S0","6L13"],solarbeam:["5M","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],telekinesis:["5M"],thief:["5M","6M"],thunderbolt:["5M","6M"],toxic:["5M","6M"],signalbeam:["5T"],lowkick:["5T"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],magiccoat:["5T"],block:["5T"],earthpower:["5T"],gravity:["5T"],superpower:["5T"],icywind:["5T"],zenheadbutt:["5T"],snore:["5T"],drainpunch:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"],phantomforce:["6L1","6L75"],poweruppunch:["6M"],confide:["6M"]}}, + pawniard:{learnset:{aerialace:["5M","6M"],assurance:["5L33","6L33"],attract:["5M","6M"],brickbreak:["5M","6M"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],embargo:["5M","5L41","6L41","6M"],facade:["5M","6M"],feintattack:["5L17","6L17"],falseswipe:["5M","6M"],fling:["5M","6M"],frustration:["5M","6M"],furycutter:["5L9","5D","6L9"],grassknot:["5M","6M"],guillotine:["5L62","6L62"],headbutt:["5E","6E"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],irondefense:["5L46","5T","6L46"],ironhead:["5L54","5T","6L54"],leer:["5L6","6L6"],lowsweep:["5M","6M"],meanlook:["5E","6E"],metalclaw:["5L25","6L25"],metalsound:["5L38","6L38"],nightslash:["5L49","6L49"],payback:["5M","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],psychocut:["5E","5D","6E"],pursuit:["5E","6E"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],revenge:["5E","6E"],rockpolish:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sandstorm:["5M","6M"],scaryface:["5L22","6L22"],scratch:["5L1","6L1"],shadowclaw:["5M","6M"],slash:["5L30","6L30"],snarl:["5M","6M"],stealthrock:["5E","5T","6E"],substitute:["5M","6M"],suckerpunch:["5E","5D","6E"],swagger:["5M","6M"],swordsdance:["5M","5L57","6L57","6M"],taunt:["5M","6M"],thief:["5M","6M"],thunderwave:["5M","6M"],torment:["5M","5L14","6L14","6M"],toxic:["5M","6M"],xscissor:["5M","6M"],dualchop:["5T"],lowkick:["5T"],foulplay:["5T"],magnetrise:["5T"],darkpulse:["5T","6M"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],spite:["5T"],snatch:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"]}}, + bisharp:{learnset:{aerialace:["5M","6M"],assurance:["5L33","6L33"],attract:["5M","6M"],brickbreak:["5M","6M"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],embargo:["5M","5L41","6L41","6M"],facade:["5M","6M"],feintattack:["5L17","6L17"],falseswipe:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],furycutter:["5L1","5L9","6L1","6L9"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],guillotine:["5L71","6L1","6L71"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],irondefense:["5L46","5T","6L46"],ironhead:["5L57","5T","6L1","6L57"],leer:["5L1","5L6","6L1","6L6"],lowsweep:["5M","6M"],metalburst:["5L1","6L1"],metalclaw:["5L25","6L25"],metalsound:["5L38","6L38"],nightslash:["5L49","6L49"],payback:["5M","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],rockpolish:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sandstorm:["5M","6M"],scaryface:["5L22","6L22"],scratch:["5L1","6L1"],shadowclaw:["5M","6M"],slash:["5L30","6L30"],snarl:["5M","6M"],stoneedge:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L63","6L63","6M"],taunt:["5M","6M"],thief:["5M","6M"],thunderwave:["5M","6M"],torment:["5M","5L1","5L14","6L1","6L14","6M"],toxic:["5M","6M"],xscissor:["5M","6M"],dualchop:["5T"],lowkick:["5T"],foulplay:["5T"],magnetrise:["5T"],darkpulse:["5T","6M"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],spite:["5T"],snatch:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"],poweruppunch:["6M"],confide:["6M"]}}, + bouffalant:{learnset:{aerialace:["5M","6M"],amnesia:["5E","6E"],attract:["5M","6M"],bulldoze:["5M","6M"],cut:["5M","6M"],doubleteam:["5M","6M"],earthquake:["5M","6M"],facade:["5M","6M"],focusenergy:["5L36","6L0"],frustration:["5M","6M"],furyattack:["5L11","6L0"],gigaimpact:["5M","5L61","6L0","6M"],headbutt:["5E","6E"],headcharge:["5L31","6L0"],hiddenpower:["5M","6M"],hornattack:["5L16","6L0"],ironhead:["5E","5T","6E"],leer:["5L1","6L0"],megahorn:["5L41","6L0"],mudshot:["5E","6E"],mudslap:["5E","6E"],payback:["5M","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],pursuit:["5L1","6L0"],rage:["5L6","6L0"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],revenge:["5L26","6L0"],reversal:["5L46","6L0"],rockclimb:["5E","6E"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],scaryface:["5L21","6L0"],skullbash:["5E","6E"],stomp:["5E","6E"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L56","6L0","6M"],taunt:["5M","6M"],thrash:["5L51","6L0"],toxic:["5M","6M"],wildcharge:["5M","6M"],workup:["5M"],uproar:["5T"],superpower:["5T"],zenheadbutt:["5T"],snore:["5T"],endeavor:["5T"],outrage:["5T"],sleeptalk:["5T","6M"]}}, + rufflet:{learnset:{aerialace:["5M","5L23","6L23","6M"],airslash:["5L41","6L41"],attract:["5M","6M"],bravebird:["5L59","6L59"],bulkup:["5M","6M"],crushclaw:["5L46","6L46"],cut:["5M","6M"],defog:["5L32","6L32"],doubleteam:["5M","6M"],facade:["5M","6M"],fly:["5M","6M"],frustration:["5M","6M"],furyattack:["5L5","6L5"],hiddenpower:["5M","6M"],honeclaws:["5M","5L14","6L14","6M"],leer:["5L1","6L1"],peck:["5L1","6L1"],pluck:["5M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],scaryface:["5L19","6L19"],shadowclaw:["5M","6M"],skydrop:["5M","5L50","6L50","6M"],slash:["5L28","6L28"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],tailwind:["5L37","5T","6L37"],thrash:["5L64","6L64"],toxic:["5M","6M"],uturn:["5M","6M"],whirlwind:["5L55","6L55"],wingattack:["5L10","6L10"],workup:["5M"],superpower:["5T"],snore:["5T"],heatwave:["5T"],roost:["5T","6M"],sleeptalk:["5T","6M"],steelwing:["6M"],confide:["6M"]}}, + braviary:{learnset:{aerialace:["5M","5L23","5S0","6L23","6M"],airslash:["5L41","6L41"],attract:["5M","6M"],bravebird:["5L63","6L1","6L63"],bulkup:["5M","6M"],crushclaw:["5L46","6L46"],cut:["5M","6M"],defog:["5L32","6L32"],doubleteam:["5M","6M"],facade:["5M","6M"],fly:["5M","6M"],frustration:["5M","6M"],furyattack:["5L1","5L5","6L1","6L5"],gigaimpact:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","5L14","5S0","6L14","6M"],hyperbeam:["5M","6M"],leer:["5L1","6L1"],peck:["5L1","6L1"],pluck:["5M"],protect:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],scaryface:["5L19","5S0","6L19"],shadowclaw:["5M","6M"],skydrop:["5M","5L50","6L50","6M"],slash:["5L28","6L28"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],superpower:["5L51","5T","6L1","6L51"],swagger:["5M","6M"],tailwind:["5L37","5T","6L37"],thrash:["5L70","6L1","6L70"],toxic:["5M","6M"],uturn:["5M","6M"],whirlwind:["5L57","6L1","6L57"],wingattack:["5L1","5L10","5S0","6L1","6L10"],workup:["5M"],snore:["5T"],heatwave:["5T"],skyattack:["5T"],roost:["5T","6M"],sleeptalk:["5T","6M"],steelwing:["6M"],confide:["6M"]}}, + vullaby:{learnset:{aerialace:["5M","6M"],airslash:["5L41","6L41"],attract:["5M","6M"],bravebird:["5L59","6L59"],cut:["5M","6M"],darkpulse:["5L46","5T","6L46","6M"],defog:["5L32","6L32"],doubleteam:["5M","6M"],embargo:["5M","5L50","6L50","6M"],facade:["5M","6M"],feintattack:["5L23","6L23"],faketears:["5E","6E"],flatter:["5L19","6L19"],fly:["5M","6M"],frustration:["5M","6M"],furyattack:["5L5","6L5"],gust:["5L1","6L1"],hiddenpower:["5M","6M"],incinerate:["5M","6M"],knockoff:["5E","5T","6E"],leer:["5L1","6L1"],meanlook:["5E","6E"],mirrormove:["5L64","6L64"],nastyplot:["5L14","6L14"],payback:["5M","6M"],pluck:["5M","5L10","6L10"],protect:["5M","6M"],psychup:["5M","6M"],punishment:["5L28","6L28"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],roost:["5E","5T","6M","6E"],round:["5M","6M"],scaryface:["5E","6E"],shadowball:["5M","6M"],snarl:["5M","6M"],steelwing:["5E","6M","6E"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],tailwind:["5L37","5T","6L37"],taunt:["5M","6M"],thief:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],uturn:["5M","6M"],whirlwind:["5L55","6L55"],block:["5T"],foulplay:["5T"],irondefense:["5T"],snore:["5T"],heatwave:["5T"],snatch:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + mandibuzz:{learnset:{aerialace:["5M","6M"],airslash:["5L41","6L41"],attract:["5M","6M"],bonerush:["5L51","6L1","6L51"],bravebird:["5L63","6L1","6L63"],cut:["5M","6M"],darkpulse:["5L46","5T","6L46","6M"],defog:["5L32","6L32"],doubleteam:["5M","6M"],embargo:["5M","5L50","6L50","6M"],facade:["5M","6M"],feintattack:["5L23","5S0","6L23"],flatter:["5L19","5S0","6L19"],fly:["5M","6M"],frustration:["5M","6M"],furyattack:["5L1","5L5","6L1","6L5"],gigaimpact:["5M","6M"],gust:["5L1","6L1"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],incinerate:["5M","6M"],leer:["5L1","6L1"],mirrormove:["5L70","6L1","6L70"],nastyplot:["5L14","5S0","6L14"],payback:["5M","6M"],pluck:["5M","5L1","5L10","5S0","6L1","6L10"],protect:["5M","6M"],psychup:["5M","6M"],punishment:["5L28","6L28"],raindance:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],shadowball:["5M","6M"],snarl:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],tailwind:["5L37","5T","6L37"],taunt:["5M","6M"],thief:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],uturn:["5M","6M"],whirlwind:["5L57","6L1","6L57"],block:["5T"],foulplay:["5T"],irondefense:["5T"],snore:["5T"],knockoff:["5T"],heatwave:["5T"],skyattack:["5T"],roost:["5T","6M"],snatch:["5T"],sleeptalk:["5T","6M"],steelwing:["6M"],confide:["6M"]}}, + heatmor:{learnset:{aerialace:["5M","6M"],amnesia:["5L46","6L44"],attract:["5M","6M"],bind:["5L11","5T","6L11"],bodyslam:["5E","6E"],bugbite:["5L36","5T","6L36"],curse:["5E","6E"],cut:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],facade:["5M","6M"],feintattack:["5E","6E"],fireblast:["5M","6M"],firespin:["5L16","6L16"],flameburst:["5L31","6L31"],flamethrower:["5M","5L51","6L47","6M"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],furyswipes:["5L21","6L21"],gigaimpact:["5M","6M"],heatwave:["5E","5T","5D","6E"],hiddenpower:["5M","6M"],honeclaws:["5M","6L1","6M"],incinerate:["5M","5L1","5D","6L1","6M"],inferno:["5L61","6L1","6L61"],lick:["5L1","6L1"],nightslash:["5E","6E"],odorsleuth:["5L6","6L6"],protect:["5M","6M"],pursuit:["5E","6E"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],shadowclaw:["5M","6M"],slash:["5L41","6L41"],sleeptalk:["5E","5T","6M","6E"],snatch:["5L26","5T","6L26"],solarbeam:["5M","6M"],spitup:["5L56","6L50"],stockpile:["5L56","6L50"],substitute:["5M","6M"],suckerpunch:["5E","6E"],sunnyday:["5M","6M"],swagger:["5M","6M"],swallow:["5L56","6L50"],taunt:["5M","6M"],thief:["5M","6M"],tickle:["5E","6E"],toxic:["5M","6M"],willowisp:["5M","6M"],wrap:["5E","6E"],lowkick:["5T"],thunderpunch:["5T"],firepunch:["5T"],superpower:["5T"],snore:["5T"],knockoff:["5T"],gigadrain:["5T","5D"],gastroacid:["5T"],recycle:["5T"],tackle:["6L1"],poweruppunch:["6M"],confide:["6M"],belch:["6E"]}}, + durant:{learnset:{aerialace:["5M","6M"],agility:["5L16","6L16"],attract:["5M","6M"],batonpass:["5E","6E"],bite:["5L11","6L11"],bugbite:["5L26","5T","6L26"],crunch:["5L31","6L31"],cut:["5M","6M"],dig:["5M","5L41","6L41","6M"],doubleteam:["5M","6M"],endure:["5E","5D","6E"],energyball:["5M","6M"],entrainment:["5L46","6L46"],facade:["5M","6M"],feintattack:["5E","6E"],flashcannon:["5M","6M"],frustration:["5M","6M"],furycutter:["5L6","5D","6L6"],gigaimpact:["5M","6M"],guillotine:["5L61","6L1","6L61"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],irondefense:["5L56","5T","6L1","6L56"],ironhead:["5L36","5T","6L36"],metalclaw:["5L21","6L21"],metalsound:["5L66","6L1","6L66"],protect:["5M","6M"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],rockclimb:["5E","6E"],rockpolish:["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sandattack:["5L1","6L1"],sandstorm:["5M","6M"],screech:["5E","6E"],shadowclaw:["5M","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],strugglebug:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],thunderfang:["5E","5D","6E"],thunderwave:["5M","6M"],toxic:["5M","6M"],vicegrip:["5L1","6L1"],xscissor:["5M","5L51","6L51","6M"],superpower:["5T"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"],falseswipe:["6M"],confide:["6M"]}}, + deino:{learnset:{assurance:["5E","6E"],astonish:["5E","6E"],attract:["5M","6M"],bite:["5L9","6L9"],bodyslam:["5L48","6L48"],crunch:["5L25","6L25"],darkpulse:["5E","5T","6M","6E"],doublehit:["5E","6E"],doubleteam:["5M","6M"],dracometeor:["5T","6T"],dragonbreath:["5L17","6L17"],dragonpulse:["5L32","5T","6L32"],dragonrage:["5L1","5S0","6L1"],dragonrush:["5L42","6L42"],dragontail:["5M","6M"],earthpower:["5E","5T","6E"],facade:["5M","6M"],firefang:["5E","6E"],focusenergy:["5L4","6L4"],frustration:["5M","6M"],headbutt:["5L12","6L12"],headsmash:["5E","6E"],hiddenpower:["5M","6M"],hypervoice:["5L58","5T","6L58"],icefang:["5E","6E"],incinerate:["5M","6M"],outrage:["5L62","5T","6L62"],protect:["5M","6M"],psychup:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],roar:["5M","5L20","6L20","6M"],rocksmash:["5M","6M"],round:["5M","6M"],scaryface:["5L52","6L50"],screech:["5E","6E"],slam:["5L28","6L28"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],tackle:["5L1","5S0","6L1"],taunt:["5M","6M"],thief:["5M","6M"],thunderfang:["5E","6E"],thunderwave:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],workup:["5M","5L38","6L38"],uproar:["5T"],superpower:["5T"],aquatail:["5T"],zenheadbutt:["5T"],snore:["5T"],spite:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + zweilous:{learnset:{attract:["5M","6M"],bite:["5L1","5L9","6L1","6L9"],bodyslam:["5L48","6L48"],crunch:["5L25","6L25"],doublehit:["5L1","6L1"],doubleteam:["5M","6M"],dracometeor:["5T","6T"],dragonbreath:["5L17","6L17"],dragonpulse:["5L32","5T","6L32"],dragonrage:["5L1","6L1"],dragonrush:["5L42","6L42"],dragontail:["5M","6M"],facade:["5M","6M"],focusenergy:["5L1","5L4","6L1","6L4"],frustration:["5M","6M"],headbutt:["5L12","6L12"],hiddenpower:["5M","6M"],hypervoice:["5L64","5T","6L64"],incinerate:["5M","6M"],outrage:["5L71","5T","6L71"],protect:["5M","6M"],psychup:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],roar:["5M","5L20","6L20","6M"],rocksmash:["5M","6M"],round:["5M","6M"],scaryface:["5L55","6L55"],slam:["5L28","6L28"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],thief:["5M","6M"],thunderwave:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],workup:["5M","5L38","6L38"],uproar:["5T"],earthpower:["5T"],superpower:["5T"],aquatail:["5T"],darkpulse:["5T","6M"],zenheadbutt:["5T"],snore:["5T"],spite:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + hydreigon:{learnset:{acrobatics:["5M","6M"],attract:["5M","6M"],bite:["5L1","5L9","6L1","6L9"],bodyslam:["5L48","6L48"],bulldoze:["5M","6M"],chargebeam:["5M","6M"],crunch:["5L25","6L25"],doubleteam:["5M","6M"],dracometeor:["5T","6T"],dragonbreath:["5L17","5S0","6L17"],dragonpulse:["5L32","5T","6L32"],dragonrage:["5L1","6L1"],dragonrush:["5L42","6L42"],dragontail:["5M","6M"],earthquake:["5M","6M"],echoedvoice:["5M","6M"],facade:["5M","6M"],fireblast:["5M","6M"],flamethrower:["5M","5S0","6M"],flashcannon:["5M","6M"],fly:["5M","6M"],focusblast:["5M","5S0","6M"],focusenergy:["5L1","5L4","6L1","6L4"],frustration:["5M","6M"],gigaimpact:["5M","6M"],headbutt:["5L12","6L12"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],hypervoice:["5L68","5S0","5T","6L1","6L68"],incinerate:["5M","6M"],outrage:["5L79","5T","6L1","6L79"],payback:["5M","6M"],protect:["5M","6M"],psychup:["5M","6M"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],roar:["5M","5L20","6L20","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],scaryface:["5L55","6L55"],slam:["5L28","6L28"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],taunt:["5M","6M"],thief:["5M","6M"],thunderwave:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],triattack:["5L1","6L1"],uturn:["5M","6M"],workup:["5M","5L38","6L38"],signalbeam:["5T"],uproar:["5T"],earthpower:["5T"],superpower:["5T"],aquatail:["5T"],darkpulse:["5T","6M"],zenheadbutt:["5T"],irontail:["5T"],snore:["5T"],heatwave:["5T"],tailwind:["5T"],roost:["5T","6M"],spite:["5T"],sleeptalk:["5T","6M"],steelwing:["6M"],confide:["6M"]}}, + larvesta:{learnset:{acrobatics:["5M","6M"],amnesia:["5L80","6L80"],bugbite:["5L40","5T","6L40"],bugbuzz:["5L70","6L70"],calmmind:["5M","6M"],doubleedge:["5L50","6L50"],doubleteam:["5M","6M"],ember:["5L1","6L1"],endure:["5E","6E"],facade:["5M","6M"],fireblast:["5M","6M"],flamecharge:["5M","5L30","6L30","6M"],flamethrower:["5M","6M"],flamewheel:["5L60","6L60"],flareblitz:["5L100","6L100"],foresight:["5E","6E"],frustration:["5M","6M"],harden:["5E","6E"],hiddenpower:["5M","6M"],incinerate:["5M","6M"],leechlife:["5L10","6L10"],lightscreen:["5M","6M"],magnetrise:["5E","5T","6E"],morningsun:["5E","6E"],overheat:["5M","6M"],protect:["5M","6M"],psychic:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],solarbeam:["5M","6M"],stringshot:["5E","5L1","6L1","6E"],strugglebug:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],takedown:["5L20","6L20"],thrash:["5L90","6L90"],toxic:["5M","6M"],uturn:["5M","6M"],wildcharge:["5M","6M"],willowisp:["5M","6M"],zenheadbutt:["5E","5T","6E"],signalbeam:["5T"],snore:["5T"],heatwave:["5T"],gigadrain:["5T"],sleeptalk:["5T","6M"],confide:["6M"]}}, + volcarona:{learnset:{acrobatics:["5M","6M"],aerialace:["5M","6M"],bugbuzz:["5L70","5S1","6L1","6L70"],calmmind:["5M","6M"],doubleteam:["5M","6M"],ember:["5L1","6L1"],facade:["5M","6M"],fierydance:["5L100","6L1","6L100"],fireblast:["5M","6M"],firespin:["5L30","5S0","6L30"],flamecharge:["5M","6M"],flamethrower:["5M","6M"],fly:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],gust:["5L1","5L20","5S0","6L1","6L20"],heatwave:["5L60","5T","6L1","6L60"],hiddenpower:["5M","6M"],hurricane:["5L90","6L1","6L90"],hyperbeam:["5M","5S1","6M"],incinerate:["5M","6M"],leechlife:["5L1","5L10","5S0","6L1","6L10"],lightscreen:["5M","6M"],overheat:["5M","5S1","6M"],poisonjab:["5M","6M"],protect:["5M","6M"],psychic:["5M","6M"],quiverdance:["5L59","5S1","6L1","6L59"],ragepowder:["5L80","6L1","6L80"],rest:["5M","6M"],"return":["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],silverwind:["5L50","6L50"],solarbeam:["5M","6M"],stringshot:["5L1","5S0","6L1"],strugglebug:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],toxic:["5M","6M"],uturn:["5M","6M"],whirlwind:["5L40","6L40"],wildcharge:["5M","6M"],willowisp:["5M","6M"],bugbite:["5T"],signalbeam:["5T"],magnetrise:["5T"],zenheadbutt:["5T"],snore:["5T"],tailwind:["5T"],gigadrain:["5T"],roost:["5T","6M"],sleeptalk:["5T","6M"],flareblitz:["6L1"],thrash:["6L1"],amnesia:["6L1"],flamewheel:["6L1"],confide:["6M"]}}, + cobalion:{learnset:{aerialace:["5M","6M"],calmmind:["5M","6M"],closecombat:["5L73","6L0"],cut:["5M","6M"],doublekick:["5L7","6L0"],doubleteam:["5M","6M"],facade:["5M","6M"],falseswipe:["5M","6M"],flashcannon:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],helpinghand:["5L25","5T","6L0"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],ironhead:["5L37","5T","6L0"],leer:["5L1","6L0"],metalburst:["5L67","6L0"],metalclaw:["5L13","6L0"],poisonjab:["5M","6M"],protect:["5M","6M"],psychup:["5M","6M"],quickattack:["5L1","6L0"],quickguard:["5L55","6L0"],reflect:["5M","6M"],rest:["5M","6M"],retaliate:["5M","5L31","6L0","6M"],"return":["5M","6M"],roar:["5M","6M"],rockpolish:["5M","6M"],rocksmash:["5M","6M"],round:["5M","6M"],sacredsword:["5L42","6L0"],safeguard:["5M","6M"],sandstorm:["5M","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L49","6L0","6M"],takedown:["5L19","6L0"],taunt:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],voltswitch:["5M","6M"],workup:["5M","5L61","6L0"],xscissor:["5M","6M"],bounce:["5T"],block:["5T"],magnetrise:["5T"],irondefense:["5T"],superpower:["5T"],zenheadbutt:["5T"],snore:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"]}}, + terrakion:{learnset:{aerialace:["5M","6M"],bulldoze:["5M","6M"],calmmind:["5M","6M"],closecombat:["5L73","6L0"],cut:["5M","6M"],doublekick:["5L7","6L0"],doubleteam:["5M","6M"],earthquake:["5M","6M"],facade:["5M","6M"],falseswipe:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],helpinghand:["5L25","5T","6L0"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],leer:["5L1","6L0"],poisonjab:["5M","6M"],protect:["5M","6M"],psychup:["5M","6M"],quickattack:["5L1","6L0"],quickguard:["5L55","6L0"],reflect:["5M","6M"],rest:["5M","6M"],retaliate:["5M","5L31","6L0","6M"],"return":["5M","6M"],roar:["5M","6M"],rockpolish:["5M","6M"],rockslide:["5M","5L37","6L0","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],sacredsword:["5L42","6L0"],safeguard:["5M","6M"],sandstorm:["5M","6M"],smackdown:["5M","5L13","6L0","6M"],stoneedge:["5M","5L67","6L0","6M"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L49","6L0","6M"],takedown:["5L19","6L0"],taunt:["5M","6M"],toxic:["5M","6M"],workup:["5M","5L61","6L0"],xscissor:["5M","6M"],ironhead:["5T"],block:["5T"],earthpower:["5T"],superpower:["5T"],zenheadbutt:["5T"],snore:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"]}}, + virizion:{learnset:{aerialace:["5M","6M"],calmmind:["5M","6M"],closecombat:["5L73","6L0"],cut:["5M","6M"],doublekick:["5L7","6L0"],doubleteam:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],falseswipe:["5M","6M"],flash:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigadrain:["5L37","5T","6L0"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],helpinghand:["5L25","5T","6L0"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],leafblade:["5L67","6L0"],leer:["5L1","6L0"],lightscreen:["5M","6M"],magicalleaf:["5L13","6L0"],protect:["5M","6M"],psychup:["5M","6M"],quickattack:["5L1","6L0"],quickguard:["5L55","6L0"],reflect:["5M","6M"],rest:["5M","6M"],retaliate:["5M","5L31","6L0","6M"],"return":["5M","6M"],roar:["5M","6M"],rocksmash:["5M","6M"],round:["5M","6M"],sacredsword:["5L42","6L0"],safeguard:["5M","6M"],solarbeam:["5M","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L49","6L0","6M"],takedown:["5L19","6L0"],taunt:["5M","6M"],toxic:["5M","6M"],workup:["5M","5L61","6L0"],xscissor:["5M","6M"],seedbomb:["5T"],bounce:["5T"],block:["5T"],superpower:["5T"],zenheadbutt:["5T"],snore:["5T"],synthesis:["5T"],worryseed:["5T"],sleeptalk:["5T","6M"]}}, + tornadus:{learnset:{acrobatics:["5M","6M"],aerialace:["5M","6M"],agility:["5L37","6L0"],aircutter:["5L25","6L0"],airslash:["5L43","5S0","6L0"],astonish:["5L1","6L0"],attract:["5M","6M"],bite:["5L13","6L0"],brickbreak:["5M","6M"],bulkup:["5M","6M"],crunch:["5L49","6L0"],darkpulse:["5L73","5T","6L0"],doubleteam:["5M","6M"],embargo:["5M","6M"],extrasensory:["5L31","6L0"],facade:["5M","6M"],fling:["5M","6M"],fly:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],gust:["5L1","6L0"],hammerarm:["5L79","5S0","6L0"],hiddenpower:["5M","5S0","6M"],hurricane:["5L67","5S0","6L0"],hyperbeam:["5M","6M"],incinerate:["5M","6M"],payback:["5M","6M"],protect:["5M","6M"],psychic:["5M","6M"],raindance:["5M","5L61","6L0","6M"],rest:["5M","6M"],"return":["5M","6M"],revenge:["5L19","6L0"],rocksmash:["5M","6M"],round:["5M","6M"],skydrop:["5M","6M"],sludgebomb:["5M","6M"],sludgewave:["5M","6M"],smackdown:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","5L7","6L0","6M"],tailwind:["5L55","5T","6L0"],taunt:["5M","6M"],thief:["5M","6M"],thrash:["5L85","6L0"],torment:["5M","6M"],toxic:["5M","6M"],uproar:["5L1","5T","6L0"],uturn:["5M","6M"],foulplay:["5T"],superpower:["5T"],icywind:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],heatwave:["5T"],roleplay:["5T"],sleeptalk:["5T","6M"]}}, + thundurus:{learnset:{agility:["5L37","6L0"],astonish:["5L1","6L0"],attract:["5M","6M"],bite:["5L13","6L0"],brickbreak:["5M","6M"],bulkup:["5M","6M"],charge:["5L55","6L0"],chargebeam:["5M","6M"],crunch:["5L49","6L0"],darkpulse:["5L73","5T","6L0"],discharge:["5L43","6L0"],doubleteam:["5M","6M"],embargo:["5M","6M"],facade:["5M","6M"],flashcannon:["5M","6M"],fling:["5M","6M"],fly:["5M","6M"],focusblast:["5M","5S0","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],hammerarm:["5L79","5S0","6L0"],healblock:["5L31","6L0"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],incinerate:["5M","6M"],nastyplot:["5L61","6L0"],payback:["5M","6M"],protect:["5M","6M"],psychic:["5M","6M"],raindance:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],revenge:["5L19","6L0"],rocksmash:["5M","6M"],round:["5M","6M"],shockwave:["5L25","6L0"],skydrop:["5M","6M"],sludgebomb:["5M","6M"],sludgewave:["5M","6M"],smackdown:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","5L7","6L0","6M"],taunt:["5M","6M"],thief:["5M","6M"],thrash:["5L85","6L0"],thunder:["5M","5L67","5S0","6L0","6M"],thunderbolt:["5M","6M"],thundershock:["5L1","6L0"],thunderwave:["5M","6M"],torment:["5M","6M"],toxic:["5M","6M"],uproar:["5L1","5T","6L0"],uturn:["5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","5S0","6M"],thunderpunch:["5T"],foulplay:["5T"],superpower:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],sleeptalk:["5T","6M"]}}, + reshiram:{learnset:{ancientpower:["5L15","6L0"],blueflare:["5L100","5S0","6L0"],crunch:["5L71","6L0"],cut:["5M","6M"],doubleteam:["5M","6M"],dracometeor:["5T","5S0","6T"],dragonbreath:["5L29","6L0"],dragonclaw:["5M","6M"],dragonpulse:["5L54","5T","6L0"],dragonrage:["5L1","6L0"],dragontail:["5M","6M"],echoedvoice:["5M","6M"],extrasensory:["5L43","6L0"],facade:["5M","6M"],fireblast:["5M","5L78","6L0","6M"],firefang:["5L1","6L0"],flamecharge:["5M","6M"],flamethrower:["5M","5L22","6L0","6M"],fling:["5M","6M"],fly:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],fusionflare:["5L50","5S0","6L0"],gigaimpact:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],hypervoice:["5L92","5T","6L0"],imprison:["5L8","5L64","6L0","6L0"],incinerate:["5M","6M"],lightscreen:["5M","6M"],mist:["5S0"],outrage:["5L85","5T","6L0"],overheat:["5M","6M"],payback:["5M","6M"],protect:["5M","6M"],psychic:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],shadowclaw:["5M","6M"],slash:["5L36","6L0"],solarbeam:["5M","6M"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],toxic:["5M","6M"],willowisp:["5M","6M"],earthpower:["5T"],zenheadbutt:["5T"],snore:["5T"],heatwave:["5T"],tailwind:["5T"],roost:["5T","6M"],sleeptalk:["5T","6M"]}}, + zekrom:{learnset:{ancientpower:["5L15","6L0"],boltstrike:["5L100","5S0","6L0"],chargebeam:["5M","6M"],crunch:["5L71","6L0"],cut:["5M","6M"],doubleteam:["5M","6M"],dracometeor:["5T","6T"],dragonbreath:["5L29","6L0"],dragonclaw:["5M","5L54","6L0","6M"],dragonrage:["5L1","6L0"],dragontail:["5M","6M"],echoedvoice:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],flashcannon:["5M","6M"],fling:["5M","6M"],fly:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],fusionbolt:["5L50","5S0","6L0"],gigaimpact:["5M","6M"],haze:["5S0"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],hypervoice:["5L92","5T","6L0"],imprison:["5L8","5L64","6L0","6L0"],lightscreen:["5M","6M"],outrage:["5L85","5S0","5T","6L0"],payback:["5M","6M"],protect:["5M","6M"],psychic:["5M","6M"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],shadowclaw:["5M","6M"],slash:["5L36","6L0"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],thunder:["5M","5L78","6L0","6M"],thunderbolt:["5M","5L22","6L0","6M"],thunderfang:["5L1","6L0"],thunderwave:["5M","6M"],toxic:["5M","6M"],voltswitch:["5M","6M"],wildcharge:["5M","6M"],zenheadbutt:["5L43","5T","6L0"],signalbeam:["5T"],thunderpunch:["5T"],earthpower:["5T"],magnetrise:["5T"],dragonpulse:["5T"],snore:["5T"],tailwind:["5T"],roost:["5T","6M"],sleeptalk:["5T","6M"]}}, + landorus:{learnset:{attract:["5M","6M"],block:["5L1","5T","6L0"],brickbreak:["5M","6M"],bulkup:["5M","6M"],bulldoze:["5M","5L19","6L0","6M"],calmmind:["5M","6M"],dig:["5M","6M"],doubleteam:["5M","6M"],earthpower:["5L43","5T","6L0"],earthquake:["5M","5L55","6L0","6M"],explosion:["5M","6M"],extrasensory:["5L31","6L0"],facade:["5M","6M"],fissure:["5L67","6L0"],fling:["5M","6M"],fly:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],hammerarm:["5L79","6L0"],hiddenpower:["5M","6M"],hyperbeam:["5M","6M"],imprison:["5L7","6L0"],mudshot:["5L1","6L0"],outrage:["5L85","5T","6L0"],payback:["5M","6M"],protect:["5M","6M"],psychic:["5M","6M"],punishment:["5L13","6L0"],rest:["5M","6M"],"return":["5M","6M"],rockpolish:["5M","6M"],rockslide:["5M","5L49","6L0","6M"],rocksmash:["5M","6M"],rockthrow:["5L25","6L0"],rocktomb:["5M","5L1","6L0","6M"],round:["5M","6M"],sandstorm:["5M","5L61","6L0","6M"],sludgebomb:["5M","6M"],sludgewave:["5M","6M"],smackdown:["5M","6M"],stoneedge:["5M","5L73","6L0","6M"],strength:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L37","6L0","6M"],toxic:["5M","6M"],uturn:["5M","6M"],gravity:["5T"],superpower:["5T"],irontail:["5T"],snore:["5T"],knockoff:["5T"],roleplay:["5T"],stealthrock:["5T"],sleeptalk:["5T","6M"]}}, + kyurem:{learnset:{ancientpower:["5L15","6L0"],blizzard:["5M","5L78","6L0","6M"],cut:["5M","6M"],doubleteam:["5M","6M"],dracometeor:["5T","6T"],dragonbreath:["5L29","6L0"],dragonclaw:["5M","6M"],dragonpulse:["5L57","5T","6L0"],dragonrage:["5L1","6L0"],dragontail:["5M","6M"],echoedvoice:["5M","6M"],endeavor:["5L71","5T","6L0"],facade:["5M","6M"],flashcannon:["5M","6M"],fling:["5M","6M"],fly:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],glaciate:["5L50","6L0"],hail:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],hypervoice:["5L92","5T","6L0"],icebeam:["5M","5L22","6L0","6M"],icywind:["5L1","5T","6L0"],imprison:["5L8","5L64","6L0","6L0"],lightscreen:["5M","6M"],outrage:["5L85","5T","6L0"],payback:["5M","6M"],protect:["5M","6M"],psychic:["5M","6M"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],scaryface:["5L43","6L0"],shadowball:["5M","6M"],shadowclaw:["5M","6M"],slash:["5L36","6L0"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],toxic:["5M","6M"],signalbeam:["5T"],ironhead:["5T"],earthpower:["5T"],zenheadbutt:["5T"],snore:["5T"],roost:["5T","6M"],sleeptalk:["5T","6M"]}}, + kyuremblack:{learnset:{ancientpower:["5L15","6L0"],blizzard:["5M","5L78","6L0","6M"],cut:["5M","6M"],doubleteam:["5M","6M"],dracometeor:["5T"],dragonbreath:["5L29","6L0"],dragonclaw:["5M","6M"],dragonpulse:["5L57","5T","6L0"],dragonrage:["5L1","6L0"],dragontail:["5M","6M"],echoedvoice:["5M","6M"],endeavor:["5L71","5T","6L0"],facade:["5M","6M"],flashcannon:["5M","6M"],fling:["5M","6M"],fly:["5M","6M"],focusblast:["5M","6M"],freezeshock:["5L43","6L0"],frustration:["5M","6M"],fusionbolt:["5L50","6L0"],gigaimpact:["5M","6M"],hail:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],hypervoice:["5L92","5T","6L0"],icebeam:["5M","5L22","6L0","6M"],icywind:["5L1","5T","6L0"],imprison:["5L8","5L64","6L0","6L0"],lightscreen:["5M","6M"],outrage:["5L85","5T","6L0"],payback:["5M","6M"],protect:["5M","6M"],psychic:["5M","6M"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],shadowclaw:["5M","6M"],slash:["5L36","6L0"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],toxic:["5M","6M"],signalbeam:["5T"],ironhead:["5T"],earthpower:["5T"],zenheadbutt:["5T"],snore:["5T"],roost:["5T","6M"],sleeptalk:["5T","6M"]}}, + kyuremwhite:{learnset:{ancientpower:["5L15","6L0"],blizzard:["5M","5L78","6L0","6M"],cut:["5M","6M"],doubleteam:["5M","6M"],dracometeor:["5T"],dragonbreath:["5L29","6L0"],dragonclaw:["5M","6M"],dragonpulse:["5L57","5T","6L0"],dragonrage:["5L1","6L0"],dragontail:["5M","6M"],echoedvoice:["5M","6M"],endeavor:["5L71","5T","6L0"],facade:["5M","6M"],flashcannon:["5M","6M"],fling:["5M","6M"],fly:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],fusionflare:["5L50","6L0"],gigaimpact:["5M","6M"],hail:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],hypervoice:["5L92","5T","6L0"],icebeam:["5M","5L22","6L0","6M"],iceburn:["5L43","6L0"],icywind:["5L1","5T","6L0"],imprison:["5L8","5L64","6L0","6L0"],lightscreen:["5M","6M"],outrage:["5L85","5T","6L0"],payback:["5M","6M"],protect:["5M","6M"],psychic:["5M","6M"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockslide:["5M","6M"],rocksmash:["5M","6M"],rocktomb:["5M","6M"],round:["5M","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],shadowclaw:["5M","6M"],slash:["5L36","6L0"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],toxic:["5M","6M"],signalbeam:["5T"],ironhead:["5T"],earthpower:["5T"],zenheadbutt:["5T"],snore:["5T"],roost:["5T","6M"],sleeptalk:["5T","6M"]}}, + keldeo:{learnset:{aerialace:["5M","6M"],aquajet:["5L1","5S0","5S1","6L0"],aquatail:["5L37","5T","6L0"],bubblebeam:["5L13","5S0","6L0"],calmmind:["5M","6M"],closecombat:["5L73","6L0"],cut:["5M","6M"],doublekick:["5L7","5S0","6L0"],doubleteam:["5M","6M"],facade:["5M","6M"],falseswipe:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],hail:["5M","6M"],helpinghand:["5L25","5T","6L0"],hiddenpower:["5M","6M"],hydropump:["5L67","5S1","6L0"],hyperbeam:["5M","6M"],leer:["5L1","5S0","6L0"],poisonjab:["5M","6M"],protect:["5M","6M"],psychup:["5M","6M"],quickguard:["5L55","6L0"],raindance:["5M","6M"],reflect:["5M","6M"],rest:["5M","6M"],retaliate:["5M","5L31","6L0","6M"],"return":["5M","6M"],roar:["5M","6M"],rocksmash:["5M","6M"],round:["5M","6M"],sacredsword:["5L43","5S1","6L0"],safeguard:["5M","6M"],scald:["5M","6M"],secretsword:["5T"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],surf:["5M","6M"],swagger:["5M","6M"],swordsdance:["5M","5L49","5S1","6L0","6M"],takedown:["5L19","6L0"],taunt:["5M","6M"],toxic:["5M","6M"],workup:["5M","5L61","6L0"],xscissor:["5M","6M"],covet:["5T"],bounce:["5T"],lastresort:["5T"],superpower:["5T"],icywind:["5T"],snore:["5T"],endeavor:["5T"],sleeptalk:["5T","6M"]}}, + meloetta:{learnset:{acrobatics:["5M","5L26","6L0","6M"],brickbreak:["5M","6M"],calmmind:["5M","6M"],chargebeam:["5M","6M"],closecombat:["5L78","5S1","6L0"],confusion:["5L11","5S0","6L0"],doubleteam:["5M","6M"],dreameater:["5M","6M"],echoedvoice:["5M","5L36","6L0","6M"],embargo:["5M","6M"],energyball:["5M","6M"],facade:["5M","6M"],flash:["5M","6M"],fling:["5M","6M"],focusblast:["5M","6M"],frustration:["5M","6M"],gigaimpact:["5M","6M"],grassknot:["5M","6M"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","6M"],hypervoice:["5L64","5T","6L0"],lightscreen:["5M","6M"],lowsweep:["5M","6M"],payback:["5M","6M"],perishsong:["5L85","6L0"],protect:["5M","6M"],psybeam:["5L31","6L0"],psychic:["5M","5L57","5S1","6L0","6M"],psychup:["5M","6M"],psyshock:["5M","6M"],quickattack:["5L6","5S0","6L0"],raindance:["5M","6M"],relicsong:["5T"],rest:["5M","6M"],retaliate:["5M","6M"],"return":["5M","6M"],rocksmash:["5M","6M"],roleplay:["5L71","5T","6L0"],round:["5M","5L1","5S0","5S1","6L0","6M"],safeguard:["5M","6M"],shadowball:["5M","6M"],shadowclaw:["5M","6M"],sing:["5L16","6L0"],stoneedge:["5M","6M"],strength:["5M","6M"],substitute:["5M","6M"],sunnyday:["5M","6M"],swagger:["5M","6M"],teeterdance:["5L21","5S1","6L0"],telekinesis:["5M"],thunder:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],trickroom:["5M","6M"],uturn:["5M","5L43","6L0","6M"],wakeupslap:["5L50","6L0"],workup:["5M"],covet:["5T"],dualchop:["5T"],signalbeam:["5T"],lowkick:["5T"],uproar:["5T"],thunderpunch:["5T"],firepunch:["5T"],icepunch:["5T"],magiccoat:["5T"],gravity:["5T"],lastresort:["5T"],zenheadbutt:["5T"],snore:["5T"],knockoff:["5T"],healbell:["5T"],drainpunch:["5T"],helpinghand:["5T"],trick:["5T"],magicroom:["5T"],wonderroom:["5T"],recycle:["5T"],snatch:["5T"],sleeptalk:["5T","6M"],skillswap:["5T"]}}, + genesect:{learnset:{aerialace:["5M","6M"],blazekick:["5S2"],blizzard:["5M","6M"],bugbite:["5T"],bugbuzz:["5L55","6L0"],chargebeam:["5M","6M"],darkpulse:["5T"],doubleteam:["5M","6M"],electroweb:["5T"],energyball:["5M","6M"],explosion:["5M","6M"],extremespeed:["5S2"],facade:["5M","6M"],flamecharge:["5M","5L18","6L0","6M"],flamethrower:["5M","6M"],flash:["5M","6M"],flashcannon:["5M","6M"],fly:["5M","6M"],frustration:["5M","6M"],furycutter:["5L7","6L0"],gigadrain:["5T"],gigaimpact:["5M","6M"],gravity:["5T"],gunkshot:["5T"],hiddenpower:["5M","6M"],honeclaws:["5M","6M"],hyperbeam:["5M","5L73","6L0","6M"],icebeam:["5M","6M"],irondefense:["5T"],ironhead:["5T"],lastresort:["5T"],lightscreen:["5M","6M"],lockon:["5L11","6L0"],magiccoat:["5T"],magnetbomb:["5L22","5S0","5S1","6L0"],magnetrise:["5L1","5T","6L0"],metalclaw:["5L1","6L0"],metalsound:["5L33","6L0"],protect:["5M","6M"],psychic:["5M","6M"],quickattack:["5L1","6L0"],recycle:["5T"],reflect:["5M","6M"],rest:["5M","6M"],"return":["5M","6M"],rockpolish:["5M","6M"],round:["5M","6M"],screech:["5L1","6L0"],selfdestruct:["5L77","6L0"],shadowclaw:["5M","6M"],shiftgear:["5S2"],signalbeam:["5L40","5T","5S0","5S1","6L0"],simplebeam:["5L62","6L0"],slash:["5L29","6L0"],sleeptalk:["5T","6M"],snore:["5T"],solarbeam:["5M","5S0","5S1","6M"],strugglebug:["5M","6M"],substitute:["5M","6M"],swagger:["5M","6M"],technoblast:["5L1","5S0","5S1","5S2","6L0"],thunder:["5M","6M"],thunderbolt:["5M","6M"],thunderwave:["5M","6M"],toxic:["5M","6M"],triattack:["5L44","6L0"],uturn:["5M","6M"],xscissor:["5M","5L51","6L0","6M"],zapcannon:["5L66","6L0"],zenheadbutt:["5T"]}}, + chespin:{learnset:{tackle:["6L1"],growl:["6L1"],vinewhip:["6L5"],rollout:["6L8"],bite:["6L11"],leechseed:["6L15"],pinmissile:["6L18"],takedown:["6L27"],seedbomb:["6L32"],mudshot:["6L35"],bulkup:["6L39","6M"],bodyslam:["6L42"],painsplit:["6L45"],woodhammer:["6L48"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],frustration:["6M"],solarbeam:["6M"],smackdown:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],reflect:["6M"],sludgebomb:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],lowsweep:["6M"],round:["6M"],energyball:["6M"],fling:["6M"],shadowclaw:["6M"],payback:["6M"],retaliate:["6M"],flash:["6M"],stoneedge:["6M"],gyroball:["6M"],swordsdance:["6M"],bulldoze:["6M"],rockslide:["6M"],poisonjab:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],strength:["6M"],grasspledge:["6T"],quickguard:["6E"],curse:["6E"],spikes:["6E"],synthesis:["6E"]}}, + quilladin:{learnset:{tackle:["6L1"],growl:["6L1"],vinewhip:["6L5"],rollout:["6L8"],bite:["6L11"],leechseed:["6L15"],pinmissile:["6L20"],needlearm:["6L26"],takedown:["6L30"],seedbomb:["6L35"],mudshot:["6L39"],bulkup:["6L44","6M"],bodyslam:["6L48"],painsplit:["6L52"],woodhammer:["6L55"],honeclaws:["6M"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],frustration:["6M"],solarbeam:["6M"],smackdown:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],reflect:["6M"],sludgebomb:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],lowsweep:["6M"],round:["6M"],energyball:["6M"],fling:["6M"],shadowclaw:["6M"],payback:["6M"],retaliate:["6M"],flash:["6M"],stoneedge:["6M"],gyroball:["6M"],swordsdance:["6M"],bulldoze:["6M"],rockslide:["6M"],poisonjab:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],strength:["6M"],grasspledge:["6T"]}}, + chesnaught:{learnset:{feint:["6L1"],hammerarm:["6L1","6L60"],bellydrum:["6L1"],tackle:["6L1"],growl:["6L1"],vinewhip:["6L5"],rollout:["6L8"],bite:["6L11"],leechseed:["6L15"],pinmissile:["6L20"],needlearm:["6L26"],takedown:["6L30"],seedbomb:["6L35"],spikyshield:["6L36","6L75"],mudshot:["6L41"],bulkup:["6L44","6M"],bodyslam:["6L48"],painsplit:["6L52"],woodhammer:["6L55"],gigaimpact:["6L70","6M"],honeclaws:["6M"],dragonclaw:["6M"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],hyperbeam:["6M"],protect:["6M"],frustration:["6M"],solarbeam:["6M"],smackdown:["6M"],earthquake:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],reflect:["6M"],sludgebomb:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],lowsweep:["6M"],round:["6M"],focusblast:["6M"],energyball:["6M"],fling:["6M"],shadowclaw:["6M"],payback:["6M"],retaliate:["6M"],flash:["6M"],stoneedge:["6M"],gyroball:["6M"],swordsdance:["6M"],bulldoze:["6M"],rockslide:["6M"],poisonjab:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],strength:["6M"],frenzyplant:["6T"],grasspledge:["6T"]}}, + fennekin:{learnset:{scratch:["6L1"],tailwhip:["6L1"],ember:["6L5"],howl:["6L11"],flamecharge:["6L14","6M"],psybeam:["6L17"],firespin:["6L20"],luckychant:["6L25"],lightscreen:["6L27","6M"],psyshock:["6L31","6M"],flamethrower:["6L35","6M"],willowisp:["6L38","6M"],psychic:["6L41","6M"],sunnyday:["6L43","6M"],magicroom:["6L46"],fireblast:["6L48","6M"],toxic:["6M"],hiddenpower:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],echoedvoice:["6M"],overheat:["6M"],incinerate:["6M"],embargo:["6M"],psychup:["6M"],dreameater:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],firepledge:["6T"],wish:["6E"],hypnosis:["6E"],heatwave:["6E"],magiccoat:["6E"]}}, + braixen:{learnset:{scratch:["6L1"],tailwhip:["6L1"],ember:["6L5"],howl:["6L11"],flamecharge:["6L14","6M"],psybeam:["6L18"],firespin:["6L22"],luckychant:["6L27"],lightscreen:["6L30","6M"],psyshock:["6L34","6M"],flamethrower:["6L41","6M"],willowisp:["6L45","6M"],psychic:["6L48","6M"],sunnyday:["6L51","6M"],magicroom:["6L53"],fireblast:["6L55","6M"],toxic:["6M"],hiddenpower:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],echoedvoice:["6M"],overheat:["6M"],incinerate:["6M"],embargo:["6M"],psychup:["6M"],dreameater:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],firepledge:["6T"]}}, + delphox:{learnset:{futuresight:["6L1","6L69"],roleplay:["6L1"],switcheroo:["6L1"],shadowball:["6L1","6M"],scratch:["6L1"],tailwhip:["6L1"],ember:["6L5"],howl:["6L11"],flamecharge:["6L14","6M"],psybeam:["6L18"],firespin:["6L22"],luckychant:["6L27"],lightscreen:["6L30","6M"],psyshock:["6L34","6M"],mysticalfire:["6L36","6L75"],flamethrower:["6L42","6M"],willowisp:["6L47","6M"],psychic:["6L51","6M"],sunnyday:["6L55","6M"],magicroom:["6L56"],fireblast:["6L61","6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],echoedvoice:["6M"],overheat:["6M"],incinerate:["6M"],embargo:["6M"],gigaimpact:["6M"],psychup:["6M"],dreameater:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],blastburn:["6T"],firepledge:["6T"]}}, + froakie:{learnset:{pound:["6L1"],growl:["6L1"],bubble:["6L5"],quickattack:["6L8"],lick:["6L10"],waterpulse:["6L14"],smokescreen:["6L18"],round:["6L21","6M"],fling:["6L25","6M"],smackdown:["6L29","6M"],substitute:["6L35","6M"],bounce:["6L39"],doubleteam:["6L43","6M"],hydropump:["6L48"],toxic:["6M"],hiddenpower:["6M"],taunt:["6M"],icebeam:["6M"],blizzard:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],echoedvoice:["6M"],scald:["6M"],acrobatics:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],rocksmash:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"],waterfall:["6M"],waterpledge:["6T"],toxicspikes:["6E"],watersport:["6E"],camouflage:["6E"],mudsport:["6E"],mindreader:["6E"]}}, + frogadier:{learnset:{pound:["6L1"],growl:["6L1"],bubble:["6L5"],quickattack:["6L8"],lick:["6L10"],waterpulse:["6L14"],smokescreen:["6L20"],round:["6L23","6M"],fling:["6L28","6M"],smackdown:["6L33","6M"],substitute:["6L38","6M"],bounce:["6L44"],doubleteam:["6L48","6M"],hydropump:["6L55"],toxic:["6M"],hiddenpower:["6M"],taunt:["6M"],icebeam:["6M"],blizzard:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],echoedvoice:["6M"],scald:["6M"],acrobatics:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],rocksmash:["6M"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"],waterfall:["6M"],waterpledge:["6T"]}}, + greninja:{learnset:{nightslash:["6L1","6L70"],roleplay:["6L1"],matblock:["6L1"],pound:["6L1"],growl:["6L1"],bubble:["6L5"],quickattack:["6L8"],lick:["6L10"],waterpulse:["6L14"],smokescreen:["6L20"],shadowsneak:["6L23"],spikes:["6L28"],feintattack:["6L33"],watershuriken:["6L36","6L75"],substitute:["6L43","6M"],extrasensory:["6L49"],doubleteam:["6L52","6M"],haze:["6L56"],hydropump:["6L60"],toxic:["6M"],hiddenpower:["6M"],taunt:["6M"],icebeam:["6M"],blizzard:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],smackdown:["6M"],"return":["6M"],dig:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],echoedvoice:["6M"],scald:["6M"],fling:["6M"],acrobatics:["6M"],gigaimpact:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],rocksmash:["6M"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"],waterfall:["6M"],hydrocannon:["6T"],waterpledge:["6T"]}}, + bunnelby:{learnset:{tackle:["6L1"],agility:["6L1"],leer:["6L1"],quickattack:["6L7"],doubleslap:["6L10"],mudslap:["6L13"],takedown:["6L15"],mudshot:["6L18"],doublekick:["6L20"],odorsleuth:["6L25"],flail:["6L29"],dig:["6L33","6M"],bounce:["6L38"],superfang:["6L42"],facade:["6L47","6M"],earthquake:["6L49","6M"],toxic:["6M"],bulkup:["6M"],hiddenpower:["6M"],protect:["6M"],frustration:["6M"],smackdown:["6M"],"return":["6M"],brickbreak:["6M"],doubleteam:["6M"],sludgebomb:["6M"],sandstorm:["6M"],rocktomb:["6M"],torment:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],fling:["6M"],payback:["6M"],stoneedge:["6M"],bulldoze:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],rocksmash:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"],defensecurl:["6E"],rollout:["6E"],spikes:["6E"]}}, + diggersby:{learnset:{hammerarm:["6L1","6L60"],rototiller:["6L1"],bulldoze:["6L1","6M"],swordsdance:["6L1","6M"],tackle:["6L1"],agility:["6L1"],leer:["6L1"],quickattack:["6L7"],mudslap:["6L13"],takedown:["6L15"],mudshot:["6L18"],doublekick:["6L20"],odorsleuth:["6L26"],flail:["6L31"],dig:["6L37","6M"],bounce:["6L42"],superfang:["6L48"],facade:["6L53","6M"],earthquake:["6L57","6M"],toxic:["6M"],bulkup:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],protect:["6M"],frustration:["6M"],smackdown:["6M"],"return":["6M"],brickbreak:["6M"],doubleteam:["6M"],sludgebomb:["6M"],sandstorm:["6M"],rocktomb:["6M"],torment:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],fling:["6M"],payback:["6M"],gigaimpact:["6M"],stoneedge:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],rocksmash:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"]}}, + fletchling:{learnset:{tackle:["6L1"],growl:["6L1"],quickattack:["6L6"],peck:["6L10"],agility:["6L13"],flail:["6L16"],roost:["6L21","6M"],razorwind:["6L25"],naturalgift:["6L29"],flamecharge:["6L34","6M"],acrobatics:["6L39","6M"],mefirst:["6L41"],tailwind:["6L45"],steelwing:["6L48","6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],frustration:["6M"],"return":["6M"],doubleteam:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],overheat:["6M"],swordsdance:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],confide:["6M"],fly:["6M"],quickguard:["6E"]}}, + fletchinder:{learnset:{tackle:["6L1"],growl:["6L1"],quickattack:["6L6"],peck:["6L10"],agility:["6L13"],flail:["6L16"],ember:["6L17"],roost:["6L25","6M"],razorwind:["6L27"],naturalgift:["6L31"],flamecharge:["6L38","6M"],acrobatics:["6L42","6M"],mefirst:["6L46"],tailwind:["6L51"],steelwing:["6L55","6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],frustration:["6M"],"return":["6M"],doubleteam:["6M"],flamethrower:["6M"],fireblast:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],overheat:["6M"],incinerate:["6M"],willowisp:["6M"],swordsdance:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],confide:["6M"],fly:["6M"]}}, + talonflame:{learnset:{bravebird:["6L1","6L64"],flareblitz:["6L1"],tackle:["6L1"],growl:["6L1"],quickattack:["6L6"],peck:["6L10"],agility:["6L13"],flail:["6L16"],ember:["6L17"],roost:["6L25","6M"],razorwind:["6L27"],naturalgift:["6L31"],flamecharge:["6L39","6M"],acrobatics:["6L44","6M"],mefirst:["6L49"],tailwind:["6L55"],steelwing:["6L60","6M"],honeclaws:["6M"],toxic:["6M"],bulkup:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],hyperbeam:["6M"],protect:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],doubleteam:["6M"],flamethrower:["6M"],fireblast:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],overheat:["6M"],incinerate:["6M"],willowisp:["6M"],gigaimpact:["6M"],swordsdance:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],confide:["6M"],fly:["6M"]}}, + scatterbug:{learnset:{tackle:["6L1"],stringshot:["6L1"],stunspore:["6L6"],bugbite:["6L15"],ragepowder:["6E"]}}, + spewpa:{learnset:{harden:["6L1"],protect:["6L9","6M"]}}, + vivillon:{learnset:{poisonpowder:["6L1"],stunspore:["6L1"],gust:["6L1"],lightscreen:["6L1","6M"],powder:["6L1","6L55"],sleeppowder:["6L1"],strugglebug:["6L12","6M"],psybeam:["6L17"],supersonic:["6L21"],drainingkiss:["6L25"],aromatherapy:["6L31"],bugbuzz:["6L35"],safeguard:["6L41","6M"],quiverdance:["6L45"],hurricane:["6L50"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],roost:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],energyball:["6M"],acrobatics:["6M"],gigaimpact:["6M"],flash:["6M"],psychup:["6M"],infestation:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],confide:["6M"]}}, + litleo:{learnset:{tackle:["6L1"],leer:["6L1"],ember:["6L5"],workup:["6L8"],headbutt:["6L11"],nobleroar:["6L15"],takedown:["6L20"],firefang:["6L23"],endeavor:["6L28"],echoedvoice:["6L33","6M"],flamethrower:["6L36","6M"],crunch:["6L39"],hypervoice:["6L43"],incinerate:["6L46","6M"],overheat:["6L50","6M"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],dig:["6M"],doubleteam:["6M"],fireblast:["6M"],facade:["6M"],flamecharge:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],willowisp:["6M"],payback:["6M"],retaliate:["6M"],bulldoze:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],wildcharge:["6M"],rocksmash:["6M"],snarl:["6M"],darkpulse:["6M"],confide:["6M"],strength:["6M"],yawn:["6E"],entrainment:["6E"],snatch:["6E"],firespin:["6E"]}}, + pyroar:{learnset:{hyperbeam:["6L1","6M"],tackle:["6L1"],leer:["6L1"],ember:["6L5"],workup:["6L8"],headbutt:["6L11"],nobleroar:["6L15"],takedown:["6L20"],firefang:["6L23"],endeavor:["6L28"],echoedvoice:["6L33","6M"],flamethrower:["6L38","6M"],crunch:["6L42"],hypervoice:["6L48"],incinerate:["6L51","6M"],overheat:["6L57","6M"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],dig:["6M"],doubleteam:["6M"],fireblast:["6M"],facade:["6M"],flamecharge:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],willowisp:["6M"],payback:["6M"],retaliate:["6M"],gigaimpact:["6M"],bulldoze:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],wildcharge:["6M"],rocksmash:["6M"],snarl:["6M"],darkpulse:["6M"],confide:["6M"],strength:["6M"]}}, + flabebe:{learnset:{tackle:["6L1"],vinewhip:["6L1"],fairywind:["6L6"],luckychant:["6L10"],razorleaf:["6L15"],wish:["6L20"],magicalleaf:["6L22"],grassyterrain:["6L24"],petalblizzard:["6L28"],aromatherapy:["6L33"],mistyterrain:["6L37"],moonblast:["6L41"],petaldance:["6L45"],solarbeam:["6L48","6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],energyball:["6M"],flash:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"],copycat:["6E"],captivate:["6E"]}}, + floette:{learnset:{wish:["6L20"],magicalleaf:["6L25"],grassyterrain:["6L27"],petalblizzard:["6L33"],aromatherapy:["6L38"],mistyterrain:["6L43"],rest:["6L44","6M"],moonblast:["6L46"],sleeptalk:["6L88","6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],facade:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],energyball:["6M"],flash:["6M"],grassknot:["6M"],swagger:["6M"],substitute:["6M"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + florges:{learnset:{disarmingvoice:["6L1"],luckychant:["6L1"],wish:["6L1"],magicalleaf:["6L1"],flowershield:["6L1"],grassknot:["6L1","6M"],grassyterrain:["6L1"],mistyterrain:["6L1"],petalblizzard:["6L1"],moonblast:["6L1"],petaldance:["6L1"],aromatherapy:["6L1"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],energyball:["6M"],gigaimpact:["6M"],flash:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + skiddo:{learnset:{tackle:["6L1"],growth:["6L1"],vinewhip:["6L7"],tailwhip:["6L9"],leechseed:["6L12"],razorleaf:["6L13"],worryseed:["6L16"],synthesis:["6L20"],takedown:["6L22"],bulldoze:["6L26","6M"],seedbomb:["6L30"],bulkup:["6L34","6M"],doubleedge:["6L38"],hornleech:["6L42"],leafblade:["6L45"],milkdrink:["6L50"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],energyball:["6M"],payback:["6M"],retaliate:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],wildcharge:["6M"],rocksmash:["6M"],naturepower:["6M"],confide:["6M"],surf:["6M"],strength:["6M"],rollout:["6E"],defensecurl:["6E"]}}, + gogoat:{learnset:{aerialace:["6L1","6L65","6M"],tackle:["6L1"],growth:["6L1"],vinewhip:["6L7"],tailwhip:["6L9"],leechseed:["6L12"],razorleaf:["6L13"],worryseed:["6L16"],synthesis:["6L20"],takedown:["6L22"],bulldoze:["6L26","6M"],seedbomb:["6L30"],bulkup:["6L34","6M"],doubleedge:["6L40"],hornleech:["6L47"],leafblade:["6L55"],milkdrink:["6L58"],earthquake:["6L60","6M"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],energyball:["6M"],payback:["6M"],retaliate:["6M"],gigaimpact:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],wildcharge:["6M"],rocksmash:["6M"],naturepower:["6M"],confide:["6M"],surf:["6M"],strength:["6M"]}}, + pancham:{learnset:{tackle:["6L1"],leer:["6L1"],armthrust:["6L7"],workup:["6L10"],karatechop:["6L12"],cometpunch:["6L15"],slash:["6L20"],circlethrow:["6L25"],vitalthrow:["6L27"],bodyslam:["6L33"],crunch:["6L39"],entrainment:["6L42"],partingshot:["6L45"],skyuppercut:["6L48"],roar:["6M"],toxic:["6M"],bulkup:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],sludgebomb:["6M"],rocktomb:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],lowsweep:["6M"],round:["6M"],echoedvoice:["6M"],falseswipe:["6M"],fling:["6M"],shadowclaw:["6M"],payback:["6M"],retaliate:["6M"],stoneedge:["6M"],swordsdance:["6M"],bulldoze:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"],foulplay:["6E"],quickguard:["6E"],mefirst:["6E"],stormthrow:["6E"]}}, + pangoro:{learnset:{entrainment:["6L1","6L45"],hammerarm:["6L1","6L57"],tackle:["6L1"],leer:["6L1"],armthrust:["6L7"],workup:["6L10"],karatechop:["6L12"],cometpunch:["6L15"],slash:["6L20"],circlethrow:["6L25"],vitalthrow:["6L27"],bodyslam:["6L35"],crunch:["6L42"],partingshot:["6L48"],skyuppercut:["6L52"],taunt:["6L65","6M"],lowsweep:["6L70","6M"],honeclaws:["6M"],dragonclaw:["6M"],roar:["6M"],toxic:["6M"],bulkup:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],earthquake:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],sludgebomb:["6M"],rocktomb:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],echoedvoice:["6M"],focusblast:["6M"],falseswipe:["6M"],fling:["6M"],quash:["6M"],embargo:["6M"],shadowclaw:["6M"],payback:["6M"],retaliate:["6M"],gigaimpact:["6M"],stoneedge:["6M"],swordsdance:["6M"],bulldoze:["6M"],rockslide:["6M"],xscissor:["6M"],infestation:["6M"],poisonjab:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],snarl:["6M"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"]}}, + furfrou:{learnset:{tackle:["6L1"],growl:["6L1"],sandattack:["6L5"],babydolleyes:["6L9"],headbutt:["6L12"],tailwhip:["6L15"],bite:["6L22"],odorsleuth:["6L27"],retaliate:["6L33","6M"],takedown:["6L35"],charm:["6L38"],suckerpunch:["6L42"],cottonguard:["6L48"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],doubleteam:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],chargebeam:["6M"],gigaimpact:["6M"],flash:["6M"],thunderwave:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],rocksmash:["6M"],snarl:["6M"],darkpulse:["6M"],confide:["6M"],surf:["6M"],mimic:["6E"],captivate:["6E"],refresh:["6E"],workup:["6E"]}}, + espurr:{learnset:{scratch:["6L1"],leer:["6L1"],covet:["6L5"],confusion:["6L9"],lightscreen:["6L13","6M"],psybeam:["6L17"],fakeout:["6L19"],disarmingvoice:["6L22"],psyshock:["6L25","6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],reflect:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],energyball:["6M"],chargebeam:["6M"],payback:["6M"],flash:["6M"],thunderwave:["6M"],psychup:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],darkpulse:["6M"],confide:["6M"],cut:["6M"],trick:["6E"],yawn:["6E"],assist:["6E"],barrier:["6E"]}}, + meowstic:{learnset:{quickguard:["6L1","6L53"],meanlook:["6L1"],helpinghand:["6L1"],scratch:["6L1"],leer:["6L1"],covet:["6L5"],confusion:["6L9"],lightscreen:["6L13","6M"],psybeam:["6L17"],fakeout:["6L19"],psyshock:["6L25","6M"],charm:["6L28"],miracleeye:["6L31"],reflect:["6L35","6M"],psychic:["6L40","6M"],roleplay:["6L43"],imprison:["6L45"],suckerpunch:["6L48"],mistyterrain:["6L50"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],dig:["6M"],shadowball:["6M"],doubleteam:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],energyball:["6M"],chargebeam:["6M"],payback:["6M"],gigaimpact:["6M"],flash:["6M"],thunderwave:["6M"],psychup:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"]}}, + meowsticf:{learnset:{storedpower:["6L1","6L53"],mefirst:["6L1"],magicalleaf:["6L1"],scratch:["6L1"],leer:["6L1"],covet:["6L5"],confusion:["6L9"],lightscreen:["6L13","6M"],psybeam:["6L17"],fakeout:["6L19"],psyshock:["6L25","6M"],chargebeam:["6L28","6M"],shadowball:["6L31","6M"],extrasensory:["6L35"],psychic:["6L40","6M"],roleplay:["6L43"],signalbeam:["6L45"],suckerpunch:["6L48"],futuresight:["6L50"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],dig:["6M"],doubleteam:["6M"],reflect:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],energyball:["6M"],payback:["6M"],gigaimpact:["6M"],flash:["6M"],thunderwave:["6M"],psychup:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"]}}, + honedge:{learnset:{tackle:["6L1"],swordsdance:["6L1","6M"],furycutter:["6L5"],metalsound:["6L8"],pursuit:["6L13"],autotomize:["6L18"],shadowsneak:["6L20"],aerialace:["6L22","6M"],retaliate:["6L26","6M"],slash:["6L29"],irondefense:["6L32"],nightslash:["6L35"],powertrick:["6L39"],ironhead:["6L42"],sacredsword:["6L47"],toxic:["6M"],hiddenpower:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],brickbreak:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],falseswipe:["6M"],shadowclaw:["6M"],gyroball:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],rocksmash:["6M"],confide:["6M"],cut:["6M"]}}, + doublade:{learnset:{tackle:["6L1"],swordsdance:["6L1","6M"],furycutter:["6L5"],metalsound:["6L8"],pursuit:["6L13"],autotomize:["6L18"],shadowsneak:["6L20"],aerialace:["6L22","6M"],retaliate:["6L26","6M"],slash:["6L29"],irondefense:["6L32"],nightslash:["6L36"],powertrick:["6L41"],ironhead:["6L45"],sacredsword:["6L51"],toxic:["6M"],hiddenpower:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],brickbreak:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],falseswipe:["6M"],shadowclaw:["6M"],gyroball:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],rocksmash:["6M"],confide:["6M"],cut:["6M"]}}, + aegislash:{learnset:{furycutter:["6L1"],pursuit:["6L1"],autotomize:["6L1"],shadowsneak:["6L1"],slash:["6L1"],irondefense:["6L1"],nightslash:["6L1"],powertrick:["6L1"],ironhead:["6L1"],headsmash:["6L1"],swordsdance:["6L1","6M"],aerialace:["6L1","6M"],kingsshield:["6L1"],sacredsword:["6L1"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],shadowball:["6M"],brickbreak:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],falseswipe:["6M"],shadowclaw:["6M"],retaliate:["6M"],gigaimpact:["6M"],gyroball:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],rocksmash:["6M"],confide:["6M"],cut:["6M"]}}, + spritzee:{learnset:{sweetscent:["6L1"],fairywind:["6L1"],sweetkiss:["6L6"],odorsleuth:["6L8"],echoedvoice:["6L13","6M"],calmmind:["6L17","6M"],drainingkiss:["6L21"],aromatherapy:["6L25"],attract:["6L29","6M"],moonblast:["6L31"],charm:["6L35"],flail:["6L38"],mistyterrain:["6L42"],skillswap:["6L44"],psychic:["6L48","6M"],disarmingvoice:["6L50"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],doubleteam:["6M"],reflect:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],round:["6M"],energyball:["6M"],chargebeam:["6M"],flash:["6M"],gyroball:["6M"],psychup:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],trickroom:["6M"],dazzlinggleam:["6M"],confide:["6M"],refresh:["6E"],wish:["6E"],captivate:["6E"],disable:["6E"]}}, + aromatisse:{learnset:{aromaticmist:["6L1"],healpulse:["6L1"],sweetscent:["6L1"],fairywind:["6L1"],sweetkiss:["6L6"],odorsleuth:["6L8"],echoedvoice:["6L13","6M"],calmmind:["6L17","6M"],drainingkiss:["6L21"],aromatherapy:["6L25"],attract:["6L29","6M"],moonblast:["6L31"],charm:["6L35"],flail:["6L38"],mistyterrain:["6L42"],skillswap:["6L44"],psychic:["6L48","6M"],disarmingvoice:["6L53"],reflect:["6L57","6M"],psychup:["6L64","6M"],psyshock:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],thunder:["6M"],"return":["6M"],doubleteam:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],round:["6M"],energyball:["6M"],chargebeam:["6M"],gigaimpact:["6M"],flash:["6M"],gyroball:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],trickroom:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + swirlix:{learnset:{sweetscent:["6L1"],tackle:["6L1"],fairywind:["6L5"],playnice:["6L8"],faketears:["6L10"],round:["6L13","6M"],cottonspore:["6L17"],endeavor:["6L21"],aromatherapy:["6L26"],drainingkiss:["6L31"],energyball:["6L36","6M"],cottonguard:["6L41"],wish:["6L45"],playrough:["6L49"],lightscreen:["6L58","6M"],safeguard:["6L67","6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],flamethrower:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],flash:["6M"],psychup:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],dazzlinggleam:["6M"],confide:["6M"],surf:["6M"],yawn:["6E"],afteryou:["6E"],copycat:["6E"],bellydrum:["6E"]}}, + slurpuff:{learnset:{sweetscent:["6L1"],tackle:["6L1"],fairywind:["6L5"],playnice:["6L8"],faketears:["6L10"],round:["6L13","6M"],cottonspore:["6L17"],endeavor:["6L21"],aromatherapy:["6L26"],drainingkiss:["6L31"],energyball:["6L36","6M"],cottonguard:["6L41"],wish:["6L45"],playrough:["6L49"],lightscreen:["6L58","6M"],safeguard:["6L67","6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],flamethrower:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],gigaimpact:["6M"],flash:["6M"],psychup:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],dazzlinggleam:["6M"],confide:["6M"],surf:["6M"]}}, + inkay:{learnset:{tackle:["6L1"],peck:["6L1"],constrict:["6L1"],reflect:["6L4","6M"],foulplay:["6L8"],swagger:["6L12","6M"],psywave:["6L13"],topsyturvy:["6L15"],hypnosis:["6L18"],psybeam:["6L21"],switcheroo:["6L23"],payback:["6L27","6M"],lightscreen:["6L31","6M"],pluck:["6L35"],psychocut:["6L39"],slash:["6L43"],nightslash:["6L46"],superpower:["6L48"],calmmind:["6M","6E"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M","6E"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],flamethrower:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],fling:["6M"],embargo:["6M","6E"],retaliate:["6M"],flash:["6M"],psychup:["6M"],rockslide:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],darkpulse:["6M","6E"],confide:["6M","6E"],cut:["6M"],destinybond:["6E"],camouflage:["6E"],powersplit:["6E"],simplebeam:["6E"]}}, + malamar:{learnset:{superpower:["6L1","6L48"],reversal:["6L1"],tackle:["6L1"],peck:["6L1"],constrict:["6L1"],reflect:["6L4","6M"],foulplay:["6L8"],swagger:["6L12","6M"],psywave:["6L13"],topsyturvy:["6L15"],hypnosis:["6L18"],psybeam:["6L21"],switcheroo:["6L23"],payback:["6L27","6M"],lightscreen:["6L31","6M"],pluck:["6L35"],psychocut:["6L39"],slash:["6L43"],nightslash:["6L46"],psyshock:["6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],flamethrower:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],fling:["6M"],embargo:["6M"],retaliate:["6M"],gigaimpact:["6M"],flash:["6M"],psychup:["6M"],rockslide:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],darkpulse:["6M"],confide:["6M"],cut:["6M"]}}, + binacle:{learnset:{shellsmash:["6L1"],scratch:["6L1"],sandattack:["6L1"],watergun:["6L4"],withdraw:["6L7"],furyswipes:["6L10"],slash:["6L13"],mudslap:["6L18"],clamp:["6L20"],rockpolish:["6L24","6M"],ancientpower:["6L28"],honeclaws:["6L32","6M"],furycutter:["6L37"],nightslash:["6L41"],razorshell:["6L45"],crosschop:["6L49"],toxic:["6M"],hiddenpower:["6M"],taunt:["6M"],icebeam:["6M"],blizzard:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],smackdown:["6M"],earthquake:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],sludgewave:["6M"],sludgebomb:["6M"],sandstorm:["6M"],rocktomb:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],falseswipe:["6M"],scald:["6M"],fling:["6M"],embargo:["6M"],shadowclaw:["6M"],payback:["6M"],stoneedge:["6M"],swordsdance:["6M"],bulldoze:["6M"],rockslide:["6M"],xscissor:["6M"],infestation:["6M"],poisonjab:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"],tickle:["6E"],switcheroo:["6E"],watersport:["6E"],helpinghand:["6E"]}}, + barbaracle:{learnset:{stoneedge:["6L1","6L60","6M"],skullbash:["6L1","6L65"],shellsmash:["6L1"],scratch:["6L1"],sandattack:["6L1"],watergun:["6L4"],withdraw:["6L7"],furyswipes:["6L10"],slash:["6L13"],mudslap:["6L18"],clamp:["6L20"],rockpolish:["6L24","6M"],ancientpower:["6L28"],honeclaws:["6L32","6M"],furycutter:["6L37"],nightslash:["6L44"],razorshell:["6L48"],crosschop:["6L55"],dragonclaw:["6M"],toxic:["6M"],bulkup:["6M"],hiddenpower:["6M"],taunt:["6M"],icebeam:["6M"],blizzard:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],smackdown:["6M"],earthquake:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],sludgewave:["6M"],sludgebomb:["6M"],sandstorm:["6M"],rocktomb:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],focusblast:["6M"],falseswipe:["6M"],scald:["6M"],fling:["6M"],embargo:["6M"],shadowclaw:["6M"],payback:["6M"],gigaimpact:["6M"],swordsdance:["6M"],bulldoze:["6M"],rockslide:["6M"],xscissor:["6M"],infestation:["6M"],poisonjab:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],naturepower:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],strength:["6M"]}}, + skrelp:{learnset:{tackle:["6L1"],smokescreen:["6L1"],watergun:["6L1"],feintattack:["6L5"],tailwhip:["6L9"],bubble:["6L12"],acid:["6L15"],camouflage:["6L19"],poisontail:["6L23"],waterpulse:["6L25"],doubleteam:["6L28","6M"],toxic:["6L32","6M"],aquatail:["6L35"],sludgebomb:["6L38","6M"],hydropump:["6L42"],dragonpulse:["6L49"],hail:["6M"],venoshock:["6M"],hiddenpower:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],shadowball:["6M"],sludgewave:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],scald:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],confide:["6M"],surf:["6M"],waterfall:["6M"],toxicspikes:["6E"],haze:["6E"],venomdrench:["6E"],playrough:["6E"],acidarmor:["6E"]}}, + dragalge:{learnset:{dragontail:["6L1","6L59","6M"],twister:["6L1","6L67"],tackle:["6L1"],smokescreen:["6L1"],watergun:["6L1"],feintattack:["6L5"],tailwhip:["6L9"],bubble:["6L12"],acid:["6L15"],camouflage:["6L19"],poisontail:["6L23"],waterpulse:["6L25"],doubleteam:["6L28","6M"],toxic:["6L32","6M"],aquatail:["6L35"],sludgebomb:["6L38","6M"],hydropump:["6L42"],dragonpulse:["6L53"],hail:["6M"],venoshock:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],thunder:["6M"],"return":["6M"],shadowball:["6M"],sludgewave:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],focusblast:["6M"],scald:["6M"],gigaimpact:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],confide:["6M"],surf:["6M"],waterfall:["6M"],dracometeor:["6T"]}}, + clauncher:{learnset:{splash:["6L1"],watergun:["6L1"],watersport:["6L7"],vicegrip:["6L9"],bubble:["6L12"],flail:["6L16"],bubblebeam:["6L20"],swordsdance:["6L25","6M"],crabhammer:["6L30","6E"],waterpulse:["6L34"],smackdown:["6L39","6M"],aquajet:["6L43"],muddywater:["6L48"],toxic:["6M"],venoshock:["6M"],hiddenpower:["6M"],icebeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],doubleteam:["6M"],sludgewave:["6M"],sludgebomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],scald:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],flashcannon:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],waterfall:["6M"],helpinghand:["6E"],entrainment:["6E"]}}, + clawitzer:{learnset:{healpulse:["6L1"],darkpulse:["6L1","6L57","6M"],dragonpulse:["6L1","6L63"],aurasphere:["6L1","6L67"],splash:["6L1"],watergun:["6L1"],watersport:["6L7"],vicegrip:["6L9"],bubble:["6L12"],flail:["6L16"],bubblebeam:["6L20"],swordsdance:["6L25","6M"],crabhammer:["6L30"],waterpulse:["6L34"],smackdown:["6L42","6M"],aquajet:["6L47"],muddywater:["6L53"],toxic:["6M"],venoshock:["6M"],hiddenpower:["6M"],icebeam:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],shadowball:["6M"],doubleteam:["6M"],sludgewave:["6M"],sludgebomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],focusblast:["6M"],scald:["6M"],gigaimpact:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],flashcannon:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],waterfall:["6M"]}}, + helioptile:{learnset:{pound:["6L1"],tailwhip:["6L1"],thundershock:["6L6"],charge:["6L11"],mudslap:["6L13"],quickattack:["6L17"],razorwind:["6L22"],paraboliccharge:["6L25"],thunderwave:["6L31","6M"],bulldoze:["6L35","6M"],voltswitch:["6L40","6M"],electrify:["6L45"],thunderbolt:["6L49","6M"],toxic:["6M"],hiddenpower:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunder:["6M"],"return":["6M"],dig:["6M"],doubleteam:["6M"],sandstorm:["6M"],rocktomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],lowsweep:["6M"],round:["6M"],chargebeam:["6M"],flash:["6M"],psychup:["6M"],rockslide:["6M"],dragontail:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],darkpulse:["6M"],confide:["6M"],cut:["6M"],surf:["6M"],camouflage:["6E"],agility:["6E"],glare:["6E"]}}, + heliolisk:{learnset:{eerieimpulse:["6L1"],electrify:["6L1"],razorwind:["6L1"],quickattack:["6L1"],thunder:["6L1","6M"],charge:["6L1"],paraboliccharge:["6L1"],toxic:["6M"],hiddenpower:["6M"],hyperbeam:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],dig:["6M"],doubleteam:["6M"],sandstorm:["6M"],rocktomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],lowsweep:["6M"],round:["6M"],focusblast:["6M"],chargebeam:["6M"],gigaimpact:["6M"],flash:["6M"],voltswitch:["6M"],thunderwave:["6M"],psychup:["6M"],bulldoze:["6M"],rockslide:["6M"],dragontail:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],darkpulse:["6M"],confide:["6M"],cut:["6M"],surf:["6M"]}}, + tyrunt:{learnset:{tailwhip:["6L1"],tackle:["6L1"],roar:["6L6","6M"],stomp:["6L10"],bide:["6L12"],stealthrock:["6L15"],bite:["6L17"],charm:["6L20"],ancientpower:["6L26"],dragontail:["6L30","6M"],crunch:["6L34"],dragonclaw:["6L37","6M"],thrash:["6L40"],earthquake:["6L44","6M"],horndrill:["6L49"],honeclaws:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],sandstorm:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],rockpolish:["6M"],stoneedge:["6M"],bulldoze:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],darkpulse:["6M"],confide:["6M"],strength:["6M"],dracometeor:["6T"],firefang:["6E"],dragondance:["6E"],icefang:["6E"],thunderfang:["6E"],poisonfang:["6E"],curse:["6E"]}}, + tyrantrum:{learnset:{headsmash:["6L1","6L58"],tailwhip:["6L1"],tackle:["6L1"],roar:["6L6","6M"],stomp:["6L10"],bide:["6L12"],stealthrock:["6L15"],bite:["6L17"],charm:["6L20"],ancientpower:["6L26"],dragontail:["6L30","6M"],crunch:["6L34"],dragonclaw:["6L37","6M"],thrash:["6L42"],earthquake:["6L47","6M"],horndrill:["6L53"],rockslide:["6L68","6M"],gigaimpact:["6L75","6M"],honeclaws:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],sandstorm:["6M"],rocktomb:["6M"],aerialace:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],rockpolish:["6M"],stoneedge:["6M"],bulldoze:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],darkpulse:["6M"],confide:["6M"],strength:["6M"],dracometeor:["6T"]}}, + amaura:{learnset:{growl:["6L1"],powdersnow:["6L1"],thunderwave:["6L5","6M"],rockthrow:["6L10"],icywind:["6L13"],takedown:["6L15"],mist:["6L18"],aurorabeam:["6L20"],ancientpower:["6L26"],round:["6L30","6M"],avalanche:["6L34"],hail:["6L38","6M"],naturepower:["6L41","6M"],encore:["6L44"],lightscreen:["6L47","6M"],icebeam:["6L50","6M"],hyperbeam:["6L57","6M"],blizzard:["6L65","6M"],calmmind:["6M"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],doubleteam:["6M"],reflect:["6M"],sandstorm:["6M"],rocktomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],echoedvoice:["6M"],chargebeam:["6M"],rockpolish:["6M"],flash:["6M"],stoneedge:["6M"],psychup:["6M"],bulldoze:["6M"],frostbreath:["6M"],rockslide:["6M"],dragontail:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],rocksmash:["6M"],darkpulse:["6M"],confide:["6M"],discharge:["6E"],mirrorcoat:["6E"],haze:["6E"]}}, + aurorus:{learnset:{freezedry:["6L1","6L77"],growl:["6L1"],powdersnow:["6L1"],thunderwave:["6L5","6M"],rockthrow:["6L10"],icywind:["6L13"],takedown:["6L15"],mist:["6L18"],aurorabeam:["6L20"],ancientpower:["6L26"],round:["6L30","6M"],avalanche:["6L34"],hail:["6L38","6M"],naturepower:["6L43","6M"],encore:["6L46"],lightscreen:["6L50","6M"],icebeam:["6L56","6M"],hyperbeam:["6L63","6M"],blizzard:["6L74","6M"],calmmind:["6M"],roar:["6M"],toxic:["6M"],hiddenpower:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],thunderbolt:["6M"],thunder:["6M"],earthquake:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],reflect:["6M"],sandstorm:["6M"],rocktomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],echoedvoice:["6M"],chargebeam:["6M"],gigaimpact:["6M"],rockpolish:["6M"],flash:["6M"],stoneedge:["6M"],psychup:["6M"],bulldoze:["6M"],frostbreath:["6M"],rockslide:["6M"],dragontail:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],rocksmash:["6M"],darkpulse:["6M"],confide:["6M"]}}, + sylveon:{learnset:{disarmingvoice:["6L1"],tailwhip:["6L1"],tackle:["6L1"],helpinghand:["6L1"],sandattack:["6L5"],fairywind:["6L9"],quickattack:["6L13"],swift:["6L17"],drainingkiss:["6L20"],skillswap:["6L25"],mistyterrain:["6L29"],lightscreen:["6L33","6M"],moonblast:["6L37"],lastresort:["6L41"],psychup:["6L45","6M"],psyshock:["6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],shadowball:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],echoedvoice:["6M"],retaliate:["6M"],gigaimpact:["6M"],flash:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],dazzlinggleam:["6M"],confide:["6M"],cut:["6M"]}}, + hawlucha:{learnset:{detect:["6L1"],tackle:["6L1"],honeclaws:["6L1","6M"],karatechop:["6L4"],wingattack:["6L8"],roost:["6L12","6M"],aerialace:["6L16","6M"],encore:["6L20"],fling:["6L24","6M"],flyingpress:["6L28"],bounce:["6L32"],endeavor:["6L36"],featherdance:["6L40"],highjumpkick:["6L44"],skyattack:["6L48"],skydrop:["6L55","6M"],swordsdance:["6L60","6M"],toxic:["6M"],bulkup:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],dig:["6M"],brickbreak:["6M"],doubleteam:["6M"],rocktomb:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],lowsweep:["6M"],round:["6M"],steelwing:["6M"],focusblast:["6M"],falseswipe:["6M"],acrobatics:["6M"],payback:["6M"],retaliate:["6M"],gigaimpact:["6M"],stoneedge:["6M"],rockslide:["6M"],xscissor:["6M"],poisonjab:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],rocksmash:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],fly:["6M"],strength:["6M"],quickguard:["6E"],batonpass:["6E"],entrainment:["6E"],mefirst:["6E"],allyswitch:["6E"]}}, + dedenne:{learnset:{tackle:["6L1"],tailwhip:["6L1"],thundershock:["6L7"],charge:["6L11"],charm:["6L14"],paraboliccharge:["6L17"],nuzzle:["6L20"],thunderwave:["6L23","6M"],voltswitch:["6L26","6M"],rest:["6L30","6M"],snore:["6L31"],chargebeam:["6L34","6M"],entrainment:["6L39"],playrough:["6L42"],thunder:["6L45","6M"],discharge:["6L50"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],dig:["6M"],doubleteam:["6M"],aerialace:["6M"],facade:["6M"],attract:["6M"],thief:["6M"],round:["6M"],fling:["6M"],retaliate:["6M"],gigaimpact:["6M"],flash:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],confide:["6M"],cut:["6M"],helpinghand:["6E"],covet:["6E"],eerieimpulse:["6E"]}}, + carbink:{learnset:{tackle:["6L1"],harden:["6L1"],guardsplit:["6L0"],rockthrow:["6L5"],sharpen:["6L8"],smackdown:["6L12","6M"],reflect:["6L18","6M"],stealthrock:["6L21"],guardswap:["6L27"],ancientpower:["6L31"],flail:["6L35"],skillswap:["6L40"],powergem:["6L46"],stoneedge:["6L49","6M"],moonblast:["6L50"],lightscreen:["6L60","6M"],safeguard:["6L70","6M"],calmmind:["6M"],toxic:["6M"],hail:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],frustration:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],sandstorm:["6M"],rocktomb:["6M"],facade:["6M"],rest:["6M"],round:["6M"],explosion:["6M"],rockpolish:["6M"],flash:["6M"],gyroball:["6M"],psychup:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],naturepower:["6M"],dazzlinggleam:["6M"],confide:["6M"]}}, + goomy:{learnset:{tackle:["6L1"],bubble:["6L1"],absorb:["6L5"],protect:["6L9","6M"],bide:["6L13"],dragonbreath:["6L18"],raindance:["6L25","6M"],flail:["6L28"],bodyslam:["6L32"],muddywater:["6L38"],dragonpulse:["6L42"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],doubleteam:["6M"],sludgewave:["6M"],sludgebomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],rockslide:["6M"],infestation:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],confide:["6M"],dracometeor:["6T"],poisontail:["6E"],irontail:["6E"],curse:["6E"],acidarmor:["6E"],counter:["6E"]}}, + sliggoo:{learnset:{tackle:["6L1"],bubble:["6L1"],absorb:["6L5"],protect:["6L9","6M"],bide:["6L13"],dragonbreath:["6L18"],raindance:["6L25","6M"],flail:["6L28"],bodyslam:["6L32"],muddywater:["6L38"],dragonpulse:["6L47"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],icebeam:["6M"],blizzard:["6M"],frustration:["6M"],thunderbolt:["6M"],"return":["6M"],doubleteam:["6M"],sludgewave:["6M"],sludgebomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],rockslide:["6M"],infestation:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],confide:["6M"],dracometeor:["6T"]}}, + goodra:{learnset:{outrage:["6L1","6L63"],feint:["6L1"],tackle:["6L1"],bubble:["6L1"],absorb:["6L5"],protect:["6L9","6M"],bide:["6L13"],dragonbreath:["6L18"],raindance:["6L25","6M"],flail:["6L28"],bodyslam:["6L32"],muddywater:["6L38"],dragonpulse:["6L47"],aquatail:["6L50"],powerwhip:["6L55"],toxic:["6M"],hail:["6M"],hiddenpower:["6M"],sunnyday:["6M"],icebeam:["6M"],blizzard:["6M"],hyperbeam:["6M"],frustration:["6M"],thunderbolt:["6M"],thunder:["6M"],earthquake:["6M"],"return":["6M"],doubleteam:["6M"],sludgewave:["6M"],flamethrower:["6M"],sludgebomb:["6M"],fireblast:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],focusblast:["6M"],incinerate:["6M"],gigaimpact:["6M"],bulldoze:["6M"],rockslide:["6M"],dragontail:["6M"],infestation:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],confide:["6M"],strength:["6M"],dracometeor:["6T"]}}, + klefki:{learnset:{fairylock:["6L1"],tackle:["6L1"],fairywind:["6L5"],astonish:["6L8"],metalsound:["6L12"],spikes:["6L15"],drainingkiss:["6L18"],craftyshield:["6L23"],foulplay:["6L27"],torment:["6L32","6M"],mirrorshot:["6L34"],imprison:["6L36"],recycle:["6L40"],playrough:["6L43"],magicroom:["6L44"],healblock:["6L50"],psyshock:["6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],lightscreen:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],gigaimpact:["6M"],thunderwave:["6M"],psychup:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],dazzlinggleam:["6M"],confide:["6M"],cut:["6M"],irondefense:["6E"],lockon:["6E"]}}, + phantump:{learnset:{tackle:["6L1"],confuseray:["6L1"],astonish:["6L5"],growth:["6L8"],ingrain:["6L13"],feintattack:["6L19"],leechseed:["6L23"],curse:["6L28"],willowisp:["6L31","6M"],forestscurse:["6L35"],destinybond:["6L39"],phantomforce:["6L45"],woodhammer:["6L49"],hornleech:["6L54"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],dig:["6M"],psychic:["6M"],shadowball:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],energyball:["6M"],shadowclaw:["6M"],bulldoze:["6M"],rockslide:["6M"],poisonjab:["6M"],dreameater:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],rocksmash:["6M"],naturepower:["6M"],darkpulse:["6M"],confide:["6M"],cut:["6M"],strength:["6M"],bestow:["6E"],grudge:["6E"],imprison:["6E"],venomdrench:["6E"]}}, + trevenant:{learnset:{hornleech:["6L1","6L62"],tackle:["6L1"],confuseray:["6L1"],astonish:["6L5"],growth:["6L8"],ingrain:["6L13"],feintattack:["6L19"],leechseed:["6L23"],curse:["6L28"],willowisp:["6L31","6M"],forestscurse:["6L35"],destinybond:["6L39"],phantomforce:["6L45"],woodhammer:["6L49"],shadowclaw:["6L55","6M"],honeclaws:["6M"],calmmind:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],earthquake:["6M"],"return":["6M"],dig:["6M"],psychic:["6M"],shadowball:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],focusblast:["6M"],energyball:["6M"],gigaimpact:["6M"],bulldoze:["6M"],rockslide:["6M"],xscissor:["6M"],poisonjab:["6M"],dreameater:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],rocksmash:["6M"],naturepower:["6M"],darkpulse:["6M"],poweruppunch:["6M"],confide:["6M"],cut:["6M"],strength:["6M"]}}, + pumpkaboo:{learnset:{trick:["6L1"],astonish:["6L1"],confuseray:["6L1"],scaryface:["6L4"],trickortreat:["6L6","6L23","6L40"],worryseed:["6L11"],razorleaf:["6L16"],leechseed:["6L20"],bulletseed:["6L26"],shadowsneak:["6L30"],shadowball:["6L36","6M"],painsplit:["6L42"],seedbomb:["6L48"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],lightscreen:["6M"],protect:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],flamethrower:["6M"],sludgebomb:["6M"],fireblast:["6M"],facade:["6M"],flamecharge:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],energyball:["6M"],chargebeam:["6M"],incinerate:["6M"],willowisp:["6M"],explosion:["6M"],flash:["6M"],gyroball:["6M"],rockslide:["6M"],dreameater:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],rocksmash:["6M"],naturepower:["6M"],darkpulse:["6M"],confide:["6M"],destinybond:["6E"],disable:["6E"],bestow:["6E"]}}, + gourgeist:{learnset:{explosion:["6L1","6L75","6M"],phantomforce:["6L1","6L57"],trick:["6L1"],astonish:["6L1"],confuseray:["6L1"],scaryface:["6L4"],trickortreat:["6L6","6L23","6L40","6L63"],worryseed:["6L11"],razorleaf:["6L16"],leechseed:["6L20"],bulletseed:["6L26"],shadowsneak:["6L30"],shadowball:["6L36","6L70","6M"],painsplit:["6L42"],seedbomb:["6L48"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],lightscreen:["6M"],protect:["6M"],safeguard:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],flamethrower:["6M"],sludgebomb:["6M"],fireblast:["6M"],facade:["6M"],flamecharge:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],focusblast:["6M"],energyball:["6M"],chargebeam:["6M"],incinerate:["6M"],willowisp:["6M"],gigaimpact:["6M"],flash:["6M"],gyroball:["6M"],rockslide:["6M"],dreameater:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],trickroom:["6M"],rocksmash:["6M"],naturepower:["6M"],darkpulse:["6M"],confide:["6M"]}}, + bergmite:{learnset:{tackle:["6L1"],bite:["6L1"],harden:["6L1"],powdersnow:["6L5"],icywind:["6L10"],takedown:["6L15"],sharpen:["6L20"],curse:["6L22"],icefang:["6L26"],iceball:["6L30"],rapidspin:["6L35"],avalanche:["6L39"],blizzard:["6L43","6M"],recover:["6L47"],doubleedge:["6L49"],toxic:["6M"],hail:["6M"],hiddenpower:["6M"],icebeam:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],"return":["6M"],doubleteam:["6M"],rocktomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],rockpolish:["6M"],flash:["6M"],stoneedge:["6M"],gyroball:["6M"],frostbreath:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],rocksmash:["6M"],confide:["6M"],surf:["6M"],strength:["6M"],mist:["6E"],mirrorcoat:["6E"]}}, + avalugg:{learnset:{irondefense:["6L1"],crunch:["6L1","6L65"],skullbash:["6L1","6L60"],tackle:["6L1"],bite:["6L1"],harden:["6L1"],powdersnow:["6L5"],icywind:["6L10"],takedown:["6L15"],sharpen:["6L20"],curse:["6L22"],icefang:["6L26"],iceball:["6L30"],rapidspin:["6L35"],avalanche:["6L42"],blizzard:["6L46","6M"],recover:["6L51"],doubleedge:["6L56"],roar:["6M"],toxic:["6M"],hail:["6M"],hiddenpower:["6M"],icebeam:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],safeguard:["6M"],frustration:["6M"],earthquake:["6M"],"return":["6M"],doubleteam:["6M"],rocktomb:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],round:["6M"],gigaimpact:["6M"],rockpolish:["6M"],flash:["6M"],stoneedge:["6M"],gyroball:["6M"],bulldoze:["6M"],frostbreath:["6M"],rockslide:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],rocksmash:["6M"],confide:["6M"],surf:["6M"],strength:["6M"]}}, + noibat:{learnset:{screech:["6L1"],supersonic:["6L1"],tackle:["6L1"],leechlife:["6L5"],gust:["6L11"],bite:["6L13"],wingattack:["6L16"],agility:["6L18"],aircutter:["6L23"],roost:["6L27","6M"],razorwind:["6L31"],tailwind:["6L35"],whirlwind:["6L40"],superfang:["6L43"],airslash:["6L48"],hurricane:["6L58"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],protect:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],psychic:["6M"],shadowball:["6M"],brickbreak:["6M"],doubleteam:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],echoedvoice:["6M"],steelwing:["6M"],acrobatics:["6M"],shadowclaw:["6M"],xscissor:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],darkpulse:["6M"],confide:["6M"],cut:["6M"],fly:["6M"],dracometeor:["6T"],switcheroo:["6E"]}}, + noivern:{learnset:{moonlight:["6L1"],boomburst:["6L1","6L75"],dragonpulse:["6L1","6L70"],hurricane:["6L1","6L62"],screech:["6L1"],supersonic:["6L1"],tackle:["6L1"],leechlife:["6L5"],gust:["6L11"],bite:["6L13"],wingattack:["6L16"],agility:["6L18"],aircutter:["6L23"],roost:["6L27","6M"],razorwind:["6L31"],tailwind:["6L35"],whirlwind:["6L40"],superfang:["6L43"],airslash:["6L53"],honeclaws:["6M"],dragonclaw:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],taunt:["6M"],hyperbeam:["6M"],protect:["6M"],frustration:["6M"],solarbeam:["6M"],"return":["6M"],psychic:["6M"],shadowball:["6M"],brickbreak:["6M"],doubleteam:["6M"],flamethrower:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],attract:["6M"],thief:["6M"],round:["6M"],echoedvoice:["6M"],steelwing:["6M"],focusblast:["6M"],acrobatics:["6M"],shadowclaw:["6M"],gigaimpact:["6M"],xscissor:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],wildcharge:["6M"],darkpulse:["6M"],confide:["6M"],cut:["6M"],fly:["6M"],dracometeor:["6T"]}}, + xerneas:{learnset:{healpulse:["6L1"],aromatherapy:["6L1"],ingrain:["6L1"],takedown:["6L1"],lightscreen:["6L1","6M"],aurorabeam:["6L1"],gravity:["6L1"],geomancy:["6L1"],moonblast:["6L1"],megahorn:["6L1"],nightslash:["6L51"],hornleech:["6L55"],psychup:["6L59","6M"],mistyterrain:["6L63"],naturepower:["6L72","6M"],closecombat:["6L80"],gigaimpact:["6L88","6M"],outrage:["6L93"],psyshock:["6M"],calmmind:["6M"],roar:["6M"],toxic:["6M"],hail:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],thunderbolt:["6M"],thunder:["6M"],"return":["6M"],psychic:["6M"],doubleteam:["6M"],reflect:["6M"],facade:["6M"],rest:["6M"],round:["6M"],echoedvoice:["6M"],focusblast:["6M"],flash:["6M"],thunderwave:["6M"],rockslide:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],flashcannon:["6M"],dazzlinggleam:["6M"],confide:["6M"],cut:["6M"]}}, + yveltal:{learnset:{hurricane:["6L1"],razorwind:["6L1"],taunt:["6L1","6M"],roost:["6L1","6M"],doubleteam:["6L1","6M"],airslash:["6L1"],snarl:["6L1","6M"],oblivionwing:["6L1"],disable:["6L1"],darkpulse:["6L1","6M"],foulplay:["6L51"],phantomforce:["6L55"],psychic:["6L59","6M"],dragonrush:["6L63"],focusblast:["6L72","6M"],suckerpunch:["6L80"],hyperbeam:["6L88","6M"],skyattack:["6L93"],honeclaws:["6M"],dragonclaw:["6M"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],protect:["6M"],raindance:["6M"],frustration:["6M"],"return":["6M"],shadowball:["6M"],aerialace:["6M"],torment:["6M"],facade:["6M"],rest:["6M"],thief:["6M"],round:["6M"],steelwing:["6M"],skydrop:["6M"],acrobatics:["6M"],embargo:["6M"],shadowclaw:["6M"],gigaimpact:["6M"],rockslide:["6M"],dreameater:["6M"],swagger:["6M"],sleeptalk:["6M"],uturn:["6M"],substitute:["6M"],confide:["6M"],cut:["6M"],fly:["6M"]}}, + zygarde:{learnset:{glare:["6L1"],bulldoze:["6L1","6M"],dragonbreath:["6L1"],bite:["6L1"],safeguard:["6L1","6M"],dig:["6L1","6M"],bind:["6L1"],landswrath:["6L1"],sandstorm:["6L1","6M"],haze:["6L1"],crunch:["6L1"],earthquake:["6L1","6M"],camouflage:["6L1"],dragonpulse:["6L1"],dragondance:["6L72"],coil:["6L80"],extremespeed:["6L88"],outrage:["6L93"],toxic:["6M"],hiddenpower:["6M"],sunnyday:["6M"],hyperbeam:["6M"],protect:["6M"],frustration:["6M"],"return":["6M"],brickbreak:["6M"],doubleteam:["6M"],sludgewave:["6M"],facade:["6M"],rest:["6M"],round:["6M"],focusblast:["6M"],gigaimpact:["6M"],stoneedge:["6M"],rockslide:["6M"],dragontail:["6M"],grassknot:["6M"],swagger:["6M"],sleeptalk:["6M"],substitute:["6M"],rocksmash:["6M"],confide:["6M"],strength:["6M"],dracometeor:["6T"]}} +}; \ No newline at end of file diff --git a/data/moves.js b/data/moves.js index 3cad43cfe..5e33d5ba7 100644 --- a/data/moves.js +++ b/data/moves.js @@ -67,6 +67,7 @@ exports.BattleMovedex = { name: "Acid Spray", pp: 20, priority: 0, + isBullet: true, secondary: { chance: 100, boosts: { @@ -291,7 +292,7 @@ exports.BattleMovedex = { desc: "Deals damage to one adjacent target with a 10% chance to raise the user's Attack, Defense, Speed, Special Attack, and Special Defense by 1 stage.", shortDesc: "10% chance to boost all stats by 1 (not acc/eva).", id: "ancientpower", - name: "AncientPower", + name: "Ancient Power", pp: 5, priority: 0, secondary: { @@ -601,6 +602,8 @@ exports.BattleMovedex = { name: "Aura Sphere", pp: 20, priority: 0, + isPulseMove: true, + isBullet: true, secondary: false, target: "any", type: "Fighting" @@ -726,6 +729,7 @@ exports.BattleMovedex = { name: "Barrage", pp: 20, priority: 0, + isBullet: true, multihit: [2,5], secondary: false, target: "normal", @@ -821,7 +825,11 @@ exports.BattleMovedex = { name: "Belch", pp: 10, priority: 0, - //todo + onTryHit: function(target, pokemon) { + if (!pokemon.lastItem || !this.getItem(pokemon.lastItem).isBerry) { + return false; + } + }, secondary: false, target: "normal", type: "Poison" @@ -1325,7 +1333,7 @@ exports.BattleMovedex = { desc: "Deals damage to one adjacent target with a 10% chance to lower its Speed by 1 stage.", shortDesc: "10% chance to lower the target's Speed by 1.", id: "bubblebeam", - name: "BubbleBeam", + name: "Bubble Beam", pp: 20, priority: 0, secondary: { @@ -1453,6 +1461,7 @@ exports.BattleMovedex = { name: "Bullet Seed", pp: 30, priority: 0, + isBullet: true, multihit: [2,5], secondary: false, target: "normal", @@ -1484,16 +1493,21 @@ exports.BattleMovedex = { accuracy: true, basePower: 0, category: "Status", - desc: "The user's type changes based on the battle terrain. Ground-type in Wi-Fi battles. (In-game: Ground-type in puddles, rocky ground, and sand, Water-type on water, Rock-type in caves, Ice-type on snow and ice, and Normal-type everywhere else.) Fails if the user's type cannot be changed or if the user is already purely that type.", - shortDesc: "Changes user's type based on terrain. (Ground)", + desc: "The user's type changes based on the battle terrain: Electric in Electric Terrain, Grass in Grassy Terrain, Fairy in Misty Terrain, and Normal in plain terrain. Fails if the user's type cannot be changed or if the user is already purely that type.", + shortDesc: "Changes user's type by terrain (default Normal).", id: "camouflage", name: "Camouflage", pp: 20, priority: 0, isSnatchable: true, onHit: function(target) { - this.add('-start', target, 'typechange', 'Ground'); - target.types = ['Ground']; + var newType = 'Normal'; + if (this.isTerrain('electricterrain')) newType = 'Electric'; + else if (this.isTerrain('grassyterrain')) newType = 'Grass'; + else if (this.isTerrain('mistyterrain')) newType = 'Fairy'; + + this.add('-start', target, 'typechange', newType); + target.types = [newType]; }, secondary: false, target: "self", @@ -1605,8 +1619,8 @@ exports.BattleMovedex = { accuracy: 100, basePower: 65, category: "Special", - desc: "Deals damage to one adjacent or non-adjacent target. This move has an X% chance to confuse the target, where X is 0 unless the user is a Chatot that hasn't Transformed. If the user is a Chatot, X is 0 or 10 depending on the volume of Chatot's recorded cry, if any; 0 for a low volume or no recording, 10 for a medium to high volume recording. Pokemon with the Ability Soundproof are immune. (Field: Can be used to record a sound to replace Chatot's cry. The cry is reset if Chatot is deposited in a PC.)", - shortDesc: "10% chance to confuse the target.", + desc: "Deals damage to one adjacent or non-adjacent target with a 100% chance to confuse it.", + shortDesc: "100% chance to confuse the target.", id: "chatter", name: "Chatter", pp: 20, @@ -1616,7 +1630,7 @@ exports.BattleMovedex = { if (pokemon.template.species !== 'Chatot') delete move.secondaries; }, secondary: { - chance: 10, + chance: 100, volatileStatus: 'confusion' }, target: "any", @@ -1911,7 +1925,7 @@ exports.BattleMovedex = { pp: 20, priority: 0, onHit: function(pokemon) { - var noCopycat = {assist:1, bestow:1, chatter:1, circlethrow:1, copycat:1, counter:1, covet:1, destinybond:1, detect:1, dragontail:1, endure:1, feint:1, focuspunch:1, followme:1, helpinghand:1, mefirst:1, metronome:1, mimic:1, mirrorcoat:1, mirrormove:1, naturepower:1, protect:1, ragepowder:1, sketch:1, sleeptalk:1, snatch:1, struggle:1, switcheroo:1, thief:1, transform:1, trick:1}; + var noCopycat = {assist:1, bestow:1, chatter:1, circlethrow:1, copycat:1, counter:1, covet:1, destinybond:1, detect:1, dragontail:1, endure:1, feint:1, focuspunch:1, followme:1, helpinghand:1, mefirst:1, metronome:1, mimic:1, mirrorcoat:1, mirrormove:1, naturepower:1, protect:1, ragepowder:1, roar:1, sketch:1, sleeptalk:1, snatch:1, struggle:1, switcheroo:1, thief:1, transform:1, trick:1, whirlwind:1}; if (!this.lastMove || noCopycat[this.lastMove]) { return false; } @@ -1973,11 +1987,12 @@ exports.BattleMovedex = { name: "Cotton Spore", pp: 40, priority: 0, + isPowder: true, boosts: { spe: -2 }, onTryHit: function(target, source) { - return !target.hasType('Grass'); + if (target.hasType('Grass')) return false; }, secondary: false, target: "normal", @@ -2039,7 +2054,7 @@ exports.BattleMovedex = { "crabhammer": { num: 152, accuracy: 90, - basePower: 90, + basePower: 100, category: "Physical", desc: "Deals damage to one adjacent target with a higher chance for a critical hit. Makes contact.", shortDesc: "High critical hit ratio.", @@ -2183,7 +2198,7 @@ exports.BattleMovedex = { accuracy: 100, basePower: 0, basePowerCallback: function(pokemon, target) { - return 120*target.hp/target.maxhp; + return Math.floor(Math.floor((120 * (100 * Math.floor(target.hp * 4096 / target.maxhp)) + 2048 - 1) / 4096) / 100) || 1; }, category: "Physical", desc: "Deals damage to one adjacent target. Power is equal to 120 * (target's current HP / target's maximum HP), rounded half down, but not less than 1. Makes contact.", @@ -2298,15 +2313,15 @@ exports.BattleMovedex = { accuracy: 100, basePower: 80, category: "Special", - desc: "Deals damage to one adjacent target.", - shortDesc: "No additional effect.", + desc: "Deals damage to all adjacent foes.", + shortDesc: "No additional effect. Hits adjacent foes.", id: "dazzlinggleam", isViable: true, name: "Dazzling Gleam", pp: 10, priority: 0, secondary: false, - target: "normal", + target: "allAdjacentFoes", type: "Fairy" }, "defendorder": { @@ -2355,21 +2370,26 @@ exports.BattleMovedex = { accuracy: true, basePower: 0, category: "Status", - desc: "Lowers one adjacent target's evasion by 1 stage. Whether or not the target's evasion was affected, the effects of Reflect, Light Screen, Safeguard, Mist, Spikes, Toxic Spikes, and Stealth Rock end for the target's side. Pokemon protected by Magic Coat or the Ability Magic Bounce are unaffected and instead use this move themselves. Ignores a target's Substitute, although a Substitute will still block the evasion lowering.", - shortDesc: "Removes target's hazards, lowers evasion by 1.", + desc: "Lowers one adjacent target's evasion by 1 stage. Whether or not the target's evasion was affected, the effects of Reflect, Light Screen, Safeguard, Mist, Spikes, Toxic Spikes, Stealth Rock, and Sticky Web end for the user's and the target's sides. Pokemon protected by Magic Coat or the Ability Magic Bounce are unaffected and instead use this move themselves. Ignores a target's Substitute, although a Substitute will still block the evasion lowering.", + shortDesc: "Removes hazards from both sides, lowers target's evasion by 1.", id: "defog", name: "Defog", pp: 15, priority: 0, isBounceable: true, - onHit: function(pokemon) { - if (!pokemon.volatiles['substitute']) this.boost({evasion:-1}); - var sideConditions = {reflect:1, lightscreen:1, safeguard:1, mist:1, spikes:1, toxicspikes:1, stealthrock:1}; - for (var i in sideConditions) { - if (pokemon.side.removeSideCondition(i)) { - this.add('-sideend', pokemon.side, this.getEffect(i).name, '[from] move: Defog', '[of] '+pokemon); - } - } + onHit: function(target, source) { + if (!target.volatiles['substitute']) this.boost({evasion:-1}); + var sideConditions = {reflect:1, lightscreen:1, safeguard:1, mist:1, spikes:1, toxicspikes:1, stealthrock:1, stickyweb:1}; + for (var i in sideConditions) { + if (target.side.removeSideCondition(i)) { + this.add('-sideend', target.side, this.getEffect(i).name, '[from] move: Defog', '[of] '+target); + } + } + for (var i in sideConditions) { + if (source.side.removeSideCondition(i)) { + this.add('-sideend', source.side, this.getEffect(i).name, '[from] move: Defog', '[of] '+source); + } + } }, secondary: false, target: "normal", @@ -2543,7 +2563,7 @@ exports.BattleMovedex = { target: "normal", type: "Normal" }, - "disalarmingvoice": { + "disarmingvoice": { num: -6, gen: 6, accuracy: true, @@ -2551,8 +2571,8 @@ exports.BattleMovedex = { category: "Special", desc: "This attack never misses.", shortDesc: "This attack never misses.", - id: "disalarmingvoice", - name: "Disalarming Voice", + id: "disarmingvoice", + name: "Disarming Voice", pp: 15, priority: 0, secondary: false, @@ -2798,7 +2818,7 @@ exports.BattleMovedex = { desc: "Deals damage to one adjacent target with a 30% chance to paralyze it.", shortDesc: "30% chance to paralyze the target.", id: "dragonbreath", - name: "DragonBreath", + name: "Dragon Breath", pp: 20, priority: 0, secondary: { @@ -3037,7 +3057,7 @@ exports.BattleMovedex = { desc: "Deals damage to one adjacent target with a 100% chance to confuse it. Makes contact. Damage is boosted to 1.2x by the Ability Iron Fist.", shortDesc: "100% chance to confuse the target.", id: "dynamicpunch", - name: "DynamicPunch", + name: "Dynamic Punch", pp: 5, priority: 0, isContact: true, @@ -3155,6 +3175,7 @@ exports.BattleMovedex = { name: "Egg Bomb", pp: 10, priority: 0, + isBullet: true, secondary: false, target: "normal", type: "Normal" @@ -3165,38 +3186,44 @@ exports.BattleMovedex = { accuracy: true, basePower: 0, category: "Status", - desc: "For five turns, Pokemon on the ground no longer fall asleep.", - shortDesc: "Prevents grounded Pokemon from sleeping for 5 turns.", + desc: "For five turns, Pokemon on the ground cannot fall asleep, and will be woken up if already sleeping. Their Electric-type moves are powered up by 50%.", + shortDesc: "If on ground, can't sleep + Electric moves stronger.", id: "electricterrain", name: "Electric Terrain", pp: 10, priority: 0, - sideCondition: 'electricterrain', + terrain: 'electricterrain', effect: { duration: 5, - durationCallback: function(target, source, effect) { - if (source && source.ability === 'persistent') { - return 7; - } - return 5; - }, onSetStatus: function(status, target, source, effect) { - if (status.id === 'slp' && source && source !== target && source.ability !== 'infiltrator' && !target.runImmunity('Ground')) { + if (status.id === 'slp' && !target.runImmunity('Ground')) { this.debug('Interrupting sleep from Electric Terrain'); return false; } }, - onStart: function(side) { - this.add('-sidestart', side, 'Electric Terrain'); + onUpdate: function(pokemon) { + if (pokemon.status === 'slp') { + this.debug('Waking up from Electric Terrain'); + pokemon.cureStatus(); + } + }, + onBasePower: function(basePower, attacker, defender, move) { + if (move.type === 'Electric' && !attacker.runImmunity('Ground')) { + this.debug('electric terrain boost'); + return this.chainModify(1.5); + } + }, + onStart: function() { + this.add('-fieldstart', 'move: Electric Terrain'); }, onResidualOrder: 21, onResidualSubOrder: 2, - onEnd: function(side) { - this.add('-sideend', side, 'Electric Terrain'); + onEnd: function() { + this.add('-fieldend', 'move: Electric Terrain'); } }, secondary: false, - target: "normal", + target: "all", type: "Electric" }, "electrify": { @@ -3235,10 +3262,6 @@ exports.BattleMovedex = { accuracy: 100, basePower: 0, basePowerCallback: function(pokemon, target) { - var sourceSpeMod = 1; - sourceSpeMod = this.runEvent('ModifySpe', pokemon, target, null, sourceSpeMod); - var foeSpeMod = 1; - sourceSpeMod = this.runEvent('ModifySpe', target, pokemon, null, foeSpeMod); var ratio = (pokemon.getStat('spe') / target.getStat('spe')); this.debug([40, 60, 80, 120, 150][(Math.floor(ratio) > 4 ? 4 : Math.floor(ratio))] + ' bp'); if (ratio >= 4) { @@ -3263,6 +3286,7 @@ exports.BattleMovedex = { name: "Electro Ball", pp: 10, priority: 0, + isBullet: true, secondary: false, target: "normal", type: "Electric" @@ -3465,6 +3489,7 @@ exports.BattleMovedex = { name: "Energy Ball", pp: 10, priority: 0, + isBullet: true, secondary: { chance: 10, boosts: { @@ -3568,7 +3593,7 @@ exports.BattleMovedex = { shortDesc: "Nearly always goes first.", id: "extremespeed", isViable: true, - name: "ExtremeSpeed", + name: "Extreme Speed", pp: 5, priority: 2, isContact: true, @@ -3599,15 +3624,15 @@ exports.BattleMovedex = { target: "normal", type: "Normal" }, - "faintattack": { + "feintattack": { num: 185, accuracy: true, basePower: 60, category: "Physical", desc: "Deals damage to one adjacent target and does not check accuracy. Makes contact.", shortDesc: "This move does not check accuracy.", - id: "faintattack", - name: "Faint Attack", + id: "feintattack", + name: "Feint Attack", pp: 20, priority: 0, isContact: true, @@ -3663,7 +3688,7 @@ exports.BattleMovedex = { isContact: true, onTryHit: function(target, pokemon) { if (pokemon.activeTurns > 1) { - this.debug('It\'s not your first turn out.'); + this.add('-message', '(Fake Out only works your first turn out.)'); return false; } }, @@ -4240,8 +4265,8 @@ exports.BattleMovedex = { "flowershield": { num: -6, gen: 6, - accuracy: 100, - basePower: 30, + accuracy: true, + basePower: 0, category: "Status", desc: "The user raises the Defense stat of all Grass-type Pokemon in battle.", shortDesc: "Raises Defense by 2 of Grass types in battle.", @@ -4249,9 +4274,18 @@ exports.BattleMovedex = { name: "Flower Shield", pp: 25, priority: 0, - //todo + onHitField: function(target, source) { + for (var i=0; i 150) power = 150; this.debug(''+power+' bp'); @@ -5375,6 +5434,7 @@ exports.BattleMovedex = { pp: 5, priority: 0, isContact: true, + isBullet: true, secondary: false, target: "normal", type: "Steel" @@ -5620,7 +5680,11 @@ exports.BattleMovedex = { pp: 10, priority: 0, isBounceable: true, - heal: [1,2], + isPulseMove: true, + onHit: function(pokemon) { + if (pokemon.ability === 'megalauncher') this.heal(this.modify(pokemon.maxhp, 0.75)); + else this.heal(Math.ceil(pokemon.maxhp * 0.5)); + }, secondary: false, target: "normal", type: "Psychic" @@ -5838,10 +5902,10 @@ exports.BattleMovedex = { "hex": { num: 506, accuracy: 100, - basePower: 60, + basePower: 65, basePowerCallback: function(pokemon, target) { - if (target.status) return 120; - return 60; + if (target.status) return 130; + return 65; }, category: "Special", desc: "Deals damage to one adjacent target. Power doubles if the target has a major status problem.", @@ -5854,27 +5918,6 @@ exports.BattleMovedex = { target: "normal", type: "Ghost" }, - "hijumpkick": { - num: 136, - accuracy: 90, - basePower: 130, - category: "Physical", - desc: "Deals damage to one adjacent target. If this attack is not successful, the user loses half of its maximum HP, rounded down, as crash damage. Pokemon with the Ability Magic Guard are unaffected by crash damage. This move cannot be used while Gravity is in effect. Makes contact.", - shortDesc: "User is hurt by 50% of its max HP if it misses.", - id: "hijumpkick", - isViable: true, - name: "Hi Jump Kick", - pp: 10, - priority: 0, - isContact: true, - hasCustomRecoil: true, - onMoveFail: function(target, source, move) { - this.damage(source.maxhp/2, source, source, 'hijumpkick'); - }, - secondary: false, - target: "normal", - type: "Fighting" - }, "hiddenpower": { num: 237, accuracy: 100, @@ -5951,22 +5994,6 @@ exports.BattleMovedex = { target: "normal", type: "Electric" }, - "hiddenpowerfairy": { - accuracy: 100, - basePower: 60, - category: "Special", - desc: "", - shortDesc: "", - id: "hiddenpower", - isViable: true, - name: "Hidden Power Fairy", - pp: 15, - priority: 0, - secondary: false, - target: "normal", - type: "Fairy", - gen: 6 - }, "hiddenpowerfighting": { accuracy: 100, basePower: 60, @@ -6139,6 +6166,27 @@ exports.BattleMovedex = { target: "normal", type: "Water" }, + "highjumpkick": { + num: 136, + accuracy: 90, + basePower: 130, + category: "Physical", + desc: "Deals damage to one adjacent target. If this attack is not successful, the user loses half of its maximum HP, rounded down, as crash damage. Pokemon with the Ability Magic Guard are unaffected by crash damage. This move cannot be used while Gravity is in effect. Makes contact.", + shortDesc: "User is hurt by 50% of its max HP if it misses.", + id: "highjumpkick", + isViable: true, + name: "High Jump Kick", + pp: 10, + priority: 0, + isContact: true, + hasCustomRecoil: true, + onMoveFail: function(target, source, move) { + this.damage(source.maxhp/2, source, source, 'highjumpkick'); + }, + secondary: false, + target: "normal", + type: "Fighting" + }, "honeclaws": { num: 468, accuracy: true, @@ -6385,6 +6433,7 @@ exports.BattleMovedex = { pp: 20, priority: 0, isContact: true, + isBullet: true, effect: { duration: 2, onLockMove: 'iceball', @@ -6618,7 +6667,7 @@ exports.BattleMovedex = { "incinerate": { num: 510, accuracy: 100, - basePower: 30, + basePower: 60, category: "Special", desc: "Deals damage to all adjacent foes and destroys any Berry or Gem they may be holding.", shortDesc: "Destroys the foe(s) Berry/Gem.", @@ -6667,6 +6716,7 @@ exports.BattleMovedex = { name: "Infestation", pp: 35, priority: 0, + isContact: true, volatileStatus: 'partiallytrapped', secondary: false, target: "normal", @@ -6719,7 +6769,18 @@ exports.BattleMovedex = { name: "Ion Deluge", pp: 25, priority: 0, - //todo + volatileStatus: 'iondeluge', + effect: { + onStart: function(target) { + this.add('-start', target, 'move: Ion Deluge'); + }, + onModifyMove: function(move, pokemon) { + if (move.type === 'Normal') { + move.type = 'Electric'; + this.debug(move.name + "'s type changed to Electric"); + } + } + }, secondary: false, target: "normal", type: "Electric" @@ -6867,8 +6928,8 @@ exports.BattleMovedex = { accuracy: true, basePower: 0, category: "Status", - desc: "Protects. Contactors get -Atk.", - shortDesc: "Protects. Contactors get -Atk.", + desc: "Protects the user from attacks. Contactors get their Attack lowered by 2 stages. Priority +4", + shortDesc: "Protects the user from attacks. Contactors get -Atk.", id: "kingsshield", isViable: true, name: "King's Shield", @@ -6893,7 +6954,7 @@ exports.BattleMovedex = { target.removeVolatile("King's Shield"); return; } - if (move && (move.target === 'self' || move.isNotProtectable)) return; + if (move && (move.category === 'Status' || move.isNotProtectable || move.id === 'suckerpunch')) return; this.add('-activate', target, "King's Shield"); var lockedmove = source.getVolatile('lockedmove'); if (lockedmove) { @@ -6917,14 +6978,21 @@ exports.BattleMovedex = { accuracy: 100, basePower: 65, category: "Physical", - desc: "Deals damage to one adjacent target and causes it to drop its held item. This move cannot force Pokemon with the Ability Sticky Hold to lose their held item, or force a Giratina, an Arceus, or a Genesect to lose their Griseous Orb, Plate, or Drive, respectively. Items lost to this move cannot be regained with Recycle. Makes contact.", - shortDesc: "Removes the target's held item.", + desc: "Deals damage to one adjacent target and causes it to drop its held item. Does 50% more damage if the target is holding an item. This move cannot force Pokemon with the Ability Sticky Hold to lose their held item, or force a Giratina, an Arceus, or a Genesect to lose their Griseous Orb, Plate, or Drive, respectively. It also cannot remove Mega Stones. Items lost to this move cannot be regained with Recycle. Makes contact.", + shortDesc: "Removes the target's held item. 1.5x damage if the target is holding an item.", id: "knockoff", isViable: true, name: "Knock Off", pp: 20, priority: 0, isContact: true, + onBasePowerPriority: 4, + onBasePower: function(basePower, pokemon, target) { + var item = target.getItem(); + if (item.id && !item.megaStone) { + return this.chainModify(1.5); + } + }, onHit: function(target, source) { var item = target.getItem(); if (item.id === 'mail') { @@ -7549,6 +7617,7 @@ exports.BattleMovedex = { name: "Magnet Bomb", pp: 20, priority: 0, + isBullet: true, secondary: false, target: "normal", type: "Steel" @@ -7604,9 +7673,15 @@ exports.BattleMovedex = { name: "Magnetic Flux", pp: 20, priority: 0, - //todo + onHitSide: function(side, source) { + for (var p in side.active) { + if (side.active[p].ability === 'plus' || side.active[p].ability === 'minus') { + this.boost({spd: 1, def: 1}, side.active[p], source, this.getMove('Magnetic Flux')); + } + } + }, secondary: false, - target: "normal", + target: "allySide", type: "Electric" }, "magnetrise": { @@ -7687,20 +7762,20 @@ exports.BattleMovedex = { accuracy: true, basePower: 0, category: "Status", - desc: "The user protects itself and its allies from damaging moves. Priority +4.", - shortDesc: "Protects the user and allies from damaging moves.", + desc: "The user protects itself and its allies from damaging moves. Only works first turn out.", + shortDesc: "Protects from damaging moves. First turn out only.", id: "matblock", isViable: true, name: "Mat Block", pp: 15, - priority: 4, + priority: 0, stallingMove: true, // Note: stallingMove is not used anywhere. volatileStatus: 'matblock', - onTryHit: function(target, source, move) { - return !!this.willAct() && this.runEvent('StallMove', target); - }, - onHit: function(pokemon) { - pokemon.addVolatile('stall'); + onTryHit: function(target, pokemon) { + if (pokemon.activeTurns > 1) { + this.add('-message', '(Mat Block only works your first turn out.)'); + return false; + } }, effect: { duration: 1, @@ -7954,8 +8029,8 @@ exports.BattleMovedex = { }, "meteormash": { num: 309, - accuracy: 85, - basePower: 100, + accuracy: 90, + basePower: 90, category: "Physical", desc: "Deals damage to one adjacent target with a 20% chance to raise the user's Attack by 1 stage. Makes contact. Damage is boosted to 1.2x by the Ability Iron Fist.", shortDesc: "20% chance to boost the user's Attack by 1.", @@ -8250,6 +8325,7 @@ exports.BattleMovedex = { name: "Mist Ball", pp: 5, priority: 0, + isBullet: true, secondary: { chance: 50, boosts: { @@ -8265,22 +8341,15 @@ exports.BattleMovedex = { accuracy: true, basePower: 0, category: "Status", - desc: "For 5 turns, Pokemon cannot have major status problems or confusion inflicted on them by other Pokemon.", - shortDesc: "Protects grounded pokemon from status for 5 turns.", + desc: "For five turns, Grounded Pokemon cannot have major status problems or confusion inflicted on them by other Pokemon. Their Dragon-type moves are weakened by 50%.", + shortDesc: "If on ground, prevents status + Dragon moves weaker.", id: "mistyterrain", name: "Misty Terrain", pp: 10, priority: 0, - isSnatchable: true, - pseudoWeather: 'mistyterrain', + terrain: 'mistyterrain', effect: { duration: 5, - durationCallback: function(target, source, effect) { - if (source && source.ability === 'persistent') { - return 7; - } - return 5; - }, onSetStatus: function(status, target, source, effect) { if (!target.runImmunity('Ground')) return; if (source && source !== target || (effect && effect.id === 'toxicspikes')) { @@ -8298,10 +8367,16 @@ exports.BattleMovedex = { onTryHit: function(target, source, move) { if (!target.runImmunity('Ground')) return; if (move && move.id === 'yawn') { - this.debug('blocking yawn'); + this.debug('misty terrain blocking yawn'); return false; } }, + onBasePower: function(basePower, attacker, defender, move) { + if (move.type === 'Dragon' && !attacker.runImmunity('Ground')) { + this.debug('misty terrain weaken'); + return this.chainModify(0.5); + } + }, onStart: function(side) { this.add('-fieldstart', 'Misty Terrain'); }, @@ -8412,6 +8487,7 @@ exports.BattleMovedex = { name: "Mud Bomb", pp: 10, priority: 0, + isBullet: true, secondary: { chance: 30, boosts: { @@ -8495,16 +8571,16 @@ exports.BattleMovedex = { num: -6, gen: 6, accuracy: 100, - basePower: 80, + basePower: 65, category: "Special", - desc: "Deals damage to one adjacent target with a 30% chance to lower its Special Attack by 1 stage.", - shortDesc: "30% chance to lower the target's Sp. Atk by 1.", + desc: "Deals damage to one adjacent target and lowers its Special Attack by 1 stage.", + shortDesc: "Lowers the target's Special Attack by 1.", id: "mysticalfire", name: "Mystical Fire", pp: 10, priority: 0, secondary: { - chance: 30, + chance: 100, boosts: { spa: -1 } @@ -8577,15 +8653,20 @@ exports.BattleMovedex = { accuracy: true, basePower: 0, category: "Status", - desc: "This move calls another move for use depending on the battle terrain. Tri Attack in Wi-Fi battles.", - shortDesc: "Attack changes based on terrain. (Tri Attack)", + desc: "This move calls another move for use depending on the battle terrain: Thunderbolt in Electric Terrain, Energy Ball in Grassy Terrain, Moonblast in Misty Terrain, and Tri Attack in plain terrain.", + shortDesc: "Attack depends on terrain (default Tri Attack).", id: "naturepower", isViable: true, name: "Nature Power", pp: 20, priority: 0, onHit: function(target) { - this.useMove('triattack', target); + var moveToUse = 'triattack'; + if (this.isTerrain('electricterrain')) moveToUse = 'thunderbolt'; + else if (this.isTerrain('grassyterrain')) moveToUse = 'energyball'; + else if (this.isTerrain('mistyterrain')) moveToUse = 'moonblast'; + + this.useMove(moveToUse, target); }, secondary: false, target: "self", @@ -8767,6 +8848,7 @@ exports.BattleMovedex = { name: "Octazooka", pp: 10, priority: 0, + isBullet: true, secondary: { chance: 50, boosts: { @@ -9038,15 +9120,14 @@ exports.BattleMovedex = { accuracy: 100, basePower: 90, category: "Physical", - desc: "Hits all Pokemon.", - shortDesc: "Hits all Pokemon.", + desc: "Hits all adjacent Pokemon.", + shortDesc: "Hits all adjacent Pokemon.", id: "petalblizzard", name: "Petal Blizzard", pp: 15, priority: 0, - secondary: { - }, - target: "all", + secondary: false, + target: "allAdjacent", type: "Grass" }, "petaldance": { @@ -9174,6 +9255,7 @@ exports.BattleMovedex = { name: "Play Rough", pp: 10, priority: 0, + isContact: true, secondary: { chance: 30, boosts: { @@ -9270,10 +9352,13 @@ exports.BattleMovedex = { desc: "Poisons one adjacent target. Pokemon protected by Magic Coat or the Ability Magic Bounce are unaffected and instead use this move themselves.", shortDesc: "Poisons the target.", id: "poisonpowder", - name: "PoisonPowder", + name: "Poison Powder", pp: 35, priority: 0, isPowder: true, + onTryHit: function(pokemon) { + if (pokemon.hasType('Grass')) return false; + }, status: 'psn', secondary: false, target: "normal", @@ -9338,13 +9423,16 @@ exports.BattleMovedex = { accuracy: 100, basePower: 0, category: "Status", - desc: "Covers the target in powder that explodes if the target uses a Fire-type move.", - shortDesc: "Foe takes damage when using Fire moves.", + desc: "Covers the target in powder that explodes if the target uses a Fire-type move. +1 Priority.", + shortDesc: "Foe takes damage when using Fire moves. +1 Priority.", id: "powder", name: "Powder", pp: 20, - priority: 0, + priority: 1, isPowder: true, + onTryHit: function(pokemon) { + if (pokemon.hasType('Grass')) return false; + }, isBounceable: true, volatileStatus: 'powder', effect: { @@ -9497,6 +9585,7 @@ exports.BattleMovedex = { name: "Power-Up Punch", pp: 30, priority: 0, + isContact: true, secondary: { chance: 100, self: { @@ -10004,9 +10093,18 @@ exports.BattleMovedex = { id: "ragepowder", name: "Rage Powder", pp: 20, - priority: 3, + priority: 2, isPowder: true, - volatileStatus: 'followme', + volatileStatus: 'ragepowder', + effect: { + duration: 1, + onFoeRedirectTarget: function(target, source, source2, move) { + if (!source.hasType('Grass') && this.validTarget(this.effectData.target, source, move.target)) { + this.debug("Rage Powder redirected target of move"); + return this.effectData.target; + } + } + }, secondary: false, target: "self", type: "Bug" @@ -10420,7 +10518,7 @@ exports.BattleMovedex = { }, "roar": { num: 46, - accuracy: 100, + accuracy: true, basePower: 0, category: "Status", desc: "Causes one adjacent target to be forced to switch out and be replaced with a random unfainted ally. Fails if the target used Ingrain previously or has the Ability Suction Cups. Pokemon with the Ability Soundproof are immune. Pokemon protected by Magic Coat or the Ability Magic Bounce are unaffected and instead use this move themselves. Ignores a target's Substitute. Priority -6. (Wild battles: The battle ends as long as it is not a double battle and the user's level is not less than the opponent's level.)", @@ -10431,6 +10529,7 @@ exports.BattleMovedex = { pp: 20, priority: -6, isSoundBased: true, + isNotProtectable: true, forceSwitch: true, secondary: false, target: "normal", @@ -10764,9 +10863,18 @@ exports.BattleMovedex = { name: "Rototiller", pp: 10, priority: 0, - //todo + onHitField: function(target, source) { + for (var i=0; i= 0) return true; }).length; // } -exports.BattleSearchIndex = [ +exports.BattleSearchIndex = ["abomasite", "abomasnow", +"abomasnowmega", "abra", "absol", +"absolite", +"absolmega", "absorb", "absorbbulb", "accelgor", @@ -64,12 +67,19 @@ exports.BattleSearchIndex = [ "acupressure", "adamantorb", "adaptability", +"aegislash", +"aegislashblade", "aerialace", +"aerilate", "aeroblast", "aerodactyl", +"aerodactylite", +"aerodactylmega", "aftermath", "afteryou", "aggron", +"aggronite", +"aggronmega", "agility", "aguavberry", "aipom", @@ -78,13 +88,18 @@ exports.BattleSearchIndex = [ "airlock", "airslash", "alakazam", +"alakazammega", +"alakazite", "allyswitch", "alomomola", "altaria", +"amaura", "ambipom", "amnesia", "amoonguss", "ampharos", +"ampharosite", +"ampharosmega", "analytic", "ancientpower", "angerpoint", @@ -101,6 +116,7 @@ exports.BattleSearchIndex = [ "arceusdark", "arceusdragon", "arceuselectric", +"arceusfairy", "arceusfighting", "arceusfire", "arceusflying", @@ -112,7 +128,6 @@ exports.BattleSearchIndex = [ "arceuspsychic", "arceusrock", "arceussteel", -"arceusunknown", "arceuswater", "archen", "archeops", @@ -123,29 +138,39 @@ exports.BattleSearchIndex = [ "armorfossil", "armthrust", "aromatherapy", +"aromaticmist", +"aromatisse", "aron", "articuno", "aspearberry", +"assaultvest", "assist", "assurance", "astonish", "attackorder", "attract", "audino", +"aurabreak", "aurasphere", "aurorabeam", +"aurorus", "aurumoth", "autotomize", "avalanche", +"avalugg", "axew", "azelf", "azumarill", "azurill", "babiriberry", +"babydolleyes", "baddreams", "bagon", "baltoy", "banette", +"banettemega", +"banettite", +"barbaracle", "barboach", "barrage", "barrier", @@ -160,11 +185,13 @@ exports.BattleSearchIndex = [ "beautifly", "beedrill", "beheeyem", +"belch", "beldum", "bellossom", "bellsprout", "bellydrum", "belueberry", +"bergmite", "berryjuice", "bestow", "bibarel", @@ -172,6 +199,7 @@ exports.BattleSearchIndex = [ "bidoof", "bigpecks", "bigroot", +"binacle", "bind", "bindingband", "bisharp", @@ -181,9 +209,13 @@ exports.BattleSearchIndex = [ "blacksludge", "blastburn", "blastoise", +"blastoisemega", +"blastoisinite", "blaze", "blazekick", "blaziken", +"blazikenite", +"blazikenmega", "blissey", "blitzle", "blizzard", @@ -197,8 +229,10 @@ exports.BattleSearchIndex = [ "bonemerang", "bonerush", "bonsly", +"boomburst", "bouffalant", "bounce", +"braixen", "bravebird", "braviary", "breloom", @@ -221,6 +255,7 @@ exports.BattleSearchIndex = [ "bulletpunch", "bulletseed", "buneary", +"bunnelby", "burmy", "burndrive", "butterfree", @@ -230,6 +265,7 @@ exports.BattleSearchIndex = [ "camerupt", "camouflage", "captivate", +"carbink", "carnivine", "carracosta", "carvanha", @@ -247,17 +283,24 @@ exports.BattleSearchIndex = [ "charge", "chargebeam", "charizard", +"charizarditex", +"charizarditey", +"charizardmegax", +"charizardmegay", "charm", "charmander", "charmeleon", "chartiberry", "chatot", "chatter", +"cheekpouch", "cheriberry", "cherishball", "cherrim", "cherrimsunshine", "cherubi", +"chesnaught", +"chespin", "chestoberry", "chikorita", "chilanberry", @@ -276,7 +319,9 @@ exports.BattleSearchIndex = [ "circlethrow", "clamp", "clamperl", +"clauncher", "clawfossil", +"clawitzer", "claydol", "clearbody", "clearsmog", @@ -296,7 +341,9 @@ exports.BattleSearchIndex = [ "combee", "combusken", "cometpunch", +"competitive", "compoundeyes", +"confide", "confuseray", "confusion", "conkeldurr", @@ -317,6 +364,7 @@ exports.BattleSearchIndex = [ "covet", "crabhammer", "cradily", +"craftyshield", "cranidos", "crawdaunt", "cresselia", @@ -342,6 +390,7 @@ exports.BattleSearchIndex = [ "damp", "damprock", "dark", +"darkaura", "darkgem", "darkpulse", "darkrai", @@ -349,6 +398,8 @@ exports.BattleSearchIndex = [ "darmanitan", "darmanitanzen", "darumaka", +"dazzlinggleam", +"dedenne", "deepseascale", "deepseatooth", "deerling", @@ -360,6 +411,7 @@ exports.BattleSearchIndex = [ "deino", "delcatty", "delibird", +"delphox", "deoxys", "deoxysattack", "deoxysdefense", @@ -371,8 +423,10 @@ exports.BattleSearchIndex = [ "dewott", "dialga", "dig", +"diggersby", "diglett", "disable", +"disarmingvoice", "discharge", "ditto", "dive", @@ -383,6 +437,7 @@ exports.BattleSearchIndex = [ "domefossil", "donphan", "doomdesire", +"doublade", "doubleedge", "doublehit", "doublekick", @@ -392,6 +447,7 @@ exports.BattleSearchIndex = [ "download", "dracometeor", "dracoplate", +"dragalge", "dragon", "dragonair", "dragonbreath", @@ -404,6 +460,7 @@ exports.BattleSearchIndex = [ "dragonrage", "dragonrush", "dragontail", +"drainingkiss", "drainpunch", "drapion", "dratini", @@ -441,6 +498,7 @@ exports.BattleSearchIndex = [ "echoedvoice", "eelektrik", "eelektross", +"eerieimpulse", "eevee", "effectspore", "eggbomb", @@ -451,6 +509,8 @@ exports.BattleSearchIndex = [ "electivire", "electric", "electricgem", +"electricterrain", +"electrify", "electrike", "electroball", "electrode", @@ -473,6 +533,7 @@ exports.BattleSearchIndex = [ "eruption", "escavalier", "espeon", +"espurr", "eviolite", "excadrill", "exeggcute", @@ -483,7 +544,10 @@ exports.BattleSearchIndex = [ "extrasensory", "extremespeed", "facade", -"faintattack", +"fairy", +"fairyaura", +"fairylock", +"fairywind", "fakeout", "faketears", "falseswipe", @@ -493,6 +557,9 @@ exports.BattleSearchIndex = [ "featherdance", "feebas", "feint", +"feintattack", +"fellstinger", +"fennekin", "feraligatr", "ferroseed", "ferrothorn", @@ -514,6 +581,7 @@ exports.BattleSearchIndex = [ "fissure", "fistplate", "flaaffy", +"flabebe", "flail", "flamebody", "flameburst", @@ -529,14 +597,21 @@ exports.BattleSearchIndex = [ "flashcannon", "flashfire", "flatter", +"fletchinder", +"fletchling", "fling", "floatstone", "floatzel", +"floette", +"florges", "flowergift", +"flowershield", +"flowerveil", "fly", "flygon", "flying", "flyinggem", +"flyingpress", "focusband", "focusblast", "focusenergy", @@ -547,19 +622,25 @@ exports.BattleSearchIndex = [ "forcepalm", "forecast", "foresight", +"forestscurse", "forewarn", "forretress", "foulplay", "fraxure", +"freezedry", "freezeshock", "frenzyplant", "friendguard", "frillish", "frisk", +"froakie", +"frogadier", "froslass", "frostbreath", "frustration", "fullincense", +"furcoat", +"furfrou", "furret", "furyattack", "furycutter", @@ -568,12 +649,17 @@ exports.BattleSearchIndex = [ "fusionflare", "futuresight", "gabite", +"galewings", "gallade", "galvantula", "ganlonberry", "garbodor", "garchomp", +"garchompite", +"garchompmega", "gardevoir", +"gardevoirite", +"gardevoirmega", "gastly", "gastroacid", "gastrodon", @@ -584,7 +670,10 @@ exports.BattleSearchIndex = [ "genesectdouse", "genesectshock", "gengar", +"gengarite", +"gengarmega", "geodude", +"geomancy", "ghost", "ghostgem", "gible", @@ -602,26 +691,38 @@ exports.BattleSearchIndex = [ "gligar", "gliscor", "gloom", +"glowpunch", "gluttony", +"gogoat", "golbat", "goldeen", "golduck", "golem", "golett", "golurk", +"goodra", +"gooey", +"goomy", "gorebyss", "gothita", "gothitelle", "gothorita", +"gourgeist", +"gourgeistlarge", +"gourgeistsmall", +"gourgeistsuper", "granbull", "grass", "grassgem", "grassknot", +"grasspelt", "grasspledge", "grasswhistle", +"grassyterrain", "graveler", "gravity", "greatball", +"greninja", "grepaberry", "grimer", "gripclaw", @@ -645,6 +746,8 @@ exports.BattleSearchIndex = [ "gust", "guts", "gyarados", +"gyaradosite", +"gyaradosmega", "gyroball", "habanberry", "hail", @@ -655,6 +758,7 @@ exports.BattleSearchIndex = [ "hariyama", "harvest", "haunter", +"hawlucha", "haxorus", "haze", "headbutt", @@ -678,9 +782,13 @@ exports.BattleSearchIndex = [ "heavyball", "heavymetal", "heavyslam", +"heliolisk", +"helioptile", "helixfossil", "helpinghand", +"heracronite", "heracross", +"heracrossmega", "herdier", "hex", "hiddenpower", @@ -700,7 +808,7 @@ exports.BattleSearchIndex = [ "hiddenpowerrock", "hiddenpowersteel", "hiddenpowerwater", -"hijumpkick", +"highjumpkick", "hippopotas", "hippowdon", "hitmonchan", @@ -709,6 +817,7 @@ exports.BattleSearchIndex = [ "honchkrow", "hondewberry", "honeclaws", +"honedge", "honeygather", "hooh", "hoothoot", @@ -718,6 +827,8 @@ exports.BattleSearchIndex = [ "hornleech", "horsea", "houndoom", +"houndoominite", +"houndoommega", "houndour", "howl", "hugepower", @@ -759,12 +870,15 @@ exports.BattleSearchIndex = [ "incinerate", "infernape", "inferno", +"infestation", "infiltrator", "ingrain", +"inkay", "innerfocus", "insectplate", "insomnia", "intimidate", +"iondeluge", "ironball", "ironbarbs", "irondefense", @@ -789,11 +903,14 @@ exports.BattleSearchIndex = [ "kadabra", "kakuna", "kangaskhan", +"kangaskhanite", +"kangaskhanmega", "karatechop", "karrablast", "kasibberry", "kebiaberry", "kecleon", +"keeberry", "keeneye", "keldeo", "keldeoresolute", @@ -802,9 +919,11 @@ exports.BattleSearchIndex = [ "kingdra", "kingler", "kingsrock", +"kingsshield", "kirlia", "kitsunoh", "klang", +"klefki", "klink", "klinklang", "klutz", @@ -825,6 +944,7 @@ exports.BattleSearchIndex = [ "lampent", "landorus", "landorustherian", +"landswrath", "lansatberry", "lanturn", "lapras", @@ -867,6 +987,7 @@ exports.BattleSearchIndex = [ "limber", "linoone", "liquidooze", +"litleo", "litwick", "lockon", "lombre", @@ -878,12 +999,15 @@ exports.BattleSearchIndex = [ "lowkick", "lowsweep", "lucario", +"lucariomega", +"lucarionite", "luckychant", "luckypunch", "ludicolo", "lugia", "lumberry", "lumineon", +"luminousmoss", "lunardance", "lunatone", "lureball", @@ -914,6 +1038,8 @@ exports.BattleSearchIndex = [ "magnemite", "magnet", "magnetbomb", +"magneticfield", +"magneticflux", "magneton", "magnetpull", "magnetrise", @@ -921,15 +1047,21 @@ exports.BattleSearchIndex = [ "magnitude", "magoberry", "magostberry", +"mail", "makuhita", +"malaconda", +"malamar", "mamoswine", "manaphy", "mandibuzz", +"manectite", "manectric", +"manectricmega", "mankey", "mantine", "mantyke", "maractus", +"marangaberry", "mareep", "marill", "marowak", @@ -937,22 +1069,30 @@ exports.BattleSearchIndex = [ "marvelscale", "masquerain", "masterball", +"matblock", "mawile", +"mawilemega", +"mawilite", "meadowplate", "meanlook", "medicham", +"medichamite", +"medichammega", "meditate", "meditite", "mefirst", "megadrain", "megahorn", "megakick", +"megalauncher", "meganium", "megapunch", "meloetta", "meloettapirouette", "memento", "mentalherb", +"meowstic", +"meowsticf", "meowth", "mesprit", "metagross", @@ -968,6 +1108,10 @@ exports.BattleSearchIndex = [ "metronome", "mew", "mewtwo", +"mewtwomegax", +"mewtwomegay", +"mewtwonitex", +"mewtwonitey", "micleberry", "mienfoo", "mienshao", @@ -993,12 +1137,14 @@ exports.BattleSearchIndex = [ "missingno", "mist", "mistball", +"mistyterrain", "moldbreaker", "mollux", "moltres", "monferno", "moody", "moonball", +"moonblast", "moonlight", "morningsun", "mothim", @@ -1021,6 +1167,7 @@ exports.BattleSearchIndex = [ "murkrow", "muscleband", "musharna", +"mysticalfire", "mysticwater", "nanabberry", "nastyplot", @@ -1046,8 +1193,11 @@ exports.BattleSearchIndex = [ "nincada", "ninetales", "ninjask", +"nobleroar", "noctowl", "noguard", +"noibat", +"noivern", "nomelberry", "normal", "normalgem", @@ -1055,6 +1205,8 @@ exports.BattleSearchIndex = [ "nosepass", "numel", "nuzleaf", +"nuzzle", +"oblivionwing", "oblivious", "occaberry", "octazooka", @@ -1080,12 +1232,17 @@ exports.BattleSearchIndex = [ "palkia", "palpitoad", "pamtreberry", +"pancham", +"pangoro", "panpour", "pansage", "pansear", +"paraboliccharge", "paras", "parasect", +"parentalbond", "parkball", +"partingshot", "passhoberry", "patrat", "pawniard", @@ -1099,10 +1256,13 @@ exports.BattleSearchIndex = [ "persian", "persimberry", "persistent", +"petalblizzard", "petaldance", "petayaberry", "petilil", "phanpy", +"phantomforce", +"phantump", "phione", "physical", "pichu", @@ -1120,7 +1280,14 @@ exports.BattleSearchIndex = [ "pineco", "pinmissile", "pinsir", +"pinsirite", +"pinsirmega", "piplup", +"pixieplate", +"pixilate", +"playaround", +"playnice", +"playrough", "pluck", "plumefossil", "plus", @@ -1149,12 +1316,14 @@ exports.BattleSearchIndex = [ "porygon2", "porygonz", "pound", +"powder", "powdersnow", "powergem", "powerherb", "powersplit", "powerswap", "powertrick", +"poweruppunch", "powerwhip", "prankster", "premierball", @@ -1163,6 +1332,7 @@ exports.BattleSearchIndex = [ "primeape", "prinplup", "probopass", +"protean", "protect", "psybeam", "psychic", @@ -1176,6 +1346,10 @@ exports.BattleSearchIndex = [ "psyshock", "psystrike", "psywave", +"pumpkaboo", +"pumpkaboolarge", +"pumpkaboosmall", +"pumpkaboosuper", "punishment", "pupitar", "purepower", @@ -1183,6 +1357,7 @@ exports.BattleSearchIndex = [ "pursuit", "purugly", "pyroak", +"pyroar", "quagsire", "qualotberry", "quash", @@ -1193,6 +1368,7 @@ exports.BattleSearchIndex = [ "quickguard", "quickpowder", "quilava", +"quilladin", "quiverdance", "qwilfish", "rabutaberry", @@ -1226,6 +1402,7 @@ exports.BattleSearchIndex = [ "reflect", "reflecttype", "refresh", +"refrigerate", "regenerator", "regice", "regigigas", @@ -1273,6 +1450,7 @@ exports.BattleSearchIndex = [ "rootfossil", "roseincense", "roselia", +"roseliberry", "roserade", "rotom", "rotomfan", @@ -1280,6 +1458,7 @@ exports.BattleSearchIndex = [ "rotomheat", "rotommow", "rotomwash", +"rototiller", "roughskin", "round", "rowapberry", @@ -1290,6 +1469,7 @@ exports.BattleSearchIndex = [ "sacredsword", "safariball", "safeguard", +"safetygoggles", "salacberry", "salamence", "samurott", @@ -1308,8 +1488,11 @@ exports.BattleSearchIndex = [ "sawsbuck", "scald", "scaryface", +"scatterbug", "sceptile", "scizor", +"scizorite", +"scizormega", "scolipede", "scopelens", "scrafty", @@ -1388,11 +1571,13 @@ exports.BattleSearchIndex = [ "sitrusberry", "skarmory", "sketch", +"skiddo", "skilllink", "skillswap", "skiploom", "skitty", "skorupi", +"skrelp", "skullbash", "skullfossil", "skuntank", @@ -1407,6 +1592,7 @@ exports.BattleSearchIndex = [ "slash", "sleeppowder", "sleeptalk", +"sliggoo", "slowbro", "slowking", "slowpoke", @@ -1415,6 +1601,7 @@ exports.BattleSearchIndex = [ "sludgebomb", "sludgewave", "slugma", +"slurpuff", "smackdown", "smeargle", "smellingsalt", @@ -1431,6 +1618,7 @@ exports.BattleSearchIndex = [ "snorlax", "snorunt", "snover", +"snowball", "snowcloak", "snowwarning", "snubbull", @@ -1452,10 +1640,12 @@ exports.BattleSearchIndex = [ "speedboost", "spelltag", "spelonberry", +"spewpa", "spheal", "spiderweb", "spikecannon", "spikes", +"spikyshield", "spinarak", "spinda", "spiritomb", @@ -1467,8 +1657,10 @@ exports.BattleSearchIndex = [ "spookyplate", "spore", "sportball", +"spritzee", "squirtle", "stall", +"stancechange", "stantler", "staraptor", "staravia", @@ -1489,6 +1681,7 @@ exports.BattleSearchIndex = [ "stick", "stickybarb", "stickyhold", +"stickyweb", "stockpile", "stomp", "stoneedge", @@ -1500,6 +1693,7 @@ exports.BattleSearchIndex = [ "stratagem", "strength", "stringshot", +"strongjaw", "struggle", "strugglebug", "stunfisk", @@ -1531,14 +1725,17 @@ exports.BattleSearchIndex = [ "swarm", "sweetkiss", "sweetscent", +"sweetveil", "swellow", "swift", "swiftswim", "swinub", +"swirlix", "switcheroo", "swoobat", "swordsdance", "syclant", +"sylveon", "synchronize", "synchronoise", "synthesis", @@ -1549,6 +1746,7 @@ exports.BattleSearchIndex = [ "tailwhip", "tailwind", "takedown", +"talonflame", "tamatoberry", "tangaberry", "tangela", @@ -1590,6 +1788,7 @@ exports.BattleSearchIndex = [ "togepi", "togetic", "tomohawk", +"topsyturvy", "torchic", "torkoal", "torment", @@ -1598,6 +1797,7 @@ exports.BattleSearchIndex = [ "torrent", "torterra", "totodile", +"toughclaws", "toxic", "toxicboost", "toxicorb", @@ -1609,8 +1809,10 @@ exports.BattleSearchIndex = [ "transform", "trapinch", "treecko", +"trevenant", "triattack", "trick", +"trickortreat", "trickroom", "triplekick", "tropius", @@ -1626,7 +1828,11 @@ exports.BattleSearchIndex = [ "tynamo", "typhlosion", "tyranitar", +"tyranitarite", +"tyranitarmega", +"tyrantrum", "tyrogue", +"tyrunt", "ultraball", "umbreon", "unaware", @@ -1645,10 +1851,13 @@ exports.BattleSearchIndex = [ "vaporeon", "vcreate", "venipede", +"venomdrench", "venomoth", "venonat", "venoshock", "venusaur", +"venusaurite", +"venusaurmega", "vespiquen", "vibrava", "vicegrip", @@ -1661,6 +1870,7 @@ exports.BattleSearchIndex = [ "virizion", "vitalspirit", "vitalthrow", +"vivillon", "volbeat", "volcarona", "voltabsorb", @@ -1684,12 +1894,14 @@ exports.BattleSearchIndex = [ "watergun", "waterpledge", "waterpulse", +"watershuriken", "watersport", "waterspout", "waterveil", "watmelberry", "waveincense", "weakarmor", +"weaknesspolicy", "weatherball", "weavile", "weedle", @@ -1732,12 +1944,14 @@ exports.BattleSearchIndex = [ "wurmple", "wynaut", "xatu", +"xerneas", "xscissor", "yacheberry", "yamask", "yanma", "yanmega", "yawn", +"yveltal", "zangoose", "zapcannon", "zapdos", @@ -1751,13 +1965,16 @@ exports.BattleSearchIndex = [ "zoroark", "zorua", "zubat", -"zweilous" -]; +"zweilous", +"zygarde"]; -exports.BattleSearchIndexType = [ +exports.BattleSearchIndexType = ["item", "pokemon", "pokemon", "pokemon", +"pokemon", +"item", +"pokemon", "move", "item", "pokemon", @@ -1768,12 +1985,19 @@ exports.BattleSearchIndexType = [ "move", "item", "ability", +"pokemon", +"pokemon", "move", +"ability", "move", "pokemon", +"item", +"pokemon", "ability", "move", "pokemon", +"item", +"pokemon", "move", "item", "pokemon", @@ -1782,13 +2006,18 @@ exports.BattleSearchIndexType = [ "ability", "move", "pokemon", +"pokemon", +"item", "move", "pokemon", "pokemon", "pokemon", +"pokemon", "move", "pokemon", "pokemon", +"item", +"pokemon", "ability", "move", "ability", @@ -1827,8 +2056,11 @@ exports.BattleSearchIndexType = [ "item", "move", "move", +"move", "pokemon", "pokemon", +"pokemon", +"item", "item", "move", "move", @@ -1836,21 +2068,28 @@ exports.BattleSearchIndexType = [ "move", "move", "pokemon", +"ability", "move", "move", "pokemon", +"pokemon", "move", "move", "pokemon", "pokemon", "pokemon", "pokemon", +"pokemon", "item", +"move", "ability", "pokemon", "pokemon", "pokemon", "pokemon", +"item", +"pokemon", +"pokemon", "move", "move", "pokemon", @@ -1864,11 +2103,13 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"move", "pokemon", "pokemon", "pokemon", "move", "item", +"pokemon", "item", "move", "pokemon", @@ -1876,6 +2117,7 @@ exports.BattleSearchIndexType = [ "pokemon", "ability", "item", +"pokemon", "move", "item", "pokemon", @@ -1885,9 +2127,13 @@ exports.BattleSearchIndexType = [ "item", "move", "pokemon", +"pokemon", +"item", "ability", "move", "pokemon", +"item", +"pokemon", "pokemon", "pokemon", "move", @@ -1901,8 +2147,10 @@ exports.BattleSearchIndexType = [ "move", "move", "pokemon", +"move", "pokemon", "move", +"pokemon", "move", "pokemon", "pokemon", @@ -1926,6 +2174,7 @@ exports.BattleSearchIndexType = [ "move", "pokemon", "pokemon", +"pokemon", "item", "pokemon", "pokemon", @@ -1944,6 +2193,7 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"pokemon", "item", "pokemon", "pokemon", @@ -1951,17 +2201,24 @@ exports.BattleSearchIndexType = [ "move", "move", "pokemon", +"item", +"item", +"pokemon", +"pokemon", "move", "pokemon", "pokemon", "item", "pokemon", "move", +"ability", "item", "item", "pokemon", "pokemon", "pokemon", +"pokemon", +"pokemon", "item", "pokemon", "item", @@ -1980,8 +2237,10 @@ exports.BattleSearchIndexType = [ "move", "move", "pokemon", +"pokemon", "item", "pokemon", +"pokemon", "ability", "move", "pokemon", @@ -2001,6 +2260,8 @@ exports.BattleSearchIndexType = [ "pokemon", "move", "ability", +"ability", +"move", "move", "move", "pokemon", @@ -2021,6 +2282,7 @@ exports.BattleSearchIndexType = [ "move", "move", "pokemon", +"move", "pokemon", "pokemon", "pokemon", @@ -2046,6 +2308,7 @@ exports.BattleSearchIndexType = [ "ability", "item", "type", +"ability", "item", "move", "pokemon", @@ -2053,6 +2316,8 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"move", +"pokemon", "item", "item", "pokemon", @@ -2068,6 +2333,7 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"pokemon", "move", "item", "move", @@ -2076,6 +2342,8 @@ exports.BattleSearchIndexType = [ "pokemon", "move", "pokemon", +"pokemon", +"move", "move", "move", "pokemon", @@ -2087,6 +2355,7 @@ exports.BattleSearchIndexType = [ "item", "pokemon", "move", +"pokemon", "move", "move", "move", @@ -2096,6 +2365,7 @@ exports.BattleSearchIndexType = [ "ability", "move", "item", +"pokemon", "type", "pokemon", "move", @@ -2109,6 +2379,7 @@ exports.BattleSearchIndexType = [ "move", "move", "move", +"move", "pokemon", "pokemon", "item", @@ -2145,6 +2416,7 @@ exports.BattleSearchIndexType = [ "move", "pokemon", "pokemon", +"move", "pokemon", "ability", "move", @@ -2155,6 +2427,8 @@ exports.BattleSearchIndexType = [ "pokemon", "type", "item", +"move", +"move", "pokemon", "move", "pokemon", @@ -2177,6 +2451,7 @@ exports.BattleSearchIndexType = [ "move", "pokemon", "pokemon", +"pokemon", "item", "pokemon", "pokemon", @@ -2187,6 +2462,9 @@ exports.BattleSearchIndexType = [ "move", "move", "move", +"type", +"ability", +"move", "move", "move", "move", @@ -2197,6 +2475,9 @@ exports.BattleSearchIndexType = [ "move", "pokemon", "move", +"move", +"move", +"pokemon", "pokemon", "pokemon", "pokemon", @@ -2218,6 +2499,7 @@ exports.BattleSearchIndexType = [ "move", "item", "pokemon", +"pokemon", "move", "ability", "move", @@ -2233,14 +2515,21 @@ exports.BattleSearchIndexType = [ "move", "ability", "move", +"pokemon", +"pokemon", "move", "item", "pokemon", +"pokemon", +"pokemon", +"ability", +"move", "ability", "move", "pokemon", "type", "item", +"move", "item", "move", "move", @@ -2251,19 +2540,25 @@ exports.BattleSearchIndexType = [ "move", "ability", "move", +"move", "ability", "pokemon", "move", "pokemon", "move", "move", +"move", "ability", "pokemon", "ability", "pokemon", +"pokemon", +"pokemon", "move", "move", "item", +"ability", +"pokemon", "pokemon", "move", "move", @@ -2272,23 +2567,31 @@ exports.BattleSearchIndexType = [ "move", "move", "pokemon", +"ability", +"pokemon", +"pokemon", +"item", +"pokemon", +"pokemon", +"item", +"pokemon", +"pokemon", +"item", +"pokemon", +"pokemon", +"move", +"pokemon", +"move", +"pokemon", +"pokemon", +"pokemon", +"pokemon", "pokemon", "pokemon", "item", "pokemon", "pokemon", -"pokemon", -"pokemon", "move", -"pokemon", -"move", -"pokemon", -"pokemon", -"pokemon", -"pokemon", -"pokemon", -"pokemon", -"pokemon", "type", "item", "pokemon", @@ -2306,6 +2609,7 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"move", "ability", "pokemon", "pokemon", @@ -2315,17 +2619,28 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"ability", +"pokemon", +"pokemon", +"pokemon", +"pokemon", +"pokemon", +"pokemon", +"pokemon", "pokemon", "pokemon", "pokemon", "type", "item", "move", +"ability", +"move", "move", "move", "pokemon", "move", "item", +"pokemon", "item", "pokemon", "item", @@ -2349,6 +2664,8 @@ exports.BattleSearchIndexType = [ "move", "ability", "pokemon", +"item", +"pokemon", "move", "item", "move", @@ -2360,6 +2677,7 @@ exports.BattleSearchIndexType = [ "ability", "pokemon", "pokemon", +"pokemon", "move", "move", "move", @@ -2382,8 +2700,12 @@ exports.BattleSearchIndexType = [ "item", "ability", "move", +"pokemon", +"pokemon", "item", "move", +"item", +"pokemon", "pokemon", "pokemon", "move", @@ -2413,6 +2735,7 @@ exports.BattleSearchIndexType = [ "pokemon", "item", "move", +"pokemon", "ability", "pokemon", "pokemon", @@ -2422,6 +2745,8 @@ exports.BattleSearchIndexType = [ "move", "pokemon", "pokemon", +"item", +"pokemon", "pokemon", "move", "ability", @@ -2463,12 +2788,15 @@ exports.BattleSearchIndexType = [ "move", "pokemon", "move", +"move", "ability", "move", +"pokemon", "ability", "item", "ability", "ability", +"move", "item", "ability", "move", @@ -2493,11 +2821,14 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"item", +"pokemon", "move", "pokemon", "item", "item", "pokemon", +"item", "ability", "pokemon", "pokemon", @@ -2506,6 +2837,8 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "item", +"move", +"pokemon", "pokemon", "pokemon", "pokemon", @@ -2529,6 +2862,7 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"move", "item", "pokemon", "pokemon", @@ -2572,6 +2906,7 @@ exports.BattleSearchIndexType = [ "pokemon", "ability", "pokemon", +"pokemon", "move", "pokemon", "pokemon", @@ -2582,12 +2917,15 @@ exports.BattleSearchIndexType = [ "move", "move", "pokemon", +"pokemon", +"item", "move", "item", "pokemon", "pokemon", "item", "pokemon", +"item", "move", "pokemon", "item", @@ -2618,6 +2956,8 @@ exports.BattleSearchIndexType = [ "pokemon", "item", "move", +"move", +"move", "pokemon", "ability", "move", @@ -2625,32 +2965,44 @@ exports.BattleSearchIndexType = [ "move", "item", "item", +"item", "pokemon", "pokemon", "pokemon", "pokemon", "pokemon", "pokemon", +"item", "pokemon", "pokemon", "pokemon", "pokemon", "pokemon", "pokemon", +"item", +"pokemon", +"pokemon", +"pokemon", "pokemon", "ability", "pokemon", "item", +"move", "pokemon", +"pokemon", +"item", "item", "move", "pokemon", +"item", +"pokemon", "move", "pokemon", "move", "move", "move", "move", +"ability", "pokemon", "move", "pokemon", @@ -2660,6 +3012,8 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"pokemon", +"pokemon", "move", "move", "item", @@ -2668,10 +3022,14 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "move", -"move", "item", +"move", "pokemon", "pokemon", +"pokemon", +"pokemon", +"item", +"item", "item", "pokemon", "pokemon", @@ -2697,6 +3055,7 @@ exports.BattleSearchIndexType = [ "pokemon", "move", "move", +"move", "ability", "pokemon", "pokemon", @@ -2705,6 +3064,7 @@ exports.BattleSearchIndexType = [ "item", "move", "move", +"move", "pokemon", "ability", "ability", @@ -2725,6 +3085,7 @@ exports.BattleSearchIndexType = [ "pokemon", "item", "pokemon", +"move", "item", "item", "move", @@ -2750,8 +3111,11 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"move", "pokemon", "ability", +"pokemon", +"pokemon", "item", "type", "item", @@ -2759,6 +3123,8 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"move", +"move", "ability", "item", "move", @@ -2789,7 +3155,12 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"move", +"pokemon", +"pokemon", +"ability", "item", +"move", "item", "pokemon", "pokemon", @@ -2804,9 +3175,12 @@ exports.BattleSearchIndexType = [ "item", "ability", "move", +"move", "item", "pokemon", "pokemon", +"move", +"pokemon", "pokemon", "category", "pokemon", @@ -2824,7 +3198,14 @@ exports.BattleSearchIndexType = [ "pokemon", "move", "pokemon", +"item", "pokemon", +"pokemon", +"item", +"ability", +"move", +"move", +"move", "move", "item", "ability", @@ -2855,11 +3236,13 @@ exports.BattleSearchIndexType = [ "move", "move", "move", +"move", "item", "move", "move", "move", "move", +"move", "ability", "item", "move", @@ -2867,6 +3250,7 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"ability", "move", "move", "move", @@ -2880,6 +3264,10 @@ exports.BattleSearchIndexType = [ "move", "move", "move", +"pokemon", +"pokemon", +"pokemon", +"pokemon", "move", "pokemon", "ability", @@ -2888,6 +3276,7 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"pokemon", "item", "move", "move", @@ -2897,6 +3286,7 @@ exports.BattleSearchIndexType = [ "move", "item", "pokemon", +"pokemon", "move", "pokemon", "item", @@ -2931,6 +3321,7 @@ exports.BattleSearchIndexType = [ "move", "move", "ability", +"ability", "pokemon", "pokemon", "pokemon", @@ -2977,6 +3368,7 @@ exports.BattleSearchIndexType = [ "item", "item", "pokemon", +"item", "pokemon", "pokemon", "pokemon", @@ -2984,6 +3376,7 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"move", "ability", "move", "item", @@ -2995,6 +3388,7 @@ exports.BattleSearchIndexType = [ "item", "move", "item", +"item", "pokemon", "pokemon", "move", @@ -3018,6 +3412,9 @@ exports.BattleSearchIndexType = [ "item", "pokemon", "pokemon", +"item", +"pokemon", +"pokemon", "ability", "move", "move", @@ -3092,11 +3489,13 @@ exports.BattleSearchIndexType = [ "item", "pokemon", "move", +"pokemon", "ability", "move", "pokemon", "pokemon", "pokemon", +"pokemon", "move", "item", "pokemon", @@ -3114,11 +3513,13 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"pokemon", "ability", "move", "move", "move", "pokemon", +"pokemon", "move", "pokemon", "move", @@ -3135,6 +3536,7 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"item", "ability", "ability", "pokemon", @@ -3157,6 +3559,8 @@ exports.BattleSearchIndexType = [ "item", "item", "pokemon", +"pokemon", +"move", "move", "move", "move", @@ -3172,6 +3576,8 @@ exports.BattleSearchIndexType = [ "move", "item", "pokemon", +"pokemon", +"ability", "ability", "pokemon", "pokemon", @@ -3196,6 +3602,7 @@ exports.BattleSearchIndexType = [ "move", "move", "move", +"move", "item", "move", "ability", @@ -3204,6 +3611,7 @@ exports.BattleSearchIndexType = [ "pokemon", "move", "move", +"ability", "move", "move", "pokemon", @@ -3235,14 +3643,17 @@ exports.BattleSearchIndexType = [ "ability", "move", "move", +"ability", "pokemon", "move", "ability", "pokemon", +"pokemon", "move", "pokemon", "move", "pokemon", +"pokemon", "ability", "move", "move", @@ -3253,6 +3664,7 @@ exports.BattleSearchIndexType = [ "move", "move", "move", +"pokemon", "item", "item", "pokemon", @@ -3294,6 +3706,7 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"move", "pokemon", "pokemon", "move", @@ -3302,6 +3715,7 @@ exports.BattleSearchIndexType = [ "ability", "pokemon", "pokemon", +"ability", "move", "ability", "item", @@ -3313,6 +3727,8 @@ exports.BattleSearchIndexType = [ "move", "pokemon", "pokemon", +"pokemon", +"move", "move", "move", "move", @@ -3330,6 +3746,10 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"item", +"pokemon", +"pokemon", +"pokemon", "pokemon", "item", "pokemon", @@ -3349,10 +3769,13 @@ exports.BattleSearchIndexType = [ "pokemon", "move", "pokemon", +"move", "pokemon", "pokemon", "move", "pokemon", +"item", +"pokemon", "pokemon", "pokemon", "move", @@ -3367,6 +3790,7 @@ exports.BattleSearchIndexType = [ "move", "pokemon", "pokemon", +"pokemon", "ability", "pokemon", "move", @@ -3390,10 +3814,12 @@ exports.BattleSearchIndexType = [ "move", "move", "move", +"move", "ability", "item", "item", "ability", +"item", "move", "pokemon", "pokemon", @@ -3436,6 +3862,7 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", +"pokemon", "move", "item", "pokemon", @@ -3443,6 +3870,7 @@ exports.BattleSearchIndexType = [ "pokemon", "move", "pokemon", +"pokemon", "move", "pokemon", "item", @@ -3455,1711 +3883,9 @@ exports.BattleSearchIndexType = [ "pokemon", "pokemon", "pokemon", -"pokemon" -]; +"pokemon", +"pokemon"]; -exports.BattleSearchIndexOffset = [ -"", -"", -"", -"", -"0000001111", -"", -"", -"000011111", -"000011111", -"", -"", -"0000000111", -"", -"000000111", -"", -"", -"", -"00000111", -"", -"", -"0000011111", -"", -"0001111111", -"000111111", -"0001111", -"00011111", -"", -"0000111111", -"", -"", -"", -"", -"", -"", -"", -"", -"0000011111", -"", -"", -"00000011111", -"0000111", -"00001111", -"00001111", -"", -"", -"", -"000000111", -"0000001111", -"000000111111", -"00000011111111", -"00000011111111", -"0000001111", -"000000111111", -"00000011111", -"00000011111", -"000000111111", -"000000111", -"000000111111", -"0000001111111", -"0000001111", -"00000011111", -"0000004444444", -"00000011111", -"", -"", -"000001111", -"", -"", -"", -"00000111111", -"000111111", -"", -"", -"", -"00000011111", -"", -"", -"", -"00000011111", -"", -"", -"0000111111", -"0000001111", -"", -"", -"", -"", -"", -"", -"", -"00000011111", -"000111111", -"", -"", -"", -"", -"", -"", -"", -"0000000011112222222", -"", -"000001111", -"00000011111", -"", -"", -"000011", -"", -"", -"", -"", -"", -"", -"000001111", -"0000011111", -"0000011111", -"", -"", -"", -"", -"00011111", -"0001111", -"", -"00000001111", -"", -"", -"000001111", -"", -"00000111111", -"000001111", -"", -"", -"000001111", -"", -"", -"", -"", -"", -"000011111", -"000011111", -"00001111", -"", -"0000111111", -"00001111", -"", -"00001111", -"", -"", -"", -"000001111", -"", -"", -"0000011111", -"", -"", -"", -"", -"", -"", -"", -"", -"0001111", -"0001111", -"000111", -"", -"", -"000011", -"", -"00000011111", -"0000001111", -"", -"", -"000011111", -"", -"", -"", -"00001111", -"", -"", -"", -"", -"", -"", -"", -"", -"0000000011111", -"0000000011111", -"0000000011111", -"", -"", -"00001111111", -"", -"", -"", -"", -"0000001111", -"", -"", -"", -"", -"00000011111", -"", -"", -"0000011111", -"00000001111", -"", -"000000011111111", -"", -"00000011111", -"", -"00000011111", -"0000011111", -"", -"", -"", -"", -"00001111", -"", -"0000001111", -"00000011111", -"00000011111", -"00000011111", -"", -"00000011111", -"", -"", -"0000111111", -"", -"000001111", -"000001111", -"", -"", -"", -"00000111111", -"000001111", -"", -"000011111", -"", -"", -"", -"00000011111", -"00000111111", -"", -"", -"", -"0000011111", -"", -"0000000111", -"", -"", -"", -"", -"", -"00000000001", -"", -"0000011111", -"", -"", -"00000011111", -"", -"00000011111", -"00000011111", -"", -"00000111111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"000001111", -"00000111111", -"", -"000001111", -"000001111", -"", -"", -"", -"", -"", -"0000001111", -"00000011111", -"", -"000011111", -"", -"", -"", -"00001111", -"", -"0000111", -"000011111", -"", -"00001111", -"", -"0000000000111", -"", -"", -"", -"", -"", -"00000011111", -"00000001111", -"", -"", -"", -"", -"", -"", -"000000111111", -"0000001111111", -"00000011111", -"00000001111", -"00000001111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"00001111", -"0000011111", -"", -"", -"0000111111", -"", -"0000111111", -"0000001111", -"000000111", -"0000001111", -"", -"0000001111", -"0000011111", -"", -"00000111111", -"0000011111", -"", -"", -"", -"0000001111", -"00000011111", -"0000001111", -"000000111", -"", -"00000011111", -"0000001111", -"0000001111", -"0000001111", -"0000011111", -"", -"", -"0000011111", -"000001111", -"0000011111", -"", -"", -"", -"000001111", -"00000111", -"", -"", -"", -"", -"0001111", -"00001111", -"", -"", -"", -"", -"", -"0000011111", -"", -"00001111", -"", -"", -"", -"", -"", -"000001111", -"0000011111", -"0000011111", -"", -"00000011111", -"", -"", -"", -"00000011111", -"0001111", -"00000111111", -"", -"", -"", -"", -"", -"00000000111", -"", -"00000001111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"0000001111", -"", -"00000011111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"0000001111", -"", -"", -"", -"", -"", -"00000111111", -"0000111", -"000011111", -"0000011111", -"000000001", -"00001111", -"", -"", -"", -"", -"", -"", -"", -"", -"0000011111", -"", -"00000000111", -"000011111", -"", -"00000111111", -"", -"", -"000011111", -"00001111", -"0000111", -"0000111111", -"000011111", -"00001111", -"", -"000011111", -"", -"", -"000001111", -"0000011111", -"00000111111", -"00000111", -"0000011111", -"", -"0000011111", -"0000011111", -"0000011111", -"", -"", -"00000111111", -"000001111", -"", -"", -"0000011111", -"", -"0000001111", -"", -"", -"", -"000000111", -"000001111", -"0000011111", -"00000111111", -"0000011111", -"000001111", -"00000011", -"", -"000001111", -"", -"", -"", -"", -"00001111", -"", -"00000011111", -"00000011111", -"00000011111", -"", -"", -"", -"00000111111", -"", -"00001111111", -"", -"0000111111", -"0000111111", -"0000111111", -"0000001111", -"00000011111", -"00000011111", -"", -"", -"", -"00000011111", -"", -"", -"", -"", -"0000001111", -"", -"000011111", -"", -"000000001111", -"0000000011111", -"0000000011111", -"0000000011111", -"", -"", -"", -"00000111", -"", -"000011111", -"0000111111", -"", -"", -"", -"00000000111111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"00000111", -"000001111", -"00000111111", -"", -"", -"", -"000001111", -"0000011111", -"", -"00001111", -"00000000111", -"", -"", -"", -"000000111", -"", -"", -"", -"", -"", -"", -"0000011111", -"000001111", -"", -"", -"00001111", -"", -"", -"", -"", -"00001111", -"0000011111", -"", -"000000111", -"", -"", -"000011111", -"", -"", -"", -"", -"", -"", -"0000111111", -"000011111", -"00001111", -"00001111", -"000011111", -"", -"00000001111", -"000011111", -"000011111", -"0000011111", -"000001111", -"000011111", -"", -"", -"", -"00001111", -"00001111", -"000001111", -"0000011111", -"000001111", -"00000111111", -"00000001111", -"", -"", -"", -"00000011111", -"00000011111222", -"000000111112222", -"00000011111222222", -"0000001111122222222", -"0000001111122222222", -"000000111112222", -"00000011111222222", -"0000001111122222", -"0000001111122222", -"00000011111222222", -"00000011111222", -"00000011111222222", -"000000111112222222", -"000000111112222", -"0000001111122222", -"0000001111122222", -"0011112222", -"", -"", -"", -"", -"", -"", -"00000011111", -"000011111", -"00000111111", -"0011", -"", -"", -"0000111111", -"000011111", -"000011111", -"", -"", -"", -"", -"000011111", -"", -"", -"", -"", -"", -"00000111111", -"000001111", -"000001111", -"00000111111", -"000001111", -"0000011111", -"", -"", -"00000011111", -"", -"0001111", -"0001111", -"0001111", -"0001111", -"0001111", -"000111", -"00011111", -"00011111", -"00000011111", -"00000011111", -"00000011111", -"0001111", -"0001111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"0000011111", -"00000011111", -"", -"", -"00001111", -"000011111", -"00001111111", -"00001111", -"00001111", -"000011111", -"00001111", -"", -"00000011111", -"", -"", -"", -"", -"", -"", -"00001111", -"", -"", -"", -"", -"", -"", -"", -"", -"0000001111", -"", -"0000011111", -"0000011111", -"", -"0000111", -"", -"00000011111111", -"00000011111", -"", -"", -"", -"000012222", -"", -"", -"", -"", -"", -"", -"00000111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"00000011111", -"00000011111", -"00000001111", -"", -"", -"", -"000000001111111", -"00000011111", -"", -"", -"", -"", -"0000111111", -"", -"", -"000011111", -"0001111111", -"000011111", -"", -"000011111", -"000011111", -"00001111111", -"", -"", -"", -"000001111", -"000001111", -"", -"", -"0000011111", -"000001111", -"", -"", -"", -"", -"00000011111", -"", -"0000111", -"000001111", -"000001111", -"0000011111", -"", -"00000111111", -"", -"", -"", -"", -"", -"0000001111", -"", -"000011", -"", -"", -"", -"", -"00001111", -"0000001111", -"0001111", -"00011111", -"", -"0000011111", -"0000011111", -"", -"", -"00011111", -"", -"0000011111", -"", -"00001111", -"00000011111", -"00000000111", -"", -"", -"", -"0000001111", -"", -"0000011111", -"", -"", -"000011111", -"", -"", -"00000001111", -"00000111111", -"000001111", -"0000011111", -"000001111", -"", -"0000000012222222", -"0000011111", -"", -"0000011111", -"", -"", -"", -"0000001111", -"", -"0000001111", -"0000001111", -"", -"", -"000011111", -"00000011111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"00000011111", -"", -"0000001111", -"", -"00000011111", -"00001111", -"", -"", -"", -"0011111", -"000011111", -"", -"00001111", -"", -"000011111", -"", -"00000000111111111", -"", -"0000001111", -"", -"", -"", -"0000011111", -"000001111", -"000001111", -"00000111111", -"0000011111", -"", -"", -"0000001111", -"", -"", -"", -"", -"0000011111", -"", -"", -"", -"000011111", -"", -"", -"000011", -"", -"", -"000011111", -"0000111111", -"", -"", -"", -"0000000111", -"00000001111", -"0000001111", -"0000001111", -"0000001111", -"", -"", -"", -"", -"00001111", -"00001111111", -"", -"", -"", -"", -"00001111", -"", -"0000000111", -"", -"0000011111", -"", -"", -"002222", -"0001111", -"0000011111", -"", -"0001111", -"0001111", -"00011111", -"", -"", -"", -"", -"", -"", -"", -"0000001111", -"", -"00000011111", -"0000011111", -"000001111", -"", -"00000001111", -"00000001111", -"00000011111", -"", -"000000111", -"00001111", -"0001111", -"", -"", -"", -"", -"", -"", -"", -"000001111", -"", -"0000011111", -"0000011111", -"", -"", -"", -"", -"0011111", -"0000011111", -"", -"000000111", -"", -"", -"", -"", -"", -"000011111", -"", -"", -"0001111111", -"", -"0000111111", -"00011111", -"", -"", -"00000001111", -"", -"000011111", -"", -"", -"", -"", -"", -"00011111", -"", -"000011111", -"000001111", -"", -"", -"00000011111", -"", -"", -"", -"", -"", -"00001111", -"00000011111", -"", -"", -"00000011111", -"", -"000111", -"0000011111", -"", -"", -"0000001111", -"", -"00000011111", -"", -"0000011111", -"00000011111", -"", -"", -"", -"", -"", -"000001111122222", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"0000011111", -"", -"0001111111", -"", -"", -"", -"00000111111", -"", -"", -"", -"0000001111", -"0000001111", -"000000111", -"000000111", -"0000001111", -"000000111", -"00000011111", -"", -"00000011111", -"0000001111", -"00000011111", -"00001111", -"", -"", -"", -"", -"0000011111", -"", -"", -"", -"", -"00000001", -"", -"0000001111", -"00000111", -"000001111", -"0000011111", -"000001111", -"0000011111", -"000001111", -"", -"00000001111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"0000000111", -"00000011111", -"000000111", -"00000011111", -"0000011", -"", -"", -"", -"", -"", -"", -"000011111", -"", -"", -"", -"", -"", -"00000011111", -"", -"00000111111", -"000001111", -"000001111", -"000001111", -"0000011111", -"00000111111", -"", -"00000011111", -"", -"00000011111", -"", -"0000111111", -"", -"", -"000011111", -"00001111", -"", -"", -"", -"000001111", -"00001111", -"", -"", -"", -"0000011111", -"", -"000001111", -"000001111", -"000001111", -"0000011111", -"000001111", -"000011111", -"", -"", -"", -"", -"0001111", -"", -"00000001111", -"", -"", -"", -"", -"", -"", -"", -"000001111", -"", -"0000001111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"0000011111", -"0000111111", -"", -"", -"", -"0000112222", -"", -"000011111", -"000011111", -"0000111", -"00001111", -"00001111111", -"0000111111", -"000011111", -"000011111", -"000011111", -"00001111", -"00001111111", -"00000111111", -"", -"00001111", -"00000001111", -"", -"", -"0000111111", -"00001111111", -"", -"", -"", -"00000111", -"0000011111", -"000001111", -"00000111", -"000001111", -"000001111", -"", -"0000011111", -"", -"0001111", -"", -"0000001111", -"00000011111", -"0000001111", -"", -"0000011111", -"", -"", -"0000111111", -"000011111", -"", -"00001111", -"", -"", -"", -"0000111111", -"00001111", -"00001111", -"000111111", -"", -"", -"", -"000001111", -"", -"", -"", -"000001111", -"", -"", -"", -"", -"", -"", -"", -"0001111111", -"", -"", -"00000001111", -"00000011111", -"00000011111", -"00001111", -"000011111", -"", -"", -"00000001111", -"", -"", -"", -"00000011111", -"", -"", -"", -"", -"0000001111", -"0000001111", -"00000011111", -"00000011111", -"00000011111", -"", -"000000111", -"000001111", -"", -"", -"", -"0000000111", -"", -"000011111", -"00001111", -"000001111", -"0000011111", -"", -"0000011111", -"000001111", -"", -"", -"0000011111", -"", -"0000001111", -"", -"000001111", -"", -"", -"0000011111", -"000001111", -"", -"0000011111", -"", -"", -"", -"0000001111", -"", -"000011111", -"", -"0000001111", -"", -"", -"", -"", -"0000001111", -"", -"00000011111", -"", -"", -"000001111", -"000001111", -"", -"", -"", -"000001111", -"00000111111", -"", -"000111111", -"0001111", -"00011111", -"00011111111", -"00000111", -"", -"", -"", -"", -"00000111111", -"000001111", -"", -"", -"", -"000011111", -"", -"0000001111", -"0000001111", -"", -"000001111", -"", -"", -"", -"", -"", -"0000001111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"000011111", -"00001111111", -"", -"", -"", -"00001111", -"", -"0000011111", -"000001111", -"", -"", -"", -"0000111", -"", -"00000001111", -"", -"", -"", -"0000011111", -"00000111", -"00000011111", -"", -"000000111", -"00000111111", -"", -"", -"", -"", -"", -"000011", -"", -"00000011111", -"", -"00000011111", -"", -"000001111", -"", -"", -"", -"", -"", -"0000011111", -"", -"", -"", -"", -"", -"", -"00000001111", -"", -"", -"00000111", -"", -"000001111", -"", -"", -"0000001111", -"0000001111", -"", -"", -"000001111", -"0000011111", -"00000011111", -"0000011111", -"0000011111", -"", -"", -"", -"0000001111", -"", -"00000000111", -"", -"", -"000011111", -"", -"", -"", -"00000011111", -"00000001111", -"", -"", -"", -"", -"00000111", -"000001111", -"000001111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"000001111", -"0000011111", -"", -"", -"000001111", -"", -"", -"", -"00000011111", -"", -"", -"", -"", -"", -"00001111", -"", -"00001111", -"00001111", -"", -"00001111", -"00000011111", -"0000011111", -"", -"00000001111", -"", -"", -"", -"", -"00000011111", -"", -"00000011111", -"", -"", -"", -"", -"", -"", -"", -"", -"000001111", -"00000111", -"", -"", -"", -"", -"", -"00000001111", -"", -"", -"00000001111", -"", -"0000000001111111", -"", -"", -"000001111", -"0000001111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"000000001111111", -"", -"", -"", -"", -"0000011111", -"00000111", -"0000011111", -"", -"00000111111", -"", -"", -"", -"", -"", -"000111111", -"", -"000001111", -"0000001111", -"", -"", -"", -"000001111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"000001111", -"", -"", -"", -"", -"", -"", -"", -"", -"01111", -"", -"0000001111", -"", -"", -"", -"", -"0111111", -"", -"", -"", -"", -"", -"", -"", -"", -"", -"00000001111", -"", -"", -"", -"00001111", -"", -"00000111111", -"0000011111", -"", -"", -"0000111111", -"", -"0000111111", -"0000111111", -"", -"", -"", -"0000011111", -"", -"", -"0000112222", -"", -"", -"", -"", -"00000111111", -"", -"00000111", -"00000111", -"00000111111", -"0000011111", -"0000011111", -"0000011111", -"000001111", -"00000011111", -"00001111111", -"000011111", -"00000001111", -"", -"", -"", -"", -"00000011111", -"", -"", -"", -"", -"", -"", -"000001111", -"0000011111", -"000011111", -"00001111", -"", -"000011111", -"0000111111", -"000012222", -"0000111111", -"", -"00001111111", -"", -"", -"", -"00000011111", -"0000001111", -"0000001111", -"", -"0000111111", -"", -"000011", -"", -"0000000011111", -"0000000011111", -"000001111", -"", -"00000111", -"", -"", -"", -"01111111", -"0000011111", -"", -"", -"", -"", -"", -"000111111", -"", -"00011111", -"", -"", -"00011111111", -"0001111", -"", -"00001111", -"", -"", -"", -"" -]; +exports.BattleSearchIndexOffset = ["","","0000000001111","","","","000001111","","0000001111","","","000011111","000011111","","","0000000111","","","00000000011111","000000111","","","","","00000000001111","","00000111","","","0000001111","","0000011111","","0001111111","000111111","0001111","00011111","","000000001111","","0000111111","","","","","","","","","000000001111","","000000011111","0000011111","","","00000011111","0000111","00001111","00001111","","","","000000111","0000001111","000000111111","00000011111111","00000011111","00000011111111","0000001111","000000111111","00000011111","00000011111","000000111111","000000111","000000111111","0000001111111","0000001111","00000011111","00000011111","","","000001111","","","","00000111111","000111111","","000000001111","","","","00000011111","00000001111","","","","00000011111","","","000011111","0000111111","0000001111","","","","","","","","","","00000011111","000011112222","000111111","","","","00000001111","","","","","","","0000000011112222222","","000001111","00000011111","","","000011","","","","","","","","000001111","0000011111","","0000011111","","","","","00011111","0001111","","","00000001111","","","000001111","","00000111111","000001111","","0000000001111","","","000001111","","","000000001111","","","","","000011111","000011111","00001111","","0000111111","00001111","","00001111","","","","","","000001111","","","0000011111","","","","","","","","","0001111","0001111","000111","","","000011","","00000011111","0000001111","","","","000011111","","","","00001111","","","","","","","","","","0000000011111","0000000011111","0000000011111","","","00001111111","","","","","0000001111","","0000000000001","0000000000001","00000000011112","00000000011112","","","","00000011111","","","0000011111","0000011111","00000001111","","000000011111111","","","","00000011111","","00000011111","0000011111","","","","","00001111","","0000001111","00000011111","00000011111","00000011111","","00000011111","","","","0000111111","","","000001111","000001111","","","","00000111111","000001111","","000011111","","","","00000011111","00000111111","","","","0000011111","","000000001111","","0000000111","","","","","","00000000001","","0000011111","","","00000011111","","00000011111","00000011111","","00000111111","","","","000000111111","","","","","","","000001111","00000111111","","000001111","000001111","","","","","","0000001111","00000011111","","000011111","","","","00001111","","00001111","0000111","000011111","","00001111","","0000000000111","","0000000011111","","","","","","00000011111","00000001111","","","","","","","","000000111111","0000001111111","00000011111","00000001111","00000001111","","","","","","","","","00000000011111","","","","00001111","0000011111","","","0000111111","","0000111111","","0000001111","000000111","0000001111","","0000001111","0000011111","","00000111111","0000011111","","","","000000111111","0000001111","00000011111","0000001111","000000111","","00000011111","0000001111","0000001111","0000001111","000000001111","0000011111","","","0000011111","000001111","0000011111","","","","000001111","00000111","","","","","0001111","00001111","","","","","","0000011111","","00001111","","","","","","000001111","0000011111","0000011111","","00000011111","","","000001111111","","00000011111","0001111","00000111111","","","","","","00000000111","000000001111111","","","00000001111","","","","","","","","","","","","","0000001111","","00000011111","","","","","","","","","","","0000001111","","","","","","","000001111","000001111","000001111","0000111","000011111","0000011111","000000001","00001111","","","","","00000111111","00001111111","","","","","","0000011111","","00000000111","000011111","","00000111111","","","000011111","00001111","0000111","0000111111","000011111","00001111","","000011111","","","","000001111","0000011111","00000111111","00000111","0000011111","","0000011111","0000011111","0000011111","","","00000111111","000001111","","","","","0000011111","","","","0000001111","000000111111","0000001111","","","","000000111","00000011111","000001111","0000011111","00000111111","0000011111","000001111","00000011","","000001111","","","000000122222","","","00001111","","000000111","00000011111","00000011111","00000011111","","","","","","00000111111","","00001111111","0001111","","","0000111111","0000111111","0000111111","0000001111","00000011111","00000011111","","000011111","","","00000011111","","","","000000001111","","","0000000001111","","0000001111","","000011111","","000000001111","0000000011111","0000000011111","0000000011111","","","0000001111","","","","00000111","","000011111","0000111111","","","","00000000111111","","","","","","","","","000011111","","","","","","","","","","","","","","","","","00000000011111","00000000011111","00000000011111","","","00000111","000001111","000001111","00000111111","","0000001111111","","","000001111","","0000011111","","00001111","00000000111","","","","000000111","","","","","","","0000011111","000001111","","","00001111","","","","","","000000001111","00001111","0000011111","","000000111","","","000011111","","","","","","","","0000111111","000011111","00001111","00001111","000011111","","00000001111","000011111","000011111","0000011111","000001111","000011111","","","","00001111","00001111","000001111","0000011111","000001111","","","00000111111","00000001111","","","0000000001111","","","00000011111","00000011111222","000000111112222","00000011111222222","0000001111122222222","0000001111122222222","000000111112222","00000011111222222","0000001111122222","0000001111122222","00000011111222222","00000011111222","00000011111222222","000000111112222222","000000111112222","0000001111122222","0000001111122222","000011112222","","","","","","","00000011111","000011111","","00000111111","0011","","","0000111111","000011111","000011111","","","","000000001111","","","000011111","","","","","","00000111111","000001111","000001111","00000111111","000001111","0000011111","","","00000011111","","0001111","0001111","0001111","0001111","0001111","000111","00011111","00011111","00000011111","00000011111","00000011111","0001111","0001111","","","","","","","","","","","","","","","0000011111","00000011111","","","000111111","00001111","000011111","00001111111","00001111","00001111","000011111","00001111","","00000011111","","","","","","","00001111","","","","","","","","","","00000000001111","0000001111","","0000011111","0000011111","","00011111","0000111","","00000011111111","00000011111","","","","000012222","00001222222","","","","","","","","00000111","","","","","","","","","","00000011111","00000011111","00000001111","","","","000000001111111","0000122222","00000011111","","","","","0000111111","","","000011111","0001111111","000011111","","000011111","000011111","00001111111","","","","000001111","000001111","","","0000011111","000001111","","","","","00000011111","","0000111","000001111","000001111","0000011111","","00000111111","","","","","","0000001111","","","000011","","","","","00001111","0000001111","0001111","00011111","","00000001111","","0000011111","0000011111","","","00011111","","000000001111","0000011111","","00001111","00000011111","00000000111","","","","0000001111","","0000011111","","","000011111","","","00000001111","00000111111","000001111","0000011111","000001111","","0000000012222222","0000011111","","0000011111","","","","0000001111","0000000011111","000000001111","","0000001111","0000001111","","","000011111","00000011111","","","","","","","","","","0000000001111","","","","","000000011111","","","","","00000011111","","0000001111","00011111","","0000001111","","00000011111","00001111","","","000000001111","","","0011111","000011111","","00001111","000011111111","","000011111","","00000000111111111","","0000001111","","000000001","","","","0000011111","000001111","000001111","00000111111","0000011111","","","0000001111","","","","","00000011112","00000011112","00000000001","00000000001","0000011111","","","","000011111","","","000011","","","000011111","0000111111","","","","0000000111","00000001111","0000001111","0000001111","0000001111","","","","","00001111","000001111111","00001111111","","","","","00001111","","","0000000111","","0000011111","","","002222","0001111","0000011111","","0001111","0001111","00011111","","","","","","","","0000001111","","000000001111","00000011111","0000011111","000001111","","00000001111","00000001111","00000011111","","000000111","00001111","0001111","","","","00000001","00000001","","","000001111","","0000011111","0000011111","","","","000001111","","0011111","","","0000011111","","000000111","","","","","","000000001111","","000011111","","","0001111111","","0000111111","00011111","","","00000001111","","000011111","","","","","","00011111","","000011111","000001111","","","00000011111","","","","","","000000000111111","","","000000001111","00001111","00000001111","00000011111","","","00000011111","","000111","0000011111","","","0000001111","","00000011111","","0000011111111","0000011111","00000011111","","","000000011111","","","","","000001111122222","","","","","","","","","","0000011111","","0001111111","","","0000001111","","0000011111","","0000111111","00001111","000011111","","00000111111","","","","0000001111","0000001111","000000111","000000111","0000001111","000000111","00000011111","","00000011111","0000001111","00000011111","00001111","","","","","0000011111","","","","","00000001","","","0000001111","00000111","000001111","0000011111","000001111","0000011111","000001122222","000001111","","00000001111","","","","","","","","","","","0000000111","00000011111","000000111","00000011111","0000011","","","","","","00000000011111","00000000011111","00000000011111","","","000011111","","","","","","","00000011111","","00000111111","000001111","000001111","000001111","0000011111","00000111111","","","00000011111","","00000011111","","0000111111","","","000011111","00001111","","","","000001111","00001111","","","","0000011111","","000001111","000001111","000001111","0000011111","000001111","000011111","","","","","0001111","","00000001111","","","","","","","","","000001111","","0000001111","","","","","","","","","","","","0000011111","0000111111","","","","0000112222","","000011111","000011111","0000111","00001111","00001111111","0000111111","000011111","000011111","000011111","00001111","00001111111","00000111111","","00001111","00000001111","","","0000111111","00001111111","","00000011111","","","00000111","0000011111","000001111","00000111","000001111","","000001111","","0000011111","","0001111","","0000001111","00000011111","0000001111","","0000001111111","0000011111","","","0000111111","000011111","","00001111","","","","0000111111","00001111","00001111","000111111","","","","000001111","","","","","0000001111","","000001111","","","","","","","","0001111111","","","00000001111","00000011111","00000011111","00001111","000011111","","","00000001111","","","","00000011111","","","","","0000001111","0000001111","00000011111","00000011111","00000011111","","000000111","000001111","","","","0000000111","","000011111","00001111","000001111","0000011111","","0000011111","000001111","","","0000011111","","0000001111","","000001111","","","0000011111","000001111","","0000011111","","","","0000001111","","000011111","","0000001111","","","","","0000001111","","00000011111","","","","000001111","000001111","","","","","000001111","00000111111","","000111111","0001111","00011111","00011111111","00000111","","","","","00000111111","000001111","","","","","000011111","","0000001111","0000001111","","","000001111","","","","","","0000001111","","","","","","","","","","","000011111","00001111111","","","","00001111","","0000011111","000001111","","","","0000111","","00000001111","","","","0000011111","00000111","00000011111","","","000000111","00000111111","","00000111111","","","","","000011","","00000011111","","00000011111","","000001111","","","","000000111111","","","","0000011111","","","","","","","00000001111","","","00000111","","000001111","","","0000001111","0000001111","000000111","","","000001111","0000011111","00000011111","0000011111","0000011111","","","","0000001111","000000111","","00000000111","","","000011111","","","","00000011111","00000001111","","","","","00000111","000001111","000001111","","","","","","","","","","","","","000001111","0000011111","000001111","","","000001111","","","","","00000011111","","","","","","","00001111","","00001111","00001111","","00001111","","00000011111","0000011111","","00000001111","","","","","00000011111","","00000011111","","","","","","","","","000001111","00000111","","","","","","00000001111","","000000011111","00000001111","","0000000001111111","","","000001111","0000001111","","","","","","0000011111","","","","","000000001111111","","","","0000011111","","0000011111","00000111","0000011111","","00000111111","","","","","","","000111111","","000001122222","000001111","0000001111","","","","000001111","","","","","","","","","","","0000000001111","","","","000001111","","","","","","","","","01111","","0000001111","","","","","0111111","","00000111111","","","","","","000000001111","","","","","00000001111","","","","00001111","","00000111111","0000011111","","","","0000111111","","0000111111","0000111111","","","","0000011111","","","0000112222","","","","","00000111111","","00000111","00000111","00000111111","0000011111","0000011111111","0000011111","0000011111","000001111","00000011111","00001111111","000011111","00000000111111","00000001111","","","","","00000011111","","","","","","","000001111","0000011111","000011111","00001111","","000011111","0000111111","000012222","0000111111","","00001111111","","","","00000011111","0000001111","0000001111","","0000111111","","000011","","0000000011111","0000000011111","000001111","","00000111","","","","","01111111","0000011111","","","","","","","000111111","","00011111","","","00011111111","0001111","","00001111","","","","",""]; -exports.BattleSearchCountIndex = {"Bug move":22,"Dark move":30,"Dragon move":14,"Electric move":21,"Fighting move":40,"Fire move":30,"Flying move":23,"Ghost move":18,"Grass move":34,"Ground move":18,"Ice move":21,"Normal move":167,"Poison move":22,"Psychic move":54,"Rock move":17,"Steel move":19,"Water move":28,"Bug pokemon":72,"Dark pokemon":42,"Dragon pokemon":34,"Electric pokemon":49,"Fighting pokemon":47,"Fire pokemon":54,"Flying pokemon":89,"Ghost pokemon":32,"Grass pokemon":81,"Ground pokemon":63,"Ice pokemon":35,"Normal pokemon":99,"Poison pokemon":60,"Psychic pokemon":74,"Rock pokemon":49,"Steel pokemon":44,"Water pokemon":116}; +exports.BattleSearchCountIndex = {"Bug move":26,"Dark move":32,"Dragon move":14,"Electric move":29,"Fairy move":17,"Fighting move":43,"Fire move":32,"Flying move":24,"Ghost move":20,"Grass move":38,"Ground move":20,"Ice move":22,"Normal move":168,"Poison move":24,"Psychic move":54,"Rock move":17,"Steel move":20,"Water move":29,"Bug pokemon":78,"Dark pokemon":52,"Dragon pokemon":46,"Electric pokemon":54,"Fairy pokemon":36,"Fighting pokemon":56,"Fire pokemon":65,"Flying pokemon":100,"Ghost pokemon":48,"Grass pokemon":99,"Ground pokemon":66,"Ice pokemon":40,"Normal pokemon":100,"Poison pokemon":64,"Psychic pokemon":85,"Rock pokemon":58,"Steel pokemon":53,"Water pokemon":126}; diff --git a/data/typechart.js b/data/typechart.js index 0be31f339..b1b1e96ef 100644 --- a/data/typechart.js +++ b/data/typechart.js @@ -5,6 +5,7 @@ exports.BattleTypeChart = { "Dark": 0, "Dragon": 0, "Electric": 0, + "Fairy": 0, "Fighting": 2, "Fire": 1, "Flying": 1, @@ -27,6 +28,7 @@ exports.BattleTypeChart = { "Dark": 2, "Dragon": 0, "Electric": 0, + "Fairy": 1, "Fighting": 1, "Fire": 0, "Flying": 0, @@ -49,6 +51,7 @@ exports.BattleTypeChart = { "Dark": 0, "Dragon": 1, "Electric": 2, + "Fairy": 1, "Fighting": 0, "Fire": 2, "Flying": 0, @@ -67,10 +70,12 @@ exports.BattleTypeChart = { }, "Electric": { "damageTaken": { + par: 3, "Bug": 0, "Dark": 0, "Dragon": 0, "Electric": 2, + "Fairy": 0, "Fighting": 0, "Fire": 0, "Flying": 2, @@ -87,12 +92,35 @@ exports.BattleTypeChart = { }, "HPivs": {"spa":30} }, + "Fairy": { + "damageTaken": { + "Bug": 2, + "Dark": 2, + "Dragon": 3, + "Electric": 0, + "Fairy": 0, + "Fighting": 2, + "Fire": 0, + "Flying": 0, + "Ghost": 0, + "Grass": 0, + "Ground": 0, + "Ice": 0, + "Normal": 0, + "Poison": 1, + "Psychic": 0, + "Rock": 0, + "Steel": 1, + "Water": 0 + } + }, "Fighting": { "damageTaken": { "Bug": 2, "Dark": 2, "Dragon": 0, "Electric": 0, + "Fairy": 1, "Fighting": 0, "Fire": 0, "Flying": 1, @@ -116,6 +144,7 @@ exports.BattleTypeChart = { "Dark": 0, "Dragon": 0, "Electric": 0, + "Fairy": 2, "Fighting": 0, "Fire": 2, "Flying": 0, @@ -138,6 +167,7 @@ exports.BattleTypeChart = { "Dark": 0, "Dragon": 0, "Electric": 1, + "Fairy": 0, "Fighting": 2, "Fire": 0, "Flying": 0, @@ -156,10 +186,12 @@ exports.BattleTypeChart = { }, "Ghost": { "damageTaken": { + trapping: 3, "Bug": 2, "Dark": 1, "Dragon": 0, "Electric": 0, + "Fairy": 0, "Fighting": 3, "Fire": 0, "Flying": 0, @@ -182,6 +214,7 @@ exports.BattleTypeChart = { "Dark": 0, "Dragon": 0, "Electric": 2, + "Fairy": 0, "Fighting": 0, "Fire": 1, "Flying": 1, @@ -205,6 +238,7 @@ exports.BattleTypeChart = { "Dark": 0, "Dragon": 0, "Electric": 3, + "Fairy": 0, "Fighting": 0, "Fire": 0, "Flying": 0, @@ -229,6 +263,7 @@ exports.BattleTypeChart = { "Dark": 0, "Dragon": 0, "Electric": 0, + "Fairy": 0, "Fighting": 1, "Fire": 1, "Flying": 0, @@ -251,6 +286,7 @@ exports.BattleTypeChart = { "Dark": 0, "Dragon": 0, "Electric": 0, + "Fairy": 0, "Fighting": 1, "Fire": 0, "Flying": 0, @@ -274,6 +310,7 @@ exports.BattleTypeChart = { "Dark": 0, "Dragon": 0, "Electric": 0, + "Fairy": 2, "Fighting": 2, "Fire": 0, "Flying": 0, @@ -296,6 +333,7 @@ exports.BattleTypeChart = { "Dark": 1, "Dragon": 0, "Electric": 0, + "Fairy": 0, "Fighting": 2, "Fire": 0, "Flying": 0, @@ -319,6 +357,7 @@ exports.BattleTypeChart = { "Dark": 0, "Dragon": 0, "Electric": 0, + "Fairy": 0, "Fighting": 1, "Fire": 2, "Flying": 2, @@ -341,13 +380,14 @@ exports.BattleTypeChart = { tox: 3, sandstorm: 3, "Bug": 2, - "Dark": 2, + "Dark": 0, "Dragon": 2, "Electric": 0, + "Fairy": 2, "Fighting": 1, "Fire": 1, "Flying": 2, - "Ghost": 2, + "Ghost": 0, "Grass": 2, "Ground": 1, "Ice": 2, @@ -366,6 +406,7 @@ exports.BattleTypeChart = { "Dark": 0, "Dragon": 0, "Electric": 1, + "Fairy": 0, "Fighting": 0, "Fire": 2, "Flying": 0, @@ -382,4 +423,4 @@ exports.BattleTypeChart = { }, "HPivs": {"atk":30,"def":30,"spa":30} } -}; \ No newline at end of file +}; diff --git a/favicon-256.png b/favicon-256.png new file mode 100644 index 000000000..5a7319c69 Binary files /dev/null and b/favicon-256.png differ diff --git a/githooks/update-version-query-strings b/githooks/update similarity index 100% rename from githooks/update-version-query-strings rename to githooks/update diff --git a/githooks/update-version-query-strings-dynamic b/githooks/update-dynamic similarity index 100% rename from githooks/update-version-query-strings-dynamic rename to githooks/update-dynamic diff --git a/index.template.html b/index.template.html index 938e14ef9..69cf22419 100644 --- a/index.template.html +++ b/index.template.html @@ -133,7 +133,7 @@ var app = new App(); - + diff --git a/js/battle.js b/js/battle.js index 989dbc66f..31f2aa276 100644 --- a/js/battle.js +++ b/js/battle.js @@ -515,14 +515,14 @@ function Pokemon(species) { if (selfP.side.n === 0) { return Tools.escapeHTML(selfP.name); } else { - return "The foe's " + Tools.escapeHTML(selfP.name); + return "The opposing " + Tools.escapeHTML(selfP.name); } }; this.getLowerName = function () { if (selfP.side.n === 0) { return Tools.escapeHTML(selfP.name); } else { - return "the foe's " + Tools.escapeHTML(selfP.name); + return "the opposing " + Tools.escapeHTML(selfP.name); } }; this.getTitle = function () { @@ -1563,11 +1563,11 @@ function Battle(frame, logFrame, noPreload) { }; this.getTeamName = function () { if (selfS === self.mySide) return "Your team"; - return "The foe's team"; + return "The opposing team"; }; this.getLowerTeamName = function () { if (selfS === self.mySide) return "your team"; - return "the foe's team"; + return "the opposing team"; }; this.updateSidebar = function () { var pokemonhtml = ''; @@ -2875,7 +2875,7 @@ function Battle(frame, logFrame, noPreload) { actions += "" + poke.getName() + " is hurt by the sea of fire!"; break; case 'jumpkick': - case 'hijumpkick': + case 'highjumpkick': actions += "" + poke.getName() + " kept going and crashed!"; break; default: @@ -3381,7 +3381,7 @@ function Battle(frame, logFrame, noPreload) { case 'tox': case 'psn': self.resultAnim(poke, 'Poison cured', 'good', animDelay); - var n = poke.side.n; // hack for eliminating "the foe's" + var n = poke.side.n; // hack for eliminating "the opposing" poke.side.n = 0; actions += "" + poke.getName() + " was cured of its poisoning."; poke.side.n = n; @@ -3443,7 +3443,12 @@ function Battle(frame, logFrame, noPreload) { self.resultAnim(poke, item.name, 'neutral', animDelay); break; case 'frisk': - actions += "" + ofpoke.getName() + " frisked its target and found one " + item.name + "!"; + if (kwargs.identify) { // used for gen 6 + actions += '' + ofpoke.getName() + ' frisked ' + poke.getLowerName() + ' and found its ' + item.name + '!'; + self.resultAnim(poke, item.name, 'neutral', animDelay); + } else { + actions += '' + ofpoke.getName() + ' frisked its target and found one ' + item.name + '!'; + } break; case 'thief': case 'covet': @@ -3587,6 +3592,9 @@ function Battle(frame, logFrame, noPreload) { case 'unnerve': actions += "" + poke.getName() + "'s Unnerve makes " + this.getSide(args[3]).getLowerTeamName() + " too nervous to eat Berries!"; break; + case 'aurabreak': + actions += "" + poke.getName() + " reversed all other Pokémon's auras!"; + break; default: actions += "" + poke.getName() + " has " + ability.name + "!"; break; @@ -4172,6 +4180,9 @@ function Battle(frame, logFrame, noPreload) { case 'toxicspikes': actions += "Poison spikes were scattered all around the feet of " + side.getLowerTeamName() + "!"; break; + case 'stickyweb': + actions += "A sticky web spreads out beneath " + side.getLowerTeamName() + "'s feet!"; + break; case 'tailwind': actions += "The tailwind blew from behind " + side.getLowerTeamName() + "!"; break; @@ -4396,6 +4407,7 @@ function Battle(frame, logFrame, noPreload) { } */ this.parseDetails = function (name, pokemonid, details, output) { if (!output) output = {}; + if (!details) details = ""; output.details = details; output.name = name; output.species = name; @@ -4513,7 +4525,7 @@ function Battle(frame, logFrame, noPreload) { pokemon.searchid = searchid; pokemon.ident = pokemonid; if (pokemon.needsReplace) { - pokemon = self.p1.newPokemon(self.parseDetails(name, pokemonid, details || ""), i); + pokemon = self.p1.newPokemon(self.parseDetails(name, pokemonid, details), i); } } pokemon.slot = slot; diff --git a/js/battledata.js b/js/battledata.js index 90c80d635..a881d29e7 100644 --- a/js/battledata.js +++ b/js/battledata.js @@ -294,6 +294,9 @@ var Tools = { // default avatars return Tools.resourcePrefix + 'sprites/trainers/' + avatarnum + '.png'; } + if (avatar.charAt(0) === '#') { + return Tools.resourcePrefix + 'sprites/trainers/' + toId(avatar.substr(1)) + '.png'; + } if (window.Config && Config.server && Config.server.registered) { // custom avatar served by the server var protocol = (Config.server.port === 443) ? 'https' : 'http'; @@ -832,64 +835,66 @@ var Tools = { else if (window.BattlePokemonSprites && BattlePokemonSprites[id] && BattlePokemonSprites[id].num) num = BattlePokemonSprites[id].num; else if (window.BattlePokedex && window.BattlePokedex[id] && BattlePokedex[id].num) num = BattlePokedex[id].num; if (num < 0) num = 0; - if (num > 649) num = 0; + if (num > 718) num = 0; var altNums = { - "egg": 651, - "rotomfan": 699, - "rotomfrost": 700, - "rotomheat": 701, - "rotommow": 702, - "rotomwash": 703, - "giratinaorigin": 705, - "shayminsky": 707, - "basculinbluestriped": 709, - "darmanitanzen": 712, - "deoxysattack": 683, - "deoxysdefense": 684, - "deoxysspeed": 686, - "wormadamsandy": 691, - "wormadamtrash": 692, - "cherrimsunshine": 694, - "castformrainy": 680, - "castformsnowy": 681, - "castformsunny": 682, - "meloettapirouette": 724, - "tornadustherian": 736, - "thundurustherian": 737, - "landorustherian": 738, - "kyuremblack": 739, - "kyuremwhite": 740, - "keldeoresolute": 741, - "syclant": 752+0, - "revenankh": 752+1, - "pyroak": 752+2, - "fidgit": 752+3, - "stratagem": 752+4, - "arghonaut": 752+5, - "kitsunoh": 752+6, - "cyclohm": 752+7, - "colossoil": 752+8, - "krilowatt": 752+9, - "voodoom": 752+10, - "tomohawk": 752+11, - "necturna": 752+12, - "mollux": 752+13, - "aurumoth": 752+14, - "malaconda": 752+15, + "egg": 731, + "rotomfan": 779, + "rotomfrost": 780, + "rotomheat": 781, + "rotommow": 782, + "rotomwash": 783, + "giratinaorigin": 785, + "shayminsky": 787, + "basculinbluestriped": 789, + "darmanitanzen": 792, + "deoxysattack": 763, + "deoxysdefense": 764, + "deoxysspeed": 766, + "wormadamsandy": 771, + "wormadamtrash": 772, + "cherrimsunshine": 774, + "castformrainy": 760, + "castformsnowy": 761, + "castformsunny": 762, + "meloettapirouette": 804, + "meowsticf": 809, + "tornadustherian": 816, + "thundurustherian": 817, + "landorustherian": 818, + "kyuremblack": 819, + "kyuremwhite": 820, + "keldeoresolute": 821, + "syclant": 832+0, + "revenankh": 832+1, + "pyroak": 832+2, + "fidgit": 832+3, + "stratagem": 832+4, + "arghonaut": 832+5, + "kitsunoh": 832+6, + "cyclohm": 832+7, + "colossoil": 832+8, + "krilowatt": 832+9, + "voodoom": 832+10, + "tomohawk": 832+11, + "necturna": 832+12, + "mollux": 832+13, + "aurumoth": 832+14, + "malaconda": 832+15, }; if (altNums[id]) { num = altNums[id]; } if (pokemon && pokemon.gender === 'F') { - if (id === 'unfezant') num = 708; - else if (id === 'frillish') num = 721; - else if (id === 'jellicent') num = 722; + if (id === 'unfezant') num = 788; + else if (id === 'frillish') num = 801; + else if (id === 'jellicent') num = 802; + else if (id === 'meowstic') num = 809; } var top = 8 + Math.floor(num / 16) * 32; var left = (num % 16) * 32; var fainted = (pokemon && pokemon.fainted?';opacity:.4':''); - return 'background:transparent url(' + Tools.resourcePrefix + 'sprites/bwicons-sheet.png?v0.8.5) no-repeat scroll -' + left + 'px -' + top + 'px' + fainted; + return 'background:transparent url(' + Tools.resourcePrefix + 'sprites/bwicons-sheet-g6.png?v0.9xyb1) no-repeat scroll -' + left + 'px -' + top + 'px' + fainted; }, getTeambuilderSprite: function(pokemon) { diff --git a/js/client-battle.js b/js/client-battle.js index b7531fe61..e6923f9fd 100644 --- a/js/client-battle.js +++ b/js/client-battle.js @@ -379,6 +379,9 @@ } else { controls += movebuttons; } + if (Tools.getItem(switchables[pos].item).megaStone) { + controls += '
' + } controls += '
'; controls += '
'; if (trapped) { @@ -626,9 +629,10 @@ var myActive = this.battle.mySide.active; var target = Tools.getMove(move).target; this.hideTooltip(); + var isMega = !!(this.$('input[name=megaevo]')[0]||'').checked; if (move !== undefined) { var choosableTargets = {normal:1, any:1, adjacentAlly:1, adjacentAllyOrSelf:1, adjacentFoe:1}; - this.choice.choices.push('move '+move); + this.choice.choices.push('move '+move+(isMega?' mega':'')); if (myActive.length > 1 && target in choosableTargets) { this.choice.type = 'movetarget'; this.choice.moveTarget = target; diff --git a/js/client-mainmenu.js b/js/client-mainmenu.js index 3e07fe785..84efdb923 100644 --- a/js/client-mainmenu.js +++ b/js/client-mainmenu.js @@ -524,6 +524,7 @@ if (BattleFormats['randombattle']) { this.curFormat = 'randombattle'; } else for (var i in BattleFormats) { + if (!BattleFormats[i].searchShow || !BattleFormats[i].challengeShow) continue; this.curFormat = i; break; } diff --git a/js/client-teambuilder.js b/js/client-teambuilder.js index 284b645e8..028bb375e 100644 --- a/js/client-teambuilder.js +++ b/js/client-teambuilder.js @@ -613,6 +613,12 @@ this.updateDetailsForm(); return; } + + // cache movelist ref + var speciesid = toId(this.curSet.species); + var g6 = (this.curTeam.format && this.curTeam.format.substr(0,3) !== 'gen' && this.curTeam.format.substr(0,8) !== 'pokebank'); + this.movelist = (g6 ? Tools.g6movelists[speciesid] : Tools.movelists[speciesid]); + this.$chart.html('Loading '+this.curChartType+'...'); var self = this; if (this.updateChartTimeout) clearTimeout(this.updateChartTimeout); @@ -624,6 +630,11 @@ }, updateChartTimeout: null, updateChartDelayed: function() { + // cache movelist ref + var speciesid = toId(this.curSet.species); + var g6 = (this.curTeam.format && this.curTeam.format.substr(0,3) !== 'gen' && this.curTeam.format.substr(0,8) !== 'pokebank'); + this.movelist = (g6 ? Tools.g6movelists[speciesid] : Tools.movelists[speciesid]); + var self = this; if (this.updateChartTimeout) clearTimeout(this.updateChartTimeout); this.updateChartTimeout = setTimeout(function() { @@ -1042,15 +1053,15 @@ pokemon: function(pokemon) { if (!pokemon) { if (this.curTeam) { - if (this.curTeam.format === 'uber') return ['Uber','OU','BL','UU','BL2','RU','BL3','NU','NFE','LC Uber','LC']; - if (this.curTeam.format === 'cap') return ['CAP','OU','BL','UU','BL2','RU','BL3','NU','NFE','LC Uber','LC']; - if (this.curTeam.format === 'ou') return ['OU','BL','UU','BL2','RU','BL3','NU','NFE','LC Uber','LC']; - if (this.curTeam.format === 'uu') return ['UU','BL2','RU','BL3','NU','NFE','LC Uber','LC']; - if (this.curTeam.format === 'ru') return ['RU','BL3','NU','NFE','LC Uber','LC']; - if (this.curTeam.format === 'nu') return ['NU','NFE','LC Uber','LC']; - if (this.curTeam.format === 'lc') return ['LC','NU']; + if (this.curTeam.format === 'gen5uber') return ['Uber','OU','BL','UU','BL2','RU','BL3','NU','NFE','LC Uber','LC']; + if (this.curTeam.format === 'cap') return ['CAP','OU','Limbo','BL','UU','BL2','RU','BL3','NU','NFE','LC Uber','LC']; + if (this.curTeam.format === 'gen5ou') return ['OU','BL','UU','BL2','RU','BL3','NU','NFE','LC Uber','LC']; + if (this.curTeam.format === 'gen5uu') return ['UU','BL2','RU','BL3','NU','NFE','LC Uber','LC']; + if (this.curTeam.format === 'gen5ru') return ['RU','BL3','NU','NFE','LC Uber','LC']; + if (this.curTeam.format === 'gen5nu') return ['NU','NFE','LC Uber','LC']; + if (this.curTeam.format === 'gen5lc') return ['LC','NU']; } - return ['OU','Limbo','Uber','BL','UU','BL2','RU','BL3','NU','NFE','LC Uber','LC','CAP']; + return ['OU','Limbo','Uber','BL','UU','BL2','RU','BL3','NU','Unreleased','Limbo NFE','NFE','LC Uber','LC','CAP']; } var tierData = exports.BattleFormatsData[toId(pokemon.species)]; if (!tierData) return 'Illegal'; @@ -1073,8 +1084,7 @@ move: function(move) { if (!this.curSet) return; if (!move) return ['Viable Moves', 'Usable Moves', 'Moves', 'Usable Sketch Moves', 'Sketch Moves']; - var id = toId(this.curSet.species); - var movelist = Tools.movelists[id]; + var movelist = this.movelist; if (!movelist) return 'Illegal'; if (!movelist[move.id]) { if (movelist['sketch']) { @@ -1083,7 +1093,8 @@ } return 'Illegal'; } - if (BattleFormatsData && BattleFormatsData[id] && BattleFormatsData[id].viableMoves && BattleFormatsData[id].viableMoves[move.id]) return 'Viable Moves'; + var speciesid = toId(this.curSet.species); + if (window.BattleFormatsData && BattleFormatsData[speciesid] && BattleFormatsData[speciesid].viableMoves && BattleFormatsData[speciesid].viableMoves[move.id]) return 'Viable Moves'; if (move.isViable) return 'Usable Moves'; return 'Moves'; } @@ -1694,15 +1705,18 @@ buildMovelists: function() { if (!window.BattlePokedex) return; Tools.movelists = {}; + Tools.g6movelists = {}; for (var pokemon in window.BattlePokedex) { var template = Tools.getTemplate(pokemon); var moves = {}; + var g6moves = {}; var alreadyChecked = {}; do { alreadyChecked[template.speciesid] = true; if (template.learnset) { for (var l in template.learnset) { moves[l] = true; + if (template.learnset[l].length) g6moves[l] = true; } } if (template.speciesid === 'shaymin') { @@ -1714,6 +1728,7 @@ } } while (template && template.species && !alreadyChecked[template.speciesid]); Tools.movelists[pokemon] = moves; + Tools.g6movelists[pokemon] = g6moves; } }, destroy: function() { @@ -1905,13 +1920,14 @@ var move = curSet.moves[j]; if (move.substr(0,13) === 'Hidden Power ' && move.substr(0,14) !== 'Hidden Power [') { hpType = move.substr(13); + if (!exports.BattleTypeChart[hpType].HPivs) { + alert("That is not a valid Hidden Power type."); + continue; + } for (var stat in BattleStatNames) { - if (curSet.ivs[stat] !== exports.BattleTypeChart[hpType].HPivs[stat]) { - if (!(typeof curSet.ivs[stat] === 'undefined' && exports.BattleTypeChart[hpType].HPivs[stat] == 31) && - !(curSet.ivs[stat] == 31 && typeof exports.BattleTypeChart[hpType].HPivs[stat] === 'undefined')) { - defaultIvs = false; - break; - } + if ((curSet.ivs[stat]===undefined?31:curSet.ivs[stat]) !== (exports.BattleTypeChart[hpType].HPivs[stat]||31)) { + defaultIvs = false; + break; } } } diff --git a/js/search.js b/js/search.js index e67506f8a..c0b2c86e3 100644 --- a/js/search.js +++ b/js/search.js @@ -55,12 +55,14 @@ } var i = Search.getClosest(query); - if (!BattleSearchIndex[i] || query === 'metronome' || query === 'psychic') i--; + // if (!BattleSearchIndex[i] || query === 'metronome' || query === 'psychic') i--; this.exactMatch = (query === BattleSearchIndex[i]); var bufs = ['','','','']; var topbufIndex = -1; + var nearMatch = (BattleSearchIndex[i].substr(0,query.length) !== query); + if (nearMatch && i) i--; for (var j=0; j<15; j++) { var id = BattleSearchIndex[i+j]; var type = BattleSearchIndexType[i+j]; @@ -68,7 +70,7 @@ if (!id) break; if (id.substr(0,query.length) !== query) { - if (j) break; + if (!(nearMatch && j<=1)) break; matchLength = 0; } if (j === 0 && this.exactMatch) { @@ -76,7 +78,6 @@ } if (!bufs[typeTable[type]]) bufs[typeTable[type]] = '
  • '+typeName[type]+'

  • '; - if (!matchLength) bufs[typeTable[type]] = '
  • No exact match found. The next match alphabetically is:
  • '+bufs[typeTable[type]]; bufs[typeTable[type]] += Search.renderRow(id, type, 0, matchLength + (BattleSearchIndexOffset[i+j][matchLength-1]||'0').charCodeAt(0)-48); } @@ -86,6 +87,8 @@ bufs[topbufIndex] = ''; } + if (nearMatch) topbuf = '
  • No exact match found. The closest matches alphabetically are:
  • '+topbuf; + this.el.innerHTML = '
      '+topbuf+bufs.join('')+'
    '; return true; }; @@ -398,6 +401,42 @@ return buf; }; + Search.renderMoveRowInner = function(move, errorMessage) { + var attrs = ''; + if (Search.urlRoot) attrs = ' href="'+Search.urlRoot+'moves/'+toId(move.name)+'" data-target="push"'; + var buf = ''; + + // name + var name = move.name; + var tagStart = (name.substr(0, 12) === 'Hidden Power' ? 12 : 0); + if (tagStart) name = name.substr(0, tagStart) + ''+move.name.substr(tagStart)+''; + buf += ''+name+' '; + + // error + if (errorMessage) { + buf += ''+errorMessage+' '; + buf += ''; + return buf; + } + + // type + buf += ''; + buf += Tools.getTypeIcon(move.type); + buf += ''+move.category+''; + buf += ' '; + + // power, accuracy, pp + buf += ''+(move.category!=='Status'?('Power
    '+(move.basePower||'—')):'')+'
    '; + buf += 'Accuracy
    '+(move.accuracy && move.accuracy!==true?move.accuracy+'%':'—')+'
    '; + buf += 'PP
    '+(move.pp!==1?move.pp*8/5:move.pp)+'
    '; + + // desc + buf += ''+Tools.escapeHTML(move.shortDesc || move.desc)+' '; + + buf += ''; + + return buf; + }; Search.renderTaggedMoveRow = function(move, tag, errorMessage) { var attrs = ''; if (Search.urlRoot) attrs = ' href="'+Search.urlRoot+'moves/'+toId(move.name)+'" data-target="push"'; diff --git a/testclient.html b/testclient.html index fdea6d641..39c888ddc 100644 --- a/testclient.html +++ b/testclient.html @@ -121,7 +121,7 @@ var app = new App(); - +