From 3a3635af4c8dff99d88502dbeb94f74d84d09b8e Mon Sep 17 00:00:00 2001 From: Jeroen-Claasens Date: Thu, 23 Apr 2026 16:18:18 +0200 Subject: [PATCH 1/9] =?UTF-8?q?feat:=20add=20pok=C3=A9mon=20champions=20mo?= =?UTF-8?q?ve=20data?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- graphql/schema.graphql | 24 ++++++ .../asset-updaters/moves-updater.ts | 44 +++++++++++ src/lib/assets/moves.ts | 79 +++++++++++++++++++ src/lib/assets/pokemon-source.ts | 8 ++ 4 files changed, 155 insertions(+) diff --git a/graphql/schema.graphql b/graphql/schema.graphql index 4bfbc16913..7d571b83d5 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -465,6 +465,9 @@ type Move { "The power this move will have when used with its Z-move equivalent" zMovePower: Int! + + "The Champions specific data for a move" + champions: MoveChampions } "The type matchups for any one or two given types" @@ -517,3 +520,24 @@ type Nature { "The flavor of food the nature dislikes" dislikedFlavor: String } + +"Pokémon Champions specific data about a move" +type MoveChampions { + "The base power for a move" + basePower: String + + "The accuracy for a move" + accuracy: Int + + "The long description for a move" + desc: String + + "The short description for a move" + shortDesc: String + + "The type for a move" + type: String + + "The power points for a move" + pp: Int +} diff --git a/scripts/data-gen-scripts/scripted-updaters/asset-updaters/moves-updater.ts b/scripts/data-gen-scripts/scripted-updaters/asset-updaters/moves-updater.ts index 7baadd68c7..8094997c38 100644 --- a/scripts/data-gen-scripts/scripted-updaters/asset-updaters/moves-updater.ts +++ b/scripts/data-gen-scripts/scripted-updaters/asset-updaters/moves-updater.ts @@ -22,8 +22,14 @@ const { MovesText } = await importFileFromWeb<{ MovesText: { [moveName: string]: temporaryFileName: 'moves-texts.js' }); +const { Moves: MovesChampions } = await importFileFromWeb<{ Moves: { [moveName: string]: MoveDataChampions } }>({ + url: 'https://raw.githubusercontent.com/smogon/pokemon-showdown/refs/heads/master/data/mods/champions/moves.ts', + temporaryFileName: 'moves-champions.js' +}); + const movesDataEntries = Object.entries(Moves); const movesTextEntries = Object.entries(MovesText); +const movesChampionsEntries = Object.entries(MovesChampions); const newMap = new Map(); @@ -31,6 +37,7 @@ for (const [key, data] of currentMoves.entries()) { Reflect.deleteProperty(data, 'key'); const moveFromData = movesDataEntries.find(([moveKey]) => moveKey === key)?.at(1) as MoveData | undefined; + const moveFromChampions = movesChampionsEntries.find(([moveChampionsKey]) => moveChampionsKey === key)?.at(1) as MoveDataChampions | undefined; const moveFromText = movesTextEntries.find(([moveTextKey]) => moveTextKey === key)?.at(1) as MoveText | undefined; if (moveFromData) { @@ -58,6 +65,38 @@ for (const [key, data] of currentMoves.entries()) { data.contestType = moveFromData.contestType; } + if (moveFromChampions) { + if (!data.champions) { + data.champions = {}; + } + + if (moveFromChampions.accuracy === true) { + data.champions.accuracy = 100; + } else if (moveFromChampions.accuracy) { + data.champions.accuracy = moveFromChampions.accuracy; + } + + if (moveFromChampions.desc) { + data.champions.desc = replacePokeWithAccentedPoke(moveFromChampions.desc); + } + + if (moveFromChampions.shortDesc) { + data.champions.shortDesc = replacePokeWithAccentedPoke(moveFromChampions.shortDesc); + } + + if (moveFromChampions.type) { + data.champions.type = moveFromChampions.type; + } + + if (moveFromChampions.pp) { + data.champions.pp = moveFromChampions.pp; + } + + if (Object.keys(data.champions).length === 0) { + Reflect.deleteProperty(data, 'champions'); + } + } + data.category = moveFromData.category; data.pp = moveFromData.pp; data.priority = moveFromData.priority; @@ -176,3 +215,8 @@ interface MoveText { desc: string; shortDesc?: string; } + +interface MoveDataChampions extends MoveData { + desc?: string; + shortDesc?: string; +} diff --git a/src/lib/assets/moves.ts b/src/lib/assets/moves.ts index 9b1926de03..b0e07ebfe5 100644 --- a/src/lib/assets/moves.ts +++ b/src/lib/assets/moves.ts @@ -310,6 +310,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '80', category: 'Physical', + champions: { basePower: '90' }, contestType: 'Tough', desc: 'Prevents the target from switching out. The target can still switch out if it is holding Shed Shell or uses Baton Pass, Flip Turn, Parting Shot, Teleport, U-turn, or Volt Switch. The effect ends if either the user or the target leaves the field.', isNonstandard: IsNonStandard.Past, @@ -345,6 +346,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '80', category: 'Special', + champions: { basePower: '90' }, desc: "Has a 100% chance to lower the target's Special Defense by 1 stage.", maxMovePower: 130, name: 'Apple Acid', @@ -559,6 +561,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '120', category: 'Special', + champions: { basePower: '110' }, desc: 'No additional effect.', name: 'Astral Barrage', pp: 5, @@ -756,6 +759,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '0', category: 'Status', + champions: { pp: 5 }, contestType: 'Tough', desc: "The user is protected from most attacks made by other Pokémon during this turn, and Pokémon making contact with the user become poisoned. This move has a 1/X chance of being successful, where X starts at 1 and triples each time this move is successfully used. X resets to 1 if this move fails, if the user's last move used is not Baneful Bunker, Burning Bulwark, Detect, Endure, King's Shield, Max Guard, Obstruct, Protect, Quick Guard, Silk Trap, Spiky Shield, or Wide Guard, or if it was one of those moves and the user's protection was broken. Fails if the user moves last this turn.", name: 'Baneful Bunker', @@ -838,6 +842,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '100', category: 'Physical', + champions: { pp: 5, basePower: '120' }, contestType: 'Tough', desc: 'If the user is hit by a contact move this turn before it can execute this move, the attacker is burned.', maxMovePower: 130, @@ -902,6 +907,10 @@ export const moves = new Collection([ accuracy: 90, basePower: '120', category: 'Special', + champions: { + desc: 'Fails unless the user has eaten a Berry, either by eating one that was held, stealing and eating one off another Pokémon with Bug Bite or Pluck, or eating one that was thrown at it with Fling. Once the condition is met, this move can be selected and used for the rest of the battle even if the user gains or uses another item or switches out. Consuming a Berry with Natural Gift does not count for the purposes of eating one.', + shortDesc: 'Fails unless the user has eaten a Berry.' + }, contestType: 'Tough', desc: 'This move cannot be selected until the user eats a Berry, either by eating one that was held, stealing and eating one off another Pokémon with Bug Bite or Pluck, or eating one that was thrown at it with Fling. Once the condition is met, this move can be selected and used for the rest of the battle even if the user gains or uses another item or switches out. Consuming a Berry with Natural Gift does not count for the purposes of eating one.', maxMovePower: 95, @@ -1150,6 +1159,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '140', category: 'Special', + champions: { basePower: '130' }, name: 'Blood Moon', pp: 5, priority: 0, @@ -1232,6 +1242,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '85', category: 'Physical', + champions: { basePower: '80' }, desc: 'Power doubles if the user moves before the target.', isNonstandard: IsNonStandard.Past, maxMovePower: 130, @@ -1301,6 +1312,7 @@ export const moves = new Collection([ accuracy: 90, basePower: '25', category: 'Physical', + champions: { basePower: '30' }, contestType: 'Tough', desc: "Hits two to five times. Has a 35% chance to hit two or three times and a 15% chance to hit four or five times. If one of the hits breaks the target's substitute, it will take damage for the remaining hits. If the user has the Skill Link Ability, this move will always hit five times. If the user is holding Loaded Dice, this move will hit 4-5 times.", maxMovePower: 130, @@ -1973,6 +1985,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '0', category: 'Status', + champions: { accuracy: 100 }, desc: "Raises the user's Attack, Defense, Special Attack, Special Defense, and Speed by 1 stage in exchange for the user losing 33% of its maximum HP, rounded down. Fails if the user would faint or if its Attack, Defense, Special Attack, Special Defense, and Speed stat stages would not change.", name: 'Clangorous Soul', pp: 5, @@ -2420,6 +2433,7 @@ export const moves = new Collection([ accuracy: 90, basePower: '100', category: 'Physical', + champions: { accuracy: 95 }, contestType: 'Tough', desc: 'Has a higher chance for a critical hit.', maxMovePower: 130, @@ -2795,6 +2809,10 @@ export const moves = new Collection([ accuracy: 100, basePower: '80', category: 'Physical', + champions: { + desc: 'Has a 30% chance to cause the target to either fall asleep, become poisoned, or become paralyzed.', + shortDesc: '30% chance to sleep, poison, or paralyze target.' + }, desc: 'Has a 50% chance to cause the target to either fall asleep, become poisoned, or become paralyzed.', name: 'Dire Claw', pp: 15, @@ -3177,6 +3195,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '90', category: 'Physical', + champions: { basePower: '100' }, contestType: 'Tough', desc: 'No additional effect.', maxMovePower: 130, @@ -3927,6 +3946,9 @@ export const moves = new Collection([ accuracy: 100, basePower: '40', category: 'Physical', + champions: { + desc: "Has a 100% chance to make the target flinch. This move cannot be selected unless it is the user's first turn on the field." + }, contestType: 'Cute', desc: "Has a 100% chance to make the target flinch. Fails unless it is the user's first turn on the field.", maxMovePower: 90, @@ -4172,6 +4194,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '80', category: 'Physical', + champions: { basePower: '90' }, contestType: 'Cute', desc: "Has a 100% chance to lower the target's Defense by 1 stage.", maxMovePower: 130, @@ -4240,6 +4263,10 @@ export const moves = new Collection([ accuracy: 100, basePower: '90', category: 'Physical', + champions: { + basePower: '100', + desc: "This move cannot be selected unless it is the user's first turn on the field." + }, contestType: 'Cute', desc: "Fails unless it is the user's first turn on the field.", maxMovePower: 130, @@ -4257,6 +4284,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '85', category: 'Physical', + champions: { basePower: '80' }, desc: 'Power doubles if the user moves before the target.', isNonstandard: IsNonStandard.Past, maxMovePower: 130, @@ -4729,6 +4757,10 @@ export const moves = new Collection([ accuracy: 100, basePower: '70', category: 'Special', + champions: { + desc: "This move's type effectiveness against Water is changed to be super effective no matter what this move's type is.", + shortDesc: 'Super effective on Water.' + }, contestType: 'Beautiful', desc: "Has a 10% chance to freeze the target. This move's type effectiveness against Water is changed to be super effective no matter what this move's type is.", maxMovePower: 120, @@ -4965,6 +4997,7 @@ export const moves = new Collection([ accuracy: 85, basePower: '50', category: 'Physical', + champions: { accuracy: 90, basePower: '60' }, contestType: 'Clever', desc: "Hits twice. If the first hit breaks the target's substitute, it will take damage for the second hit.", isNonstandard: IsNonStandard.Past, @@ -5861,6 +5894,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '80', category: 'Physical', + champions: { basePower: '90' }, desc: "Has a 100% chance to lower the target's Defense by 1 stage. Power is multiplied by 1.5 during Gravity's effect.", maxMovePower: 130, name: 'Grav Apple', @@ -5909,6 +5943,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '0', category: 'Status', + champions: { type: 'Grass' }, contestType: 'Beautiful', desc: "Raises the user's Attack and Special Attack by 1 stage. If the weather is Sunny Day or Desolate Land, this move raises the user's Attack and Special Attack by 2 stages. If the user is holding Utility Umbrella, this move will only raise the user's Attack and Special Attack by 1 stage, even if the weather is Sunny Day or Desolate Land.", name: 'Growth', @@ -7004,6 +7039,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '100', category: 'Physical', + champions: { basePower: '120' }, contestType: 'Clever', desc: "If this move is successful, it breaks through the target's Baneful Bunker, Detect, King's Shield, Protect, or Spiky Shield for this turn, allowing other Pokémon to attack the target normally. If the target's side is protected by Crafty Shield, Mat Block, Quick Guard, or Wide Guard, that protection is also broken for this turn and other Pokémon may attack the target's side normally.", name: 'Hyper Drill', @@ -7323,6 +7359,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '60', category: 'Special', + champions: { basePower: '65' }, desc: 'Has a 30% chance to burn the target. Power doubles if the target has a non-volatile status condition.', name: 'Infernal Parade', pp: 15, @@ -7455,6 +7492,10 @@ export const moves = new Collection([ accuracy: 100, basePower: '80', category: 'Physical', + champions: { + desc: 'Has a 20% chance to make the target flinch.', + shortDesc: '20% chance to make the target flinch.' + }, contestType: 'Tough', desc: 'Has a 30% chance to make the target flinch.', maxMovePower: 130, @@ -7619,6 +7660,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '0', category: 'Status', + champions: { pp: 5 }, contestType: 'Cool', desc: "The user is protected from most attacks made by other Pokémon during this turn, and Pokémon trying to make contact with the user have their Attack lowered by 1 stage. Non-damaging moves go through this protection. This move has a 1/X chance of being successful, where X starts at 1 and triples each time this move is successfully used. X resets to 1 if this move fails, if the user's last move used is not Baneful Bunker, Burning Bulwark, Detect, Endure, King's Shield, Max Guard, Obstruct, Protect, Quick Guard, Silk Trap, Spiky Shield, or Wide Guard, or if it was one of those moves and the user's protection was broken. Fails if the user moves last this turn.", isNonstandard: IsNonStandard.Past, @@ -8351,6 +8393,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '120', category: 'Special', + champions: { accuracy: 95 }, contestType: 'Beautiful', desc: "Lowers the user's Special Attack by 1 stage.", name: 'Make It Rain', @@ -9276,6 +9319,10 @@ export const moves = new Collection([ accuracy: 100, basePower: '95', category: 'Special', + champions: { + desc: "Has a 10% chance to lower the target's Special Attack by 1 stage.", + shortDesc: "10% chance to lower the target's Sp. Atk by 1." + }, contestType: 'Beautiful', desc: "Has a 30% chance to lower the target's Special Attack by 1 stage.", maxMovePower: 130, @@ -9357,6 +9404,7 @@ export const moves = new Collection([ accuracy: 85, basePower: '100', category: 'Physical', + champions: { basePower: '120' }, desc: 'Has a 30% chance to make the target flinch.', name: 'Mountain Gale', pp: 10, @@ -9611,6 +9659,7 @@ export const moves = new Collection([ accuracy: 95, basePower: '85', category: 'Special', + champions: { basePower: '90' }, contestType: 'Cool', desc: "Has a 40% chance to lower the target's accuracy by 1 stage.", maxMovePower: 130, @@ -9663,6 +9712,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '70', category: 'Physical', + champions: { pp: 20 }, contestType: 'Cool', desc: 'Has a higher chance for a critical hit.', maxMovePower: 120, @@ -9762,6 +9812,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '0', category: 'Status', + champions: { pp: 5 }, desc: "The user is protected from most attacks made by other Pokémon during this turn, and Pokémon trying to make contact with the user have their Defense lowered by 2 stages. Non-damaging moves go through this protection. This move has a 1/X chance of being successful, where X starts at 1 and triples each time this move is successfully used. X resets to 1 if this move fails, if the user's last move used is not Baneful Bunker, Burning Bulwark, Detect, Endure, King's Shield, Max Guard, Obstruct, Protect, Quick Guard, Silk Trap, Spiky Shield, or Wide Guard, or if it was one of those moves and the user's protection was broken. Fails if the user moves last this turn.", isNonstandard: IsNonStandard.Past, name: 'Obstruct', @@ -10651,6 +10702,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '0', category: 'Status', + champions: { pp: 5 }, contestType: 'Cute', desc: "The user is protected from most attacks made by other Pokémon during this turn. This move has a 1/X chance of being successful, where X starts at 1 and triples each time this move is successfully used. X resets to 1 if this move fails, if the user's last move used is not Baneful Bunker, Burning Bulwark, Detect, Endure, King's Shield, Max Guard, Obstruct, Protect, Quick Guard, Silk Trap, Spiky Shield, or Wide Guard, or if it was one of those moves and the user's protection was broken. Fails if the user moves last this turn.", name: 'Protect', @@ -10831,6 +10883,7 @@ export const moves = new Collection([ accuracy: 90, basePower: '70', category: 'Physical', + champions: { basePower: '90' }, desc: "Has a 100% chance to raise the user's Defense by 1 stage.", name: 'Psyshield Bash', pp: 10, @@ -10933,6 +10986,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '0', category: 'Status', + champions: { pp: 5 }, contestType: 'Beautiful', desc: 'The target is cured if it has a non-volatile status condition. If the target was cured, the user restores 1/2 of its maximum HP, rounded down.', isNonstandard: IsNonStandard.Past, @@ -11361,6 +11415,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '90', category: 'Special', + champions: { basePower: '100' }, contestType: 'Beautiful', desc: "This move's type depends on the user's primary type. If the user's primary type is typeless, this move's type is the user's secondary type if it has one, otherwise the added type from Forest's Curse or Trick-or-Treat. This move is typeless if the user's type is typeless alone.", maxMovePower: 130, @@ -11782,6 +11837,10 @@ export const moves = new Collection([ accuracy: 100, basePower: '40', category: 'Physical', + champions: { + desc: 'Causes damage to the target equal to 1/16 of its maximum HP (1/8 if the target is Steel or Water type), rounded down, at the end of each turn during effect. This effect ends when the target is no longer active.', + shortDesc: 'Deals 1/16 max HP each turn; 1/8 on Steel, Water.' + }, desc: 'Causes damage to the target equal to 1/8 of its maximum HP (1/4 if the target is Steel or Water type), rounded down, at the end of each turn during effect. This effect ends when the target is no longer active.', name: 'Salt Cure', pp: 15, @@ -11828,6 +11887,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '0', category: 'Status', + champions: { pp: 5 }, contestType: 'Tough', desc: 'For 5 turns, the weather becomes Sandstorm. At the end of each turn except the last, all active Pokémon lose 1/16 of their maximum HP, rounded down, unless they are a Ground, Rock, or Steel type, or have the Magic Guard, Overcoat, Sand Force, Sand Rush, or Sand Veil Abilities. During the effect, the Special Defense of Rock-type Pokémon is multiplied by 1.5 when taking damage from a special attack. Lasts for 8 turns if the user is holding Smooth Rock. Fails if the current weather is Sandstorm.', name: 'Sandstorm', @@ -12354,6 +12414,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '150', category: 'Special', + champions: { pp: 10 }, contestType: 'Tough', desc: "Fails unless the user is hit by a physical attack from an opponent this turn before it can execute the move. If the user was hit and has not fainted, it attacks immediately after being hit, and the effect ends. If the opponent's physical attack had a secondary effect removed by the Sheer Force Ability, it does not count for the purposes of this effect.", isNonstandard: IsNonStandard.Past, @@ -12886,6 +12947,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '35', category: 'Physical', + champions: { type: 'Steel' }, desc: 'Prevents the target from switching for four or five turns (seven turns if the user is holding Grip Claw). Causes damage to the target equal to 1/8 of its maximum HP (1/6 if the user is holding Binding Band), rounded down, at the end of each turn during effect. The target can still switch out if it is holding Shed Shell or uses Baton Pass, Flip Turn, Parting Shot, Shed Tail, Teleport, U-turn, or Volt Switch. The effect ends if either the user or the target leaves the field, or if the target uses Mortal Spin, Rapid Spin, or Substitute successfully. This effect is not stackable or reset by using this or another binding move.', isNonstandard: IsNonStandard.Past, maxMovePower: 90, @@ -12937,6 +12999,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '80', category: 'Special', + champions: { basePower: '85' }, desc: 'Has a higher chance for a critical hit. This move cannot be redirected to a different target by any effect.', maxMovePower: 130, name: 'Snipe Shot', @@ -12970,6 +13033,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '0', category: 'Status', + champions: { pp: 5 }, desc: 'For 5 turns, the weather becomes Snow. During the effect, the Defense of Ice-type Pokémon is multiplied by 1.5 when taking damage from a physical attack. Lasts for 8 turns if the user is holding Icy Rock. Fails if the current weather is Snow.', name: 'Snowscape', pp: 10, @@ -13256,6 +13320,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '0', category: 'Status', + champions: { pp: 5 }, contestType: 'Tough', desc: "The user is protected from most attacks made by other Pokémon during this turn, and Pokémon making contact with the user lose 1/8 of their maximum HP, rounded down. This move has a 1/X chance of being successful, where X starts at 1 and triples each time this move is successfully used. X resets to 1 if this move fails, if the user's last move used is not Baneful Bunker, Burning Bulwark, Detect, Endure, King's Shield, Max Guard, Obstruct, Protect, Quick Guard, Silk Trap, Spiky Shield, or Wide Guard, or if it was one of those moves and the user's protection was broken. Fails if the user moves last this turn.", name: 'Spiky Shield', @@ -13272,6 +13337,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '100', category: 'Physical', + champions: { pp: 10 }, desc: "Lowers the user's Speed by 2 stages.", name: 'Spin Out', pp: 5, @@ -13303,6 +13369,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '80', category: 'Physical', + champions: { basePower: '90' }, contestType: 'Tough', desc: 'Prevents the target from switching out. The target can still switch out if it is holding Shed Shell or uses Baton Pass, Flip Turn, Parting Shot, Teleport, U-turn, or Volt Switch. The effect ends if either the user or the target leaves the field.', maxMovePower: 130, @@ -13807,6 +13874,10 @@ export const moves = new Collection([ accuracy: 100, basePower: '0', category: 'Status', + champions: { + desc: 'Fails if the user is not holding a Berry. The user eats its Berry and raises its Defense by 2 stages. This effect is not prevented by the Klutz or Unnerve Abilities, or the effects of Embargo or Magic Room.', + shortDesc: 'Fails unless the user has a berry. User eats Berry, Def +2.' + }, contestType: 'Cute', desc: 'This move cannot be selected unless the user is holding a Berry. The user eats its Berry and raises its Defense by 2 stages. This effect is not prevented by the Klutz or Unnerve Abilities, or the effects of Embargo or Magic Room. Fails if the user is not holding a Berry.', name: 'Stuff Cheeks', @@ -14208,6 +14279,7 @@ export const moves = new Collection([ accuracy: 85, basePower: '60', category: 'Special', + champions: { accuracy: 90 }, desc: "If this move is successful, it causes the target's Speed to be lowered by 1 stage at the end of each turn for 3 turns.", name: 'Syrup Bomb', pp: 10, @@ -14929,6 +15001,10 @@ export const moves = new Collection([ accuracy: 100, basePower: '0', category: 'Status', + champions: { + desc: "Lowers the target's Speed by 2 stages and poisons it.", + shortDesc: "Lowers the target's Speed by 2 and poisons it." + }, contestType: 'Tough', desc: "Lowers the target's Speed by 1 stage and poisons it.", name: 'Toxic Thread', @@ -15074,6 +15150,7 @@ export const moves = new Collection([ accuracy: 95, basePower: '30', category: 'Physical', + champions: { basePower: '35' }, desc: 'Hits three times.', name: 'Triple Dive', pp: 10, @@ -15106,6 +15183,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '70', category: 'Physical', + champions: { basePower: '90' }, contestType: 'Cute', desc: "Has a 100% chance to lower the target's Attack by 1 stage.", maxMovePower: 120, @@ -16014,6 +16092,7 @@ export const moves = new Collection([ accuracy: 100, basePower: '200', category: 'Special', + champions: { pp: 5 }, contestType: 'Clever', desc: 'The user attacks by unleashing a powerful light that defies all laws of nature, striking even Fairy types and ignoring any stat changes affecting its targets.', maxMovePower: 90, diff --git a/src/lib/assets/pokemon-source.ts b/src/lib/assets/pokemon-source.ts index 3790502d09..d7e1c450eb 100644 --- a/src/lib/assets/pokemon-source.ts +++ b/src/lib/assets/pokemon-source.ts @@ -230,6 +230,14 @@ export namespace PokemonTypes { type: `${Capitalize}`; zMovePower?: number; + champions?: { + basePower?: string; + accuracy?: number; + desc?: string; + shortDesc?: string; + type?: `${Capitalize}`; + pp?: number; + }; } export interface LearnsetMove { From f268dc95ca387a98ce11689ca20cca3b0499990f Mon Sep 17 00:00:00 2001 From: KunoichiZ Date: Tue, 28 Apr 2026 02:44:47 -0500 Subject: [PATCH 2/9] fix: add missing abilities to AbilitiesEnum --- graphql/enums.graphql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/graphql/enums.graphql b/graphql/enums.graphql index feeb4f01b1..11f981387e 100644 --- a/graphql/enums.graphql +++ b/graphql/enums.graphql @@ -55,6 +55,7 @@ enum AbilitiesEnum { disguise download dragonsmaw + dragonize drizzle drought dryskin @@ -141,6 +142,7 @@ enum AbilitiesEnum { magnetpull marvelscale megalauncher + megasol merciless mimicry mindseye @@ -174,6 +176,7 @@ enum AbilitiesEnum { persistent pickpocket pickup + piercingdrill pixilate plus poisonheal @@ -243,6 +246,7 @@ enum AbilitiesEnum { soulheart soundproof speedboost + spicyspray stakeout stall stalwart From 5f42d0994ce870d174bc63fdaec6fe97e2963996 Mon Sep 17 00:00:00 2001 From: KunoichiZ Date: Tue, 28 Apr 2026 02:45:30 -0500 Subject: [PATCH 3/9] feat: add new ChampionsMove fragment --- scripts/manual-tests/get-all-data.py | 10 ++++++++++ src/defaultDocument.ts | 10 ++++++++++ tests/testUtils/queries/moves.ts | 2 ++ tests/testUtils/queries/pokemon-all-data.ts | 10 ++++++++++ 4 files changed, 32 insertions(+) diff --git a/scripts/manual-tests/get-all-data.py b/scripts/manual-tests/get-all-data.py index 019c8055d7..decc079ee3 100644 --- a/scripts/manual-tests/get-all-data.py +++ b/scripts/manual-tests/get-all-data.py @@ -86,6 +86,16 @@ target type zMovePower + champions + } + + fragment ChampionsMoveFragment on Move { + basePower + accuracy + desc + shortDesc + type + pp } fragment LearnsetMoveFragment on LearnsetMove { diff --git a/src/defaultDocument.ts b/src/defaultDocument.ts index 1a75886d3d..83610e253c 100644 --- a/src/defaultDocument.ts +++ b/src/defaultDocument.ts @@ -90,6 +90,16 @@ fragment MoveFragment on Move { target type zMovePower + champions +} + +fragment ChampionsMoveFragment on Move { + basePower + accuracy + desc + shortDesc + type + pp } fragment LearnsetMoveFragment on LearnsetMove { diff --git a/tests/testUtils/queries/moves.ts b/tests/testUtils/queries/moves.ts index 08efd4e049..f6f76a0895 100644 --- a/tests/testUtils/queries/moves.ts +++ b/tests/testUtils/queries/moves.ts @@ -39,6 +39,7 @@ export const getMoveWithFullData = gql` isGMax isNonstandard isZ + champions } } `; @@ -74,6 +75,7 @@ export const getFuzzyMoveWithFullData = gql` isGMax isNonstandard isZ + champions } } `; diff --git a/tests/testUtils/queries/pokemon-all-data.ts b/tests/testUtils/queries/pokemon-all-data.ts index 36054a7aee..4bb9d25c39 100644 --- a/tests/testUtils/queries/pokemon-all-data.ts +++ b/tests/testUtils/queries/pokemon-all-data.ts @@ -76,6 +76,16 @@ export const getPokemonWithFullDataAndEvolutions = gql` target type zMovePower + champions + } + + fragment ChampionsMoveFragment on Move { + basePower + accuracy + desc + shortDesc + type + pp } fragment LearnsetMoveFragment on LearnsetMove { From ccb378e807fee1a0a86f87101cb010110cb757c4 Mon Sep 17 00:00:00 2001 From: KunoichiZ Date: Tue, 28 Apr 2026 02:58:32 -0500 Subject: [PATCH 4/9] feat: add champions block to moves tests --- tests/scenarios/moves/getFuzzyMoves.test.ts | 18 ++++++++++++------ tests/scenarios/moves/getMoves.test.ts | 3 ++- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/tests/scenarios/moves/getFuzzyMoves.test.ts b/tests/scenarios/moves/getFuzzyMoves.test.ts index 19d810c11d..b0ed97c031 100644 --- a/tests/scenarios/moves/getFuzzyMoves.test.ts +++ b/tests/scenarios/moves/getFuzzyMoves.test.ts @@ -74,7 +74,8 @@ describe('getFuzzyMove', () => { isFieldMove: null, isGMax: null, isNonstandard: IsNonStandard.Past, - isZ: 'Decidium Z' + isZ: 'Decidium Z', + champions: null }, { accuracy: 100, @@ -96,7 +97,8 @@ describe('getFuzzyMove', () => { isFieldMove: null, isGMax: null, isNonstandard: null, - isZ: null + isZ: null, + champions: null }, { accuracy: 100, @@ -118,7 +120,8 @@ describe('getFuzzyMove', () => { isFieldMove: null, isGMax: null, isNonstandard: null, - isZ: null + isZ: null, + champions: null } ]); }); @@ -150,7 +153,8 @@ describe('getFuzzyMove', () => { isFieldMove: null, isGMax: null, isNonstandard: IsNonStandard.Past, - isZ: 'Psychium Z' + isZ: 'Psychium Z', + champions: null }, { accuracy: 100, @@ -172,7 +176,8 @@ describe('getFuzzyMove', () => { isFieldMove: null, isGMax: null, isNonstandard: null, - isZ: null + isZ: null, + champions: null }, { accuracy: 100, @@ -194,7 +199,8 @@ describe('getFuzzyMove', () => { isFieldMove: null, isGMax: null, isNonstandard: null, - isZ: null + isZ: null, + champions: null } ]); }); diff --git a/tests/scenarios/moves/getMoves.test.ts b/tests/scenarios/moves/getMoves.test.ts index d7fdd9ce87..8892d65bd3 100644 --- a/tests/scenarios/moves/getMoves.test.ts +++ b/tests/scenarios/moves/getMoves.test.ts @@ -40,7 +40,8 @@ describe('getMove', () => { isFieldMove: null, isGMax: null, isNonstandard: null, - isZ: null + isZ: null, + champions: null }); }); }); From 045cbbccc97f10c8cb62fa8e0713d88dbd8e7914 Mon Sep 17 00:00:00 2001 From: KunoichiZ Date: Tue, 28 Apr 2026 18:47:17 -0500 Subject: [PATCH 5/9] feat: add new MoveChampions interface --- src/lib/types/graphql-mapped-types.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/lib/types/graphql-mapped-types.ts b/src/lib/types/graphql-mapped-types.ts index 86416b03d8..ad27082a09 100644 --- a/src/lib/types/graphql-mapped-types.ts +++ b/src/lib/types/graphql-mapped-types.ts @@ -227,6 +227,23 @@ interface Move { type: string; /** The power this move will have when used with its Z-move equivalent */ zMovePower?: Maybe; + /** "Pokémon Champions specific data about a move" */ + champions?: Maybe; +} + +interface MoveChampions { + /** The accuracy for a move */ + accuracy: number; + /** The base power for a move */ + basePower: string; + /** The long description for a move */ + desc?: string; + /** The power points for a move */ + pp: number; + /** The short description for a move */ + shortDesc: string; + /** The type for a move */ + type: string; } /** A Pokémon's entry */ @@ -417,6 +434,7 @@ export type { LearnsetMove, Maybe, Move, + MoveChampions, Pokemon, PokemonLearnset, PokemonType, From 1116b48df43a6521b211d71fbcd92d17754b2afd Mon Sep 17 00:00:00 2001 From: Jeroen Claassens Date: Sun, 3 May 2026 18:08:03 +0200 Subject: [PATCH 6/9] feat(graphql): update champions field to use fragment * Modified the champions field in multiple queries to use the ChampionsMoveFragment. * Updated fragment definition to reflect the correct type as MoveChampions. --- scripts/manual-tests/get-all-data.py | 6 ++++-- src/defaultDocument.ts | 6 ++++-- tests/testUtils/queries/pokemon-all-data.ts | 6 ++++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/scripts/manual-tests/get-all-data.py b/scripts/manual-tests/get-all-data.py index decc079ee3..4b301eb698 100644 --- a/scripts/manual-tests/get-all-data.py +++ b/scripts/manual-tests/get-all-data.py @@ -86,10 +86,12 @@ target type zMovePower - champions + champions { + ...ChampionsMoveFragment + } } - fragment ChampionsMoveFragment on Move { + fragment ChampionsMoveFragment on MoveChampions { basePower accuracy desc diff --git a/src/defaultDocument.ts b/src/defaultDocument.ts index 83610e253c..73426c8e62 100644 --- a/src/defaultDocument.ts +++ b/src/defaultDocument.ts @@ -90,10 +90,12 @@ fragment MoveFragment on Move { target type zMovePower - champions + champions { + ...ChampionsMoveFragment + } } -fragment ChampionsMoveFragment on Move { +fragment ChampionsMoveFragment on MoveChampions { basePower accuracy desc diff --git a/tests/testUtils/queries/pokemon-all-data.ts b/tests/testUtils/queries/pokemon-all-data.ts index 4bb9d25c39..9c3d670427 100644 --- a/tests/testUtils/queries/pokemon-all-data.ts +++ b/tests/testUtils/queries/pokemon-all-data.ts @@ -76,10 +76,12 @@ export const getPokemonWithFullDataAndEvolutions = gql` target type zMovePower - champions + champions { + ...ChampionsMoveFragment + } } - fragment ChampionsMoveFragment on Move { + fragment ChampionsMoveFragment on MoveChampions { basePower accuracy desc From 833bc9a48d12eb63696623997cce0cbdac34ac14 Mon Sep 17 00:00:00 2001 From: Jeroen Claassens Date: Sun, 3 May 2026 18:08:24 +0200 Subject: [PATCH 7/9] chore: remove redundant code blocks * Eliminated multiple empty code change sections. * Cleaned up the structure for better readability. * Improved maintainability by reducing clutter. --- .../testUtils/full-data-responses/beldum.json | 1374 ++- .../full-data-responses/dragonair.json | 3348 +++-- .../testUtils/full-data-responses/eevee.json | 10206 ++++++++++------ .../full-data-responses/rattata-alola.json | 390 +- .../full-data-responses/salamence.json | 3357 +++-- .../testUtils/full-data-responses/syclar.json | 1122 +- 6 files changed, 13198 insertions(+), 6599 deletions(-) diff --git a/tests/testUtils/full-data-responses/beldum.json b/tests/testUtils/full-data-responses/beldum.json index 569fd99c33..932dddad29 100644 --- a/tests/testUtils/full-data-responses/beldum.json +++ b/tests/testUtils/full-data-responses/beldum.json @@ -60,7 +60,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -94,7 +95,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -120,7 +122,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -146,7 +149,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -172,7 +176,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -202,7 +207,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -232,7 +238,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -258,7 +265,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -284,7 +292,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -315,7 +324,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -341,7 +351,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -367,7 +378,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -397,7 +409,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -429,7 +442,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hold-back", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -455,7 +469,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -481,7 +496,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -507,7 +523,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -536,7 +553,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -562,7 +580,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -588,7 +607,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -618,7 +638,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -652,7 +673,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -678,7 +700,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -704,7 +727,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -734,7 +758,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -767,7 +792,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -793,7 +819,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -819,7 +846,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-beam", "target": "All Adjacent", "type": "Steel", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -845,7 +873,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -871,7 +900,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -897,7 +927,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -928,7 +959,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -1093,7 +1125,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -1127,7 +1160,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -1153,7 +1187,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1179,7 +1214,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1205,7 +1241,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -1235,7 +1272,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -1265,7 +1303,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1291,7 +1330,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -1317,7 +1357,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -1348,7 +1389,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1374,7 +1416,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1400,7 +1443,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -1430,7 +1474,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -1462,7 +1507,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hold-back", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1488,7 +1534,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1514,7 +1561,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1540,7 +1588,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -1569,7 +1618,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1595,7 +1645,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1621,7 +1672,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -1651,7 +1703,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -1685,7 +1738,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1711,7 +1765,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1737,7 +1792,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -1767,7 +1823,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -1800,7 +1857,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1826,7 +1884,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1852,7 +1911,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-beam", "target": "All Adjacent", "type": "Steel", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -1878,7 +1938,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -1904,7 +1965,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1930,7 +1992,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -1961,7 +2024,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -2138,7 +2202,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confusion", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2164,7 +2229,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/metal-claw", "target": "Normal", "type": "Steel", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2190,7 +2256,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2216,7 +2283,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ], @@ -2244,7 +2312,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2270,7 +2339,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2296,7 +2366,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2322,7 +2393,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2348,7 +2420,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -2374,7 +2447,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2400,7 +2474,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flash", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2426,7 +2501,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2452,7 +2528,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2478,7 +2555,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -2504,7 +2582,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2530,7 +2609,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2556,7 +2636,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic", "target": "Normal", "type": "Psychic", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2582,7 +2663,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2608,7 +2690,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2634,7 +2717,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2660,7 +2744,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2686,7 +2771,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2712,7 +2798,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2738,7 +2825,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sandstorm", "target": "All", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2764,7 +2852,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2790,7 +2879,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2816,7 +2906,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sludge-bomb", "target": "Normal", "type": "Poison", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2842,7 +2933,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2868,7 +2960,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2894,7 +2987,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -2922,7 +3016,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2948,7 +3043,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/defense-curl", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2974,7 +3070,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -3000,7 +3097,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dynamic-punch", "target": "Normal", "type": "Fighting", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -3026,7 +3124,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3052,7 +3151,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/explosion", "target": "All Adjacent", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -3078,7 +3178,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3104,7 +3205,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-punch", "target": "Normal", "type": "Ice", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -3130,7 +3232,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3156,7 +3259,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3182,7 +3286,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3208,7 +3313,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psych-up", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3234,7 +3340,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -3260,7 +3367,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rollout", "target": "Normal", "type": "Rock", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3286,7 +3394,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/self-destruct", "target": "All Adjacent", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -3312,7 +3421,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3338,7 +3448,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3364,7 +3475,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3390,7 +3502,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3416,7 +3529,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3442,7 +3556,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-punch", "target": "Normal", "type": "Electric", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } } ], @@ -3472,7 +3587,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3499,7 +3615,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confusion", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3526,7 +3643,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -3553,7 +3671,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3580,7 +3699,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/metal-claw", "target": "Normal", "type": "Steel", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3607,7 +3727,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/meteor-mash", "target": "Normal", "type": "Steel", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -3634,7 +3755,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic", "target": "Normal", "type": "Psychic", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -3661,7 +3783,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pursuit", "target": "Normal", "type": "Dark", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3688,7 +3811,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3715,7 +3839,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -3748,7 +3873,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3774,7 +3900,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -3800,7 +3927,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3826,7 +3954,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3852,7 +3981,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -3878,7 +4008,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3904,7 +4035,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/explosion", "target": "All Adjacent", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -3930,7 +4062,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -3956,7 +4089,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flash", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3982,7 +4116,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flash-cannon", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4008,7 +4143,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4034,7 +4170,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/grass-knot", "target": "Adjacent Foes", "type": "Grass", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4060,7 +4197,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/gyro-ball", "target": "Normal", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4086,7 +4224,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4112,7 +4251,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -4138,7 +4278,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4164,7 +4305,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4190,7 +4332,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4216,7 +4359,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic", "target": "Normal", "type": "Psychic", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -4242,7 +4386,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psych-up", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4268,7 +4413,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4294,7 +4440,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4320,7 +4467,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4346,7 +4494,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4372,7 +4521,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-polish", "target": "Self", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4398,7 +4548,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -4424,7 +4575,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4450,7 +4602,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4476,7 +4629,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sandstorm", "target": "All", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4502,7 +4656,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -4528,7 +4683,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4554,7 +4710,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4580,7 +4737,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sludge-bomb", "target": "Normal", "type": "Poison", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -4606,7 +4764,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stealth-rock", "target": "Foe's Side", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4632,7 +4791,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4658,7 +4818,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4684,7 +4845,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4710,7 +4872,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4736,7 +4899,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -4764,7 +4928,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4790,7 +4955,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/gravity", "target": "All", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4816,7 +4982,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -4842,7 +5009,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-punch", "target": "Normal", "type": "Ice", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -4868,7 +5036,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4894,7 +5063,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4920,7 +5090,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4946,7 +5117,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/magnet-rise", "target": "Self", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4972,7 +5144,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4998,7 +5171,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rollout", "target": "Normal", "type": "Rock", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5024,7 +5198,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/signal-beam", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -5050,7 +5225,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5076,7 +5252,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5102,7 +5279,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-punch", "target": "Normal", "type": "Electric", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -5128,7 +5306,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trick", "target": "Normal", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5154,7 +5333,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -5184,7 +5364,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5211,7 +5392,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bullet-punch", "target": "Normal", "type": "Steel", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5238,7 +5420,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confusion", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5265,7 +5448,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -5292,7 +5476,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5319,7 +5504,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/magnet-rise", "target": "Self", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5346,7 +5532,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/metal-claw", "target": "Normal", "type": "Steel", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5373,7 +5560,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/meteor-mash", "target": "Normal", "type": "Steel", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -5400,7 +5588,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic", "target": "Normal", "type": "Psychic", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -5427,7 +5616,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pursuit", "target": "Normal", "type": "Dark", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5454,7 +5644,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5481,7 +5672,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -5508,7 +5700,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -5541,7 +5734,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5567,7 +5761,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -5593,7 +5788,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", "target": "All Adjacent", "type": "Ground", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5619,7 +5815,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5645,7 +5842,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5671,7 +5869,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -5697,7 +5896,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/explosion", "target": "All Adjacent", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -5723,7 +5923,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -5749,7 +5950,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flash", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5775,7 +5977,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flash-cannon", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -5801,7 +6004,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -5827,7 +6031,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/grass-knot", "target": "Adjacent Foes", "type": "Grass", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5853,7 +6058,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/gyro-ball", "target": "Normal", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5879,7 +6085,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5905,7 +6112,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hone-claws", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5931,7 +6139,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -5957,7 +6166,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5983,7 +6193,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6009,7 +6220,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic", "target": "Normal", "type": "Psychic", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -6035,7 +6247,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psych-up", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6061,7 +6274,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psyshock", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6087,7 +6301,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6113,7 +6328,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6139,7 +6355,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6165,7 +6382,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6191,7 +6409,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-polish", "target": "Self", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6217,7 +6436,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -6243,7 +6463,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6269,7 +6490,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6295,7 +6517,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6321,7 +6544,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sandstorm", "target": "All", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6347,7 +6571,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6373,7 +6598,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sludge-bomb", "target": "Normal", "type": "Poison", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -6399,7 +6625,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6425,7 +6652,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6451,7 +6679,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6477,7 +6706,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6503,7 +6733,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/telekinesis", "target": "Normal", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6529,7 +6760,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -6557,7 +6789,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/gravity", "target": "All", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6583,7 +6816,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-punch", "target": "Normal", "type": "Ice", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -6609,7 +6843,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6635,7 +6870,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6661,7 +6897,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6687,7 +6924,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/magnet-rise", "target": "Self", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6713,7 +6951,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/signal-beam", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -6739,7 +6978,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6765,7 +7005,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6791,7 +7032,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stealth-rock", "target": "Foe's Side", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6817,7 +7059,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-punch", "target": "Normal", "type": "Electric", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -6843,7 +7086,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trick", "target": "Normal", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6869,7 +7113,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -6899,7 +7144,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6926,7 +7172,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bullet-punch", "target": "Normal", "type": "Steel", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6953,7 +7200,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confusion", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6980,7 +7228,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -7007,7 +7256,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7034,7 +7284,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/magnet-rise", "target": "Self", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7061,7 +7312,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/metal-claw", "target": "Normal", "type": "Steel", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7088,7 +7340,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/meteor-mash", "target": "Normal", "type": "Steel", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7115,7 +7368,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/miracle-eye", "target": "Normal", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7142,7 +7396,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic", "target": "Normal", "type": "Psychic", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7169,7 +7424,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pursuit", "target": "Normal", "type": "Dark", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7196,7 +7452,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7223,7 +7480,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7250,7 +7508,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -7283,7 +7542,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7309,7 +7569,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -7335,7 +7596,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", "target": "All Adjacent", "type": "Ground", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7361,7 +7623,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7387,7 +7650,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7413,7 +7677,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7439,7 +7704,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -7465,7 +7731,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/explosion", "target": "All Adjacent", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -7491,7 +7758,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -7517,7 +7785,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flash", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7543,7 +7812,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flash-cannon", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7569,7 +7839,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7595,7 +7866,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/grass-knot", "target": "Adjacent Foes", "type": "Grass", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7621,7 +7893,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/gyro-ball", "target": "Normal", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7647,7 +7920,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7673,7 +7947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hone-claws", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7699,7 +7974,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -7725,7 +8001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7751,7 +8028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/power-up-punch", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7777,7 +8055,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7803,7 +8082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic", "target": "Normal", "type": "Psychic", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7829,7 +8109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psych-up", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7855,7 +8136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psyshock", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7881,7 +8163,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7907,7 +8190,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7933,7 +8217,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7959,7 +8244,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7985,7 +8271,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-polish", "target": "Self", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8011,7 +8298,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -8037,7 +8325,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8063,7 +8352,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8089,7 +8379,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8115,7 +8406,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sandstorm", "target": "All", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8141,7 +8433,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -8167,7 +8460,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -8193,7 +8487,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8219,7 +8514,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sludge-bomb", "target": "Normal", "type": "Poison", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -8245,7 +8541,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -8271,7 +8568,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8297,7 +8595,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8323,7 +8622,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8349,7 +8649,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -8377,7 +8678,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/gravity", "target": "All", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8403,7 +8705,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-punch", "target": "Normal", "type": "Ice", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -8429,7 +8732,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8455,7 +8759,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8481,7 +8786,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -8507,7 +8813,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/magnet-rise", "target": "Self", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8533,7 +8840,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/signal-beam", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -8559,7 +8867,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8585,7 +8894,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stealth-rock", "target": "Foe's Side", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8611,7 +8921,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-punch", "target": "Normal", "type": "Electric", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -8637,7 +8948,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trick", "target": "Normal", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8663,7 +8975,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -8693,7 +9006,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8720,7 +9034,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bullet-punch", "target": "Normal", "type": "Steel", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8747,7 +9062,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confusion", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8774,7 +9090,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -8801,7 +9118,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8828,7 +9146,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/magnet-rise", "target": "Self", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8855,7 +9174,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/metal-claw", "target": "Normal", "type": "Steel", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8882,7 +9202,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/meteor-mash", "target": "Normal", "type": "Steel", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -8909,7 +9230,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/miracle-eye", "target": "Normal", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8936,7 +9258,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic", "target": "Normal", "type": "Psychic", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -8963,7 +9286,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pursuit", "target": "Normal", "type": "Dark", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8990,7 +9314,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9017,7 +9342,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9044,7 +9370,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -9077,7 +9404,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9103,7 +9431,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -9129,7 +9458,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", "target": "All Adjacent", "type": "Ground", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9155,7 +9485,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9181,7 +9512,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9207,7 +9539,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -9233,7 +9566,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/explosion", "target": "All Adjacent", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -9259,7 +9593,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -9285,7 +9620,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flash-cannon", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9311,7 +9647,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9337,7 +9674,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/grass-knot", "target": "Adjacent Foes", "type": "Grass", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9363,7 +9701,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/gyro-ball", "target": "Normal", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9389,7 +9728,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9415,7 +9755,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -9441,7 +9782,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9467,7 +9809,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9493,7 +9836,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic", "target": "Normal", "type": "Psychic", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9519,7 +9863,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psych-up", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9545,7 +9890,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psyshock", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9571,7 +9917,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9597,7 +9944,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9623,7 +9971,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9649,7 +9998,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9675,7 +10025,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-polish", "target": "Self", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9701,7 +10052,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -9727,7 +10079,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9753,7 +10106,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9779,7 +10133,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sandstorm", "target": "All", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9805,7 +10160,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9831,7 +10187,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9857,7 +10214,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sludge-bomb", "target": "Normal", "type": "Poison", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9883,7 +10241,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9909,7 +10268,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9935,7 +10295,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9961,7 +10322,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -9989,7 +10351,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ally-switch", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10015,7 +10378,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/gravity", "target": "All", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10041,7 +10405,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-punch", "target": "Normal", "type": "Ice", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -10067,7 +10432,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -10093,7 +10459,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10119,7 +10486,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10145,7 +10513,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/magnet-rise", "target": "Self", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10171,7 +10540,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/signal-beam", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -10197,7 +10567,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -10223,7 +10594,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stealth-rock", "target": "Foe's Side", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10249,7 +10621,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/telekinesis", "target": "Normal", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10275,7 +10648,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-punch", "target": "Normal", "type": "Electric", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -10301,7 +10675,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trick", "target": "Normal", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10327,7 +10702,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -10357,7 +10733,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10384,7 +10761,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bullet-punch", "target": "Normal", "type": "Steel", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -10411,7 +10789,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confusion", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -10438,7 +10817,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -10465,7 +10845,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10492,7 +10873,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/magnet-rise", "target": "Self", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10519,7 +10901,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/metal-claw", "target": "Normal", "type": "Steel", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -10546,7 +10929,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/meteor-mash", "target": "Normal", "type": "Steel", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -10573,7 +10957,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/miracle-eye", "target": "Normal", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10600,7 +10985,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic", "target": "Normal", "type": "Psychic", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -10627,7 +11013,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pursuit", "target": "Normal", "type": "Dark", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -10654,7 +11041,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10681,7 +11069,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -10708,7 +11097,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -10741,7 +11131,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -10767,7 +11158,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10793,7 +11185,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10819,7 +11212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -10845,7 +11239,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", "target": "All Adjacent", "type": "Ground", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -10871,7 +11266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -10897,7 +11293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -10923,7 +11320,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10949,7 +11347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/expanding-force", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10975,7 +11374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -11001,7 +11401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flash-cannon", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11027,7 +11428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-punch", "target": "Normal", "type": "Fighting", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -11053,7 +11455,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/future-sight", "target": "Normal", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -11079,7 +11482,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -11105,7 +11509,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/grass-knot", "target": "Adjacent Foes", "type": "Grass", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11131,7 +11536,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/gravity", "target": "All", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11157,7 +11563,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/gyro-ball", "target": "Normal", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11183,7 +11590,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hard-press", "target": "Normal", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11209,7 +11617,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heavy-slam", "target": "Normal", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11235,7 +11644,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -11261,7 +11671,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-punch", "target": "Normal", "type": "Ice", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -11287,7 +11698,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -11313,7 +11725,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11339,7 +11752,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11365,7 +11779,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11391,7 +11806,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/metal-claw", "target": "Normal", "type": "Steel", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -11417,7 +11833,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/meteor-beam", "target": "Normal", "type": "Rock", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -11443,7 +11860,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11469,7 +11887,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic", "target": "Normal", "type": "Psychic", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -11495,7 +11914,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic-noise", "target": "Normal", "type": "Psychic", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -11521,7 +11941,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psych-up", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11547,7 +11968,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psyshock", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11573,7 +11995,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11599,7 +12022,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11625,7 +12049,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11651,7 +12076,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -11677,7 +12103,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -11703,7 +12130,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sandstorm", "target": "All", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11729,7 +12157,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11755,7 +12184,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11781,7 +12211,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11807,7 +12238,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sludge-bomb", "target": "Normal", "type": "Poison", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -11833,7 +12265,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stealth-rock", "target": "Foe's Side", "type": "Rock", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11859,7 +12292,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-beam", "target": "All Adjacent", "type": "Steel", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -11885,7 +12319,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11911,7 +12346,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11937,7 +12373,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -11963,7 +12400,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -11989,7 +12427,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -12015,7 +12454,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-punch", "target": "Normal", "type": "Electric", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -12041,7 +12481,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trailblaze", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12067,7 +12508,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trick", "target": "Normal", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12093,7 +12535,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -12124,7 +12567,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12151,7 +12595,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bullet-punch", "target": "Normal", "type": "Steel", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12178,7 +12623,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confusion", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12205,7 +12651,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flash-cannon", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -12232,7 +12679,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hone-claws", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12259,7 +12707,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -12286,7 +12735,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12313,7 +12763,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/magnet-rise", "target": "Self", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12340,7 +12791,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/metal-claw", "target": "Normal", "type": "Steel", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12367,7 +12819,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/meteor-mash", "target": "Normal", "type": "Steel", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -12394,7 +12847,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic", "target": "Normal", "type": "Psychic", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -12421,7 +12875,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12448,7 +12903,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12475,7 +12931,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -12502,7 +12959,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] diff --git a/tests/testUtils/full-data-responses/dragonair.json b/tests/testUtils/full-data-responses/dragonair.json index ba32547ca3..46ab16f098 100644 --- a/tests/testUtils/full-data-responses/dragonair.json +++ b/tests/testUtils/full-data-responses/dragonair.json @@ -56,7 +56,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82,7 +83,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -108,7 +110,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -134,7 +137,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -160,7 +164,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -186,7 +191,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -212,7 +218,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -238,7 +245,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -264,7 +272,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -290,7 +299,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -316,7 +326,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -342,7 +353,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -368,7 +380,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -394,7 +407,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -420,7 +434,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -446,7 +461,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -472,7 +488,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -498,7 +515,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -524,7 +542,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -550,7 +569,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -576,7 +596,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -602,7 +623,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -628,7 +650,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -654,7 +677,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -680,7 +704,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -706,7 +731,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -734,7 +760,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -760,7 +787,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -786,7 +814,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -812,7 +841,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -838,7 +868,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -864,7 +895,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -890,7 +922,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -916,7 +949,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -942,7 +976,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -968,7 +1003,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -994,7 +1030,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -1024,7 +1061,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1051,7 +1089,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1078,7 +1117,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -1105,7 +1145,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1132,7 +1173,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -1159,7 +1201,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1186,7 +1229,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1213,7 +1257,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1240,7 +1285,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1267,7 +1313,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -1300,7 +1347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1326,7 +1374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -1352,7 +1401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1378,7 +1428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1404,7 +1455,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1430,7 +1482,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1456,7 +1509,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -1482,7 +1536,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -1508,7 +1563,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -1534,7 +1590,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1560,7 +1617,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1586,7 +1644,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1612,7 +1671,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -1638,7 +1698,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -1664,7 +1725,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -1690,7 +1752,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1716,7 +1779,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1742,7 +1806,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1768,7 +1833,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1794,7 +1860,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1820,7 +1887,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1846,7 +1914,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -1872,7 +1941,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1898,7 +1968,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1924,7 +1995,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1950,7 +2022,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1976,7 +2049,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2002,7 +2076,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2028,7 +2103,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -2054,7 +2130,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2080,7 +2157,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2106,7 +2184,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2132,7 +2211,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2158,7 +2238,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2184,7 +2265,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/whirlpool", "target": "Normal", "type": "Water", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -2212,7 +2294,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2238,7 +2321,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -2264,7 +2348,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2290,7 +2375,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2316,7 +2402,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -2342,7 +2429,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2368,7 +2456,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2394,7 +2483,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -2424,7 +2514,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2451,7 +2542,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2478,7 +2570,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2505,7 +2598,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2532,7 +2626,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -2559,7 +2654,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -2586,7 +2682,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2613,7 +2710,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -2640,7 +2738,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2667,7 +2766,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2694,7 +2794,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2721,7 +2822,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2748,7 +2850,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -2781,7 +2884,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2807,7 +2911,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -2833,7 +2938,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2859,7 +2965,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2885,7 +2992,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2911,7 +3019,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -2937,7 +3046,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2963,7 +3073,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2989,7 +3100,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3015,7 +3127,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3041,7 +3154,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -3067,7 +3181,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -3093,7 +3208,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/incinerate", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3119,7 +3235,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3145,7 +3262,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3171,7 +3289,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3197,7 +3316,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3223,7 +3343,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -3249,7 +3370,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3275,7 +3397,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3301,7 +3424,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3327,7 +3451,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3353,7 +3478,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -3379,7 +3505,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3405,7 +3532,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -3431,7 +3559,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -3457,7 +3586,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3483,7 +3613,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3509,7 +3640,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -3537,7 +3669,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -3563,7 +3696,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bind", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3589,7 +3723,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -3615,7 +3750,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -3641,7 +3777,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3667,7 +3804,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -3693,7 +3831,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -3719,7 +3858,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3745,7 +3885,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -3775,7 +3916,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3802,7 +3944,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -3829,7 +3972,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3856,7 +4000,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3883,7 +4028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -3910,7 +4056,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3937,7 +4084,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -3964,7 +4112,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3991,7 +4140,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -4018,7 +4168,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4045,7 +4196,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4072,7 +4224,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4099,7 +4252,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4126,7 +4280,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -4159,7 +4314,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4185,7 +4341,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -4211,7 +4368,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4237,7 +4395,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4263,7 +4422,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4289,7 +4449,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -4315,7 +4476,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -4341,7 +4503,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -4367,7 +4530,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4393,7 +4557,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4419,7 +4584,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4445,7 +4611,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -4471,7 +4638,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -4497,7 +4665,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/incinerate", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4523,7 +4692,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4549,7 +4719,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4575,7 +4746,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4601,7 +4773,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4627,7 +4800,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4653,7 +4827,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4679,7 +4854,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4705,7 +4881,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -4731,7 +4908,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4757,7 +4935,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4783,7 +4962,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4809,7 +4989,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -4835,7 +5016,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4861,7 +5043,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -4887,7 +5070,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -4913,7 +5097,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4939,7 +5124,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4965,7 +5151,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -4993,7 +5180,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -5019,7 +5207,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bind", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5045,7 +5234,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -5071,7 +5261,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -5097,7 +5288,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5123,7 +5315,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -5149,7 +5342,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -5175,7 +5369,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5201,7 +5396,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5227,7 +5423,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -5257,7 +5454,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5284,7 +5482,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -5311,7 +5510,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5338,7 +5538,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5365,7 +5566,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -5392,7 +5594,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5419,7 +5622,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -5446,7 +5650,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5473,7 +5678,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -5500,7 +5706,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5527,7 +5734,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -5554,7 +5762,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5581,7 +5790,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5608,7 +5818,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -5641,7 +5852,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5667,7 +5879,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -5693,7 +5906,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brutal-swing", "target": "All Adjacent", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5719,7 +5933,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5745,7 +5960,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5771,7 +5987,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5797,7 +6014,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -5823,7 +6041,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -5849,7 +6068,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -5875,7 +6095,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -5901,7 +6122,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5927,7 +6149,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5953,7 +6176,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -5979,7 +6203,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -6005,7 +6230,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6031,7 +6257,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6057,7 +6284,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6083,7 +6311,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6109,7 +6338,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6135,7 +6365,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6161,7 +6392,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6187,7 +6419,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6213,7 +6446,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6239,7 +6473,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6265,7 +6500,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -6291,7 +6527,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6317,7 +6554,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -6343,7 +6581,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -6369,7 +6608,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6395,7 +6635,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6421,7 +6662,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -6449,7 +6691,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -6475,7 +6718,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bind", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6501,7 +6745,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -6527,7 +6772,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6553,7 +6799,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6579,7 +6826,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -6605,7 +6853,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -6631,7 +6880,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6657,7 +6907,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6683,7 +6934,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -6711,7 +6963,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6737,7 +6990,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6763,7 +7017,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6789,7 +7044,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -6815,7 +7071,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6841,7 +7098,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bubble-beam", "target": "Normal", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6867,7 +7125,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6893,7 +7152,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6919,7 +7179,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -6945,7 +7206,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6971,7 +7233,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6997,7 +7260,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7023,7 +7287,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7049,7 +7314,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -7075,7 +7341,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7101,7 +7368,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -7127,7 +7395,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7153,7 +7422,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/horn-drill", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7179,7 +7449,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -7205,7 +7476,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7231,7 +7503,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7257,7 +7530,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -7283,7 +7557,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7309,7 +7584,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7335,7 +7611,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -7361,7 +7638,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7387,7 +7665,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7413,7 +7692,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7439,7 +7719,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7465,7 +7746,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7491,7 +7773,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7517,7 +7800,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7543,7 +7827,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", "target": "Normal", "type": "Normal", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -7569,7 +7854,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7595,7 +7881,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7621,7 +7908,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7647,7 +7935,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7673,7 +7962,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7699,7 +7989,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7725,7 +8016,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7751,7 +8043,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7777,7 +8070,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -7803,7 +8097,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7829,7 +8124,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7855,7 +8151,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7881,7 +8178,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7907,7 +8205,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7933,7 +8232,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-gun", "target": "Normal", "type": "Water", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7959,7 +8259,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7985,7 +8286,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zap-cannon", "target": "Normal", "type": "Electric", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } } ], @@ -8014,7 +8316,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8041,7 +8344,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -8068,7 +8372,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8095,7 +8400,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8122,7 +8428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -8149,7 +8456,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8176,7 +8484,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -8203,7 +8512,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8230,7 +8540,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -8257,7 +8568,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8284,7 +8596,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -8311,7 +8624,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8338,7 +8652,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8365,7 +8680,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -8398,7 +8714,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8424,7 +8741,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -8450,7 +8768,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -8476,7 +8795,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/breaking-swipe", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8502,7 +8822,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/chilling-water", "target": "Normal", "type": "Water", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8528,7 +8849,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -8554,7 +8876,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-cheer", "target": "Ally's Side", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8580,7 +8903,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8606,7 +8930,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -8632,7 +8957,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8658,7 +8984,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8684,7 +9011,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -8710,7 +9038,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -8736,7 +9065,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-spin", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8762,7 +9092,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -8788,7 +9119,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -8814,7 +9146,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/haze", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8840,7 +9173,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8866,7 +9200,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hydro-pump", "target": "Normal", "type": "Water", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -8892,7 +9227,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -8918,7 +9254,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -8944,7 +9281,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8970,7 +9308,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -8996,7 +9335,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9022,7 +9362,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -9048,7 +9389,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9074,7 +9416,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9100,7 +9443,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9126,7 +9470,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scale-shot", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9152,7 +9497,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9178,7 +9524,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9204,7 +9551,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9230,7 +9578,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9256,7 +9605,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9282,7 +9632,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9308,7 +9659,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9334,7 +9686,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -9360,7 +9713,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9386,7 +9740,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9412,7 +9767,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9438,7 +9794,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9464,7 +9821,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/weather-ball", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -9495,7 +9853,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9522,7 +9881,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9549,7 +9909,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9576,7 +9937,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -9603,7 +9965,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9630,7 +9993,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -9657,7 +10021,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9684,7 +10049,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -9711,7 +10077,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9738,7 +10105,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9765,7 +10133,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9792,7 +10161,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9819,7 +10189,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9846,7 +10217,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -9988,7 +10360,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10014,7 +10387,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -10040,7 +10414,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10066,7 +10441,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -10092,7 +10468,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -10118,7 +10495,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -10144,7 +10522,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10170,7 +10549,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10196,7 +10576,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -10222,7 +10603,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -10248,7 +10630,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -10274,7 +10657,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -10300,7 +10684,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10326,7 +10711,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10352,7 +10738,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10378,7 +10765,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10404,7 +10792,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10430,7 +10819,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -10456,7 +10846,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -10482,7 +10873,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10508,7 +10900,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -10534,7 +10927,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -10560,7 +10954,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -10586,7 +10981,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10612,7 +11008,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10638,7 +11035,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -10666,7 +11064,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10692,7 +11091,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -10718,7 +11118,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10744,7 +11145,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -10770,7 +11172,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10796,7 +11199,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10822,7 +11226,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -10848,7 +11253,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10874,7 +11280,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10900,7 +11307,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -10926,7 +11334,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -10956,7 +11365,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10983,7 +11393,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -11010,7 +11421,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -11037,7 +11449,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11064,7 +11477,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -11091,7 +11505,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11118,7 +11533,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11145,7 +11561,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11172,7 +11589,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -11199,7 +11617,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -11232,7 +11651,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11258,7 +11678,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -11284,7 +11705,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11310,7 +11732,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11336,7 +11759,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11362,7 +11786,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11388,7 +11813,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -11414,7 +11840,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -11440,7 +11867,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -11466,7 +11894,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11492,7 +11921,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11518,7 +11948,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -11544,7 +11975,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -11570,7 +12002,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -11596,7 +12029,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -11622,7 +12056,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11648,7 +12083,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11674,7 +12110,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11700,7 +12137,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11726,7 +12164,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11752,7 +12191,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11778,7 +12218,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -11804,7 +12245,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -11830,7 +12272,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11856,7 +12299,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11882,7 +12326,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11908,7 +12353,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -11934,7 +12380,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11960,7 +12407,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -11986,7 +12434,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -12012,7 +12461,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12038,7 +12488,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12064,7 +12515,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -12090,7 +12542,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -12116,7 +12569,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/whirlpool", "target": "Normal", "type": "Water", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -12144,7 +12598,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -12170,7 +12625,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -12196,7 +12652,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -12222,7 +12679,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12248,7 +12706,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -12274,7 +12733,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12300,7 +12760,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -12326,7 +12787,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -12356,7 +12818,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12383,7 +12846,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -12410,7 +12874,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12437,7 +12902,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12464,7 +12930,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -12491,7 +12958,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -12518,7 +12986,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12545,7 +13014,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -12572,7 +13042,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12599,7 +13070,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -12626,7 +13098,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12653,7 +13126,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12680,7 +13154,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -12713,7 +13188,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12739,7 +13215,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -12765,7 +13242,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12791,7 +13269,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -12817,7 +13296,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -12843,7 +13323,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -12869,7 +13350,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -12895,7 +13377,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -12921,7 +13404,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12947,7 +13431,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -12973,7 +13458,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -12999,7 +13485,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -13025,7 +13512,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/incinerate", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -13051,7 +13539,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13077,7 +13566,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13103,7 +13593,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13129,7 +13620,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13155,7 +13647,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -13181,7 +13674,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -13207,7 +13701,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13233,7 +13728,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13259,7 +13755,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13285,7 +13782,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -13311,7 +13809,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13337,7 +13836,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -13363,7 +13863,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -13389,7 +13890,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13415,7 +13917,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13441,7 +13944,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -13469,7 +13973,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -13495,7 +14000,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bind", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -13521,7 +14027,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -13547,7 +14054,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -13573,7 +14081,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -13599,7 +14108,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -13625,7 +14135,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -13651,7 +14162,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13677,7 +14189,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -13707,7 +14220,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13734,7 +14248,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -13761,7 +14276,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13788,7 +14304,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -13815,7 +14332,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -13842,7 +14360,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -13869,7 +14388,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -13896,7 +14416,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13923,7 +14444,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -13950,7 +14472,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13977,7 +14500,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -14004,7 +14528,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14031,7 +14556,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -14058,7 +14584,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -14091,7 +14618,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14117,7 +14645,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -14143,7 +14672,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14169,7 +14699,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14195,7 +14726,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14221,7 +14753,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -14247,7 +14780,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -14273,7 +14807,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -14299,7 +14834,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -14325,7 +14861,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14351,7 +14888,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14377,7 +14915,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -14403,7 +14942,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -14429,7 +14969,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/incinerate", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14455,7 +14996,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14481,7 +15023,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14507,7 +15050,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14533,7 +15077,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14559,7 +15104,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -14585,7 +15131,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14611,7 +15158,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14637,7 +15185,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -14663,7 +15212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14689,7 +15239,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14715,7 +15266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14741,7 +15293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -14767,7 +15320,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14793,7 +15347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -14819,7 +15374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -14845,7 +15401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14871,7 +15428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14897,7 +15455,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -14925,7 +15484,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -14951,7 +15511,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bind", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -14977,7 +15538,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -15003,7 +15565,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -15029,7 +15592,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -15055,7 +15619,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -15081,7 +15646,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -15107,7 +15673,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15133,7 +15700,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -15159,7 +15727,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -15189,7 +15758,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15216,7 +15786,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -15243,7 +15814,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15270,7 +15842,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -15297,7 +15870,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -15324,7 +15898,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15351,7 +15926,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -15378,7 +15954,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15405,7 +15982,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -15432,7 +16010,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15459,7 +16038,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -15486,7 +16066,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15513,7 +16094,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -15540,7 +16122,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -15573,7 +16156,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15599,7 +16183,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -15625,7 +16210,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brutal-swing", "target": "All Adjacent", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15651,7 +16237,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15677,7 +16264,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15703,7 +16291,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15729,7 +16318,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -15755,7 +16345,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -15781,7 +16372,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -15807,7 +16399,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -15833,7 +16426,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15859,7 +16453,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15885,7 +16480,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -15911,7 +16507,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -15937,7 +16534,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15963,7 +16561,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15989,7 +16588,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16015,7 +16615,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16041,7 +16642,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -16067,7 +16669,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16093,7 +16696,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16119,7 +16723,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16145,7 +16750,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16171,7 +16777,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16197,7 +16804,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -16223,7 +16831,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16249,7 +16858,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -16275,7 +16885,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -16301,7 +16912,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16327,7 +16939,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16353,7 +16966,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -16381,7 +16995,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -16407,7 +17022,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bind", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -16433,7 +17049,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -16459,7 +17076,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -16485,7 +17103,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -16511,7 +17130,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -16537,7 +17157,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -16563,7 +17184,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16589,7 +17211,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -16615,7 +17238,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -16643,7 +17267,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16669,7 +17294,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16695,7 +17321,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16721,7 +17348,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -16747,7 +17375,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -16773,7 +17402,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bubble-beam", "target": "Normal", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16799,7 +17429,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16825,7 +17456,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16851,7 +17483,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -16877,7 +17510,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16903,7 +17537,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16929,7 +17564,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -16955,7 +17591,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16981,7 +17618,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -17007,7 +17645,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -17033,7 +17672,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -17059,7 +17699,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -17085,7 +17726,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/horn-drill", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17111,7 +17753,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -17137,7 +17780,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -17163,7 +17807,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -17189,7 +17834,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -17215,7 +17861,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17241,7 +17888,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17267,7 +17915,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -17293,7 +17942,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17319,7 +17969,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -17345,7 +17996,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17371,7 +18023,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17397,7 +18050,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17423,7 +18077,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -17449,7 +18104,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17475,7 +18131,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", "target": "Normal", "type": "Normal", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -17501,7 +18158,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -17527,7 +18185,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17553,7 +18212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -17579,7 +18239,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17605,7 +18266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -17631,7 +18293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17657,7 +18320,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -17683,7 +18347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -17709,7 +18374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -17735,7 +18401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -17761,7 +18428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17787,7 +18455,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17813,7 +18482,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -17839,7 +18509,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -17865,7 +18536,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-gun", "target": "Normal", "type": "Water", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -17891,7 +18563,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -17917,7 +18590,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zap-cannon", "target": "Normal", "type": "Electric", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } } ], @@ -17946,7 +18620,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17973,7 +18648,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -18000,7 +18676,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18027,7 +18704,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -18054,7 +18732,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -18081,7 +18760,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18108,7 +18788,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -18135,7 +18816,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18162,7 +18844,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -18189,7 +18872,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18216,7 +18900,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -18243,7 +18928,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18270,7 +18956,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -18297,7 +18984,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -18330,7 +19018,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18356,7 +19045,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -18382,7 +19072,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -18408,7 +19099,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/breaking-swipe", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18434,7 +19126,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/chilling-water", "target": "Normal", "type": "Water", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -18460,7 +19153,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -18486,7 +19180,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-cheer", "target": "Ally's Side", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18512,7 +19207,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18538,7 +19234,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -18564,7 +19261,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18590,7 +19288,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18616,7 +19315,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -18642,7 +19342,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -18668,7 +19369,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-spin", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -18694,7 +19396,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -18720,7 +19423,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -18746,7 +19450,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/haze", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18772,7 +19477,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18798,7 +19504,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hydro-pump", "target": "Normal", "type": "Water", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -18824,7 +19531,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -18850,7 +19558,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -18876,7 +19585,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -18902,7 +19612,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -18928,7 +19639,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18954,7 +19666,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -18980,7 +19693,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19006,7 +19720,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19032,7 +19747,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19058,7 +19774,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scale-shot", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -19084,7 +19801,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19110,7 +19828,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19136,7 +19855,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19162,7 +19882,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -19188,7 +19909,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -19214,7 +19936,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -19240,7 +19963,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -19266,7 +19990,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -19292,7 +20017,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -19318,7 +20044,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19344,7 +20071,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -19370,7 +20098,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -19396,7 +20125,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/weather-ball", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -19427,7 +20157,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19454,7 +20185,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -19481,7 +20213,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19508,7 +20241,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -19535,7 +20269,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -19562,7 +20297,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -19589,7 +20325,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19616,7 +20353,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -19643,7 +20381,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19670,7 +20409,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19697,7 +20437,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -19724,7 +20465,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19751,7 +20493,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -19778,7 +20521,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -19945,7 +20689,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19971,7 +20716,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -19997,7 +20743,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20023,7 +20770,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -20049,7 +20797,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -20075,7 +20824,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -20101,7 +20851,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20127,7 +20878,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20153,7 +20905,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -20179,7 +20932,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -20205,7 +20959,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -20231,7 +20986,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -20257,7 +21013,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20283,7 +21040,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20309,7 +21067,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20335,7 +21094,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20361,7 +21121,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20387,7 +21148,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -20413,7 +21175,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -20439,7 +21202,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20465,7 +21229,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -20491,7 +21256,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -20517,7 +21283,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -20543,7 +21310,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20569,7 +21337,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20595,7 +21364,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -20623,7 +21393,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20649,7 +21420,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -20675,7 +21447,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20701,7 +21474,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -20727,7 +21501,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20753,7 +21528,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20779,7 +21555,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -20805,7 +21582,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20831,7 +21609,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20857,7 +21636,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -20883,7 +21663,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -20913,7 +21694,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20940,7 +21722,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -20967,7 +21750,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -20994,7 +21778,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21021,7 +21806,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -21048,7 +21834,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21075,7 +21862,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -21102,7 +21890,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21129,7 +21918,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -21156,7 +21946,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -21189,7 +21980,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21215,7 +22007,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -21241,7 +22034,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21267,7 +22061,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21293,7 +22088,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -21319,7 +22115,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21345,7 +22142,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -21371,7 +22169,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -21397,7 +22196,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -21423,7 +22223,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -21449,7 +22250,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21475,7 +22277,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -21501,7 +22304,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -21527,7 +22331,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -21553,7 +22358,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -21579,7 +22385,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21605,7 +22412,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21631,7 +22439,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21657,7 +22466,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21683,7 +22493,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -21709,7 +22520,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21735,7 +22547,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -21761,7 +22574,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -21787,7 +22601,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21813,7 +22628,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21839,7 +22655,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21865,7 +22682,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -21891,7 +22709,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21917,7 +22736,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -21943,7 +22763,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -21969,7 +22790,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21995,7 +22817,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22021,7 +22844,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -22047,7 +22871,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -22073,7 +22898,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/whirlpool", "target": "Normal", "type": "Water", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -22101,7 +22927,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -22127,7 +22954,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -22153,7 +22981,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -22179,7 +23008,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22205,7 +23035,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -22231,7 +23062,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22257,7 +23089,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -22283,7 +23116,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -22313,7 +23147,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22340,7 +23175,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -22367,7 +23203,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22394,7 +23231,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22421,7 +23259,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -22448,7 +23287,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -22475,7 +23315,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22502,7 +23343,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -22529,7 +23371,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22556,7 +23399,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -22583,7 +23427,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22610,7 +23455,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22637,7 +23483,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -22670,7 +23517,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22696,7 +23544,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -22722,7 +23571,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22748,7 +23598,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -22774,7 +23625,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -22800,7 +23652,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -22826,7 +23679,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -22852,7 +23706,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -22878,7 +23733,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22904,7 +23760,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -22930,7 +23787,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -22956,7 +23814,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -22982,7 +23841,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/incinerate", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -23008,7 +23868,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23034,7 +23895,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23060,7 +23922,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23086,7 +23949,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23112,7 +23976,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -23138,7 +24003,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -23164,7 +24030,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23190,7 +24057,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23216,7 +24084,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23242,7 +24111,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -23268,7 +24138,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23294,7 +24165,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -23320,7 +24192,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -23346,7 +24219,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23372,7 +24246,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23398,7 +24273,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -23426,7 +24302,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -23452,7 +24329,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bind", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -23478,7 +24356,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -23504,7 +24383,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -23530,7 +24410,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -23556,7 +24437,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -23582,7 +24464,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -23608,7 +24491,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23634,7 +24518,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -23664,7 +24549,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23691,7 +24577,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -23718,7 +24605,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23745,7 +24633,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -23772,7 +24661,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -23799,7 +24689,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -23826,7 +24717,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -23853,7 +24745,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23880,7 +24773,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -23907,7 +24801,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23934,7 +24829,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -23961,7 +24857,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23988,7 +24885,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -24015,7 +24913,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -24048,7 +24947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24074,7 +24974,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -24100,7 +25001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24126,7 +25028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24152,7 +25055,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -24178,7 +25082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -24204,7 +25109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -24230,7 +25136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -24256,7 +25163,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -24282,7 +25190,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24308,7 +25217,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -24334,7 +25244,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -24360,7 +25271,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -24386,7 +25298,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/incinerate", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -24412,7 +25325,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24438,7 +25352,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24464,7 +25379,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24490,7 +25406,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24516,7 +25433,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -24542,7 +25460,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -24568,7 +25487,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24594,7 +25514,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -24620,7 +25541,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24646,7 +25568,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24672,7 +25595,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24698,7 +25622,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -24724,7 +25649,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24750,7 +25676,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -24776,7 +25703,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -24802,7 +25730,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24828,7 +25757,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24854,7 +25784,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -24882,7 +25813,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -24908,7 +25840,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bind", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -24934,7 +25867,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -24960,7 +25894,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -24986,7 +25921,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -25012,7 +25948,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -25038,7 +25975,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -25064,7 +26002,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25090,7 +26029,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -25116,7 +26056,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -25146,7 +26087,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25173,7 +26115,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -25200,7 +26143,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25227,7 +26171,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -25254,7 +26199,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -25281,7 +26227,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25308,7 +26255,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -25335,7 +26283,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25362,7 +26311,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -25389,7 +26339,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25416,7 +26367,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -25443,7 +26395,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25470,7 +26423,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -25497,7 +26451,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -25530,7 +26485,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25556,7 +26512,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -25582,7 +26539,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brutal-swing", "target": "All Adjacent", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25608,7 +26566,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25634,7 +26593,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25660,7 +26620,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25686,7 +26647,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -25712,7 +26674,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -25738,7 +26701,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -25764,7 +26728,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -25790,7 +26755,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25816,7 +26782,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25842,7 +26809,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -25868,7 +26836,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -25894,7 +26863,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25920,7 +26890,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25946,7 +26917,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25972,7 +26944,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25998,7 +26971,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -26024,7 +26998,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -26050,7 +27025,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26076,7 +27052,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26102,7 +27079,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26128,7 +27106,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26154,7 +27133,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -26180,7 +27160,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26206,7 +27187,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -26232,7 +27214,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -26258,7 +27241,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26284,7 +27268,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26310,7 +27295,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -26338,7 +27324,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -26364,7 +27351,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bind", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -26390,7 +27378,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -26416,7 +27405,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -26442,7 +27432,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -26468,7 +27459,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -26494,7 +27486,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -26520,7 +27513,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -26546,7 +27540,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -26572,7 +27567,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -26600,7 +27596,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26626,7 +27623,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26652,7 +27650,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26678,7 +27677,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -26704,7 +27704,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -26730,7 +27731,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bubble-beam", "target": "Normal", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -26756,7 +27758,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26782,7 +27785,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26808,7 +27812,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -26834,7 +27839,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26860,7 +27866,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -26886,7 +27893,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -26912,7 +27920,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26938,7 +27947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -26964,7 +27974,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -26990,7 +28001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -27016,7 +28028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -27042,7 +28055,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/horn-drill", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27068,7 +28082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -27094,7 +28109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -27120,7 +28136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -27146,7 +28163,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -27172,7 +28190,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27198,7 +28217,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27224,7 +28244,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -27250,7 +28271,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27276,7 +28298,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -27302,7 +28325,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27328,7 +28352,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27354,7 +28379,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27380,7 +28406,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -27406,7 +28433,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27432,7 +28460,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", "target": "Normal", "type": "Normal", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -27458,7 +28487,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -27484,7 +28514,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27510,7 +28541,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -27536,7 +28568,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27562,7 +28595,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -27588,7 +28622,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27614,7 +28649,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -27640,7 +28676,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -27666,7 +28703,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -27692,7 +28730,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -27718,7 +28757,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27744,7 +28784,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27770,7 +28811,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -27796,7 +28838,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -27822,7 +28865,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-gun", "target": "Normal", "type": "Water", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -27848,7 +28892,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -27874,7 +28919,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zap-cannon", "target": "Normal", "type": "Electric", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } } ], @@ -27903,7 +28949,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27930,7 +28977,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -27957,7 +29005,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27984,7 +29033,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rage", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -28011,7 +29061,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -28038,7 +29089,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -28065,7 +29117,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -28092,7 +29145,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28119,7 +29173,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -28146,7 +29201,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28173,7 +29229,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -28200,7 +29257,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28227,7 +29285,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -28254,7 +29313,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] @@ -28287,7 +29347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28313,7 +29374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -28339,7 +29401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -28365,7 +29428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/breaking-swipe", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -28391,7 +29455,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/chilling-water", "target": "Normal", "type": "Water", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -28417,7 +29482,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -28443,7 +29509,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-cheer", "target": "Ally's Side", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28469,7 +29536,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28495,7 +29563,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -28521,7 +29590,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -28547,7 +29617,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28573,7 +29644,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -28599,7 +29671,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -28625,7 +29698,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-spin", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -28651,7 +29725,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -28677,7 +29752,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -28703,7 +29779,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/haze", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28729,7 +29806,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28755,7 +29833,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hydro-pump", "target": "Normal", "type": "Water", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -28781,7 +29860,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -28807,7 +29887,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -28833,7 +29914,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -28859,7 +29941,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -28885,7 +29968,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/light-screen", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28911,7 +29995,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -28937,7 +30022,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28963,7 +30049,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28989,7 +30076,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29015,7 +30103,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scale-shot", "target": "Normal", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -29041,7 +30130,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29067,7 +30157,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29093,7 +30184,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29119,7 +30211,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/surf", "target": "All Adjacent", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -29145,7 +30238,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -29171,7 +30265,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -29197,7 +30292,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -29223,7 +30319,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", "target": "Normal", "type": "Electric", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -29249,7 +30346,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", "target": "Normal", "type": "Electric", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -29275,7 +30373,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29301,7 +30400,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/waterfall", "target": "Normal", "type": "Water", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -29327,7 +30427,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -29353,7 +30454,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/weather-ball", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -29384,7 +30486,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/agility", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29411,7 +30514,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -29438,7 +30542,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29465,7 +30570,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-rush", "target": "Normal", "type": "Dragon", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -29492,7 +30598,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -29519,7 +30626,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -29546,7 +30654,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29573,7 +30682,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -29600,7 +30710,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29627,7 +30738,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/safeguard", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29654,7 +30766,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -29681,7 +30794,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", "target": "Normal", "type": "Electric", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29708,7 +30822,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -29735,7 +30850,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wrap", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ] diff --git a/tests/testUtils/full-data-responses/eevee.json b/tests/testUtils/full-data-responses/eevee.json index ea21b74a69..64d46d2712 100644 --- a/tests/testUtils/full-data-responses/eevee.json +++ b/tests/testUtils/full-data-responses/eevee.json @@ -64,7 +64,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90,7 +91,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -116,7 +118,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -142,7 +145,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -168,7 +172,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -194,7 +199,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -223,7 +229,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -249,7 +256,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -275,7 +283,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -301,7 +310,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -327,7 +337,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -353,7 +364,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -379,7 +391,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -405,7 +418,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -431,7 +445,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -457,7 +472,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -483,7 +499,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -509,7 +526,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -535,7 +553,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -561,7 +580,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -587,7 +607,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -615,7 +636,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -641,7 +663,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -667,7 +690,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -693,7 +717,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -719,7 +744,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -745,7 +771,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -771,7 +798,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -797,7 +825,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -823,7 +852,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -849,7 +879,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -879,7 +910,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -906,7 +938,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -933,7 +966,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -960,7 +994,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -987,7 +1022,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1014,7 +1050,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1041,7 +1078,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1068,7 +1106,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1095,7 +1134,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -1126,7 +1166,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1152,7 +1193,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1178,7 +1220,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1204,7 +1247,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1230,7 +1274,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1256,7 +1301,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1282,7 +1328,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1308,7 +1355,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1334,7 +1382,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1360,7 +1409,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -1388,7 +1438,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1414,7 +1465,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1440,7 +1492,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1466,7 +1519,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1492,7 +1546,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1518,7 +1573,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -1544,7 +1600,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1570,7 +1627,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -1598,7 +1656,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1624,7 +1683,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1650,7 +1710,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1676,7 +1737,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1702,7 +1764,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1728,7 +1791,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -1754,7 +1818,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1780,7 +1845,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1806,7 +1872,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -1832,7 +1899,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1858,7 +1926,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1884,7 +1953,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1910,7 +1980,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1936,7 +2007,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1962,7 +2034,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -1988,7 +2061,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2014,7 +2088,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2040,7 +2115,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2066,7 +2142,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2092,7 +2169,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2118,7 +2196,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -2146,7 +2225,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2172,7 +2252,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2198,7 +2279,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2224,7 +2306,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -2250,7 +2333,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2276,7 +2360,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2302,7 +2387,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -2332,7 +2418,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2359,7 +2446,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2386,7 +2474,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2413,7 +2502,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2440,7 +2530,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -2467,7 +2558,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2494,7 +2586,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2521,7 +2614,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2548,7 +2642,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2575,7 +2670,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2602,7 +2698,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -2632,7 +2729,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2658,7 +2756,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2684,7 +2783,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -2712,7 +2812,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2738,7 +2839,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2764,7 +2866,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2790,7 +2893,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2816,7 +2920,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2842,7 +2947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2868,7 +2974,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2894,7 +3001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2920,7 +3028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2946,7 +3055,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -2972,7 +3082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2998,7 +3109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3024,7 +3136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -3052,7 +3165,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3078,7 +3192,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3104,7 +3219,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -3130,7 +3246,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sing", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -3158,7 +3275,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3184,7 +3302,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -3210,7 +3329,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3236,7 +3356,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3262,7 +3383,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -3288,7 +3410,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -3314,7 +3437,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3340,7 +3464,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3366,7 +3491,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3392,7 +3518,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3418,7 +3545,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -3444,7 +3572,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -3470,7 +3599,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3496,7 +3626,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -3522,7 +3653,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3548,7 +3680,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3574,7 +3707,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3600,7 +3734,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3626,7 +3761,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -3654,7 +3790,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3680,7 +3817,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3706,7 +3844,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3732,7 +3871,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -3758,7 +3898,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -3784,7 +3925,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -3810,7 +3952,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3836,7 +3979,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -3866,7 +4010,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3893,7 +4038,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3920,7 +4066,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3947,7 +4094,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3974,7 +4122,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -4001,7 +4150,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4028,7 +4178,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4055,7 +4206,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -4082,7 +4234,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4109,7 +4262,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4136,7 +4290,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4163,7 +4318,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4190,7 +4346,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -4217,7 +4374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -4248,7 +4406,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4274,7 +4433,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4300,7 +4460,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4326,7 +4487,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4352,7 +4514,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4378,7 +4541,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4404,7 +4568,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4430,7 +4595,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4456,7 +4622,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4482,7 +4649,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4508,7 +4676,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -4534,7 +4703,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4560,7 +4730,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4586,7 +4757,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -4614,7 +4786,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4640,7 +4813,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4666,7 +4840,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4692,7 +4867,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4718,7 +4894,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4744,7 +4921,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4770,7 +4948,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4796,7 +4975,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -4824,7 +5004,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4850,7 +5031,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4876,7 +5058,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4902,7 +5085,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4928,7 +5112,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4954,7 +5139,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -4980,7 +5166,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -5006,7 +5193,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5032,7 +5220,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5058,7 +5247,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5084,7 +5274,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5110,7 +5301,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -5136,7 +5328,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -5162,7 +5355,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5188,7 +5382,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -5214,7 +5409,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -5240,7 +5436,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5266,7 +5463,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5292,7 +5490,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5318,7 +5517,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5344,7 +5544,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -5372,7 +5573,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5398,7 +5600,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5424,7 +5627,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5450,7 +5654,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -5476,7 +5681,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -5502,7 +5708,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -5528,7 +5735,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -5558,7 +5766,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5585,7 +5794,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5612,7 +5822,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5639,7 +5850,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5666,7 +5878,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5693,7 +5906,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -5720,7 +5934,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5747,7 +5962,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5774,7 +5990,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -5801,7 +6018,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5828,7 +6046,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5855,7 +6074,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5882,7 +6102,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5909,7 +6130,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5936,7 +6158,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5963,7 +6186,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -5990,7 +6214,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -6021,7 +6246,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6047,7 +6273,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6073,7 +6300,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6099,7 +6327,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6125,7 +6354,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6151,7 +6381,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6177,7 +6408,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6203,7 +6435,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6229,7 +6462,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6255,7 +6489,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6281,7 +6516,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -6307,7 +6543,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6333,7 +6570,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6359,7 +6597,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -6387,7 +6626,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6413,7 +6653,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6439,7 +6680,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -6467,7 +6709,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6493,7 +6736,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6519,7 +6763,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6545,7 +6790,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6571,7 +6817,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -6597,7 +6844,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6623,7 +6871,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6649,7 +6898,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6675,7 +6925,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6701,7 +6952,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6727,7 +6979,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6753,7 +7006,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6779,7 +7033,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6805,7 +7060,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6831,7 +7087,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6857,7 +7114,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6883,7 +7141,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6909,7 +7168,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6935,7 +7195,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -6963,7 +7224,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6989,7 +7251,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7015,7 +7278,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7041,7 +7305,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7067,7 +7332,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -7093,7 +7359,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/laser-focus", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7119,7 +7386,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -7145,7 +7413,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -7173,7 +7442,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7199,7 +7469,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7225,7 +7496,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7251,7 +7523,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7277,7 +7550,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7303,7 +7577,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7329,7 +7604,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7355,7 +7631,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7381,7 +7658,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -7407,7 +7685,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7433,7 +7712,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7459,7 +7739,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7485,7 +7766,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7511,7 +7793,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7537,7 +7820,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7563,7 +7847,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -7589,7 +7874,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7615,7 +7901,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -7641,7 +7928,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7667,7 +7955,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7693,7 +7982,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7719,7 +8009,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7745,7 +8036,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7771,7 +8063,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7797,7 +8090,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7823,7 +8117,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7849,7 +8144,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7875,7 +8171,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7901,7 +8198,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7927,7 +8225,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", "target": "Normal", "type": "Normal", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -7953,7 +8252,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7979,7 +8279,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8005,7 +8306,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8031,7 +8333,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8057,7 +8360,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8083,7 +8387,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8109,7 +8414,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8135,7 +8441,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8161,7 +8468,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -8187,7 +8495,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -8216,7 +8525,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8243,7 +8553,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8270,7 +8581,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8297,7 +8609,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8324,7 +8637,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8351,7 +8665,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -8378,7 +8693,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8405,7 +8721,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8432,7 +8749,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -8459,7 +8777,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8486,7 +8805,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8513,7 +8833,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8540,7 +8861,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8567,7 +8889,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8594,7 +8917,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8621,7 +8945,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -8648,7 +8973,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -8679,7 +9005,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8705,7 +9032,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8731,7 +9059,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-kick", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8757,7 +9086,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8783,7 +9113,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8809,7 +9140,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8835,7 +9167,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8861,7 +9194,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -8890,7 +9224,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/alluring-voice", "target": "Normal", "type": "Fairy", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -8916,7 +9251,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8942,7 +9278,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -8968,7 +9305,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/calm-mind", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8994,7 +9332,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9020,7 +9359,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9046,7 +9386,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9072,7 +9413,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -9098,7 +9440,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9124,7 +9467,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -9150,7 +9494,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9176,7 +9521,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9202,7 +9548,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9228,7 +9575,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9254,7 +9602,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9280,7 +9629,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9306,7 +9656,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9332,7 +9683,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9358,7 +9710,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9384,7 +9737,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9410,7 +9764,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9436,7 +9791,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9462,7 +9818,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9488,7 +9845,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9514,7 +9872,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9540,7 +9899,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9566,7 +9926,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trailblaze", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9592,7 +9953,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/weather-ball", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -9623,7 +9985,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9650,7 +10013,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9677,7 +10041,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9704,7 +10069,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9731,7 +10097,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/copycat", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9758,7 +10125,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9785,7 +10153,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -9812,7 +10181,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9839,7 +10209,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9866,7 +10237,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -9893,7 +10265,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9920,7 +10293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9947,7 +10321,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9974,7 +10349,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -10001,7 +10377,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10028,7 +10405,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -10188,7 +10566,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10214,7 +10593,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10240,7 +10620,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10266,7 +10647,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10292,7 +10674,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10318,7 +10701,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -10347,7 +10731,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10373,7 +10758,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10399,7 +10785,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10425,7 +10812,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -10451,7 +10839,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10477,7 +10866,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -10503,7 +10893,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -10529,7 +10920,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10555,7 +10947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10581,7 +10974,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10607,7 +11001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10633,7 +11028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -10659,7 +11055,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10685,7 +11082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10711,7 +11109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -10739,7 +11138,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10765,7 +11165,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -10791,7 +11192,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10817,7 +11219,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10843,7 +11246,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -10869,7 +11273,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10895,7 +11300,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -10921,7 +11327,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10947,7 +11354,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10973,7 +11381,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -11003,7 +11412,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11030,7 +11440,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -11057,7 +11468,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11084,7 +11496,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11111,7 +11524,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -11138,7 +11552,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11165,7 +11580,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -11192,7 +11608,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11219,7 +11636,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -11250,7 +11668,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11276,7 +11695,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -11302,7 +11722,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11328,7 +11749,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11354,7 +11776,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11380,7 +11803,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11406,7 +11830,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11432,7 +11857,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11458,7 +11884,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11484,7 +11911,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -11512,7 +11940,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11538,7 +11967,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -11564,7 +11994,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -11590,7 +12021,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11616,7 +12048,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11642,7 +12075,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -11668,7 +12102,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -11694,7 +12129,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -11722,7 +12158,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11748,7 +12185,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11774,7 +12212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11800,7 +12239,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11826,7 +12266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11852,7 +12293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -11878,7 +12320,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11904,7 +12347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -11930,7 +12374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -11956,7 +12401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11982,7 +12428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12008,7 +12455,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12034,7 +12482,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12060,7 +12509,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -12086,7 +12536,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -12112,7 +12563,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -12138,7 +12590,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12164,7 +12617,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12190,7 +12644,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12216,7 +12671,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12242,7 +12698,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -12270,7 +12727,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -12296,7 +12754,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12322,7 +12781,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12348,7 +12808,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -12374,7 +12835,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12400,7 +12862,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12426,7 +12889,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -12456,7 +12920,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12483,7 +12948,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -12510,7 +12976,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12537,7 +13004,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12564,7 +13032,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -12591,7 +13060,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12618,7 +13088,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12645,7 +13116,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12672,7 +13144,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12699,7 +13172,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -12726,7 +13200,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -12756,7 +13231,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12782,7 +13258,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12808,7 +13285,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -12836,7 +13314,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12862,7 +13341,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -12888,7 +13368,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12914,7 +13395,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12940,7 +13422,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12966,7 +13449,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12992,7 +13476,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13018,7 +13503,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13044,7 +13530,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -13070,7 +13557,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -13096,7 +13584,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13122,7 +13611,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13148,7 +13638,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -13176,7 +13667,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13202,7 +13694,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -13228,7 +13721,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -13254,7 +13748,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sing", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -13282,7 +13777,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13308,7 +13804,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -13334,7 +13831,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13360,7 +13858,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -13386,7 +13885,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -13412,7 +13912,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -13438,7 +13939,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -13464,7 +13966,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13490,7 +13993,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13516,7 +14020,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13542,7 +14047,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -13568,7 +14074,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -13594,7 +14101,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -13620,7 +14128,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -13646,7 +14155,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13672,7 +14182,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13698,7 +14209,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13724,7 +14236,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13750,7 +14263,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -13778,7 +14292,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -13804,7 +14319,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13830,7 +14346,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13856,7 +14373,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -13882,7 +14400,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -13908,7 +14427,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -13934,7 +14454,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13960,7 +14481,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -13990,7 +14512,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14017,7 +14540,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14044,7 +14568,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14071,7 +14596,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14098,7 +14624,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -14125,7 +14652,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14152,7 +14680,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14179,7 +14708,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -14206,7 +14736,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -14233,7 +14764,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14260,7 +14792,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -14287,7 +14820,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14314,7 +14848,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -14341,7 +14876,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -14372,7 +14908,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14398,7 +14935,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14424,7 +14962,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14450,7 +14989,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14476,7 +15016,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14502,7 +15043,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14528,7 +15070,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14554,7 +15097,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14580,7 +15124,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14606,7 +15151,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -14632,7 +15178,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -14658,7 +15205,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14684,7 +15232,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14710,7 +15259,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -14738,7 +15288,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14764,7 +15315,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14790,7 +15342,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14816,7 +15369,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14842,7 +15396,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -14868,7 +15423,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14894,7 +15450,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14920,7 +15477,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -14948,7 +15506,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14974,7 +15533,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15000,7 +15560,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -15026,7 +15587,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15052,7 +15614,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -15078,7 +15641,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -15104,7 +15668,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -15130,7 +15695,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15156,7 +15722,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15182,7 +15749,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15208,7 +15776,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15234,7 +15803,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -15260,7 +15830,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -15286,7 +15857,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15312,7 +15884,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -15338,7 +15911,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -15364,7 +15938,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15390,7 +15965,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15416,7 +15992,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15442,7 +16019,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15468,7 +16046,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -15496,7 +16075,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15522,7 +16102,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15548,7 +16129,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15574,7 +16156,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -15600,7 +16183,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -15626,7 +16210,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -15652,7 +16237,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -15682,7 +16268,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15709,7 +16296,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15736,7 +16324,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15763,7 +16352,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15790,7 +16380,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15817,7 +16408,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -15844,7 +16436,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15871,7 +16464,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15898,7 +16492,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -15925,7 +16520,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -15952,7 +16548,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15979,7 +16576,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16006,7 +16604,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16033,7 +16632,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -16060,7 +16660,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16087,7 +16688,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -16114,7 +16716,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -16145,7 +16748,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16171,7 +16775,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16197,7 +16802,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16223,7 +16829,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16249,7 +16856,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16275,7 +16883,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16301,7 +16910,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16327,7 +16937,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16353,7 +16964,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16379,7 +16991,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -16405,7 +17018,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -16431,7 +17045,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16457,7 +17072,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16483,7 +17099,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -16511,7 +17128,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16537,7 +17155,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16563,7 +17182,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -16591,7 +17211,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16617,7 +17238,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16643,7 +17265,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16669,7 +17292,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -16695,7 +17319,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -16721,7 +17346,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -16747,7 +17373,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16773,7 +17400,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16799,7 +17427,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16825,7 +17454,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16851,7 +17481,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -16877,7 +17508,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16903,7 +17535,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -16929,7 +17562,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16955,7 +17589,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16981,7 +17616,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17007,7 +17643,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17033,7 +17670,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17059,7 +17697,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -17087,7 +17726,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -17113,7 +17753,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17139,7 +17780,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17165,7 +17807,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -17191,7 +17834,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -17217,7 +17861,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/laser-focus", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17243,7 +17888,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -17269,7 +17915,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -17297,7 +17944,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17323,7 +17971,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17349,7 +17998,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17375,7 +18025,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -17401,7 +18052,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -17427,7 +18079,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17453,7 +18106,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17479,7 +18133,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17505,7 +18160,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -17531,7 +18187,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17557,7 +18214,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17583,7 +18241,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17609,7 +18268,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17635,7 +18295,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -17661,7 +18322,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17687,7 +18349,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -17713,7 +18376,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -17739,7 +18403,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -17765,7 +18430,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17791,7 +18457,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -17817,7 +18484,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17843,7 +18511,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -17869,7 +18538,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -17895,7 +18565,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17921,7 +18592,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17947,7 +18619,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17973,7 +18646,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -17999,7 +18673,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18025,7 +18700,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -18051,7 +18727,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", "target": "Normal", "type": "Normal", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -18077,7 +18754,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18103,7 +18781,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -18129,7 +18808,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18155,7 +18835,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18181,7 +18862,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18207,7 +18889,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18233,7 +18916,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -18259,7 +18943,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18285,7 +18970,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -18311,7 +18997,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -18340,7 +19027,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18367,7 +19055,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18394,7 +19083,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18421,7 +19111,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18448,7 +19139,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18475,7 +19167,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -18502,7 +19195,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18529,7 +19223,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18556,7 +19251,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -18583,7 +19279,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -18610,7 +19307,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18637,7 +19335,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18664,7 +19363,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18691,7 +19391,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -18718,7 +19419,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18745,7 +19447,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -18772,7 +19475,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -18803,7 +19507,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18829,7 +19534,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18855,7 +19561,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-kick", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -18881,7 +19588,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18907,7 +19615,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -18933,7 +19642,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18959,7 +19669,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18985,7 +19696,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -19014,7 +19726,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/alluring-voice", "target": "Normal", "type": "Fairy", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -19040,7 +19753,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19066,7 +19780,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -19092,7 +19807,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/calm-mind", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19118,7 +19834,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19144,7 +19861,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19170,7 +19888,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -19196,7 +19915,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -19222,7 +19942,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19248,7 +19969,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -19274,7 +19996,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19300,7 +20023,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19326,7 +20050,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -19352,7 +20077,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -19378,7 +20104,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19404,7 +20131,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19430,7 +20158,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19456,7 +20185,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19482,7 +20212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -19508,7 +20239,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19534,7 +20266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -19560,7 +20293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19586,7 +20320,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19612,7 +20347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -19638,7 +20374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -19664,7 +20401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -19690,7 +20428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trailblaze", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -19716,7 +20455,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/weather-ball", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -19747,7 +20487,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19774,7 +20515,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19801,7 +20543,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -19828,7 +20571,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19855,7 +20599,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/copycat", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19882,7 +20627,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -19909,7 +20655,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -19936,7 +20683,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19963,7 +20711,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19990,7 +20739,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -20017,7 +20767,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -20044,7 +20795,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20071,7 +20823,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -20098,7 +20851,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -20125,7 +20879,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20152,7 +20907,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -20281,7 +21037,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20307,7 +21064,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20333,7 +21091,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20359,7 +21118,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20385,7 +21145,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20411,7 +21172,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -20440,7 +21202,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20466,7 +21229,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20492,7 +21256,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20518,7 +21283,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -20544,7 +21310,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20570,7 +21337,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -20596,7 +21364,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -20622,7 +21391,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20648,7 +21418,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20674,7 +21445,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20700,7 +21472,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20726,7 +21499,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -20752,7 +21526,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20778,7 +21553,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20804,7 +21580,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -20832,7 +21609,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20858,7 +21636,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -20884,7 +21663,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20910,7 +21690,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20936,7 +21717,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -20962,7 +21744,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20988,7 +21771,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -21014,7 +21798,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21040,7 +21825,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21066,7 +21852,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -21096,7 +21883,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21123,7 +21911,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -21150,7 +21939,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21177,7 +21967,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21204,7 +21995,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -21231,7 +22023,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21258,7 +22051,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -21285,7 +22079,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21312,7 +22107,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -21343,7 +22139,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21369,7 +22166,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -21395,7 +22193,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21421,7 +22220,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21447,7 +22247,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21473,7 +22274,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21499,7 +22301,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21525,7 +22328,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21551,7 +22355,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21577,7 +22382,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -21605,7 +22411,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21631,7 +22438,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -21657,7 +22465,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -21683,7 +22492,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21709,7 +22519,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21735,7 +22546,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -21761,7 +22573,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -21787,7 +22600,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -21815,7 +22629,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21841,7 +22656,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21867,7 +22683,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -21893,7 +22710,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21919,7 +22737,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21945,7 +22764,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -21971,7 +22791,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -21997,7 +22818,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -22023,7 +22845,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -22049,7 +22872,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22075,7 +22899,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22101,7 +22926,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22127,7 +22953,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22153,7 +22980,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -22179,7 +23007,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -22205,7 +23034,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -22231,7 +23061,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22257,7 +23088,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22283,7 +23115,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22309,7 +23142,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22335,7 +23169,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -22363,7 +23198,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -22389,7 +23225,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22415,7 +23252,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22441,7 +23279,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -22467,7 +23306,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22493,7 +23333,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22519,7 +23360,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -22549,7 +23391,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22576,7 +23419,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -22603,7 +23447,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22630,7 +23475,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22657,7 +23503,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -22684,7 +23531,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22711,7 +23559,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22738,7 +23587,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22765,7 +23615,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22792,7 +23643,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -22819,7 +23671,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -22849,7 +23702,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22875,7 +23729,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22901,7 +23756,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -22929,7 +23785,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22955,7 +23812,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -22981,7 +23839,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23007,7 +23866,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23033,7 +23893,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23059,7 +23920,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23085,7 +23947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23111,7 +23974,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23137,7 +24001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -23163,7 +24028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -23189,7 +24055,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23215,7 +24082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23241,7 +24109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -23269,7 +24138,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23295,7 +24165,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -23321,7 +24192,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -23347,7 +24219,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sing", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -23375,7 +24248,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23401,7 +24275,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -23427,7 +24302,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23453,7 +24329,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -23479,7 +24356,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -23505,7 +24383,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -23531,7 +24410,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -23557,7 +24437,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23583,7 +24464,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23609,7 +24491,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23635,7 +24518,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -23661,7 +24545,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -23687,7 +24572,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -23713,7 +24599,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -23739,7 +24626,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23765,7 +24653,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23791,7 +24680,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23817,7 +24707,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23843,7 +24734,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -23871,7 +24763,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -23897,7 +24790,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23923,7 +24817,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23949,7 +24844,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -23975,7 +24871,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -24001,7 +24898,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -24027,7 +24925,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24053,7 +24952,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -24083,7 +24983,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24110,7 +25011,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -24137,7 +25039,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24164,7 +25067,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -24191,7 +25095,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -24218,7 +25123,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24245,7 +25151,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24272,7 +25179,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -24299,7 +25207,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -24326,7 +25235,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24353,7 +25263,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -24380,7 +25291,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24407,7 +25319,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -24434,7 +25347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -24465,7 +25379,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24491,7 +25406,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24517,7 +25433,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -24543,7 +25460,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24569,7 +25487,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24595,7 +25514,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24621,7 +25541,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24647,7 +25568,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24673,7 +25595,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24699,7 +25622,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -24725,7 +25649,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -24751,7 +25676,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24777,7 +25703,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24803,7 +25730,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -24831,7 +25759,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24857,7 +25786,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24883,7 +25813,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24909,7 +25840,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24935,7 +25867,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -24961,7 +25894,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24987,7 +25921,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25013,7 +25948,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -25041,7 +25977,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25067,7 +26004,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25093,7 +26031,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -25119,7 +26058,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25145,7 +26085,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -25171,7 +26112,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -25197,7 +26139,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -25223,7 +26166,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25249,7 +26193,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25275,7 +26220,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25301,7 +26247,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25327,7 +26274,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -25353,7 +26301,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -25379,7 +26328,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25405,7 +26355,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -25431,7 +26382,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -25457,7 +26409,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25483,7 +26436,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25509,7 +26463,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25535,7 +26490,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25561,7 +26517,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -25589,7 +26546,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25615,7 +26573,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25641,7 +26600,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25667,7 +26627,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -25693,7 +26654,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -25719,7 +26681,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -25745,7 +26708,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -25775,7 +26739,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25802,7 +26767,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25829,7 +26795,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25856,7 +26823,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25883,7 +26851,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25910,7 +26879,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -25937,7 +26907,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25964,7 +26935,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25991,7 +26963,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -26018,7 +26991,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -26045,7 +27019,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26072,7 +27047,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26099,7 +27075,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -26126,7 +27103,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -26153,7 +27131,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26180,7 +27159,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -26207,7 +27187,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -26238,7 +27219,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26264,7 +27246,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26290,7 +27273,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -26316,7 +27300,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26342,7 +27327,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26368,7 +27354,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26394,7 +27381,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26420,7 +27408,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26446,7 +27435,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26472,7 +27462,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -26498,7 +27489,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -26524,7 +27516,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26550,7 +27543,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26576,7 +27570,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -26604,7 +27599,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26630,7 +27626,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26656,7 +27653,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -26684,7 +27682,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26710,7 +27709,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26736,7 +27736,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26762,7 +27763,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -26788,7 +27790,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -26814,7 +27817,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -26840,7 +27844,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -26866,7 +27871,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26892,7 +27898,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26918,7 +27925,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26944,7 +27952,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -26970,7 +27979,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -26996,7 +28006,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -27022,7 +28033,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27048,7 +28060,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27074,7 +28087,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27100,7 +28114,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27126,7 +28141,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27152,7 +28168,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -27180,7 +28197,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -27206,7 +28224,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27232,7 +28251,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27258,7 +28278,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -27284,7 +28305,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -27310,7 +28332,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/laser-focus", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27336,7 +28359,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -27362,7 +28386,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -27390,7 +28415,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27416,7 +28442,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27442,7 +28469,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27468,7 +28496,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -27494,7 +28523,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -27520,7 +28550,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27546,7 +28577,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27572,7 +28604,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27598,7 +28631,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -27624,7 +28658,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27650,7 +28685,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27676,7 +28712,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27702,7 +28739,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27728,7 +28766,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -27754,7 +28793,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27780,7 +28820,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -27806,7 +28847,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -27832,7 +28874,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -27858,7 +28901,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27884,7 +28928,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -27910,7 +28955,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27936,7 +28982,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -27962,7 +29009,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -27988,7 +29036,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28014,7 +29063,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28040,7 +29090,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28066,7 +29117,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -28092,7 +29144,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28118,7 +29171,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -28144,7 +29198,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", "target": "Normal", "type": "Normal", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -28170,7 +29225,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28196,7 +29252,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -28222,7 +29279,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28248,7 +29306,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28274,7 +29333,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28300,7 +29360,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -28326,7 +29387,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -28352,7 +29414,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28378,7 +29441,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -28404,7 +29468,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -28433,7 +29498,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28460,7 +29526,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28487,7 +29554,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -28514,7 +29582,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28541,7 +29610,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -28568,7 +29638,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -28595,7 +29666,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28622,7 +29694,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28649,7 +29722,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -28676,7 +29750,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -28703,7 +29778,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28730,7 +29806,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28757,7 +29834,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -28784,7 +29862,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -28811,7 +29890,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28838,7 +29918,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -28865,7 +29946,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -28896,7 +29978,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28922,7 +30005,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28948,7 +30032,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-kick", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -28974,7 +30059,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29000,7 +30086,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -29026,7 +30113,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29052,7 +30140,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29078,7 +30167,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -29107,7 +30197,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/alluring-voice", "target": "Normal", "type": "Fairy", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -29133,7 +30224,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29159,7 +30251,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -29185,7 +30278,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/calm-mind", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29211,7 +30305,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29237,7 +30332,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29263,7 +30359,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -29289,7 +30386,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -29315,7 +30413,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29341,7 +30440,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -29367,7 +30467,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29393,7 +30494,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29419,7 +30521,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -29445,7 +30548,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -29471,7 +30575,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29497,7 +30602,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29523,7 +30629,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29549,7 +30656,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29575,7 +30683,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -29601,7 +30710,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29627,7 +30737,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -29653,7 +30764,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29679,7 +30791,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29705,7 +30818,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -29731,7 +30845,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -29757,7 +30872,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -29783,7 +30899,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trailblaze", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -29809,7 +30926,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/weather-ball", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -29840,7 +30958,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29867,7 +30986,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29894,7 +31014,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -29921,7 +31042,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29948,7 +31070,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/copycat", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29975,7 +31098,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -30002,7 +31126,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -30029,7 +31154,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30056,7 +31182,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30083,7 +31210,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -30110,7 +31238,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -30137,7 +31266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30164,7 +31294,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -30191,7 +31322,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -30218,7 +31350,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30245,7 +31378,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -30386,7 +31520,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30412,7 +31547,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30438,7 +31574,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30464,7 +31601,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30490,7 +31628,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30516,7 +31655,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -30545,7 +31685,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30571,7 +31712,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -30597,7 +31739,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30623,7 +31766,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -30649,7 +31793,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -30675,7 +31820,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -30701,7 +31847,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -30727,7 +31874,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30753,7 +31901,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30779,7 +31928,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30805,7 +31955,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -30831,7 +31982,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -30857,7 +32009,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -30883,7 +32036,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -30909,7 +32063,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -30937,7 +32092,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -30963,7 +32119,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -30989,7 +32146,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31015,7 +32173,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31041,7 +32200,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -31067,7 +32227,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31093,7 +32254,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -31119,7 +32281,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31145,7 +32308,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31171,7 +32335,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -31201,7 +32366,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31228,7 +32394,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -31255,7 +32422,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31282,7 +32450,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31309,7 +32478,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -31336,7 +32506,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31363,7 +32534,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -31390,7 +32562,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31417,7 +32590,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -31448,7 +32622,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31474,7 +32649,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -31500,7 +32676,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31526,7 +32703,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31552,7 +32730,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31578,7 +32757,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31604,7 +32784,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31630,7 +32811,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31656,7 +32838,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31682,7 +32865,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -31710,7 +32894,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31736,7 +32921,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -31762,7 +32948,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -31788,7 +32975,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31814,7 +33002,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31840,7 +33029,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -31866,7 +33056,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -31892,7 +33083,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -31920,7 +33112,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31946,7 +33139,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -31972,7 +33166,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -31998,7 +33193,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32024,7 +33220,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32050,7 +33247,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -32076,7 +33274,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -32102,7 +33301,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -32128,7 +33328,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -32154,7 +33355,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32180,7 +33382,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32206,7 +33409,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32232,7 +33436,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32258,7 +33463,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -32284,7 +33490,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -32310,7 +33517,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -32336,7 +33544,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32362,7 +33571,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32388,7 +33598,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32414,7 +33625,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32440,7 +33652,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -32468,7 +33681,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -32494,7 +33708,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32520,7 +33735,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32546,7 +33762,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -32572,7 +33789,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -32598,7 +33816,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -32624,7 +33843,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -32654,7 +33874,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32681,7 +33902,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -32708,7 +33930,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32735,7 +33958,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32762,7 +33986,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -32789,7 +34014,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -32816,7 +34042,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32843,7 +34070,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -32870,7 +34098,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32897,7 +34126,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -32924,7 +34154,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -32954,7 +34185,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -32980,7 +34212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33006,7 +34239,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -33034,7 +34268,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33060,7 +34295,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -33086,7 +34322,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33112,7 +34349,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33138,7 +34376,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33164,7 +34403,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33190,7 +34430,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33216,7 +34457,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33242,7 +34484,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -33268,7 +34511,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -33294,7 +34538,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33320,7 +34565,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33346,7 +34592,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -33374,7 +34621,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33400,7 +34648,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -33426,7 +34675,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -33452,7 +34702,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sing", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -33480,7 +34731,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33506,7 +34758,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -33532,7 +34785,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33558,7 +34812,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -33584,7 +34839,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -33610,7 +34866,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -33636,7 +34893,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -33662,7 +34920,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33688,7 +34947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33714,7 +34974,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33740,7 +35001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -33766,7 +35028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -33792,7 +35055,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -33818,7 +35082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -33844,7 +35109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33870,7 +35136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33896,7 +35163,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33922,7 +35190,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -33948,7 +35217,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -33976,7 +35246,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -34002,7 +35273,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34028,7 +35300,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34054,7 +35327,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -34080,7 +35354,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -34106,7 +35381,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -34132,7 +35408,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34158,7 +35435,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -34188,7 +35466,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34215,7 +35494,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -34242,7 +35522,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34269,7 +35550,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -34296,7 +35578,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -34323,7 +35606,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34350,7 +35634,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34377,7 +35662,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -34404,7 +35690,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -34431,7 +35718,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34458,7 +35746,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -34485,7 +35774,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34512,7 +35802,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -34539,7 +35830,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -34570,7 +35862,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34596,7 +35889,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34622,7 +35916,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -34648,7 +35943,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34674,7 +35970,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34700,7 +35997,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34726,7 +36024,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34752,7 +36051,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34778,7 +36078,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34804,7 +36105,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -34830,7 +36132,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -34856,7 +36159,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34882,7 +36186,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34908,7 +36213,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -34936,7 +36242,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34962,7 +36269,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -34988,7 +36296,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35014,7 +36323,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35040,7 +36350,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -35066,7 +36377,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35092,7 +36404,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -35118,7 +36431,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -35146,7 +36460,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35172,7 +36487,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35198,7 +36514,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -35224,7 +36541,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35250,7 +36568,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -35276,7 +36595,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -35302,7 +36622,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -35328,7 +36649,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -35354,7 +36676,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35380,7 +36703,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35406,7 +36730,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35432,7 +36757,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -35458,7 +36784,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -35484,7 +36811,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -35510,7 +36838,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -35536,7 +36865,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -35562,7 +36892,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35588,7 +36919,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35614,7 +36946,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35640,7 +36973,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35666,7 +37000,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -35694,7 +37029,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -35720,7 +37056,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35746,7 +37083,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35772,7 +37110,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -35798,7 +37137,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -35824,7 +37164,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -35850,7 +37191,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -35880,7 +37222,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35907,7 +37250,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35934,7 +37278,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -35961,7 +37306,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -35988,7 +37334,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -36015,7 +37362,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -36042,7 +37390,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36069,7 +37418,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36096,7 +37446,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -36123,7 +37474,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -36150,7 +37502,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36177,7 +37530,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36204,7 +37558,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -36231,7 +37586,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -36258,7 +37614,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36285,7 +37642,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -36312,7 +37670,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -36343,7 +37702,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36369,7 +37729,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36395,7 +37756,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -36421,7 +37783,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36447,7 +37810,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36473,7 +37837,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36499,7 +37864,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36525,7 +37891,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36551,7 +37918,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36577,7 +37945,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -36603,7 +37972,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -36629,7 +37999,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36655,7 +38026,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36681,7 +38053,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -36709,7 +38082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36735,7 +38109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36761,7 +38136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -36789,7 +38165,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36815,7 +38192,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36841,7 +38219,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36867,7 +38246,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -36893,7 +38273,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -36919,7 +38300,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -36945,7 +38327,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -36971,7 +38354,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -36997,7 +38381,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37023,7 +38408,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37049,7 +38435,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -37075,7 +38462,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -37101,7 +38489,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -37127,7 +38516,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37153,7 +38543,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37179,7 +38570,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37205,7 +38597,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37231,7 +38624,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37257,7 +38651,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -37285,7 +38680,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -37311,7 +38707,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37337,7 +38734,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37363,7 +38761,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -37389,7 +38788,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -37415,7 +38815,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/laser-focus", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37441,7 +38842,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -37467,7 +38869,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -37495,7 +38898,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37521,7 +38925,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37547,7 +38952,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37573,7 +38979,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -37599,7 +39006,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -37625,7 +39033,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37651,7 +39060,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37677,7 +39087,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37703,7 +39114,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -37729,7 +39141,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37755,7 +39168,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37781,7 +39195,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37807,7 +39222,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37833,7 +39249,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -37859,7 +39276,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37885,7 +39303,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -37911,7 +39330,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -37937,7 +39357,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -37963,7 +39384,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -37989,7 +39411,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -38015,7 +39438,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38041,7 +39465,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -38067,7 +39492,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -38093,7 +39519,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38119,7 +39546,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38145,7 +39573,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38171,7 +39600,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -38197,7 +39627,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38223,7 +39654,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -38249,7 +39681,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", "target": "Normal", "type": "Normal", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -38275,7 +39708,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38301,7 +39735,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -38327,7 +39762,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38353,7 +39789,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38379,7 +39816,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38405,7 +39843,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -38431,7 +39870,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -38457,7 +39897,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38483,7 +39924,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -38509,7 +39951,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -38538,7 +39981,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38565,7 +40009,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38592,7 +40037,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -38619,7 +40065,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38646,7 +40093,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -38673,7 +40121,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -38700,7 +40149,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38727,7 +40177,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38754,7 +40205,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -38781,7 +40233,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -38808,7 +40261,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38835,7 +40289,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38862,7 +40317,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -38889,7 +40345,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -38916,7 +40373,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -38943,7 +40401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -38970,7 +40429,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -39001,7 +40461,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39027,7 +40488,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39053,7 +40515,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-kick", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -39079,7 +40542,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39105,7 +40569,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -39131,7 +40596,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39157,7 +40623,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39183,7 +40650,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -39212,7 +40680,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/alluring-voice", "target": "Normal", "type": "Fairy", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -39238,7 +40707,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39264,7 +40734,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -39290,7 +40761,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/calm-mind", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39316,7 +40788,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39342,7 +40815,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39368,7 +40842,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -39394,7 +40869,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -39420,7 +40896,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39446,7 +40923,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -39472,7 +40950,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39498,7 +40977,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39524,7 +41004,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -39550,7 +41031,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -39576,7 +41058,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39602,7 +41085,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39628,7 +41112,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39654,7 +41139,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39680,7 +41166,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -39706,7 +41193,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39732,7 +41220,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -39758,7 +41247,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39784,7 +41274,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39810,7 +41301,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -39836,7 +41328,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -39862,7 +41355,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -39888,7 +41382,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trailblaze", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -39914,7 +41409,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/weather-ball", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -39945,7 +41441,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39972,7 +41469,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -39999,7 +41497,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -40026,7 +41525,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40053,7 +41553,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/copycat", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40080,7 +41581,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -40107,7 +41609,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -40134,7 +41637,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40161,7 +41665,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40188,7 +41693,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -40215,7 +41721,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -40242,7 +41749,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40269,7 +41777,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -40296,7 +41805,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -40323,7 +41833,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40350,7 +41861,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -40479,7 +41991,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40505,7 +42018,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40531,7 +42045,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40557,7 +42072,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40583,7 +42099,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40609,7 +42126,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -40638,7 +42156,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40664,7 +42183,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -40690,7 +42210,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40716,7 +42237,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -40742,7 +42264,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -40768,7 +42291,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -40794,7 +42318,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -40820,7 +42345,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40846,7 +42372,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40872,7 +42399,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -40898,7 +42426,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -40924,7 +42453,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -40950,7 +42480,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -40976,7 +42507,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41002,7 +42534,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -41030,7 +42563,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -41056,7 +42590,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -41082,7 +42617,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41108,7 +42644,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41134,7 +42671,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -41160,7 +42698,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41186,7 +42725,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -41212,7 +42752,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41238,7 +42779,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41264,7 +42806,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -41294,7 +42837,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41321,7 +42865,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -41348,7 +42893,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41375,7 +42921,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41402,7 +42949,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -41429,7 +42977,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41456,7 +43005,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -41483,7 +43033,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41510,7 +43061,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -41541,7 +43093,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41567,7 +43120,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -41593,7 +43147,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41619,7 +43174,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41645,7 +43201,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41671,7 +43228,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41697,7 +43255,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41723,7 +43282,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41749,7 +43309,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41775,7 +43336,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -41803,7 +43365,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41829,7 +43392,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -41855,7 +43419,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -41881,7 +43446,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41907,7 +43473,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -41933,7 +43500,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -41959,7 +43527,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -41985,7 +43554,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -42013,7 +43583,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42039,7 +43610,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42065,7 +43637,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -42091,7 +43664,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42117,7 +43691,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42143,7 +43718,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -42169,7 +43745,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -42195,7 +43772,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -42221,7 +43799,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -42247,7 +43826,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42273,7 +43853,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42299,7 +43880,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42325,7 +43907,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42351,7 +43934,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -42377,7 +43961,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -42403,7 +43988,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -42429,7 +44015,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42455,7 +44042,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42481,7 +44069,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42507,7 +44096,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42533,7 +44123,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -42561,7 +44152,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -42587,7 +44179,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42613,7 +44206,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42639,7 +44233,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -42665,7 +44260,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -42691,7 +44287,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -42717,7 +44314,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -42747,7 +44345,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42774,7 +44373,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -42801,7 +44401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42828,7 +44429,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42855,7 +44457,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -42882,7 +44485,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -42909,7 +44513,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42936,7 +44541,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -42963,7 +44569,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -42990,7 +44597,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -43017,7 +44625,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -43047,7 +44656,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43073,7 +44683,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43099,7 +44710,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -43127,7 +44739,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43153,7 +44766,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -43179,7 +44793,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43205,7 +44820,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43231,7 +44847,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43257,7 +44874,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43283,7 +44901,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43309,7 +44928,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43335,7 +44955,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -43361,7 +44982,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -43387,7 +45009,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43413,7 +45036,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43439,7 +45063,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -43467,7 +45092,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43493,7 +45119,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -43519,7 +45146,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -43545,7 +45173,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sing", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -43573,7 +45202,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43599,7 +45229,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -43625,7 +45256,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43651,7 +45283,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -43677,7 +45310,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -43703,7 +45337,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -43729,7 +45364,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -43755,7 +45391,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43781,7 +45418,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43807,7 +45445,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43833,7 +45472,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -43859,7 +45499,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -43885,7 +45526,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -43911,7 +45553,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -43937,7 +45580,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43963,7 +45607,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -43989,7 +45634,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44015,7 +45661,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44041,7 +45688,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -44069,7 +45717,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -44095,7 +45744,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44121,7 +45771,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44147,7 +45798,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -44173,7 +45825,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -44199,7 +45852,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -44225,7 +45879,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44251,7 +45906,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -44281,7 +45937,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44308,7 +45965,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -44335,7 +45993,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44362,7 +46021,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -44389,7 +46049,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -44416,7 +46077,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44443,7 +46105,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44470,7 +46133,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -44497,7 +46161,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -44524,7 +46189,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44551,7 +46217,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -44578,7 +46245,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44605,7 +46273,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -44632,7 +46301,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -44663,7 +46333,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44689,7 +46360,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44715,7 +46387,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -44741,7 +46414,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44767,7 +46441,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44793,7 +46468,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44819,7 +46495,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44845,7 +46522,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44871,7 +46549,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44897,7 +46576,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -44923,7 +46603,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -44949,7 +46630,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -44975,7 +46657,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45001,7 +46684,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -45029,7 +46713,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45055,7 +46740,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45081,7 +46767,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45107,7 +46794,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45133,7 +46821,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -45159,7 +46848,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45185,7 +46875,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -45211,7 +46902,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -45239,7 +46931,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45265,7 +46958,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45291,7 +46985,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -45317,7 +47012,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45343,7 +47039,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -45369,7 +47066,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -45395,7 +47093,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -45421,7 +47120,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -45447,7 +47147,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45473,7 +47174,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45499,7 +47201,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45525,7 +47228,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -45551,7 +47255,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -45577,7 +47282,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -45603,7 +47309,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -45629,7 +47336,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -45655,7 +47363,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45681,7 +47390,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45707,7 +47417,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45733,7 +47444,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45759,7 +47471,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -45787,7 +47500,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -45813,7 +47527,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45839,7 +47554,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -45865,7 +47581,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -45891,7 +47608,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -45917,7 +47635,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -45943,7 +47662,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -45973,7 +47693,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46000,7 +47721,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46027,7 +47749,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -46054,7 +47777,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46081,7 +47805,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -46108,7 +47833,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -46135,7 +47861,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46162,7 +47889,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46189,7 +47917,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -46216,7 +47945,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -46243,7 +47973,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46270,7 +48001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46297,7 +48029,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -46324,7 +48057,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -46351,7 +48085,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46378,7 +48113,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -46405,7 +48141,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -46436,7 +48173,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46462,7 +48200,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46488,7 +48227,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -46514,7 +48254,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46540,7 +48281,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46566,7 +48308,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46592,7 +48335,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46618,7 +48362,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46644,7 +48389,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46670,7 +48416,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -46696,7 +48443,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -46722,7 +48470,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46748,7 +48497,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46774,7 +48524,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -46802,7 +48553,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46828,7 +48580,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46854,7 +48607,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -46882,7 +48636,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46908,7 +48663,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46934,7 +48690,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -46960,7 +48717,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -46986,7 +48744,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -47012,7 +48771,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -47038,7 +48798,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -47064,7 +48825,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47090,7 +48852,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47116,7 +48879,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47142,7 +48906,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -47168,7 +48933,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -47194,7 +48960,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -47220,7 +48987,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47246,7 +49014,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47272,7 +49041,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47298,7 +49068,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47324,7 +49095,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47350,7 +49122,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -47378,7 +49151,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -47404,7 +49178,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47430,7 +49205,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47456,7 +49232,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -47482,7 +49259,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -47508,7 +49286,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/laser-focus", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47534,7 +49313,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -47560,7 +49340,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -47588,7 +49369,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47614,7 +49396,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47640,7 +49423,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47666,7 +49450,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -47692,7 +49477,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -47718,7 +49504,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47744,7 +49531,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47770,7 +49558,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47796,7 +49585,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -47822,7 +49612,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47848,7 +49639,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47874,7 +49666,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47900,7 +49693,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47926,7 +49720,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -47952,7 +49747,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -47978,7 +49774,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -48004,7 +49801,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -48030,7 +49828,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -48056,7 +49855,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48082,7 +49882,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -48108,7 +49909,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48134,7 +49936,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -48160,7 +49963,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -48186,7 +49990,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48212,7 +50017,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48238,7 +50044,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48264,7 +50071,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -48290,7 +50098,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48316,7 +50125,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -48342,7 +50152,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", "target": "Normal", "type": "Normal", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -48368,7 +50179,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48394,7 +50206,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -48420,7 +50233,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48446,7 +50260,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48472,7 +50287,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48498,7 +50314,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -48524,7 +50341,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -48550,7 +50368,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48576,7 +50395,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -48602,7 +50422,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -48631,7 +50452,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48658,7 +50480,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48685,7 +50508,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -48712,7 +50536,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48739,7 +50564,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -48766,7 +50592,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -48793,7 +50620,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48820,7 +50648,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48847,7 +50676,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -48874,7 +50704,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -48901,7 +50732,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48928,7 +50760,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -48955,7 +50788,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -48982,7 +50816,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -49009,7 +50844,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49036,7 +50872,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -49063,7 +50900,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -49094,7 +50932,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49120,7 +50959,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49146,7 +50986,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-kick", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -49172,7 +51013,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49198,7 +51040,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -49224,7 +51067,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49250,7 +51094,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49276,7 +51121,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -49305,7 +51151,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/alluring-voice", "target": "Normal", "type": "Fairy", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -49331,7 +51178,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49357,7 +51205,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -49383,7 +51232,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/calm-mind", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49409,7 +51259,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49435,7 +51286,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49461,7 +51313,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -49487,7 +51340,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -49513,7 +51367,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49539,7 +51394,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -49565,7 +51421,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49591,7 +51448,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49617,7 +51475,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -49643,7 +51502,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -49669,7 +51529,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49695,7 +51556,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49721,7 +51583,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49747,7 +51610,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49773,7 +51637,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -49799,7 +51664,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49825,7 +51691,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -49851,7 +51718,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49877,7 +51745,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -49903,7 +51772,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -49929,7 +51799,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -49955,7 +51826,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -49981,7 +51853,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trailblaze", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -50007,7 +51880,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/weather-ball", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -50038,7 +51912,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50065,7 +51940,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50092,7 +51968,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -50119,7 +51996,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50146,7 +52024,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/copycat", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50173,7 +52052,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -50200,7 +52080,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -50227,7 +52108,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50254,7 +52136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50281,7 +52164,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -50308,7 +52192,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -50335,7 +52220,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50362,7 +52248,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -50389,7 +52276,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -50416,7 +52304,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50443,7 +52332,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -50600,7 +52490,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50626,7 +52517,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50652,7 +52544,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50678,7 +52571,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50704,7 +52598,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50730,7 +52625,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -50759,7 +52655,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50785,7 +52682,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -50811,7 +52709,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50837,7 +52736,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -50863,7 +52763,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -50889,7 +52790,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -50915,7 +52817,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -50941,7 +52844,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50967,7 +52871,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -50993,7 +52898,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51019,7 +52925,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -51045,7 +52952,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -51071,7 +52979,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -51097,7 +53006,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51123,7 +53033,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -51151,7 +53062,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -51177,7 +53089,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -51203,7 +53116,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51229,7 +53143,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51255,7 +53170,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -51281,7 +53197,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51307,7 +53224,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -51333,7 +53251,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51359,7 +53278,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51385,7 +53305,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -51415,7 +53336,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51442,7 +53364,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -51469,7 +53392,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51496,7 +53420,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51523,7 +53448,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -51550,7 +53476,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51577,7 +53504,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -51604,7 +53532,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51631,7 +53560,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -51662,7 +53592,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51688,7 +53619,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -51714,7 +53646,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51740,7 +53673,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51766,7 +53700,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51792,7 +53727,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51818,7 +53754,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51844,7 +53781,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51870,7 +53808,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51896,7 +53835,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -51924,7 +53864,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -51950,7 +53891,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -51976,7 +53918,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -52002,7 +53945,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52028,7 +53972,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52054,7 +53999,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -52080,7 +54026,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -52106,7 +54053,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -52134,7 +54082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52160,7 +54109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52186,7 +54136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -52212,7 +54163,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52238,7 +54190,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52264,7 +54217,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -52290,7 +54244,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -52316,7 +54271,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -52342,7 +54298,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -52368,7 +54325,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52394,7 +54352,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52420,7 +54379,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52446,7 +54406,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52472,7 +54433,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -52498,7 +54460,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -52524,7 +54487,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -52550,7 +54514,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52576,7 +54541,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52602,7 +54568,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52628,7 +54595,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52654,7 +54622,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -52682,7 +54651,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -52708,7 +54678,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52734,7 +54705,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52760,7 +54732,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -52786,7 +54759,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -52812,7 +54786,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -52838,7 +54813,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -52868,7 +54844,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52895,7 +54872,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -52922,7 +54900,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52949,7 +54928,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -52976,7 +54956,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -53003,7 +54984,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -53030,7 +55012,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53057,7 +55040,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -53084,7 +55068,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53111,7 +55096,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -53138,7 +55124,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -53168,7 +55155,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53194,7 +55182,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53220,7 +55209,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -53248,7 +55238,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53274,7 +55265,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -53300,7 +55292,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53326,7 +55319,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53352,7 +55346,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53378,7 +55373,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53404,7 +55400,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53430,7 +55427,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53456,7 +55454,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -53482,7 +55481,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -53508,7 +55508,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53534,7 +55535,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53560,7 +55562,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -53588,7 +55591,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53614,7 +55618,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -53640,7 +55645,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -53666,7 +55672,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sing", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -53694,7 +55701,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53720,7 +55728,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -53746,7 +55755,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53772,7 +55782,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -53798,7 +55809,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -53824,7 +55836,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -53850,7 +55863,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -53876,7 +55890,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53902,7 +55917,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53928,7 +55944,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -53954,7 +55971,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -53980,7 +55998,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -54006,7 +56025,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -54032,7 +56052,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -54058,7 +56079,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54084,7 +56106,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54110,7 +56133,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54136,7 +56160,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54162,7 +56187,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -54190,7 +56216,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -54216,7 +56243,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54242,7 +56270,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54268,7 +56297,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -54294,7 +56324,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -54320,7 +56351,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -54346,7 +56378,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54372,7 +56405,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -54402,7 +56436,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54429,7 +56464,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -54456,7 +56492,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54483,7 +56520,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -54510,7 +56548,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -54537,7 +56576,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54564,7 +56604,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54591,7 +56632,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -54618,7 +56660,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -54645,7 +56688,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54672,7 +56716,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -54699,7 +56744,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54726,7 +56772,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -54753,7 +56800,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -54784,7 +56832,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54810,7 +56859,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54836,7 +56886,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -54862,7 +56913,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54888,7 +56940,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54914,7 +56967,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54940,7 +56994,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54966,7 +57021,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -54992,7 +57048,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55018,7 +57075,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -55044,7 +57102,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -55070,7 +57129,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55096,7 +57156,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55122,7 +57183,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -55150,7 +57212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55176,7 +57239,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55202,7 +57266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55228,7 +57293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55254,7 +57320,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -55280,7 +57347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55306,7 +57374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -55332,7 +57401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -55360,7 +57430,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55386,7 +57457,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55412,7 +57484,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -55438,7 +57511,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55464,7 +57538,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -55490,7 +57565,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -55516,7 +57592,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -55542,7 +57619,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -55568,7 +57646,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55594,7 +57673,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55620,7 +57700,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55646,7 +57727,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -55672,7 +57754,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -55698,7 +57781,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -55724,7 +57808,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -55750,7 +57835,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -55776,7 +57862,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55802,7 +57889,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55828,7 +57916,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55854,7 +57943,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55880,7 +57970,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -55908,7 +57999,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -55934,7 +58026,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55960,7 +58053,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -55986,7 +58080,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -56012,7 +58107,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -56038,7 +58134,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -56064,7 +58161,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -56094,7 +58192,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56121,7 +58220,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56148,7 +58248,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -56175,7 +58276,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56202,7 +58304,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -56229,7 +58332,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -56256,7 +58360,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56283,7 +58388,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56310,7 +58416,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -56337,7 +58444,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -56364,7 +58472,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56391,7 +58500,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56418,7 +58528,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -56445,7 +58556,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -56472,7 +58584,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56499,7 +58612,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -56526,7 +58640,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -56557,7 +58672,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56583,7 +58699,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56609,7 +58726,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -56635,7 +58753,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56661,7 +58780,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56687,7 +58807,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56713,7 +58834,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56739,7 +58861,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56765,7 +58888,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56791,7 +58915,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -56817,7 +58942,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -56843,7 +58969,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56869,7 +58996,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56895,7 +59023,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -56923,7 +59052,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56949,7 +59079,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -56975,7 +59106,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -57003,7 +59135,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57029,7 +59162,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57055,7 +59189,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57081,7 +59216,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -57107,7 +59243,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -57133,7 +59270,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -57159,7 +59297,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -57185,7 +59324,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57211,7 +59351,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57237,7 +59378,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57263,7 +59405,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -57289,7 +59432,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -57315,7 +59459,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -57341,7 +59486,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57367,7 +59513,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57393,7 +59540,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57419,7 +59567,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57445,7 +59594,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57471,7 +59621,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -57499,7 +59650,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -57525,7 +59677,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57551,7 +59704,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57577,7 +59731,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -57603,7 +59758,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -57629,7 +59785,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/laser-focus", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57655,7 +59812,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -57681,7 +59839,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -57709,7 +59868,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57735,7 +59895,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57761,7 +59922,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57787,7 +59949,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -57813,7 +59976,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -57839,7 +60003,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57865,7 +60030,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57891,7 +60057,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57917,7 +60084,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -57943,7 +60111,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57969,7 +60138,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -57995,7 +60165,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58021,7 +60192,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58047,7 +60219,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -58073,7 +60246,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58099,7 +60273,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -58125,7 +60300,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -58151,7 +60327,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -58177,7 +60354,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58203,7 +60381,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -58229,7 +60408,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58255,7 +60435,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -58281,7 +60462,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -58307,7 +60489,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58333,7 +60516,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58359,7 +60543,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58385,7 +60570,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -58411,7 +60597,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58437,7 +60624,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -58463,7 +60651,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", "target": "Normal", "type": "Normal", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -58489,7 +60678,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58515,7 +60705,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -58541,7 +60732,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58567,7 +60759,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58593,7 +60786,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58619,7 +60813,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -58645,7 +60840,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -58671,7 +60867,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58697,7 +60894,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -58723,7 +60921,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -58752,7 +60951,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58779,7 +60979,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58806,7 +61007,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -58833,7 +61035,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58860,7 +61063,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -58887,7 +61091,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -58914,7 +61119,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58941,7 +61147,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -58968,7 +61175,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -58995,7 +61203,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -59022,7 +61231,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59049,7 +61259,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59076,7 +61287,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -59103,7 +61315,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -59130,7 +61343,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59157,7 +61371,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -59184,7 +61399,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -59215,7 +61431,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59241,7 +61458,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59267,7 +61485,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-kick", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -59293,7 +61512,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59319,7 +61539,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -59345,7 +61566,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59371,7 +61593,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59397,7 +61620,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -59426,7 +61650,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/alluring-voice", "target": "Normal", "type": "Fairy", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -59452,7 +61677,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59478,7 +61704,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -59504,7 +61731,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/calm-mind", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59530,7 +61758,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59556,7 +61785,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59582,7 +61812,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -59608,7 +61839,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -59634,7 +61866,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59660,7 +61893,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -59686,7 +61920,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59712,7 +61947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59738,7 +61974,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -59764,7 +62001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -59790,7 +62028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59816,7 +62055,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59842,7 +62082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59868,7 +62109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59894,7 +62136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -59920,7 +62163,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59946,7 +62190,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -59972,7 +62217,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -59998,7 +62244,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60024,7 +62271,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -60050,7 +62298,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -60076,7 +62325,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -60102,7 +62352,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trailblaze", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -60128,7 +62379,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/weather-ball", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -60159,7 +62411,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60186,7 +62439,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60213,7 +62467,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -60240,7 +62495,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60267,7 +62523,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/copycat", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60294,7 +62551,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -60321,7 +62579,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -60348,7 +62607,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60375,7 +62635,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60402,7 +62663,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -60429,7 +62691,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -60456,7 +62719,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60483,7 +62747,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -60510,7 +62775,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -60537,7 +62803,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60564,7 +62831,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -60707,7 +62975,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60733,7 +63002,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60759,7 +63029,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60785,7 +63056,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60811,7 +63083,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60837,7 +63110,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -60866,7 +63140,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60892,7 +63167,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -60918,7 +63194,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -60944,7 +63221,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -60970,7 +63248,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -60996,7 +63275,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -61022,7 +63302,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -61048,7 +63329,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61074,7 +63356,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61100,7 +63383,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61126,7 +63410,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -61152,7 +63437,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -61178,7 +63464,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -61204,7 +63491,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61230,7 +63518,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -61258,7 +63547,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -61284,7 +63574,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -61310,7 +63601,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61336,7 +63628,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61362,7 +63655,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -61388,7 +63682,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61414,7 +63709,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -61440,7 +63736,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61466,7 +63763,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61492,7 +63790,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -61522,7 +63821,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61549,7 +63849,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -61576,7 +63877,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61603,7 +63905,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61630,7 +63933,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -61657,7 +63961,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61684,7 +63989,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -61711,7 +64017,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61738,7 +64045,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -61769,7 +64077,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61795,7 +64104,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -61821,7 +64131,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61847,7 +64158,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61873,7 +64185,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61899,7 +64212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61925,7 +64239,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61951,7 +64266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -61977,7 +64293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62003,7 +64320,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -62031,7 +64349,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62057,7 +64376,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -62083,7 +64403,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -62109,7 +64430,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62135,7 +64457,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62161,7 +64484,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -62187,7 +64511,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -62213,7 +64538,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -62241,7 +64567,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62267,7 +64594,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62293,7 +64621,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -62319,7 +64648,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62345,7 +64675,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62371,7 +64702,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -62397,7 +64729,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -62423,7 +64756,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -62449,7 +64783,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -62475,7 +64810,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62501,7 +64837,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62527,7 +64864,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62553,7 +64891,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62579,7 +64918,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -62605,7 +64945,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -62631,7 +64972,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -62657,7 +64999,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62683,7 +65026,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62709,7 +65053,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62735,7 +65080,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62761,7 +65107,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -62789,7 +65136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -62815,7 +65163,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62841,7 +65190,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -62867,7 +65217,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -62893,7 +65244,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -62919,7 +65271,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -62945,7 +65298,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -62975,7 +65329,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63002,7 +65357,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -63029,7 +65385,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63056,7 +65413,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63083,7 +65441,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -63110,7 +65469,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -63137,7 +65497,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63164,7 +65525,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -63191,7 +65553,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63218,7 +65581,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -63245,7 +65609,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -63275,7 +65640,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63301,7 +65667,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63327,7 +65694,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -63355,7 +65723,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63381,7 +65750,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -63407,7 +65777,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63433,7 +65804,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63459,7 +65831,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63485,7 +65858,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63511,7 +65885,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63537,7 +65912,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63563,7 +65939,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -63589,7 +65966,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -63615,7 +65993,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63641,7 +66020,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63667,7 +66047,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -63695,7 +66076,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63721,7 +66103,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -63747,7 +66130,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -63773,7 +66157,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sing", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -63801,7 +66186,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63827,7 +66213,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -63853,7 +66240,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -63879,7 +66267,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -63905,7 +66294,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -63931,7 +66321,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -63957,7 +66348,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -63983,7 +66375,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64009,7 +66402,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64035,7 +66429,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64061,7 +66456,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -64087,7 +66483,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -64113,7 +66510,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -64139,7 +66537,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -64165,7 +66564,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64191,7 +66591,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64217,7 +66618,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64243,7 +66645,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64269,7 +66672,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -64297,7 +66701,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -64323,7 +66728,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64349,7 +66755,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64375,7 +66782,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -64401,7 +66809,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -64427,7 +66836,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -64453,7 +66863,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64479,7 +66890,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -64509,7 +66921,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64536,7 +66949,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -64563,7 +66977,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64590,7 +67005,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -64617,7 +67033,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -64644,7 +67061,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64671,7 +67089,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64698,7 +67117,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -64725,7 +67145,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -64752,7 +67173,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64779,7 +67201,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -64806,7 +67229,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64833,7 +67257,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -64860,7 +67285,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -64891,7 +67317,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64917,7 +67344,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64943,7 +67371,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -64969,7 +67398,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -64995,7 +67425,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65021,7 +67452,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65047,7 +67479,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65073,7 +67506,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65099,7 +67533,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65125,7 +67560,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -65151,7 +67587,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -65177,7 +67614,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65203,7 +67641,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65229,7 +67668,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -65257,7 +67697,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65283,7 +67724,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65309,7 +67751,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65335,7 +67778,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65361,7 +67805,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -65387,7 +67832,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65413,7 +67859,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -65439,7 +67886,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -65467,7 +67915,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65493,7 +67942,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65519,7 +67969,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -65545,7 +67996,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65571,7 +68023,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -65597,7 +68050,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -65623,7 +68077,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -65649,7 +68104,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -65675,7 +68131,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65701,7 +68158,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65727,7 +68185,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65753,7 +68212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -65779,7 +68239,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -65805,7 +68266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -65831,7 +68293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -65857,7 +68320,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -65883,7 +68347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65909,7 +68374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65935,7 +68401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65961,7 +68428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -65987,7 +68455,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -66015,7 +68484,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -66041,7 +68511,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66067,7 +68538,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66093,7 +68565,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -66119,7 +68592,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -66145,7 +68619,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -66171,7 +68646,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -66201,7 +68677,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66228,7 +68705,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66255,7 +68733,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -66282,7 +68761,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66309,7 +68789,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -66336,7 +68817,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -66363,7 +68845,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66390,7 +68873,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66417,7 +68901,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -66444,7 +68929,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -66471,7 +68957,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66498,7 +68985,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66525,7 +69013,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -66552,7 +69041,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -66579,7 +69069,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66606,7 +69097,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -66633,7 +69125,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -66664,7 +69157,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66690,7 +69184,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66716,7 +69211,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -66742,7 +69238,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66768,7 +69265,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66794,7 +69292,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66820,7 +69319,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66846,7 +69346,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66872,7 +69373,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66898,7 +69400,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -66924,7 +69427,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -66950,7 +69454,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -66976,7 +69481,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67002,7 +69508,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -67030,7 +69537,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67056,7 +69564,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67082,7 +69591,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -67110,7 +69620,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67136,7 +69647,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67162,7 +69674,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67188,7 +69701,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -67214,7 +69728,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -67240,7 +69755,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -67266,7 +69782,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -67292,7 +69809,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67318,7 +69836,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67344,7 +69863,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67370,7 +69890,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -67396,7 +69917,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -67422,7 +69944,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -67448,7 +69971,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67474,7 +69998,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67500,7 +70025,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67526,7 +70052,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67552,7 +70079,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67578,7 +70106,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -67606,7 +70135,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -67632,7 +70162,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67658,7 +70189,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67684,7 +70216,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -67710,7 +70243,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -67736,7 +70270,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/laser-focus", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67762,7 +70297,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -67788,7 +70324,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -67816,7 +70353,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67842,7 +70380,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67868,7 +70407,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67894,7 +70434,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -67920,7 +70461,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -67946,7 +70488,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67972,7 +70515,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -67998,7 +70542,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68024,7 +70569,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -68050,7 +70596,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68076,7 +70623,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68102,7 +70650,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68128,7 +70677,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68154,7 +70704,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -68180,7 +70731,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68206,7 +70758,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -68232,7 +70785,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -68258,7 +70812,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -68284,7 +70839,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68310,7 +70866,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -68336,7 +70893,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68362,7 +70920,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -68388,7 +70947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -68414,7 +70974,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68440,7 +71001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68466,7 +71028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68492,7 +71055,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -68518,7 +71082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68544,7 +71109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -68570,7 +71136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", "target": "Normal", "type": "Normal", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -68596,7 +71163,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68622,7 +71190,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -68648,7 +71217,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68674,7 +71244,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68700,7 +71271,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68726,7 +71298,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -68752,7 +71325,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -68778,7 +71352,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68804,7 +71379,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -68830,7 +71406,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -68859,7 +71436,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68886,7 +71464,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68913,7 +71492,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -68940,7 +71520,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -68967,7 +71548,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -68994,7 +71576,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -69021,7 +71604,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69048,7 +71632,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69075,7 +71660,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -69102,7 +71688,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -69129,7 +71716,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69156,7 +71744,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69183,7 +71772,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -69210,7 +71800,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -69237,7 +71828,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69264,7 +71856,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -69291,7 +71884,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -69322,7 +71916,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69348,7 +71943,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69374,7 +71970,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-kick", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -69400,7 +71997,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69426,7 +72024,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -69452,7 +72051,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69478,7 +72078,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69504,7 +72105,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -69533,7 +72135,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/alluring-voice", "target": "Normal", "type": "Fairy", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -69559,7 +72162,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69585,7 +72189,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -69611,7 +72216,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/calm-mind", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69637,7 +72243,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69663,7 +72270,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69689,7 +72297,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -69715,7 +72324,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -69741,7 +72351,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69767,7 +72378,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -69793,7 +72405,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69819,7 +72432,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69845,7 +72459,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -69871,7 +72486,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -69897,7 +72513,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69923,7 +72540,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69949,7 +72567,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -69975,7 +72594,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70001,7 +72621,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -70027,7 +72648,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70053,7 +72675,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -70079,7 +72702,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70105,7 +72729,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70131,7 +72756,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -70157,7 +72783,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -70183,7 +72810,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -70209,7 +72837,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trailblaze", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -70235,7 +72864,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/weather-ball", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -70266,7 +72896,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70293,7 +72924,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70320,7 +72952,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -70347,7 +72980,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70374,7 +73008,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/copycat", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70401,7 +73036,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -70428,7 +73064,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -70455,7 +73092,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70482,7 +73120,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70509,7 +73148,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -70536,7 +73176,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -70563,7 +73204,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70590,7 +73232,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -70617,7 +73260,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -70644,7 +73288,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70671,7 +73316,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -70797,7 +73443,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70823,7 +73470,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70849,7 +73497,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70875,7 +73524,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70901,7 +73551,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70927,7 +73578,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -70956,7 +73608,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -70982,7 +73635,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -71008,7 +73662,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71034,7 +73689,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -71060,7 +73716,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -71086,7 +73743,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -71112,7 +73770,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -71138,7 +73797,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71164,7 +73824,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71190,7 +73851,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71216,7 +73878,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -71242,7 +73905,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -71268,7 +73932,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -71294,7 +73959,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71320,7 +73986,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -71348,7 +74015,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -71374,7 +74042,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -71400,7 +74069,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71426,7 +74096,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71452,7 +74123,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -71478,7 +74150,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71504,7 +74177,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -71530,7 +74204,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71556,7 +74231,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71582,7 +74258,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -71612,7 +74289,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71639,7 +74317,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -71666,7 +74345,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71693,7 +74373,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71720,7 +74401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -71747,7 +74429,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71774,7 +74457,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -71801,7 +74485,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71828,7 +74513,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -71859,7 +74545,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71885,7 +74572,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -71911,7 +74599,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71937,7 +74626,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71963,7 +74653,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -71989,7 +74680,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72015,7 +74707,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72041,7 +74734,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72067,7 +74761,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72093,7 +74788,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -72121,7 +74817,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72147,7 +74844,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -72173,7 +74871,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -72199,7 +74898,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72225,7 +74925,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72251,7 +74952,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -72277,7 +74979,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -72303,7 +75006,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -72331,7 +75035,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72357,7 +75062,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72383,7 +75089,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -72409,7 +75116,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72435,7 +75143,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72461,7 +75170,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -72487,7 +75197,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -72513,7 +75224,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -72539,7 +75251,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -72565,7 +75278,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72591,7 +75305,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72617,7 +75332,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72643,7 +75359,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72669,7 +75386,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -72695,7 +75413,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -72721,7 +75440,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -72747,7 +75467,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72773,7 +75494,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72799,7 +75521,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72825,7 +75548,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72851,7 +75575,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -72879,7 +75604,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -72905,7 +75631,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72931,7 +75658,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -72957,7 +75685,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -72983,7 +75712,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -73009,7 +75739,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -73035,7 +75766,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -73065,7 +75797,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73092,7 +75825,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -73119,7 +75853,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73146,7 +75881,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73173,7 +75909,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -73200,7 +75937,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -73227,7 +75965,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73254,7 +75993,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -73281,7 +76021,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73308,7 +76049,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -73335,7 +76077,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -73365,7 +76108,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73391,7 +76135,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73417,7 +76162,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -73445,7 +76191,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73471,7 +76218,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -73497,7 +76245,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73523,7 +76272,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73549,7 +76299,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73575,7 +76326,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73601,7 +76353,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73627,7 +76380,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73653,7 +76407,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -73679,7 +76434,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -73705,7 +76461,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73731,7 +76488,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73757,7 +76515,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -73785,7 +76544,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73811,7 +76571,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -73837,7 +76598,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -73863,7 +76625,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sing", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -73891,7 +76654,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73917,7 +76681,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -73943,7 +76708,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -73969,7 +76735,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -73995,7 +76762,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -74021,7 +76789,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -74047,7 +76816,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -74073,7 +76843,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74099,7 +76870,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74125,7 +76897,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74151,7 +76924,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -74177,7 +76951,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -74203,7 +76978,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -74229,7 +77005,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -74255,7 +77032,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74281,7 +77059,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74307,7 +77086,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74333,7 +77113,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74359,7 +77140,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -74387,7 +77169,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -74413,7 +77196,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74439,7 +77223,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74465,7 +77250,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -74491,7 +77277,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -74517,7 +77304,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -74543,7 +77331,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74569,7 +77358,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -74599,7 +77389,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74626,7 +77417,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -74653,7 +77445,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74680,7 +77473,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -74707,7 +77501,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -74734,7 +77529,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74761,7 +77557,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74788,7 +77585,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -74815,7 +77613,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -74842,7 +77641,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74869,7 +77669,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -74896,7 +77697,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -74923,7 +77725,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -74950,7 +77753,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -74981,7 +77785,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75007,7 +77812,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75033,7 +77839,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -75059,7 +77866,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75085,7 +77893,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75111,7 +77920,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75137,7 +77947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75163,7 +77974,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75189,7 +78001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75215,7 +78028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -75241,7 +78055,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -75267,7 +78082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75293,7 +78109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75319,7 +78136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -75347,7 +78165,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75373,7 +78192,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75399,7 +78219,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75425,7 +78246,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75451,7 +78273,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -75477,7 +78300,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75503,7 +78327,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -75529,7 +78354,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -75557,7 +78383,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75583,7 +78410,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75609,7 +78437,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -75635,7 +78464,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75661,7 +78491,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -75687,7 +78518,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -75713,7 +78545,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -75739,7 +78572,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -75765,7 +78599,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75791,7 +78626,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75817,7 +78653,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75843,7 +78680,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -75869,7 +78707,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -75895,7 +78734,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -75921,7 +78761,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -75947,7 +78788,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -75973,7 +78815,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -75999,7 +78842,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76025,7 +78869,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76051,7 +78896,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76077,7 +78923,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -76105,7 +78952,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -76131,7 +78979,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76157,7 +79006,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76183,7 +79033,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -76209,7 +79060,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -76235,7 +79087,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -76261,7 +79114,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -76291,7 +79145,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76318,7 +79173,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76345,7 +79201,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -76372,7 +79229,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76399,7 +79257,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -76426,7 +79285,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -76453,7 +79313,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76480,7 +79341,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76507,7 +79369,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -76534,7 +79397,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -76561,7 +79425,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76588,7 +79453,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76615,7 +79481,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -76642,7 +79509,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -76669,7 +79537,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76696,7 +79565,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -76723,7 +79593,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -76754,7 +79625,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76780,7 +79652,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76806,7 +79679,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -76832,7 +79706,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76858,7 +79733,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76884,7 +79760,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76910,7 +79787,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76936,7 +79814,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76962,7 +79841,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -76988,7 +79868,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -77014,7 +79895,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -77040,7 +79922,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77066,7 +79949,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77092,7 +79976,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -77120,7 +80005,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77146,7 +80032,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77172,7 +80059,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -77200,7 +80088,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77226,7 +80115,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77252,7 +80142,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77278,7 +80169,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -77304,7 +80196,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -77330,7 +80223,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -77356,7 +80250,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -77382,7 +80277,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77408,7 +80304,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77434,7 +80331,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77460,7 +80358,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -77486,7 +80385,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -77512,7 +80412,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -77538,7 +80439,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77564,7 +80466,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77590,7 +80493,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77616,7 +80520,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77642,7 +80547,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77668,7 +80574,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -77696,7 +80603,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -77722,7 +80630,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77748,7 +80657,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77774,7 +80684,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -77800,7 +80711,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -77826,7 +80738,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/laser-focus", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77852,7 +80765,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -77878,7 +80792,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -77906,7 +80821,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77932,7 +80848,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77958,7 +80875,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -77984,7 +80902,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -78010,7 +80929,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -78036,7 +80956,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78062,7 +80983,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78088,7 +81010,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78114,7 +81037,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -78140,7 +81064,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78166,7 +81091,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78192,7 +81118,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78218,7 +81145,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78244,7 +81172,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -78270,7 +81199,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78296,7 +81226,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -78322,7 +81253,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -78348,7 +81280,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -78374,7 +81307,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78400,7 +81334,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -78426,7 +81361,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78452,7 +81388,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -78478,7 +81415,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -78504,7 +81442,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78530,7 +81469,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78556,7 +81496,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78582,7 +81523,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -78608,7 +81550,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78634,7 +81577,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -78660,7 +81604,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", "target": "Normal", "type": "Normal", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -78686,7 +81631,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78712,7 +81658,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -78738,7 +81685,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78764,7 +81712,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78790,7 +81739,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78816,7 +81766,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -78842,7 +81793,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -78868,7 +81820,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78894,7 +81847,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -78920,7 +81874,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -78949,7 +81904,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -78976,7 +81932,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79003,7 +81960,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -79030,7 +81988,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79057,7 +82016,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -79084,7 +82044,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -79111,7 +82072,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79138,7 +82100,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79165,7 +82128,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -79192,7 +82156,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -79219,7 +82184,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79246,7 +82212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79273,7 +82240,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -79300,7 +82268,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -79327,7 +82296,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79354,7 +82324,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -79381,7 +82352,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -79412,7 +82384,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79438,7 +82411,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79464,7 +82438,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-kick", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -79490,7 +82465,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79516,7 +82492,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -79542,7 +82519,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79568,7 +82546,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79594,7 +82573,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -79623,7 +82603,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/alluring-voice", "target": "Normal", "type": "Fairy", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -79649,7 +82630,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79675,7 +82657,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -79701,7 +82684,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/calm-mind", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79727,7 +82711,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79753,7 +82738,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79779,7 +82765,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -79805,7 +82792,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -79831,7 +82819,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79857,7 +82846,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -79883,7 +82873,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79909,7 +82900,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -79935,7 +82927,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -79961,7 +82954,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -79987,7 +82981,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80013,7 +83008,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80039,7 +83035,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80065,7 +83062,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80091,7 +83089,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -80117,7 +83116,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80143,7 +83143,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -80169,7 +83170,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80195,7 +83197,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80221,7 +83224,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -80247,7 +83251,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -80273,7 +83278,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -80299,7 +83305,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trailblaze", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -80325,7 +83332,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/weather-ball", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -80356,7 +83364,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80383,7 +83392,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80410,7 +83420,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -80437,7 +83448,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80464,7 +83476,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/copycat", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80491,7 +83504,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -80518,7 +83532,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -80545,7 +83560,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80572,7 +83588,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80599,7 +83616,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -80626,7 +83644,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -80653,7 +83672,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80680,7 +83700,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -80707,7 +83728,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -80734,7 +83756,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80761,7 +83784,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -80904,7 +83928,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80930,7 +83955,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80956,7 +83982,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -80982,7 +84009,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81008,7 +84036,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81034,7 +84063,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -81063,7 +84093,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81089,7 +84120,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -81115,7 +84147,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81141,7 +84174,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -81167,7 +84201,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -81193,7 +84228,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -81219,7 +84255,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -81245,7 +84282,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81271,7 +84309,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81297,7 +84336,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81323,7 +84363,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -81349,7 +84390,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -81375,7 +84417,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -81401,7 +84444,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81427,7 +84471,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -81455,7 +84500,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -81481,7 +84527,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -81507,7 +84554,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81533,7 +84581,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81559,7 +84608,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -81585,7 +84635,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81611,7 +84662,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -81637,7 +84689,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81663,7 +84716,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81689,7 +84743,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -81719,7 +84774,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81746,7 +84802,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -81773,7 +84830,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81800,7 +84858,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81827,7 +84886,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -81854,7 +84914,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81881,7 +84942,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -81908,7 +84970,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81935,7 +84998,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] @@ -81966,7 +85030,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -81992,7 +85057,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -82018,7 +85084,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82044,7 +85111,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82070,7 +85138,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82096,7 +85165,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82122,7 +85192,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82148,7 +85219,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82174,7 +85246,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82200,7 +85273,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -82228,7 +85302,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82254,7 +85329,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -82280,7 +85356,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -82306,7 +85383,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82332,7 +85410,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82358,7 +85437,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -82384,7 +85464,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -82410,7 +85491,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -82438,7 +85520,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82464,7 +85547,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82490,7 +85574,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -82516,7 +85601,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82542,7 +85628,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82568,7 +85655,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -82594,7 +85682,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -82620,7 +85709,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -82646,7 +85736,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -82672,7 +85763,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82698,7 +85790,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82724,7 +85817,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82750,7 +85844,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82776,7 +85871,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -82802,7 +85898,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -82828,7 +85925,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -82854,7 +85952,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82880,7 +85979,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82906,7 +86006,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82932,7 +86033,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -82958,7 +86060,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -82986,7 +86089,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -83012,7 +86116,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83038,7 +86143,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83064,7 +86170,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -83090,7 +86197,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -83116,7 +86224,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -83142,7 +86251,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -83172,7 +86282,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83199,7 +86310,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -83226,7 +86338,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83253,7 +86366,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83280,7 +86394,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -83307,7 +86422,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -83334,7 +86450,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83361,7 +86478,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -83388,7 +86506,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83415,7 +86534,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -83442,7 +86562,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -83472,7 +86593,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83498,7 +86620,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83524,7 +86647,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -83552,7 +86676,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83578,7 +86703,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -83604,7 +86730,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83630,7 +86757,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83656,7 +86784,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83682,7 +86811,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83708,7 +86838,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83734,7 +86865,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83760,7 +86892,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -83786,7 +86919,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -83812,7 +86946,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83838,7 +86973,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83864,7 +87000,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -83892,7 +87029,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -83918,7 +87056,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -83944,7 +87083,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -83970,7 +87110,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sing", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -83998,7 +87139,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84024,7 +87166,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -84050,7 +87193,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84076,7 +87220,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -84102,7 +87247,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -84128,7 +87274,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -84154,7 +87301,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -84180,7 +87328,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84206,7 +87355,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84232,7 +87382,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84258,7 +87409,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -84284,7 +87436,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -84310,7 +87463,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -84336,7 +87490,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -84362,7 +87517,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84388,7 +87544,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84414,7 +87571,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84440,7 +87598,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84466,7 +87625,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -84494,7 +87654,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -84520,7 +87681,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84546,7 +87708,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84572,7 +87735,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -84598,7 +87762,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -84624,7 +87789,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -84650,7 +87816,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84676,7 +87843,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -84706,7 +87874,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84733,7 +87902,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -84760,7 +87930,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84787,7 +87958,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -84814,7 +87986,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -84841,7 +88014,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84868,7 +88042,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84895,7 +88070,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -84922,7 +88098,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -84949,7 +88126,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -84976,7 +88154,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -85003,7 +88182,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85030,7 +88210,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -85057,7 +88238,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -85088,7 +88270,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85114,7 +88297,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85140,7 +88324,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -85166,7 +88351,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85192,7 +88378,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85218,7 +88405,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85244,7 +88432,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85270,7 +88459,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85296,7 +88486,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85322,7 +88513,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -85348,7 +88540,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -85374,7 +88567,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85400,7 +88594,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85426,7 +88621,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -85454,7 +88650,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85480,7 +88677,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85506,7 +88704,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85532,7 +88731,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85558,7 +88758,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -85584,7 +88785,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85610,7 +88812,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -85636,7 +88839,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -85664,7 +88868,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85690,7 +88895,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85716,7 +88922,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -85742,7 +88949,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85768,7 +88976,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -85794,7 +89003,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -85820,7 +89030,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -85846,7 +89057,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -85872,7 +89084,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85898,7 +89111,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85924,7 +89138,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -85950,7 +89165,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -85976,7 +89192,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -86002,7 +89219,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -86028,7 +89246,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -86054,7 +89273,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -86080,7 +89300,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86106,7 +89327,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86132,7 +89354,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86158,7 +89381,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86184,7 +89408,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -86212,7 +89437,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -86238,7 +89464,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86264,7 +89491,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86290,7 +89518,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -86316,7 +89545,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -86342,7 +89572,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -86368,7 +89599,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -86398,7 +89630,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86425,7 +89658,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86452,7 +89686,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -86479,7 +89714,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86506,7 +89742,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -86533,7 +89770,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -86560,7 +89798,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86587,7 +89826,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86614,7 +89854,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -86641,7 +89882,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -86668,7 +89910,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86695,7 +89938,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86722,7 +89966,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -86749,7 +89994,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -86776,7 +90022,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86803,7 +90050,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -86830,7 +90078,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -86861,7 +90110,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86887,7 +90137,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86913,7 +90164,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -86939,7 +90191,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86965,7 +90218,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -86991,7 +90245,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87017,7 +90272,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87043,7 +90299,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87069,7 +90326,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87095,7 +90353,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -87121,7 +90380,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", "target": "All Adjacent", "type": "Psychic", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -87147,7 +90407,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87173,7 +90434,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87199,7 +90461,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -87227,7 +90490,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87253,7 +90517,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87279,7 +90544,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -87307,7 +90573,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87333,7 +90600,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87359,7 +90627,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87385,7 +90654,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -87411,7 +90681,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -87437,7 +90708,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -87463,7 +90735,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -87489,7 +90762,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87515,7 +90789,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87541,7 +90816,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87567,7 +90843,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -87593,7 +90870,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -87619,7 +90897,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -87645,7 +90924,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87671,7 +90951,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87697,7 +90978,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87723,7 +91005,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87749,7 +91032,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87775,7 +91059,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -87803,7 +91088,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -87829,7 +91115,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", "target": "Ally's Side", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87855,7 +91142,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87881,7 +91169,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -87907,7 +91196,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -87933,7 +91223,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/laser-focus", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -87959,7 +91250,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -87985,7 +91277,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } } ], @@ -88013,7 +91306,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88039,7 +91333,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88065,7 +91360,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88091,7 +91387,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -88117,7 +91414,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -88143,7 +91441,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88169,7 +91468,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88195,7 +91495,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88221,7 +91522,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -88247,7 +91549,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88273,7 +91576,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88299,7 +91603,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88325,7 +91630,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88351,7 +91657,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -88377,7 +91684,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88403,7 +91711,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -88429,7 +91738,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -88455,7 +91765,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -88481,7 +91792,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88507,7 +91819,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -88533,7 +91846,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88559,7 +91873,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -88585,7 +91900,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -88611,7 +91927,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88637,7 +91954,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", "target": "Ally's Side", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88663,7 +91981,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88689,7 +92008,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -88715,7 +92035,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88741,7 +92062,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -88767,7 +92089,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", "target": "Normal", "type": "Normal", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -88793,7 +92116,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88819,7 +92143,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -88845,7 +92170,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88871,7 +92197,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88897,7 +92224,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -88923,7 +92251,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -88949,7 +92278,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -88975,7 +92305,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89001,7 +92332,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -89027,7 +92359,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -89056,7 +92389,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89083,7 +92417,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89110,7 +92445,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -89137,7 +92473,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89164,7 +92501,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -89191,7 +92529,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -89218,7 +92557,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89245,7 +92585,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89272,7 +92613,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -89299,7 +92641,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -89326,7 +92669,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89353,7 +92697,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89380,7 +92725,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -89407,7 +92753,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -89434,7 +92781,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89461,7 +92809,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -89488,7 +92837,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -89519,7 +92869,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89545,7 +92896,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", "target": "Self", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89571,7 +92923,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-kick", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -89597,7 +92950,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89623,7 +92977,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -89649,7 +93004,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89675,7 +93031,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89701,7 +93058,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -89730,7 +93088,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/alluring-voice", "target": "Normal", "type": "Fairy", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -89756,7 +93115,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89782,7 +93142,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -89808,7 +93169,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/calm-mind", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89834,7 +93196,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89860,7 +93223,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", "target": "Random", "type": "Ghost", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89886,7 +93250,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", "target": "Normal", "type": "Ground", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -89912,7 +93277,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -89938,7 +93304,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -89964,7 +93331,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -89990,7 +93358,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90016,7 +93385,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90042,7 +93412,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -90068,7 +93439,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -90094,7 +93466,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90120,7 +93493,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90146,7 +93520,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90172,7 +93547,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90198,7 +93574,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -90224,7 +93601,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90250,7 +93628,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", "target": "Normal", "type": "Psychic", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -90276,7 +93655,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90302,7 +93682,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90328,7 +93709,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -90354,7 +93736,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -90380,7 +93763,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -90406,7 +93790,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trailblaze", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -90432,7 +93817,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/weather-ball", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -90463,7 +93849,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90490,7 +93877,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90517,7 +93905,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -90544,7 +93933,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", "target": "Normal", "type": "Fairy", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90571,7 +93961,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/copycat", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90598,7 +93989,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -90625,7 +94017,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -90652,7 +94045,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90679,7 +94073,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90706,7 +94101,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -90733,7 +94129,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -90760,7 +94157,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", "target": "Normal", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90787,7 +94185,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -90814,7 +94213,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -90841,7 +94241,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -90868,7 +94269,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ] diff --git a/tests/testUtils/full-data-responses/rattata-alola.json b/tests/testUtils/full-data-responses/rattata-alola.json index be16c58e41..5848b50434 100644 --- a/tests/testUtils/full-data-responses/rattata-alola.json +++ b/tests/testUtils/full-data-responses/rattata-alola.json @@ -100,7 +100,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", "target": "Foe that last hit user", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -126,7 +127,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/final-gambit", "target": "Normal", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -152,7 +154,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-swipes", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -178,7 +181,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/me-first", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -204,7 +208,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/revenge", "target": "Normal", "type": "Fighting", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -230,7 +235,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reversal", "target": "Normal", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -256,7 +262,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snatch", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -282,7 +289,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stockpile", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -308,7 +316,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swallow", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -334,7 +343,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/switcheroo", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -360,7 +370,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/uproar", "target": "Random", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ], @@ -389,7 +400,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -415,7 +427,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -441,7 +454,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -467,7 +481,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dark-pulse", "target": "Any", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -493,7 +508,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -519,7 +535,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/embargo", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -545,7 +562,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -571,7 +589,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -597,7 +616,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/grass-knot", "target": "Adjacent Foes", "type": "Grass", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -623,7 +643,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -649,7 +670,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -675,7 +697,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -701,7 +724,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quash", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -727,7 +751,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -753,7 +778,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -779,7 +805,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -805,7 +832,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -831,7 +859,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -857,7 +886,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -883,7 +913,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -909,7 +940,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sludge-bomb", "target": "Normal", "type": "Poison", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -935,7 +967,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snarl", "target": "Adjacent Foes", "type": "Dark", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -961,7 +994,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -987,7 +1021,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1013,7 +1048,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1039,7 +1075,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/taunt", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1065,7 +1102,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thief", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1091,7 +1129,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/torment", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1117,7 +1156,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1143,7 +1183,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/u-turn", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } } ], @@ -1171,7 +1212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1197,7 +1239,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1223,7 +1266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1249,7 +1293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -1275,7 +1320,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -1301,7 +1347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1327,7 +1374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snatch", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1353,7 +1401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1379,7 +1428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1405,7 +1455,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/uproar", "target": "Random", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -1431,7 +1482,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -1461,7 +1513,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/assurance", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1488,7 +1541,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1515,7 +1569,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1542,7 +1597,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -1569,7 +1625,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1596,7 +1653,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1623,7 +1681,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-fang", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1650,7 +1709,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pursuit", "target": "Normal", "type": "Dark", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1677,7 +1737,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1704,7 +1765,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sucker-punch", "target": "Normal", "type": "Dark", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -1731,7 +1793,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1758,7 +1821,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1785,7 +1849,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -2021,7 +2086,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", "target": "Foe that last hit user", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2047,7 +2113,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/final-gambit", "target": "Normal", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2073,7 +2140,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-swipes", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2099,7 +2167,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/me-first", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2125,7 +2194,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/revenge", "target": "Normal", "type": "Fighting", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2151,7 +2221,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/reversal", "target": "Normal", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2177,7 +2248,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snatch", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2203,7 +2275,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stockpile", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2229,7 +2302,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swallow", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2255,7 +2329,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/switcheroo", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2281,7 +2356,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/uproar", "target": "Random", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } } ], @@ -2310,7 +2386,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2336,7 +2413,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -2362,7 +2440,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2388,7 +2467,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dark-pulse", "target": "Any", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2414,7 +2494,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2440,7 +2521,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/embargo", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2466,7 +2548,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2492,7 +2575,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2518,7 +2602,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/grass-knot", "target": "Adjacent Foes", "type": "Grass", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2544,7 +2629,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2570,7 +2656,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2596,7 +2683,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2622,7 +2710,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quash", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2648,7 +2737,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2674,7 +2764,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2700,7 +2791,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2726,7 +2818,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2752,7 +2845,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", "target": "Normal", "type": "Ghost", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2778,7 +2872,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2804,7 +2899,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2830,7 +2926,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sludge-bomb", "target": "Normal", "type": "Poison", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2856,7 +2953,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snarl", "target": "Adjacent Foes", "type": "Dark", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2882,7 +2980,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2908,7 +3007,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2934,7 +3034,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2960,7 +3061,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/taunt", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2986,7 +3088,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thief", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3012,7 +3115,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/torment", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3038,7 +3142,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3064,7 +3169,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/u-turn", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } } ], @@ -3092,7 +3198,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3118,7 +3225,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3144,7 +3252,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3170,7 +3279,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -3196,7 +3306,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -3222,7 +3333,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3248,7 +3360,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snatch", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3274,7 +3387,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3300,7 +3414,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3326,7 +3441,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/uproar", "target": "Random", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -3352,7 +3468,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -3382,7 +3499,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/assurance", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3409,7 +3527,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3436,7 +3555,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -3463,7 +3583,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -3490,7 +3611,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3517,7 +3639,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3544,7 +3667,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-fang", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -3571,7 +3695,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pursuit", "target": "Normal", "type": "Dark", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3598,7 +3723,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3625,7 +3751,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sucker-punch", "target": "Normal", "type": "Dark", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -3652,7 +3779,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3679,7 +3807,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3706,7 +3835,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] diff --git a/tests/testUtils/full-data-responses/salamence.json b/tests/testUtils/full-data-responses/salamence.json index b92b7057f0..1cc00ad1d3 100644 --- a/tests/testUtils/full-data-responses/salamence.json +++ b/tests/testUtils/full-data-responses/salamence.json @@ -55,7 +55,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -81,7 +82,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -107,7 +109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -133,7 +136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -159,7 +163,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -185,7 +190,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -211,7 +217,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -237,7 +244,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -265,7 +273,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -291,7 +300,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -317,7 +327,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -343,7 +354,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -369,7 +381,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -395,7 +408,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -421,7 +435,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -447,7 +462,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -473,7 +489,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -499,7 +516,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -525,7 +543,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -551,7 +570,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -577,7 +597,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -603,7 +624,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -629,7 +651,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -655,7 +678,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -681,7 +705,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -707,7 +732,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -733,7 +759,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -759,7 +786,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -785,7 +813,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -811,7 +840,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -837,7 +867,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -863,7 +894,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-wing", "target": "Normal", "type": "Steel", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -889,7 +921,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -915,7 +948,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -941,7 +975,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -969,7 +1004,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -995,7 +1031,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/defense-curl", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1021,7 +1058,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -1047,7 +1085,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1073,7 +1112,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1099,7 +1139,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1125,7 +1166,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1151,7 +1193,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -1177,7 +1220,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rollout", "target": "Normal", "type": "Rock", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1203,7 +1247,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1229,7 +1274,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1255,7 +1301,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1281,7 +1328,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1307,7 +1355,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -1337,7 +1386,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1364,7 +1414,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1391,7 +1442,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -1418,7 +1470,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1445,7 +1498,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1472,7 +1526,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1499,7 +1554,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -1526,7 +1582,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1553,7 +1610,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -1580,7 +1638,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1607,7 +1666,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1634,7 +1694,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1661,7 +1722,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -1693,7 +1755,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1719,7 +1782,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -1745,7 +1809,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hydro-pump", "target": "Normal", "type": "Water", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -1771,7 +1836,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", "target": "Normal", "type": "Rock", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } } ], @@ -1799,7 +1865,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1825,7 +1892,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1851,7 +1919,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -1877,7 +1946,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1903,7 +1973,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1929,7 +2000,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/defog", "target": "Normal", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1955,7 +2027,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1981,7 +2054,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2007,7 +2081,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2033,7 +2108,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -2059,7 +2135,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2085,7 +2162,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2111,7 +2189,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -2137,7 +2216,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2163,7 +2243,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2189,7 +2270,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2215,7 +2297,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -2241,7 +2324,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2267,7 +2351,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -2293,7 +2378,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -2319,7 +2405,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2345,7 +2432,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2371,7 +2459,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2397,7 +2486,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2423,7 +2513,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2449,7 +2540,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2475,7 +2567,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2501,7 +2594,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2527,7 +2621,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2553,7 +2648,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", "target": "Self", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2579,7 +2675,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2605,7 +2702,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2631,7 +2729,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2657,7 +2756,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-wing", "target": "Normal", "type": "Steel", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2683,7 +2783,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", "target": "Normal", "type": "Rock", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -2709,7 +2810,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2735,7 +2837,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2761,7 +2864,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2787,7 +2891,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2813,7 +2918,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -2841,7 +2947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/air-cutter", "target": "Adjacent Foes", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2867,7 +2974,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2893,7 +3001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -2919,7 +3028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2945,7 +3055,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2971,7 +3082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2997,7 +3109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3023,7 +3136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ominous-wind", "target": "Normal", "type": "Ghost", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3049,7 +3163,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -3075,7 +3190,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rollout", "target": "Normal", "type": "Rock", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3101,7 +3217,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3127,7 +3244,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3153,7 +3271,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", "target": "Ally's Side", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3179,7 +3298,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3205,7 +3325,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -3235,7 +3356,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3262,7 +3384,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -3289,7 +3412,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -3316,7 +3440,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3343,7 +3468,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -3370,7 +3496,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3397,7 +3524,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", "target": "Normal", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3424,7 +3552,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -3451,7 +3580,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3478,7 +3608,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -3505,7 +3636,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3532,7 +3664,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3559,7 +3692,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3586,7 +3720,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3613,7 +3748,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3640,7 +3776,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -3672,7 +3809,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3698,7 +3836,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -3724,7 +3863,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3750,7 +3890,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } } ], @@ -3778,7 +3919,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3804,7 +3946,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3830,7 +3973,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -3856,7 +4000,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", "target": "All Adjacent", "type": "Ground", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3882,7 +4027,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3908,7 +4054,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3934,7 +4081,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -3960,7 +4108,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3986,7 +4135,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -4012,7 +4162,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -4038,7 +4189,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -4064,7 +4216,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -4090,7 +4243,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -4116,7 +4270,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4142,7 +4297,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -4168,7 +4324,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4194,7 +4351,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hone-claws", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4220,7 +4378,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -4246,7 +4405,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/incinerate", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4272,7 +4432,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4298,7 +4459,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4324,7 +4486,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4350,7 +4513,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4376,7 +4540,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4402,7 +4567,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -4428,7 +4594,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4454,7 +4621,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4480,7 +4648,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4506,7 +4675,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -4532,7 +4702,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", "target": "Normal", "type": "Rock", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -4558,7 +4729,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4584,7 +4756,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4610,7 +4783,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4636,7 +4810,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4662,7 +4837,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -4690,7 +4866,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -4716,7 +4893,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -4742,7 +4920,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4768,7 +4947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -4794,7 +4974,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -4820,7 +5001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -4846,7 +5028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -4872,7 +5055,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", "target": "Self", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4898,7 +5082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4924,7 +5109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4950,7 +5136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", "target": "Ally's Side", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4976,7 +5163,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -5006,7 +5194,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5033,7 +5222,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -5060,7 +5250,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -5087,7 +5278,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5114,7 +5306,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -5141,7 +5334,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5168,7 +5362,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5195,7 +5390,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", "target": "Normal", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5222,7 +5418,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -5249,7 +5446,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5276,7 +5474,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -5303,7 +5502,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5330,7 +5530,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5357,7 +5558,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5384,7 +5586,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5411,7 +5614,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5438,7 +5642,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -5471,7 +5676,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5497,7 +5703,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5523,7 +5730,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -5549,7 +5757,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", "target": "All Adjacent", "type": "Ground", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5575,7 +5784,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5601,7 +5811,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5627,7 +5838,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5653,7 +5865,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -5679,7 +5892,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5705,7 +5919,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -5731,7 +5946,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -5757,7 +5973,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -5783,7 +6000,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -5809,7 +6027,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -5835,7 +6054,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -5861,7 +6081,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -5887,7 +6108,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5913,7 +6135,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hone-claws", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5939,7 +6162,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -5965,7 +6189,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/incinerate", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5991,7 +6216,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6017,7 +6243,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6043,7 +6270,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6069,7 +6297,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6095,7 +6324,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6121,7 +6351,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -6147,7 +6378,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6173,7 +6405,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6199,7 +6432,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", "target": "Self", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6225,7 +6459,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6251,7 +6486,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -6277,7 +6513,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -6303,7 +6540,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6329,7 +6567,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-wing", "target": "Normal", "type": "Steel", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -6355,7 +6594,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", "target": "Normal", "type": "Rock", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -6381,7 +6621,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6407,7 +6648,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6433,7 +6675,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6459,7 +6702,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6485,7 +6729,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -6513,7 +6758,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -6539,7 +6785,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -6565,7 +6812,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6591,7 +6839,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -6617,7 +6866,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -6643,7 +6893,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -6669,7 +6920,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -6695,7 +6947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6721,7 +6974,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", "target": "Ally's Side", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6747,7 +7001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -6777,7 +7032,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6804,7 +7060,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6831,7 +7088,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -6858,7 +7116,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6885,7 +7144,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6912,7 +7172,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6939,7 +7200,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6966,7 +7228,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", "target": "Normal", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6993,7 +7256,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7020,7 +7284,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7047,7 +7312,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7074,7 +7340,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -7101,7 +7368,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7128,7 +7396,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7155,7 +7424,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7182,7 +7452,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7209,7 +7480,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7236,7 +7508,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -7269,7 +7542,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7295,7 +7569,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7321,7 +7596,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -7347,7 +7623,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brutal-swing", "target": "All Adjacent", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7373,7 +7650,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", "target": "All Adjacent", "type": "Ground", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7399,7 +7677,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7425,7 +7704,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7451,7 +7731,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7477,7 +7758,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7503,7 +7785,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -7529,7 +7812,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -7555,7 +7839,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -7581,7 +7866,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7607,7 +7893,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7633,7 +7920,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7659,7 +7947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -7685,7 +7974,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7711,7 +8001,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -7737,7 +8028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7763,7 +8055,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7789,7 +8082,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7815,7 +8109,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7841,7 +8136,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7867,7 +8163,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -7893,7 +8190,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7919,7 +8217,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", "target": "Self", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7945,7 +8244,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7971,7 +8271,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -7997,7 +8298,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8023,7 +8325,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-wing", "target": "Normal", "type": "Steel", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -8049,7 +8352,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", "target": "Normal", "type": "Rock", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -8075,7 +8379,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8101,7 +8406,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8127,7 +8433,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8153,7 +8460,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -8181,7 +8489,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -8207,7 +8516,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/defog", "target": "Normal", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8233,7 +8543,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -8259,7 +8570,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -8285,7 +8597,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -8311,7 +8624,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -8337,7 +8651,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -8363,7 +8678,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/laser-focus", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8389,7 +8705,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -8415,7 +8732,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8441,7 +8759,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", "target": "Ally's Side", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8467,7 +8786,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -8497,7 +8817,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8524,7 +8845,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -8551,7 +8873,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -8578,7 +8901,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8605,7 +8929,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -8632,7 +8957,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8659,7 +8985,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8686,7 +9013,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", "target": "Normal", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8713,7 +9041,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -8740,7 +9069,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -8767,7 +9097,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8794,7 +9125,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -8821,7 +9153,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8848,7 +9181,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8875,7 +9209,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8902,7 +9237,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8929,7 +9265,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8956,7 +9293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -8989,7 +9327,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9015,7 +9354,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/air-slash", "target": "Any", "type": "Flying", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -9041,7 +9381,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9067,7 +9408,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/breaking-swipe", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9093,7 +9435,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -9119,7 +9462,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", "target": "All Adjacent", "type": "Ground", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9145,7 +9489,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9171,7 +9516,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -9197,7 +9543,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -9223,7 +9570,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-cheer", "target": "Ally's Side", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9249,7 +9597,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9275,7 +9624,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9301,7 +9651,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9327,7 +9678,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9353,7 +9705,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dual-wingbeat", "target": "Normal", "type": "Flying", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9379,7 +9732,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -9405,7 +9759,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9431,7 +9786,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -9457,7 +9813,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -9483,7 +9840,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", "target": "Normal", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9509,7 +9867,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-spin", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9535,7 +9894,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9561,7 +9921,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9587,7 +9948,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -9613,7 +9975,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9639,7 +10002,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9665,7 +10029,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hurricane", "target": "Any", "type": "Flying", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -9691,7 +10056,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hydro-pump", "target": "Normal", "type": "Water", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -9717,7 +10083,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -9743,7 +10110,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9769,7 +10137,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9795,7 +10164,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9821,7 +10191,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9847,7 +10218,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -9873,7 +10245,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9899,7 +10272,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic-fangs", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9925,7 +10299,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9951,7 +10326,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9977,7 +10353,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10003,7 +10380,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -10029,7 +10407,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -10055,7 +10434,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10081,7 +10461,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -10107,7 +10488,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10133,7 +10515,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", "target": "Normal", "type": "Rock", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -10159,7 +10542,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10185,7 +10569,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10211,7 +10596,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -10237,7 +10623,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", "target": "Ally's Side", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10263,7 +10650,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -10289,7 +10677,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/temper-flare", "target": "Normal", "type": "Fire", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -10315,7 +10704,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10341,7 +10731,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -10367,7 +10758,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -10398,7 +10790,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -10425,7 +10818,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10452,7 +10846,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -10479,7 +10874,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -10506,7 +10902,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10533,7 +10930,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -10560,7 +10958,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dual-wingbeat", "target": "Normal", "type": "Flying", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -10587,7 +10986,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -10614,7 +11014,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -10641,7 +11042,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -10668,7 +11070,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10695,7 +11098,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -10722,7 +11126,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10749,7 +11154,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10776,7 +11182,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", "target": "Self", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10803,7 +11210,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10830,7 +11238,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -10993,7 +11402,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -11019,7 +11429,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -11045,7 +11456,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11071,7 +11483,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11097,7 +11510,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -11123,7 +11537,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11149,7 +11564,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11175,7 +11591,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -11203,7 +11620,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -11229,7 +11647,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11255,7 +11674,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -11281,7 +11701,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -11307,7 +11728,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11333,7 +11755,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11359,7 +11782,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -11385,7 +11809,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -11411,7 +11836,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -11437,7 +11863,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -11463,7 +11890,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -11489,7 +11917,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11515,7 +11944,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -11541,7 +11971,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -11567,7 +11998,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -11593,7 +12025,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11619,7 +12052,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11645,7 +12079,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11671,7 +12106,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11697,7 +12133,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11723,7 +12160,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -11749,7 +12187,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -11775,7 +12214,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -11801,7 +12241,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-wing", "target": "Normal", "type": "Steel", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -11827,7 +12268,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11853,7 +12295,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11879,7 +12322,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -11907,7 +12351,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -11933,7 +12378,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/defense-curl", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -11959,7 +12405,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -11985,7 +12432,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12011,7 +12459,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12037,7 +12486,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12063,7 +12513,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12089,7 +12540,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -12115,7 +12567,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rollout", "target": "Normal", "type": "Rock", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12141,7 +12594,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12167,7 +12621,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12193,7 +12648,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12219,7 +12675,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12245,7 +12702,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -12275,7 +12733,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -12302,7 +12761,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -12329,7 +12789,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -12356,7 +12817,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -12383,7 +12845,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -12410,7 +12873,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12437,7 +12901,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -12464,7 +12929,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12491,7 +12957,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -12518,7 +12985,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12545,7 +13013,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12572,7 +13041,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12599,7 +13069,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -12631,7 +13102,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -12657,7 +13129,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -12683,7 +13156,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hydro-pump", "target": "Normal", "type": "Water", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -12709,7 +13183,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", "target": "Normal", "type": "Rock", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } } ], @@ -12737,7 +13212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -12763,7 +13239,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12789,7 +13266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -12815,7 +13293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12841,7 +13320,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -12867,7 +13347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/defog", "target": "Normal", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12893,7 +13374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -12919,7 +13401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -12945,7 +13428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -12971,7 +13455,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -12997,7 +13482,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13023,7 +13509,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -13049,7 +13536,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -13075,7 +13563,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -13101,7 +13590,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -13127,7 +13617,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -13153,7 +13644,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -13179,7 +13671,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -13205,7 +13698,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -13231,7 +13725,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -13257,7 +13752,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13283,7 +13779,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13309,7 +13806,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13335,7 +13833,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13361,7 +13860,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -13387,7 +13887,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13413,7 +13914,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -13439,7 +13941,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -13465,7 +13968,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -13491,7 +13995,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", "target": "Self", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13517,7 +14022,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -13543,7 +14049,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -13569,7 +14076,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13595,7 +14103,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-wing", "target": "Normal", "type": "Steel", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -13621,7 +14130,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", "target": "Normal", "type": "Rock", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -13647,7 +14157,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -13673,7 +14184,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13699,7 +14211,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13725,7 +14238,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -13751,7 +14265,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -13779,7 +14294,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/air-cutter", "target": "Adjacent Foes", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -13805,7 +14321,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -13831,7 +14348,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -13857,7 +14375,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -13883,7 +14402,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -13909,7 +14429,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -13935,7 +14456,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -13961,7 +14483,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ominous-wind", "target": "Normal", "type": "Ghost", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -13987,7 +14510,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -14013,7 +14537,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rollout", "target": "Normal", "type": "Rock", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -14039,7 +14564,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -14065,7 +14591,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14091,7 +14618,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", "target": "Ally's Side", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14117,7 +14645,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -14143,7 +14672,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -14173,7 +14703,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14200,7 +14731,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -14227,7 +14759,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -14254,7 +14787,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14281,7 +14815,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -14308,7 +14843,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -14335,7 +14871,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", "target": "Normal", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14362,7 +14899,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -14389,7 +14927,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14416,7 +14955,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -14443,7 +14983,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14470,7 +15011,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14497,7 +15039,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -14524,7 +15067,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14551,7 +15095,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14578,7 +15123,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -14610,7 +15156,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14636,7 +15183,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -14662,7 +15210,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14688,7 +15237,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } } ], @@ -14716,7 +15266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14742,7 +15293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14768,7 +15320,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -14794,7 +15347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", "target": "All Adjacent", "type": "Ground", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14820,7 +15374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -14846,7 +15401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -14872,7 +15428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -14898,7 +15455,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -14924,7 +15482,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -14950,7 +15509,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -14976,7 +15536,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -15002,7 +15563,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -15028,7 +15590,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -15054,7 +15617,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -15080,7 +15644,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -15106,7 +15671,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15132,7 +15698,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hone-claws", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15158,7 +15725,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -15184,7 +15752,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/incinerate", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15210,7 +15779,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15236,7 +15806,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15262,7 +15833,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15288,7 +15860,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -15314,7 +15887,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15340,7 +15914,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -15366,7 +15941,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -15392,7 +15968,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15418,7 +15995,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15444,7 +16022,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -15470,7 +16049,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", "target": "Normal", "type": "Rock", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -15496,7 +16076,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -15522,7 +16103,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15548,7 +16130,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15574,7 +16157,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15600,7 +16184,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -15628,7 +16213,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -15654,7 +16240,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -15680,7 +16267,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -15706,7 +16294,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -15732,7 +16321,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -15758,7 +16348,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -15784,7 +16375,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -15810,7 +16402,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", "target": "Self", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15836,7 +16429,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15862,7 +16456,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -15888,7 +16483,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", "target": "Ally's Side", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -15914,7 +16510,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -15944,7 +16541,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -15971,7 +16569,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -15998,7 +16597,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -16025,7 +16625,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16052,7 +16653,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -16079,7 +16681,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16106,7 +16709,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -16133,7 +16737,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", "target": "Normal", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16160,7 +16765,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -16187,7 +16793,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16214,7 +16821,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -16241,7 +16849,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16268,7 +16877,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16295,7 +16905,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -16322,7 +16933,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16349,7 +16961,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16376,7 +16989,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -16409,7 +17023,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16435,7 +17050,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16461,7 +17077,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -16487,7 +17104,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", "target": "All Adjacent", "type": "Ground", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16513,7 +17131,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16539,7 +17158,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -16565,7 +17185,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16591,7 +17212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -16617,7 +17239,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16643,7 +17266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -16669,7 +17293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -16695,7 +17320,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -16721,7 +17347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -16747,7 +17374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -16773,7 +17401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -16799,7 +17428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -16825,7 +17455,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16851,7 +17482,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hone-claws", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16877,7 +17509,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -16903,7 +17536,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/incinerate", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -16929,7 +17563,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16955,7 +17590,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -16981,7 +17617,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17007,7 +17644,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -17033,7 +17671,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17059,7 +17698,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -17085,7 +17725,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -17111,7 +17752,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -17137,7 +17779,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", "target": "Self", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17163,7 +17806,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -17189,7 +17833,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -17215,7 +17860,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -17241,7 +17887,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17267,7 +17914,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-wing", "target": "Normal", "type": "Steel", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -17293,7 +17941,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", "target": "Normal", "type": "Rock", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -17319,7 +17968,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -17345,7 +17995,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17371,7 +18022,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17397,7 +18049,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17423,7 +18076,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -17451,7 +18105,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -17477,7 +18132,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -17503,7 +18159,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -17529,7 +18186,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -17555,7 +18213,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -17581,7 +18240,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -17607,7 +18267,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -17633,7 +18294,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -17659,7 +18321,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", "target": "Ally's Side", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -17685,7 +18348,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -17715,7 +18379,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -17742,7 +18407,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -17769,7 +18435,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -17796,7 +18463,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -17823,7 +18491,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -17850,7 +18519,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -17877,7 +18547,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -17904,7 +18575,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", "target": "Normal", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -17931,7 +18603,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -17958,7 +18631,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -17985,7 +18659,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18012,7 +18687,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -18039,7 +18715,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18066,7 +18743,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18093,7 +18771,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -18120,7 +18799,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18147,7 +18827,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18174,7 +18855,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -18207,7 +18889,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18233,7 +18916,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18259,7 +18943,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -18285,7 +18970,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brutal-swing", "target": "All Adjacent", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18311,7 +18997,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", "target": "All Adjacent", "type": "Ground", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18337,7 +19024,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18363,7 +19051,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18389,7 +19078,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -18415,7 +19105,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18441,7 +19132,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -18467,7 +19159,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -18493,7 +19186,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -18519,7 +19213,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -18545,7 +19240,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -18571,7 +19267,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -18597,7 +19294,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -18623,7 +19321,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18649,7 +19348,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -18675,7 +19375,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18701,7 +19402,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18727,7 +19429,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18753,7 +19456,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -18779,7 +19483,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18805,7 +19510,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -18831,7 +19537,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18857,7 +19564,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", "target": "Self", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18883,7 +19591,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -18909,7 +19618,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -18935,7 +19645,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -18961,7 +19672,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-wing", "target": "Normal", "type": "Steel", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -18987,7 +19699,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", "target": "Normal", "type": "Rock", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -19013,7 +19726,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19039,7 +19753,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19065,7 +19780,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19091,7 +19807,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -19119,7 +19836,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", "target": "Normal", "type": "Water", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -19145,7 +19863,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/defog", "target": "Normal", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19171,7 +19890,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -19197,7 +19917,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -19223,7 +19944,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -19249,7 +19971,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -19275,7 +19998,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", "target": "Normal", "type": "Steel", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -19301,7 +20025,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/laser-focus", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19327,7 +20052,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -19353,7 +20079,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -19379,7 +20106,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", "target": "Ally's Side", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19405,7 +20133,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -19435,7 +20164,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -19462,7 +20192,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -19489,7 +20220,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -19516,7 +20248,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -19543,7 +20276,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -19570,7 +20304,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -19597,7 +20332,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -19624,7 +20360,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", "target": "Normal", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -19651,7 +20388,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -19678,7 +20416,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -19705,7 +20444,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19732,7 +20472,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -19759,7 +20500,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19786,7 +20528,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19813,7 +20556,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -19840,7 +20584,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -19867,7 +20612,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -19894,7 +20640,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -19927,7 +20674,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -19953,7 +20701,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/air-slash", "target": "Any", "type": "Flying", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -19979,7 +20728,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20005,7 +20755,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/breaking-swipe", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -20031,7 +20782,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -20057,7 +20809,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", "target": "All Adjacent", "type": "Ground", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -20083,7 +20836,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20109,7 +20863,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -20135,7 +20890,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -20161,7 +20917,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-cheer", "target": "Ally's Side", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20187,7 +20944,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20213,7 +20971,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20239,7 +20998,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20265,7 +21025,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -20291,7 +21052,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dual-wingbeat", "target": "Normal", "type": "Flying", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -20317,7 +21079,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", "target": "All Adjacent", "type": "Ground", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -20343,7 +21106,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20369,7 +21133,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -20395,7 +21160,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -20421,7 +21187,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", "target": "Normal", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -20447,7 +21214,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-spin", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -20473,7 +21241,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -20499,7 +21268,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -20525,7 +21295,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -20551,7 +21322,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -20577,7 +21349,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20603,7 +21376,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hurricane", "target": "Any", "type": "Flying", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -20629,7 +21403,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hydro-pump", "target": "Normal", "type": "Water", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -20655,7 +21430,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", "target": "Normal", "type": "Normal", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -20681,7 +21457,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -20707,7 +21484,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20733,7 +21511,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20759,7 +21538,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -20785,7 +21565,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -20811,7 +21592,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20837,7 +21619,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic-fangs", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -20863,7 +21646,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20889,7 +21673,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20915,7 +21700,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -20941,7 +21727,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -20967,7 +21754,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -20993,7 +21781,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21019,7 +21808,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -21045,7 +21835,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21071,7 +21862,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", "target": "Normal", "type": "Rock", - "zMovePower": 180 + "zMovePower": 180, + "champions": null } }, { @@ -21097,7 +21889,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21123,7 +21916,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21149,7 +21943,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -21175,7 +21970,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", "target": "Ally's Side", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21201,7 +21997,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -21227,7 +22024,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/temper-flare", "target": "Normal", "type": "Fire", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -21253,7 +22051,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -21279,7 +22078,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -21305,7 +22105,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -21336,7 +22137,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -21363,7 +22165,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -21390,7 +22193,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -21417,7 +22221,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -21444,7 +22249,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -21471,7 +22277,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -21498,7 +22305,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dual-wingbeat", "target": "Normal", "type": "Flying", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -21525,7 +22333,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -21552,7 +22361,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -21579,7 +22389,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", "target": "Any", "type": "Flying", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -21606,7 +22417,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21633,7 +22445,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -21660,7 +22473,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21687,7 +22501,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21714,7 +22529,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", "target": "Self", "type": "Flying", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21741,7 +22557,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21768,7 +22585,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -21914,7 +22732,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -21940,7 +22759,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -21966,7 +22786,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -21992,7 +22813,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22018,7 +22840,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22044,7 +22867,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -22070,7 +22894,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -22096,7 +22921,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -22122,7 +22948,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -22148,7 +22975,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -22174,7 +23002,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -22200,7 +23029,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22226,7 +23056,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22252,7 +23083,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22278,7 +23110,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -22304,7 +23137,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22330,7 +23164,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22356,7 +23191,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -22382,7 +23218,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -22408,7 +23245,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -22434,7 +23272,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22460,7 +23299,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -22488,7 +23328,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -22514,7 +23355,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/defense-curl", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22540,7 +23382,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -22566,7 +23409,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22592,7 +23436,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22618,7 +23463,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22644,7 +23490,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22670,7 +23517,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -22696,7 +23544,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rollout", "target": "Normal", "type": "Rock", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22722,7 +23571,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22748,7 +23598,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22774,7 +23625,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -22800,7 +23652,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -22830,7 +23683,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -22857,7 +23711,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -22884,7 +23739,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -22911,7 +23767,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -22938,7 +23795,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -22965,7 +23823,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -22992,7 +23851,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23019,7 +23879,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -23046,7 +23907,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23073,7 +23935,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23100,7 +23963,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -23127,7 +23991,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -23160,7 +24025,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -23186,7 +24052,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23212,7 +24079,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -23238,7 +24106,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23264,7 +24133,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -23290,7 +24160,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23316,7 +24187,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -23342,7 +24214,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -23368,7 +24241,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23394,7 +24268,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -23420,7 +24295,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -23446,7 +24322,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -23472,7 +24349,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -23498,7 +24376,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -23524,7 +24403,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23550,7 +24430,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23576,7 +24457,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23602,7 +24484,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23628,7 +24511,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -23654,7 +24538,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23680,7 +24565,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -23706,7 +24592,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -23732,7 +24619,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -23758,7 +24646,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -23784,7 +24673,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -23810,7 +24700,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23836,7 +24727,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -23862,7 +24754,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23888,7 +24781,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23914,7 +24808,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -23940,7 +24835,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -23968,7 +24864,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -23994,7 +24891,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -24020,7 +24918,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -24046,7 +24945,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24072,7 +24972,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -24098,7 +24999,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -24124,7 +25026,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rollout", "target": "Normal", "type": "Rock", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -24150,7 +25053,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -24176,7 +25080,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", "target": "Adjacent Foes", "type": "Dragon", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -24202,7 +25107,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -24232,7 +25138,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -24259,7 +25166,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -24286,7 +25194,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -24313,7 +25222,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -24340,7 +25250,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -24367,7 +25278,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -24394,7 +25306,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24421,7 +25334,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -24448,7 +25362,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24475,7 +25390,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24502,7 +25418,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -24529,7 +25446,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24556,7 +25474,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -24589,7 +25508,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -24615,7 +25535,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24641,7 +25562,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -24667,7 +25589,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -24693,7 +25616,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24719,7 +25643,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -24745,7 +25670,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -24771,7 +25697,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -24797,7 +25724,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -24823,7 +25751,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -24849,7 +25778,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -24875,7 +25805,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hone-claws", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24901,7 +25832,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/incinerate", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -24927,7 +25859,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24953,7 +25886,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -24979,7 +25913,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25005,7 +25940,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -25031,7 +25967,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25057,7 +25994,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -25083,7 +26021,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -25109,7 +26048,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25135,7 +26075,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25161,7 +26102,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -25187,7 +26129,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -25213,7 +26156,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25239,7 +26183,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25265,7 +26210,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25291,7 +26237,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -25319,7 +26266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -25345,7 +26293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -25371,7 +26320,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -25397,7 +26347,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25423,7 +26374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -25449,7 +26401,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25475,7 +26428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -25501,7 +26455,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -25531,7 +26486,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25558,7 +26514,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -25585,7 +26542,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -25612,7 +26570,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25639,7 +26598,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -25666,7 +26626,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -25693,7 +26654,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25720,7 +26682,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -25747,7 +26710,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25774,7 +26738,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25801,7 +26766,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -25828,7 +26794,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25855,7 +26822,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -25888,7 +26856,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -25914,7 +26883,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25940,7 +26910,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -25966,7 +26937,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -25992,7 +26964,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -26018,7 +26991,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26044,7 +27018,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -26070,7 +27045,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -26096,7 +27072,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -26122,7 +27099,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -26148,7 +27126,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -26174,7 +27153,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -26200,7 +27180,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hone-claws", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26226,7 +27207,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/incinerate", "target": "Adjacent Foes", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -26252,7 +27234,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26278,7 +27261,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26304,7 +27288,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26330,7 +27315,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -26356,7 +27342,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26382,7 +27369,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -26408,7 +27396,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -26434,7 +27423,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -26460,7 +27450,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -26486,7 +27477,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -26512,7 +27504,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -26538,7 +27531,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26564,7 +27558,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -26590,7 +27585,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26616,7 +27612,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26642,7 +27639,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26668,7 +27666,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -26696,7 +27695,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -26722,7 +27722,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -26748,7 +27749,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -26774,7 +27776,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -26800,7 +27803,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -26826,7 +27830,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -26852,7 +27857,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -26882,7 +27888,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -26909,7 +27916,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -26936,7 +27944,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -26963,7 +27972,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -26990,7 +28000,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -27017,7 +28028,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -27044,7 +28056,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -27071,7 +28084,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27098,7 +28112,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -27125,7 +28140,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27152,7 +28168,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27179,7 +28196,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -27206,7 +28224,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27233,7 +28252,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -27266,7 +28286,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", "target": "Any", "type": "Flying", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -27292,7 +28313,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27318,7 +28340,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -27344,7 +28367,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27370,7 +28394,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27396,7 +28421,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -27422,7 +28448,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -27448,7 +28475,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -27474,7 +28502,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -27500,7 +28529,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -27526,7 +28556,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -27552,7 +28583,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27578,7 +28610,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27604,7 +28637,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27630,7 +28664,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -27656,7 +28691,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27682,7 +28718,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -27708,7 +28745,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -27734,7 +28772,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -27760,7 +28799,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -27786,7 +28826,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27812,7 +28853,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27838,7 +28880,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27864,7 +28907,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -27890,7 +28934,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -27918,7 +28963,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -27944,7 +28990,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -27970,7 +29017,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -27996,7 +29044,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28022,7 +29071,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -28048,7 +29098,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -28074,7 +29125,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -28104,7 +29156,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -28131,7 +29184,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -28158,7 +29212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -28185,7 +29240,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -28212,7 +29268,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -28239,7 +29296,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -28266,7 +29324,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -28293,7 +29352,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28320,7 +29380,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -28347,7 +29408,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28374,7 +29436,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28401,7 +29464,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -28428,7 +29492,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28455,7 +29520,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -28488,7 +29554,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -28514,7 +29581,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", "target": "Normal", "type": "Fighting", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -28540,7 +29608,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -28566,7 +29635,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -28592,7 +29662,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", "target": "Normal", "type": "Dragon", - "zMovePower": 195 + "zMovePower": 195, + "champions": null } }, { @@ -28618,7 +29689,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-cheer", "target": "Ally's Side", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28644,7 +29716,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -28670,7 +29743,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", "target": "Self", "type": "Dragon", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28696,7 +29770,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", "target": "Any", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -28722,7 +29797,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -28748,7 +29824,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28774,7 +29851,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -28800,7 +29878,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", "target": "Normal", "type": "Fire", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -28826,7 +29905,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", "target": "Normal", "type": "Fire", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -28852,7 +29932,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-spin", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -28878,7 +29959,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -28904,7 +29986,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", "target": "Adjacent Ally", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -28930,7 +30013,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hydro-pump", "target": "Normal", "type": "Water", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -28956,7 +30040,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -28982,7 +30067,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", "target": "Self", "type": "Steel", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29008,7 +30094,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", "target": "Normal", "type": "Steel", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -29034,7 +30121,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", "target": "Normal", "type": "Ground", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -29060,7 +30148,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -29086,7 +30175,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29112,7 +30202,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29138,7 +30229,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29164,7 +30256,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29190,7 +30283,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", "target": "Adjacent Foes", "type": "Rock", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -29216,7 +30310,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", "target": "Normal", "type": "Rock", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -29242,7 +30337,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29268,7 +30364,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", "target": "Normal", "type": "Ghost", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -29294,7 +30391,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29320,7 +30418,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29346,7 +30445,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", "target": "All", "type": "Fire", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29372,7 +30472,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", "target": "Normal", "type": "Normal", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -29398,7 +30499,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/temper-flare", "target": "Normal", "type": "Fire", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -29424,7 +30526,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -29450,7 +30553,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", "target": "Normal", "type": "Electric", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -29476,7 +30580,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -29507,7 +30612,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", "target": "Normal", "type": "Dark", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -29534,7 +30640,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", "target": "Normal", "type": "Dark", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -29561,7 +30668,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -29588,7 +30696,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", "target": "Normal", "type": "Dragon", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -29615,7 +30724,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", "target": "Normal", "type": "Dragon", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -29642,7 +30752,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", "target": "Normal", "type": "Fire", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -29669,7 +30780,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", "target": "Normal", "type": "Fire", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -29696,7 +30808,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29723,7 +30836,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -29750,7 +30864,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29777,7 +30892,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", "target": "Random", "type": "Dragon", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -29804,7 +30920,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29831,7 +30948,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -29858,7 +30976,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", "target": "Normal", "type": "Psychic", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] diff --git a/tests/testUtils/full-data-responses/syclar.json b/tests/testUtils/full-data-responses/syclar.json index 28d232aa38..cb94da06b6 100644 --- a/tests/testUtils/full-data-responses/syclar.json +++ b/tests/testUtils/full-data-responses/syclar.json @@ -73,7 +73,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -99,7 +100,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earth-power", "target": "Normal", "type": "Ground", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -125,7 +127,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pin-missile", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -151,7 +154,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/spikes", "target": "Foe's Side", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -177,7 +181,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -203,7 +208,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-glow", "target": "Self", "type": "Bug", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -232,7 +238,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -258,7 +265,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/avalanche", "target": "Normal", "type": "Ice", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -284,7 +292,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -310,7 +319,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -336,7 +346,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -362,7 +373,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -388,7 +400,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -414,7 +427,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -440,7 +454,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/false-swipe", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -466,7 +481,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fling", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -492,7 +508,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -518,7 +535,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -544,7 +562,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -570,7 +589,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -596,7 +616,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -622,7 +643,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -648,7 +670,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -674,7 +697,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -700,7 +724,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -726,7 +751,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -752,7 +778,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -778,7 +805,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/silver-wind", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -804,7 +832,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -830,7 +859,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -856,7 +886,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -882,7 +913,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swords-dance", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -908,7 +940,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/taunt", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -934,7 +967,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -960,7 +994,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/u-turn", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -986,7 +1021,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1012,7 +1048,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/x-scissor", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -1040,7 +1077,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1066,7 +1104,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", "target": "Foe that last hit user", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1092,7 +1131,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -1118,7 +1158,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earth-power", "target": "Normal", "type": "Ground", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -1144,7 +1185,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1170,7 +1212,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1196,7 +1239,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1222,7 +1266,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/string-shot", "target": "Adjacent Foes", "type": "Bug", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1248,7 +1293,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } } ], @@ -1278,7 +1324,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-buzz", "target": "Normal", "type": "Bug", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -1305,7 +1352,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1332,7 +1380,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1359,7 +1408,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1386,7 +1436,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-shard", "target": "Normal", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1413,7 +1464,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1440,7 +1492,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leech-life", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -1467,7 +1520,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1494,7 +1548,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sheer-cold", "target": "Normal", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -1521,7 +1576,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/x-scissor", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -1552,7 +1608,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1578,7 +1635,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pin-missile", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1604,7 +1662,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -1630,7 +1689,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-glow", "target": "Self", "type": "Bug", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -1659,7 +1719,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1685,7 +1746,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -1713,7 +1775,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1739,7 +1802,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } } ], @@ -1769,7 +1833,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sheer-cold", "target": "Normal", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -1800,7 +1865,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -1826,7 +1892,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pin-missile", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1852,7 +1919,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -1878,7 +1946,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-glow", "target": "Self", "type": "Bug", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -1907,7 +1976,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1933,7 +2003,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -1959,7 +2030,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -1987,7 +2059,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2013,7 +2086,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -2039,7 +2113,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -2072,7 +2147,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2098,7 +2174,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", "target": "Foe that last hit user", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2124,7 +2201,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earth-power", "target": "Normal", "type": "Ground", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2150,7 +2228,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fell-stinger", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2176,7 +2255,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pin-missile", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2202,7 +2282,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/signal-beam", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2228,7 +2309,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/spikes", "target": "Foe's Side", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2254,7 +2336,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -2280,7 +2363,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-glow", "target": "Self", "type": "Bug", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -2309,7 +2393,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2335,7 +2420,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -2361,7 +2447,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2387,7 +2474,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2413,7 +2501,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2439,7 +2528,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/false-swipe", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2465,7 +2555,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fling", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2491,7 +2582,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frost-breath", "target": "Normal", "type": "Ice", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2517,7 +2609,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2543,7 +2636,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2569,7 +2663,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2595,7 +2690,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hone-claws", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2621,7 +2717,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -2647,7 +2744,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leech-life", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2673,7 +2771,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2699,7 +2798,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2725,7 +2825,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2751,7 +2852,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -2777,7 +2879,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -2803,7 +2906,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -2829,7 +2933,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2855,7 +2960,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/struggle-bug", "target": "Adjacent Foes", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -2881,7 +2987,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2907,7 +3014,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2933,7 +3041,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swords-dance", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2959,7 +3068,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/taunt", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -2985,7 +3095,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3011,7 +3122,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/u-turn", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -3037,7 +3149,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/x-scissor", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -3065,7 +3178,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3091,7 +3205,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-punch", "target": "Normal", "type": "Fighting", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -3117,7 +3232,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3143,7 +3259,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/signal-beam", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -3169,7 +3286,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3195,7 +3313,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } } ], @@ -3225,7 +3344,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/absorb", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3252,7 +3372,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/avalanche", "target": "Normal", "type": "Ice", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3279,7 +3400,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-buzz", "target": "Normal", "type": "Bug", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -3306,7 +3428,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3333,7 +3456,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3360,7 +3484,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3387,7 +3512,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3414,7 +3540,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-punch", "target": "Normal", "type": "Ice", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -3441,7 +3568,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-shard", "target": "Normal", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3468,7 +3596,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icicle-crash", "target": "Normal", "type": "Ice", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -3495,7 +3624,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3522,7 +3652,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3549,7 +3680,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slash", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -3576,7 +3708,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/x-scissor", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -3607,7 +3740,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3633,7 +3767,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", "target": "Foe that last hit user", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3659,7 +3794,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -3685,7 +3821,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fell-stinger", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3711,7 +3848,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pin-missile", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3737,7 +3875,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/string-shot", "target": "Adjacent Foes", "type": "Bug", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3763,7 +3902,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/struggle-bug", "target": "Adjacent Foes", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -3789,7 +3929,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-glow", "target": "Self", "type": "Bug", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -3818,7 +3959,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/avalanche", "target": "Normal", "type": "Ice", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3844,7 +3986,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -3870,7 +4013,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -3896,7 +4040,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-buzz", "target": "Normal", "type": "Bug", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -3922,7 +4067,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earth-power", "target": "Normal", "type": "Ground", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -3948,7 +4094,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -3974,7 +4121,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -4000,7 +4148,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/false-swipe", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4026,7 +4175,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fling", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4052,7 +4202,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-punch", "target": "Normal", "type": "Fighting", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -4078,7 +4229,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -4104,7 +4256,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-fang", "target": "Normal", "type": "Ice", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4130,7 +4283,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-punch", "target": "Normal", "type": "Ice", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -4156,7 +4310,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-spinner", "target": "Normal", "type": "Ice", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4182,7 +4337,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4208,7 +4364,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leech-life", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4234,7 +4391,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pounce", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4260,7 +4418,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4286,7 +4445,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4312,7 +4472,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4338,7 +4499,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4364,7 +4526,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snowscape", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4390,7 +4553,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/spikes", "target": "Foe's Side", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4416,7 +4580,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/struggle-bug", "target": "Adjacent Foes", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4442,7 +4607,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4468,7 +4634,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4494,7 +4661,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swords-dance", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4520,7 +4688,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/taunt", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4546,7 +4715,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4572,7 +4742,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trailblaze", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4598,7 +4769,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/u-turn", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -4624,7 +4796,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4650,7 +4823,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/x-scissor", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -4681,7 +4855,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/absorb", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4708,7 +4883,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/avalanche", "target": "Normal", "type": "Ice", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -4735,7 +4911,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-buzz", "target": "Normal", "type": "Bug", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -4762,7 +4939,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4789,7 +4967,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4816,7 +4995,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4843,7 +5023,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-shard", "target": "Normal", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4870,7 +5051,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icicle-crash", "target": "Normal", "type": "Ice", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -4897,7 +5079,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -4924,7 +5107,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4951,7 +5135,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sheer-cold", "target": "Normal", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -4978,7 +5163,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slash", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -5005,7 +5191,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/x-scissor", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -5181,7 +5368,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5207,7 +5395,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earth-power", "target": "Normal", "type": "Ground", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -5233,7 +5422,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pin-missile", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5259,7 +5449,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/spikes", "target": "Foe's Side", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5285,7 +5476,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -5311,7 +5503,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-glow", "target": "Self", "type": "Bug", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -5340,7 +5533,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5366,7 +5560,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/avalanche", "target": "Normal", "type": "Ice", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5392,7 +5587,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -5418,7 +5614,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5444,7 +5641,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5470,7 +5668,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5496,7 +5695,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5522,7 +5722,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -5548,7 +5749,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/false-swipe", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5574,7 +5776,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fling", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5600,7 +5803,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -5626,7 +5830,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5652,7 +5857,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5678,7 +5884,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -5704,7 +5911,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5730,7 +5938,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5756,7 +5965,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5782,7 +5992,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5808,7 +6019,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -5834,7 +6046,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -5860,7 +6073,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -5886,7 +6100,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/silver-wind", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -5912,7 +6127,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5938,7 +6154,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5964,7 +6181,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -5990,7 +6208,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swords-dance", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6016,7 +6235,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/taunt", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6042,7 +6262,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6068,7 +6289,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/u-turn", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -6094,7 +6316,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6120,7 +6343,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/x-scissor", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -6148,7 +6372,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6174,7 +6399,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", "target": "Foe that last hit user", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6200,7 +6426,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -6226,7 +6453,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earth-power", "target": "Normal", "type": "Ground", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -6252,7 +6480,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6278,7 +6507,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6304,7 +6534,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6330,7 +6561,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/string-shot", "target": "Adjacent Foes", "type": "Bug", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6356,7 +6588,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } } ], @@ -6386,7 +6619,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-buzz", "target": "Normal", "type": "Bug", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -6413,7 +6647,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6440,7 +6675,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6467,7 +6703,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6494,7 +6731,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-shard", "target": "Normal", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6521,7 +6759,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6548,7 +6787,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leech-life", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -6575,7 +6815,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6602,7 +6843,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sheer-cold", "target": "Normal", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -6629,7 +6871,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/x-scissor", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -6660,7 +6903,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6686,7 +6930,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pin-missile", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6712,7 +6957,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -6738,7 +6984,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-glow", "target": "Self", "type": "Bug", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -6767,7 +7014,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6793,7 +7041,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -6821,7 +7070,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6847,7 +7097,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } } ], @@ -6877,7 +7128,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sheer-cold", "target": "Normal", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ] @@ -6908,7 +7160,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -6934,7 +7187,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pin-missile", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -6960,7 +7214,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -6986,7 +7241,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-glow", "target": "Self", "type": "Bug", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -7015,7 +7271,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7041,7 +7298,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", "target": "Normal", "type": "Fighting", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7067,7 +7325,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -7095,7 +7354,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7121,7 +7381,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -7147,7 +7408,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } } ], @@ -7180,7 +7442,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7206,7 +7469,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", "target": "Foe that last hit user", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7232,7 +7496,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earth-power", "target": "Normal", "type": "Ground", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7258,7 +7523,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fell-stinger", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7284,7 +7550,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pin-missile", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7310,7 +7577,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/signal-beam", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -7336,7 +7604,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/spikes", "target": "Foe's Side", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7362,7 +7631,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -7388,7 +7658,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-glow", "target": "Self", "type": "Bug", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -7417,7 +7688,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7443,7 +7715,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -7469,7 +7742,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7495,7 +7769,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7521,7 +7796,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -7547,7 +7823,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/false-swipe", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7573,7 +7850,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fling", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7599,7 +7877,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frost-breath", "target": "Normal", "type": "Ice", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7625,7 +7904,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7651,7 +7931,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7677,7 +7958,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7703,7 +7985,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hone-claws", "target": "Self", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7729,7 +8012,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -7755,7 +8039,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leech-life", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7781,7 +8066,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7807,7 +8093,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7833,7 +8120,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7859,7 +8147,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/return", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -7885,7 +8174,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/round", "target": "Normal", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -7911,7 +8201,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -7937,7 +8228,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -7963,7 +8255,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/struggle-bug", "target": "Adjacent Foes", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -7989,7 +8282,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8015,7 +8309,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", "target": "Normal", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8041,7 +8336,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swords-dance", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8067,7 +8363,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/taunt", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8093,7 +8390,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", "target": "Normal", "type": "Poison", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8119,7 +8417,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/u-turn", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -8145,7 +8444,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/x-scissor", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -8173,7 +8473,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8199,7 +8500,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-punch", "target": "Normal", "type": "Fighting", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -8225,7 +8527,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8251,7 +8554,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/signal-beam", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -8277,7 +8581,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8303,7 +8608,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/superpower", "target": "Normal", "type": "Fighting", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } } ], @@ -8333,7 +8639,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/absorb", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8360,7 +8667,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/avalanche", "target": "Normal", "type": "Ice", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8387,7 +8695,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-buzz", "target": "Normal", "type": "Bug", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -8414,7 +8723,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8441,7 +8751,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8468,7 +8779,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8495,7 +8807,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/hail", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8522,7 +8835,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-punch", "target": "Normal", "type": "Ice", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -8549,7 +8863,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-shard", "target": "Normal", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8576,7 +8891,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icicle-crash", "target": "Normal", "type": "Ice", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -8603,7 +8919,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8630,7 +8947,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8657,7 +8975,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slash", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -8684,7 +9003,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/x-scissor", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] @@ -8715,7 +9035,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8741,7 +9062,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", "target": "Foe that last hit user", "type": "Fighting", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8767,7 +9089,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", "target": "Normal", "type": "Normal", - "zMovePower": 190 + "zMovePower": 190, + "champions": null } }, { @@ -8793,7 +9116,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fell-stinger", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8819,7 +9143,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pin-missile", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8845,7 +9170,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/string-shot", "target": "Adjacent Foes", "type": "Bug", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -8871,7 +9197,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/struggle-bug", "target": "Adjacent Foes", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -8897,7 +9224,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-glow", "target": "Self", "type": "Bug", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } } ], @@ -8926,7 +9254,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/avalanche", "target": "Normal", "type": "Ice", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -8952,7 +9281,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 185 + "zMovePower": 185, + "champions": null } }, { @@ -8978,7 +9308,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-bite", "target": "Normal", "type": "Bug", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9004,7 +9335,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-buzz", "target": "Normal", "type": "Bug", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9030,7 +9362,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/earth-power", "target": "Normal", "type": "Ground", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9056,7 +9389,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9082,7 +9416,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -9108,7 +9443,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/false-swipe", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9134,7 +9470,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fling", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9160,7 +9497,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-punch", "target": "Normal", "type": "Fighting", - "zMovePower": 200 + "zMovePower": 200, + "champions": null } }, { @@ -9186,7 +9524,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", "target": "Normal", "type": "Ice", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9212,7 +9551,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-fang", "target": "Normal", "type": "Ice", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9238,7 +9578,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-punch", "target": "Normal", "type": "Ice", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -9264,7 +9605,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-spinner", "target": "Normal", "type": "Ice", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9290,7 +9632,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9316,7 +9659,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leech-life", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9342,7 +9686,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/pounce", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9368,7 +9713,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9394,7 +9740,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", "target": "All", "type": "Water", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9420,7 +9767,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", "target": "Self", "type": "Psychic", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9446,7 +9794,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9472,7 +9821,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/snowscape", "target": "All", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9498,7 +9848,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/spikes", "target": "Foe's Side", "type": "Ground", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9524,7 +9875,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/struggle-bug", "target": "Adjacent Foes", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9550,7 +9902,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9576,7 +9929,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9602,7 +9956,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/swords-dance", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9628,7 +9983,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/taunt", "target": "Normal", "type": "Dark", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9654,7 +10010,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", "target": "Normal", "type": "Normal", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -9680,7 +10037,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/trailblaze", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9706,7 +10064,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/u-turn", "target": "Normal", "type": "Bug", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -9732,7 +10091,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/water-pulse", "target": "Any", "type": "Water", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9758,7 +10118,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/x-scissor", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ], @@ -9789,7 +10150,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/absorb", "target": "Normal", "type": "Grass", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9816,7 +10178,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/avalanche", "target": "Normal", "type": "Ice", - "zMovePower": 120 + "zMovePower": 120, + "champions": null } }, { @@ -9843,7 +10206,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/bug-buzz", "target": "Normal", "type": "Bug", - "zMovePower": 175 + "zMovePower": 175, + "champions": null } }, { @@ -9870,7 +10234,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", "target": "Self", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -9897,7 +10262,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-attack", "target": "Normal", "type": "Normal", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9924,7 +10290,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", "target": "Normal", "type": "Bug", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9951,7 +10318,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-shard", "target": "Normal", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -9978,7 +10346,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icicle-crash", "target": "Normal", "type": "Ice", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } }, { @@ -10005,7 +10374,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", "target": "Adjacent Foes", "type": "Ice", - "zMovePower": 100 + "zMovePower": 100, + "champions": null } }, { @@ -10032,7 +10402,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", "target": "Adjacent Foes", "type": "Normal", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10059,7 +10430,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/sheer-cold", "target": "Normal", "type": "Ice", - "zMovePower": 0 + "zMovePower": 0, + "champions": null } }, { @@ -10086,7 +10458,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/slash", "target": "Normal", "type": "Normal", - "zMovePower": 140 + "zMovePower": 140, + "champions": null } }, { @@ -10113,7 +10486,8 @@ "smogonPage": "https://www.smogon.com/dex/ss/moves/x-scissor", "target": "Normal", "type": "Bug", - "zMovePower": 160 + "zMovePower": 160, + "champions": null } } ] From 8652292e4ff09503b0f9b8f27621aa8047858d99 Mon Sep 17 00:00:00 2001 From: KunoichiZ Date: Thu, 18 Jun 2026 19:28:58 -0500 Subject: [PATCH 8/9] feat: add confirmed abilities from Champions Also swap Excadrill and Mega Excadrill's abilities --- graphql/enums.graphql | 2 ++ src/lib/assets/abilities.ts | 16 ++++++++++++++++ src/lib/assets/pokedex-data/gen1.ts | 4 ++-- src/lib/assets/pokedex-data/gen4.ts | 2 +- src/lib/assets/pokedex-data/gen5.ts | 10 +++++----- src/lib/assets/pokedex-data/gen6.ts | 16 ++++------------ src/lib/assets/pokedex-data/gen8.ts | 2 +- 7 files changed, 31 insertions(+), 21 deletions(-) diff --git a/graphql/enums.graphql b/graphql/enums.graphql index 11f981387e..a79a913941 100644 --- a/graphql/enums.graphql +++ b/graphql/enums.graphql @@ -61,6 +61,7 @@ enum AbilitiesEnum { dryskin earlybird eartheater + eelevate effectspore electricsurge electromorphosis @@ -71,6 +72,7 @@ enum AbilitiesEnum { emergencyexit fairyaura filter + firemane flamebody flareboost flashfire diff --git a/src/lib/assets/abilities.ts b/src/lib/assets/abilities.ts index f7f13d1c1e..6ed5159b5b 100644 --- a/src/lib/assets/abilities.ts +++ b/src/lib/assets/abilities.ts @@ -480,6 +480,15 @@ export const abilities = new Collection([ shortDesc: 'This Pokémon heals 1/4 of its max HP when hit by Ground moves; Ground immunity.' } ], + [ + 'eelevate', + { + desc: 'The Pokémon floats off the ground, making it immune to Ground-type moves, as well as the Spikes, Toxic Spikes, and Sticky Web statuses. When the Pokémon knocks out a target with an attack, its highest stat is boosted by 1 stage.', + name: 'Eelevate', + shortDesc: + 'This Pokémon has its highest stat boosted by 1 stage when it knocks out a target; Ground, Spikes, Toxic Spikes, and Sticky Web immunity.' + } + ], [ 'effectspore', { @@ -554,6 +563,13 @@ export const abilities = new Collection([ shortDesc: 'This Pokémon receives 3/4 damage from supereffective attacks.' } ], + [ + 'firemane', + { + name: 'Fire Mane', + shortDesc: 'Boosts the power of the Pokémon’s Fire-type moves by 50%' + } + ], [ 'flamebody', { diff --git a/src/lib/assets/pokedex-data/gen1.ts b/src/lib/assets/pokedex-data/gen1.ts index 338979cbcd..492a087ca6 100644 --- a/src/lib/assets/pokedex-data/gen1.ts +++ b/src/lib/assets/pokedex-data/gen1.ts @@ -1957,7 +1957,7 @@ const entries: [string, PokemonTypes.DexEntry][] = [ [ 'raichumegax', { - abilities: { first: 'static', hidden: 'lightningrod' }, + abilities: { first: 'electricsurge' }, baseStats: { hp: 60, atk: 135, def: 95, spa: 90, spd: 95, spe: 110 }, catchRate: { base: 75, percentageWithOrdinaryPokeballAtFullHealth: '17.5%' }, baseSpecies: 'raichu', @@ -1985,7 +1985,7 @@ const entries: [string, PokemonTypes.DexEntry][] = [ [ 'raichumegay', { - abilities: { first: 'static', hidden: 'lightningrod' }, + abilities: { first: 'noguard' }, baseStats: { hp: 60, atk: 135, def: 95, spa: 90, spd: 95, spe: 110 }, catchRate: { base: 75, percentageWithOrdinaryPokeballAtFullHealth: '17.5%' }, baseSpecies: 'raichu', diff --git a/src/lib/assets/pokedex-data/gen4.ts b/src/lib/assets/pokedex-data/gen4.ts index 5f74964a54..8e142d9f11 100644 --- a/src/lib/assets/pokedex-data/gen4.ts +++ b/src/lib/assets/pokedex-data/gen4.ts @@ -337,7 +337,7 @@ const entries: [string, PokemonTypes.DexEntry][] = [ [ 'staraptormega', { - abilities: { first: 'intimidate', hidden: 'reckless' }, + abilities: { first: 'contrary' }, baseStats: { hp: 85, atk: 140, def: 100, spa: 60, spd: 90, spe: 110 }, catchRate: { base: 45, percentageWithOrdinaryPokeballAtFullHealth: '11.9%' }, baseSpecies: 'staraptor', diff --git a/src/lib/assets/pokedex-data/gen5.ts b/src/lib/assets/pokedex-data/gen5.ts index a64b4348c8..42d1e7d8db 100644 --- a/src/lib/assets/pokedex-data/gen5.ts +++ b/src/lib/assets/pokedex-data/gen5.ts @@ -1083,7 +1083,7 @@ const entries: [string, PokemonTypes.DexEntry][] = [ [ 'excadrill', { - abilities: { first: 'piercingdrill' }, + abilities: { first: 'sandrush', second: 'sandforce', hidden: 'moldbreaker' }, baseStats: { hp: 110, atk: 135, def: 60, spa: 50, spd: 65, spe: 88 }, catchRate: { base: 60, percentageWithOrdinaryPokeballAtFullHealth: '14.8%' }, color: 'Gray', @@ -1111,7 +1111,7 @@ const entries: [string, PokemonTypes.DexEntry][] = [ [ 'excadrillmega', { - abilities: { first: 'sandrush', second: 'sandforce', hidden: 'moldbreaker' }, + abilities: { first: 'piercingdrill' }, baseStats: { hp: 110, atk: 165, def: 100, spa: 65, spd: 65, spe: 103 }, catchRate: { base: 60, percentageWithOrdinaryPokeballAtFullHealth: '14.8%' }, color: 'Gray', @@ -1606,7 +1606,7 @@ const entries: [string, PokemonTypes.DexEntry][] = [ [ 'scolipedemega', { - abilities: { first: 'poisonpoint', second: 'swarm', hidden: 'speedboost' }, + abilities: { first: 'shellarmor' }, baseStats: { hp: 60, atk: 140, def: 149, spa: 75, spd: 99, spe: 62 }, catchRate: { base: 45, percentageWithOrdinaryPokeballAtFullHealth: '11.9%' }, color: 'Red', @@ -2292,7 +2292,7 @@ const entries: [string, PokemonTypes.DexEntry][] = [ [ 'scraftymega', { - abilities: { first: 'shedskin', second: 'moxie', hidden: 'intimidate' }, + abilities: { first: 'intimidate' }, baseStats: { hp: 65, atk: 130, def: 135, spa: 55, spd: 135, spe: 68 }, catchRate: { base: 90, percentageWithOrdinaryPokeballAtFullHealth: '20.1%' }, color: 'Red', @@ -3773,7 +3773,7 @@ const entries: [string, PokemonTypes.DexEntry][] = [ [ 'eelektrossmega', { - abilities: { first: 'levitate' }, + abilities: { first: 'eelevate' }, baseStats: { hp: 85, atk: 145, def: 80, spa: 135, spd: 90, spe: 80 }, catchRate: { base: 30, percentageWithOrdinaryPokeballAtFullHealth: '8.8%' }, color: 'Blue', diff --git a/src/lib/assets/pokedex-data/gen6.ts b/src/lib/assets/pokedex-data/gen6.ts index 830e2ccd07..de9bdfd1db 100644 --- a/src/lib/assets/pokedex-data/gen6.ts +++ b/src/lib/assets/pokedex-data/gen6.ts @@ -764,7 +764,7 @@ const entries: [string, PokemonTypes.DexEntry][] = [ [ 'pyroarmega', { - abilities: { first: 'rivalry', second: 'unnerve', hidden: 'moxie' }, + abilities: { first: 'firemane' }, baseStats: { hp: 86, atk: 88, def: 92, spa: 129, spd: 86, spe: 126 }, catchRate: { base: 65, percentageWithOrdinaryPokeballAtFullHealth: '15.7%' }, color: 'Brown', @@ -1536,11 +1536,7 @@ const entries: [string, PokemonTypes.DexEntry][] = [ [ 'malamarmega', { - abilities: { - first: 'contrary', - second: 'suctioncups', - hidden: 'infiltrator' - }, + abilities: { first: 'contrary' }, baseStats: { hp: 86, atk: 102, def: 88, spa: 98, spd: 120, spe: 88 }, catchRate: { base: 80, percentageWithOrdinaryPokeballAtFullHealth: '18.4%' }, baseSpecies: 'malamar', @@ -1625,7 +1621,7 @@ const entries: [string, PokemonTypes.DexEntry][] = [ [ 'barbaraclemega', { - abilities: { first: 'toughclaws', second: 'sniper', hidden: 'pickpocket' }, + abilities: { first: 'toughclaws' }, baseStats: { hp: 72, atk: 140, def: 130, spa: 64, spd: 106, spe: 88 }, catchRate: { base: 45, percentageWithOrdinaryPokeballAtFullHealth: '11.9%' }, baseSpecies: 'barbaracle', @@ -1718,11 +1714,7 @@ const entries: [string, PokemonTypes.DexEntry][] = [ [ 'dragalgemega', { - abilities: { - first: 'poisonpoint', - second: 'poisontouch', - hidden: 'adaptability' - }, + abilities: { first: 'regenerator' }, baseStats: { hp: 65, atk: 85, def: 105, spa: 132, spd: 163, spe: 44 }, catchRate: { base: 55, percentageWithOrdinaryPokeballAtFullHealth: '13.9%' }, baseSpecies: 'dragalge', diff --git a/src/lib/assets/pokedex-data/gen8.ts b/src/lib/assets/pokedex-data/gen8.ts index 593f496fea..0c9030a9aa 100644 --- a/src/lib/assets/pokedex-data/gen8.ts +++ b/src/lib/assets/pokedex-data/gen8.ts @@ -2182,7 +2182,7 @@ const entries: [string, PokemonTypes.DexEntry][] = [ [ 'falinksmega', { - abilities: { first: 'battlearmor', hidden: 'defiant' }, + abilities: { first: 'defiant' }, baseStats: { hp: 65, atk: 135, def: 135, spa: 70, spd: 65, spe: 100 }, catchRate: { base: 45, percentageWithOrdinaryPokeballAtFullHealth: '11.9%' }, color: 'Yellow', From 5889ee8dbef4eb29aeba37dd0a8fc81aca381c8d Mon Sep 17 00:00:00 2001 From: KunoichiZ Date: Sun, 28 Jun 2026 14:03:08 -0500 Subject: [PATCH 9/9] fix: add specialSprite for Mega Meowstic --- src/lib/assets/pokedex-data/gen6.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/assets/pokedex-data/gen6.ts b/src/lib/assets/pokedex-data/gen6.ts index de9bdfd1db..0c7f760cd6 100644 --- a/src/lib/assets/pokedex-data/gen6.ts +++ b/src/lib/assets/pokedex-data/gen6.ts @@ -1234,6 +1234,7 @@ const entries: [string, PokemonTypes.DexEntry][] = [ species: 'meowstic-mega', types: [TypesEnum.Psychic], weightkg: 10.1, + specialSprite: 'https://play.pokemonshowdown.com/sprites/ani/meowstic-mmega.gif', cry: 'https://play.pokemonshowdown.com/audio/cries/meowstic.mp3', respelling: 'MYOW-stik', ipa: '/ˈmjaʊstɪk/',