diff --git a/graphql/schema.graphql b/graphql/schema.graphql index b53d635322..121b4d9184 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -116,7 +116,7 @@ type Pokemon { learnsets: GenerationalPokemonLearnset "Any other forms for a Pokémon" - otherFormes: [String!] + otherFormes: [Pokemon!] "The preevolutions for a Pokémon, if any" preevolutions: [Pokemon!] diff --git a/scripts/manual-tests/get-all-data.py b/scripts/manual-tests/get-all-data.py index 1166eddfe6..3a3303bfcb 100644 --- a/scripts/manual-tests/get-all-data.py +++ b/scripts/manual-tests/get-all-data.py @@ -205,7 +205,6 @@ maximumHatchTime minimumHatchTime num - otherFormes serebiiPage shinyBackSprite shinySprite @@ -252,6 +251,15 @@ ...FullDataFragment } } + otherFormes { + ...FullDataFragment + evolutions { + ...FullDataFragment + } + preevolutions { + ...FullDataFragment + } + } preevolutions { ...FullDataFragment evolutions { diff --git a/src/lib/mappers/pokemonMapper.ts b/src/lib/mappers/pokemonMapper.ts index 8a1a1aecd6..5a43154ae8 100644 --- a/src/lib/mappers/pokemonMapper.ts +++ b/src/lib/mappers/pokemonMapper.ts @@ -336,6 +336,7 @@ export function mapPokemonDataToPokemonGraphQL({ }; const evolutionChain: Pokemon[] = []; + const otherFormsChain: Pokemon[] = []; const preevolutionChain: Pokemon[] = []; const pokemonData: Pokemon = {} as Pokemon; @@ -481,13 +482,6 @@ export function mapPokemonDataToPokemonGraphQL({ requestedFields, fieldAccessor: `${resolvedRecursingAs}baseSpecies` }); - addPropertyToObjectFieldBased({ - objectTarget: pokemonData, - propertyKey: 'otherFormes', - propertyValue: data.otherFormes, - requestedFields, - fieldAccessor: `${resolvedRecursingAs}otherFormes` - }); addPropertyToObjectFieldBased({ objectTarget: pokemonData, propertyKey: 'cosmeticFormes', @@ -685,7 +679,7 @@ export function mapPokemonDataToPokemonGraphQL({ data: pokedex.get(toLowerSingleWordCase(prevoPokemon.species))!, requestedFields, ...basePokemonArgs, - parsingPokemon: parseDataForEvolutionRecursion(data, prevoPokemon), + parsingPokemon: parseDataForEvolutionRecursion(data), recursingAs: 'preevolutions' }) ); @@ -709,7 +703,7 @@ export function mapPokemonDataToPokemonGraphQL({ data: pokedex.get(toLowerSingleWordCase(evoPokemon.species))!, requestedFields, ...basePokemonArgs, - parsingPokemon: parseDataForEvolutionRecursion(data, evoPokemon), + parsingPokemon: parseDataForEvolutionRecursion(data), recursingAs: 'evolutions' }) ); @@ -725,6 +719,35 @@ export function mapPokemonDataToPokemonGraphQL({ }); } + if ( + (requestedFields as GraphQLSet).has(`${resolvedRecursingAs}otherFormes`) && + data.otherFormes && + data.otherFormes[0] !== parsingPokemon + ) { + for (const otherForm of data.otherFormes) { + const otherFormPokemon = pokedex.get(toLowerSingleWordCase(otherForm)); + if (otherFormPokemon) { + otherFormsChain.push( + mapPokemonDataToPokemonGraphQL({ + data: pokedex.get(toLowerSingleWordCase(otherFormPokemon.species))!, + requestedFields, + ...basePokemonArgs, + parsingPokemon: parseDataForEvolutionRecursion(data), + recursingAs: 'otherFormes' + }) + ); + } + } + + addPropertyToObjectFieldBased({ + objectTarget: pokemonData, + propertyKey: 'otherFormes', + propertyValue: otherFormsChain, + requestedFields, + fieldAccessor: `${resolvedRecursingAs}otherFormes` + }); + } + return pokemonData; } @@ -814,7 +837,7 @@ function parseSpeciesForSerebiiPage(pokemonName: string, pokemonNumber: number, return `${serebiiBaseUrl}-sv/${pokemonName.replace(/ /g, '').toLowerCase()}`; } -function parseDataForEvolutionRecursion(basePokemonData: PokemonTypes.DexEntry, _: PokemonTypes.DexEntry) { +function parseDataForEvolutionRecursion(basePokemonData: PokemonTypes.DexEntry) { if (basePokemonData.forme) { return toLowerSingleWordCase(basePokemonData.species); } @@ -870,5 +893,5 @@ interface MapPokemonDataToPokemonGraphQLParameters { reverseFlavorTexts: boolean; referencedCall?: PokemonReferencedCallIdentifier; parsingPokemon?: string; - recursingAs?: 'preevolutions' | 'evolutions' | false; + recursingAs?: 'preevolutions' | 'evolutions' | 'otherFormes' | false; } diff --git a/src/lib/types/graphql-mapped-types.ts b/src/lib/types/graphql-mapped-types.ts index 555240b331..c0dd435904 100644 --- a/src/lib/types/graphql-mapped-types.ts +++ b/src/lib/types/graphql-mapped-types.ts @@ -288,7 +288,7 @@ interface Pokemon { /** The dex number for a Pokémon */ num: number; /** Any other forms for a Pokémon */ - otherFormes?: Maybe>; + otherFormes?: Maybe>; /** The preevolutions for a Pokémon, if any */ preevolutions?: Maybe>; /** Serebii page for a Pokémon */ diff --git a/tests/testUtils/full-data-responses/beldum.json b/tests/testUtils/full-data-responses/beldum.json index 30f34e4e79..3161000945 100644 --- a/tests/testUtils/full-data-responses/beldum.json +++ b/tests/testUtils/full-data-responses/beldum.json @@ -769,7 +769,6 @@ "maximumHatchTime": 10536, "minimumHatchTime": 10280, "num": 374, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-swsh/beldum", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/beldum.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/beldum.gif", @@ -1611,7 +1610,6 @@ "maximumHatchTime": 10536, "minimumHatchTime": 10280, "num": 375, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-swsh/metang", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/metang.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/metang.gif", @@ -10363,7 +10361,6 @@ "maximumHatchTime": 10536, "minimumHatchTime": 10280, "num": 376, - "otherFormes": ["metagrossmega"], "serebiiPage": "https://www.serebii.net/pokedex-swsh/metagross", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/metagross.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/metagross.gif", @@ -10459,6 +10456,7 @@ "preevolutions": null } ], + "otherFormes": null, "preevolutions": null } } diff --git a/tests/testUtils/full-data-responses/dragonair.json b/tests/testUtils/full-data-responses/dragonair.json index 9a51802452..1a31fc6cb1 100644 --- a/tests/testUtils/full-data-responses/dragonair.json +++ b/tests/testUtils/full-data-responses/dragonair.json @@ -9817,7 +9817,6 @@ "maximumHatchTime": 10536, "minimumHatchTime": 10280, "num": 148, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-sv/dragonair", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/dragonair.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/dragonair.gif", @@ -19693,7 +19692,6 @@ "maximumHatchTime": 10536, "minimumHatchTime": 10280, "num": 149, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-sv/dragonite", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/dragonite.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/dragonite.gif", @@ -19776,6 +19774,7 @@ "preevolutions": null } ], + "otherFormes": null, "preevolutions": [ { "abilities": { @@ -29594,7 +29593,6 @@ "maximumHatchTime": 10536, "minimumHatchTime": 10280, "num": 147, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-sv/dratini", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/dratini.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/dratini.gif", diff --git a/tests/testUtils/full-data-responses/eevee.json b/tests/testUtils/full-data-responses/eevee.json index 3eaef30e5c..23eeec179e 100644 --- a/tests/testUtils/full-data-responses/eevee.json +++ b/tests/testUtils/full-data-responses/eevee.json @@ -9973,7 +9973,6 @@ "maximumHatchTime": 9251, "minimumHatchTime": 8995, "num": 133, - "otherFormes": ["eeveestarter", "eeveegmax"], "serebiiPage": "https://www.serebii.net/pokedex-sv/eevee", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/eevee.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/eevee.gif", @@ -20015,7 +20014,6 @@ "maximumHatchTime": 9251, "minimumHatchTime": 8995, "num": 134, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-sv/vaporeon", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/vaporeon.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/vaporeon.gif", @@ -30023,7 +30021,6 @@ "maximumHatchTime": 9251, "minimumHatchTime": 8995, "num": 135, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-sv/jolteon", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/jolteon.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/jolteon.gif", @@ -40049,7 +40046,6 @@ "maximumHatchTime": 9251, "minimumHatchTime": 8995, "num": 136, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-sv/flareon", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/flareon.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/flareon.gif", @@ -50057,7 +50053,6 @@ "maximumHatchTime": 9251, "minimumHatchTime": 8995, "num": 196, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-sv/espeon", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/espeon.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/espeon.gif", @@ -60093,7 +60088,6 @@ "maximumHatchTime": 9251, "minimumHatchTime": 8995, "num": 197, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-sv/umbreon", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/umbreon.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/umbreon.gif", @@ -70118,7 +70112,6 @@ "maximumHatchTime": 9251, "minimumHatchTime": 8995, "num": 470, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-sv/leafeon", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/leafeon.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/leafeon.gif", @@ -80126,7 +80119,6 @@ "maximumHatchTime": 9251, "minimumHatchTime": 8995, "num": 471, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-sv/glaceon", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/glaceon.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/glaceon.gif", @@ -90151,7 +90143,6 @@ "maximumHatchTime": 9251, "minimumHatchTime": 8995, "num": 700, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-sv/sylveon", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/sylveon.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/sylveon.gif", @@ -90197,6 +90188,20114 @@ "preevolutions": null } ], + "otherFormes": [ + { + "abilities": { + "first": { + "name": "Run Away", + "key": "runaway", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Run_Away_(Ability)", + "desc": null, + "isFieldAbility": null, + "serebiiPage": "https://www.serebii.net/abilitydex/run_away.shtml", + "shortDesc": "No competitive use.", + "smogonPage": "https://www.smogon.com/dex/ss/abilities/run_away", + "pokemonThatHaveThisAbility": [] + }, + "second": { + "name": "Adaptability", + "key": "adaptability", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Adaptability_(Ability)", + "desc": "This Pokémon's moves that match one of its types have a same-type attack bonus (STAB) of 2 instead of 1.5.", + "isFieldAbility": null, + "serebiiPage": "https://www.serebii.net/abilitydex/adaptability.shtml", + "shortDesc": "This Pokémon's same-type attack bonus (STAB) is 2 instead of 1.5.", + "smogonPage": "https://www.smogon.com/dex/ss/abilities/adaptability", + "pokemonThatHaveThisAbility": [] + }, + "hidden": { + "name": "Anticipation", + "key": "anticipation", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Anticipation_(Ability)", + "desc": "On switch-in, this Pokémon is alerted if any opposing Pokémon has an attack that is super effective against this Pokémon, or an OHKO move. This effect considers any move that deals direct damage as an attacking move of its respective type, Hidden Power counts as its determined type, and Judgment, Multi-Attack, Natural Gift, Revelation Dance, Techno Blast, and Weather Ball are considered Normal-type moves.", + "isFieldAbility": null, + "serebiiPage": "https://www.serebii.net/abilitydex/anticipation.shtml", + "shortDesc": "On switch-in, this Pokémon shudders if any foe has a supereffective or OHKO move.", + "smogonPage": "https://www.smogon.com/dex/ss/abilities/anticipation", + "pokemonThatHaveThisAbility": [] + }, + "special": null + }, + "learnsets": { + "generation3": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 3, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "tickle", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tickle_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack and Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tickle", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tickle.shtml", + "shortDesc": "Lowers the target's Attack and Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "wish", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wish_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "At the end of the next turn, the Pokémon at the user's position has 1/2 of the user's maximum HP restored to it, rounded down. Fails if this move is already in effect for the user's position.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Wish", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wish.shtml", + "shortDesc": "Next turn, 50% of the user's max HP is restored.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "eventMoves": [], + "tmMoves": [ + { + "generation": 3, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 3, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 3, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 3, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "secretpower", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Secret_Power_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 30% chance to cause a secondary effect on the target based on the battle terrain. Causes paralysis on the regular Wi-Fi terrain, causes paralysis during Electric Terrain, lowers Special Attack by 1 stage during Misty Terrain, causes sleep during Grassy Terrain and lowers Speed by 1 stage during Psychic Terrain.", + "isFieldMove": "The Pokémon can clear an entrance into a big tree, a bush or an indent in a wall in order to create a Secret Base in Generation III's Ruby, Sapphire and Emerald and Generation VI's Omega Ruby and Alpha Sapphire. It is taught to Pokémon using TM43 in Generations III and IV, and TM94 in Generation VI.", + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Secret Power", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/secretpower.shtml", + "shortDesc": "Effect varies with terrain. (30% paralysis chance)", + "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 3, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 3, + "move": { + "key": "bodyslam", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Body_Slam_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to paralyze the target. Damage doubles and no accuracy check is done if the target has used Minimize while active.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Body Slam", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bodyslam.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 3, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "mimic", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mimic_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "While the user remains active, this move is replaced by the last move used by the target. The copied move has the maximum PP for that move. Fails if the target has not made a move, if the user has Transformed, if the user already knows the move, or if the move is Assist, Behemoth Bash, Behemoth Blade, Belch, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Sketch, Sleep Talk, Struggle, Transform, or Wicked Torque.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Mimic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mimic.shtml", + "shortDesc": "The last move the target used replaces this one.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 3, + "level": 36, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 30, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 3, + "level": 16, + "move": { + "key": "growl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Growl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Growl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/growl.shtml", + "shortDesc": "Lowers the foe(s) Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 1, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 23, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 3, + "level": 8, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 3, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 42, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + } + ] + }, + "generation4": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 4, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "detect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Detect_(move)", + "category": "Status", + "contestType": "Cool", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Detect", + "pp": 5, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/detect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", + "target": "Self", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "faketears", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fake_Tears_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Fake Tears", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/faketears.shtml", + "shortDesc": "Lowers the target's Sp. Def by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "tickle", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tickle_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack and Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tickle", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tickle.shtml", + "shortDesc": "Lowers the target's Attack and Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "wish", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wish_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "At the end of the next turn, the Pokémon at the user's position has 1/2 of the user's maximum HP restored to it, rounded down. Fails if this move is already in effect for the user's position.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Wish", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wish.shtml", + "shortDesc": "Next turn, 50% of the user's max HP is restored.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "yawn", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Yawn_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to fall asleep at the end of the next turn. Fails when used if the target cannot fall asleep or if it already has a non-volatile status condition. At the end of the next turn, if the target is still active, does not have a non-volatile status condition, and can fall asleep, it falls asleep. If the target becomes affected, this effect cannot be prevented by Safeguard or a substitute, or by falling asleep and waking up during the effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Yawn", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/yawn.shtml", + "shortDesc": "Puts the target to sleep after 1 turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "eventMoves": [ + { + "generation": 4, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 4, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "trumpcard", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Trump_Card_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "The power of this move is based on the amount of PP remaining after normal PP reduction and the Pressure Ability resolve. 200 power for 0 PP, 80 power for 1 PP, 60 power for 2 PP, 50 power for 3 PP, and 40 power for 4 or more PP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Trump Card", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/trumpcard.shtml", + "shortDesc": "More power the fewer PP this move has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "tmMoves": [ + { + "generation": 4, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "captivate", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Captivate_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 2 stages. The target is unaffected if both the user and the target are the same gender, or if either is genderless. Pokémon with the Oblivious Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Captivate", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/captivate.shtml", + "shortDesc": "Lowers the foe(s) Sp. Atk by 2 if opposite gender.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 4, + "move": { + "key": "naturalgift", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Natural_Gift_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "The type and power of this move depend on the user's held Berry, and the Berry is lost. Fails if the user is not holding a Berry, if the user has the Klutz Ability, or if Embargo or Magic Room is in effect for the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Natural Gift", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/naturalgift.shtml", + "shortDesc": "Power and type depends on the user's Berry.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "secretpower", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Secret_Power_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 30% chance to cause a secondary effect on the target based on the battle terrain. Causes paralysis on the regular Wi-Fi terrain, causes paralysis during Electric Terrain, lowers Special Attack by 1 stage during Misty Terrain, causes sleep during Grassy Terrain and lowers Speed by 1 stage during Psychic Terrain.", + "isFieldMove": "The Pokémon can clear an entrance into a big tree, a bush or an indent in a wall in order to create a Secret Base in Generation III's Ruby, Sapphire and Emerald and Generation VI's Omega Ruby and Alpha Sapphire. It is taught to Pokémon using TM43 in Generations III and IV, and TM94 in Generation VI.", + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Secret Power", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/secretpower.shtml", + "shortDesc": "Effect varies with terrain. (30% paralysis chance)", + "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 4, + "move": { + "key": "headbutt", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Headbutt_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": "The Pokémon can shake a small tree which may cause a wild Pokémon to fall down. It can be taught to a Pokémon by using TM02 in Generation II. Though available as a level up move in Generation I and future generations, it only had status as a field move in Generation II and Generation IV's HeartGold and SoulSilver.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/headbutt.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "healbell", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Heal_Bell_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "Every Pokémon in the user's party is cured of its non-volatile status condition. Active Pokémon with the Soundproof Ability are not cured, unless they are the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Heal Bell", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/healbell.shtml", + "shortDesc": "Cures the user's party of all status conditions.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", + "target": "Ally's Side", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 4, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 4, + "level": 36, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 29, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 4, + "level": 15, + "move": { + "key": "growl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Growl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Growl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/growl.shtml", + "shortDesc": "Lowers the foe(s) Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 1, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 50, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 4, + "level": 22, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "level": 8, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 43, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 4, + "level": 57, + "move": { + "key": "trumpcard", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Trump_Card_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "The power of this move is based on the amount of PP remaining after normal PP reduction and the Pressure Ability resolve. 200 power for 0 PP, 80 power for 1 PP, 60 power for 2 PP, 50 power for 3 PP, and 40 power for 4 or more PP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Trump Card", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/trumpcard.shtml", + "shortDesc": "More power the fewer PP this move has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation5": { + "dreamworldMoves": [ + { + "generation": 5, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + } + ], + "eggMoves": [ + { + "generation": 5, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "detect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Detect_(move)", + "category": "Status", + "contestType": "Cool", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Detect", + "pp": 5, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/detect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", + "target": "Self", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "faketears", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fake_Tears_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Fake Tears", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/faketears.shtml", + "shortDesc": "Lowers the target's Sp. Def by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "naturalgift", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Natural_Gift_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "The type and power of this move depend on the user's held Berry, and the Berry is lost. Fails if the user is not holding a Berry, if the user has the Klutz Ability, or if Embargo or Magic Room is in effect for the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Natural Gift", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/naturalgift.shtml", + "shortDesc": "Power and type depends on the user's Berry.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "storedpower", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stored_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Power is equal to 20+(X*20), where X is the user's total stat stage changes that are greater than 0.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Stored Power", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/storedpower.shtml", + "shortDesc": " + 20 power for each of the user's stat boosts.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", + "target": "Normal", + "type": "Psychic", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "synchronoise", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Synchronoise_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "The target is immune if it does not share a type with the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Synchronoise", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/synchronoise.shtml", + "shortDesc": "Hits adjacent Pokémon sharing the user's type.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", + "target": "All Adjacent", + "type": "Psychic", + "zMovePower": 190 + } + }, + { + "generation": 5, + "move": { + "key": "tickle", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tickle_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack and Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tickle", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tickle.shtml", + "shortDesc": "Lowers the target's Attack and Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "wish", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wish_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "At the end of the next turn, the Pokémon at the user's position has 1/2 of the user's maximum HP restored to it, rounded down. Fails if this move is already in effect for the user's position.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Wish", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wish.shtml", + "shortDesc": "Next turn, 50% of the user's max HP is restored.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "yawn", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Yawn_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to fall asleep at the end of the next turn. Fails when used if the target cannot fall asleep or if it already has a non-volatile status condition. At the end of the next turn, if the target is still active, does not have a non-volatile status condition, and can fall asleep, it falls asleep. If the target becomes affected, this effect cannot be prevented by Safeguard or a substitute, or by falling asleep and waking up during the effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Yawn", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/yawn.shtml", + "shortDesc": "Puts the target to sleep after 1 turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "eventMoves": [ + { + "generation": 5, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "echoedvoice", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Echoed_Voice_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "For every consecutive turn that this move is used by at least one Pokémon, this move's power is multiplied by the number of turns to pass, but not more than 5.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Echoed Voice", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/echoedvoice.shtml", + "shortDesc": "Power increases when used on consecutive turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "sing", + "accuracy": 55, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sing_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to fall asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sing", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sing.shtml", + "shortDesc": "Causes the target to fall asleep.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sing", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "tmMoves": [ + { + "generation": 5, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "echoedvoice", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Echoed_Voice_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "For every consecutive turn that this move is used by at least one Pokémon, this move's power is multiplied by the number of turns to pass, but not more than 5.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Echoed Voice", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/echoedvoice.shtml", + "shortDesc": "Power increases when used on consecutive turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 5, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "retaliate", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Retaliate_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Power doubles if one of the user's party members fainted last turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 20, + "name": "Retaliate", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/retaliate.shtml", + "shortDesc": "Power doubles if an ally fainted last turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 5, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "round", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Round_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "If there are other active Pokémon that chose this move for use this turn, those Pokémon take their turn immediately after the user, in Speed order, and this move's power is 120 for each other user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Round", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/round.shtml", + "shortDesc": "Power doubles if others used Round this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/round", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "workup", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Work_Up_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Raises the user's Attack and Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Work Up", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/workup.shtml", + "shortDesc": "Raises the user's Attack and Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 5, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "healbell", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Heal_Bell_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "Every Pokémon in the user's party is cured of its non-volatile status condition. Active Pokémon with the Soundproof Ability are not cured, unless they are the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Heal Bell", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/healbell.shtml", + "shortDesc": "Cures the user's party of all status conditions.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", + "target": "Ally's Side", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "hypervoice", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Voice_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Voice", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hypervoice.shtml", + "shortDesc": "No additional effect. Hits adjacent foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 5, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 5, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 5, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 5, + "level": 36, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 29, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 5, + "level": 29, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 21, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "level": 37, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 5, + "level": 15, + "move": { + "key": "growl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Growl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Growl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/growl.shtml", + "shortDesc": "Lowers the foe(s) Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 1, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 50, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 5, + "level": 22, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "level": 8, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 43, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 5, + "level": 57, + "move": { + "key": "trumpcard", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Trump_Card_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "The power of this move is based on the amount of PP remaining after normal PP reduction and the Pressure Ability resolve. 200 power for 0 PP, 80 power for 1 PP, 60 power for 2 PP, 50 power for 3 PP, and 40 power for 4 or more PP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Trump Card", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/trumpcard.shtml", + "shortDesc": "More power the fewer PP this move has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation6": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 6, + "move": { + "key": "captivate", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Captivate_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 2 stages. The target is unaffected if both the user and the target are the same gender, or if either is genderless. Pokémon with the Oblivious Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Captivate", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/captivate.shtml", + "shortDesc": "Lowers the foe(s) Sp. Atk by 2 if opposite gender.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "detect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Detect_(move)", + "category": "Status", + "contestType": "Cool", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Detect", + "pp": 5, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/detect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", + "target": "Self", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "faketears", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fake_Tears_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Fake Tears", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/faketears.shtml", + "shortDesc": "Lowers the target's Sp. Def by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "naturalgift", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Natural_Gift_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "The type and power of this move depend on the user's held Berry, and the Berry is lost. Fails if the user is not holding a Berry, if the user has the Klutz Ability, or if Embargo or Magic Room is in effect for the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Natural Gift", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/naturalgift.shtml", + "shortDesc": "Power and type depends on the user's Berry.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "storedpower", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stored_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Power is equal to 20+(X*20), where X is the user's total stat stage changes that are greater than 0.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Stored Power", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/storedpower.shtml", + "shortDesc": " + 20 power for each of the user's stat boosts.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", + "target": "Normal", + "type": "Psychic", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "synchronoise", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Synchronoise_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "The target is immune if it does not share a type with the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Synchronoise", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/synchronoise.shtml", + "shortDesc": "Hits adjacent Pokémon sharing the user's type.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", + "target": "All Adjacent", + "type": "Psychic", + "zMovePower": 190 + } + }, + { + "generation": 6, + "move": { + "key": "tickle", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tickle_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack and Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tickle", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tickle.shtml", + "shortDesc": "Lowers the target's Attack and Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "wish", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wish_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "At the end of the next turn, the Pokémon at the user's position has 1/2 of the user's maximum HP restored to it, rounded down. Fails if this move is already in effect for the user's position.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Wish", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wish.shtml", + "shortDesc": "Next turn, 50% of the user's max HP is restored.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "yawn", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Yawn_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to fall asleep at the end of the next turn. Fails when used if the target cannot fall asleep or if it already has a non-volatile status condition. At the end of the next turn, if the target is still active, does not have a non-volatile status condition, and can fall asleep, it falls asleep. If the target becomes affected, this effect cannot be prevented by Safeguard or a substitute, or by falling asleep and waking up during the effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Yawn", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/yawn.shtml", + "shortDesc": "Puts the target to sleep after 1 turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "eventMoves": [ + { + "generation": 6, + "move": { + "key": "babydolleyes", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baby-doll_Eyes_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baby-Doll Eyes", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/babydolleyes.shtml", + "shortDesc": "Lowers the target's Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "babydolleyes", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baby-doll_Eyes_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baby-Doll Eyes", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/babydolleyes.shtml", + "shortDesc": "Lowers the target's Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "celebrate", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Celebrate_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "It is your birthday.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Celebrate", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/celebrate.shtml", + "shortDesc": "No competitive use.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + } + ], + "tmMoves": [ + { + "generation": 6, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "confide", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Confide_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Confide", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/confide.shtml", + "shortDesc": "Lowers the target's Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "echoedvoice", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Echoed_Voice_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "For every consecutive turn that this move is used by at least one Pokémon, this move's power is multiplied by the number of turns to pass, but not more than 5.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Echoed Voice", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/echoedvoice.shtml", + "shortDesc": "Power increases when used on consecutive turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "retaliate", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Retaliate_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Power doubles if one of the user's party members fainted last turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 20, + "name": "Retaliate", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/retaliate.shtml", + "shortDesc": "Power doubles if an ally fainted last turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "round", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Round_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "If there are other active Pokémon that chose this move for use this turn, those Pokémon take their turn immediately after the user, in Speed order, and this move's power is 120 for each other user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Round", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/round.shtml", + "shortDesc": "Power doubles if others used Round this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/round", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "secretpower", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Secret_Power_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 30% chance to cause a secondary effect on the target based on the battle terrain. Causes paralysis on the regular Wi-Fi terrain, causes paralysis during Electric Terrain, lowers Special Attack by 1 stage during Misty Terrain, causes sleep during Grassy Terrain and lowers Speed by 1 stage during Psychic Terrain.", + "isFieldMove": "The Pokémon can clear an entrance into a big tree, a bush or an indent in a wall in order to create a Secret Base in Generation III's Ruby, Sapphire and Emerald and Generation VI's Omega Ruby and Alpha Sapphire. It is taught to Pokémon using TM43 in Generations III and IV, and TM94 in Generation VI.", + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Secret Power", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/secretpower.shtml", + "shortDesc": "Effect varies with terrain. (30% paralysis chance)", + "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 6, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "healbell", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Heal_Bell_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "Every Pokémon in the user's party is cured of its non-volatile status condition. Active Pokémon with the Soundproof Ability are not cured, unless they are the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Heal Bell", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/healbell.shtml", + "shortDesc": "Cures the user's party of all status conditions.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", + "target": "Ally's Side", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "hypervoice", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Voice_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Voice", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hypervoice.shtml", + "shortDesc": "No additional effect. Hits adjacent foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 6, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 6, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 6, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 6, + "level": 9, + "move": { + "key": "babydolleyes", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baby-doll_Eyes_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baby-Doll Eyes", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/babydolleyes.shtml", + "shortDesc": "Lowers the target's Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 33, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 17, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 6, + "level": 29, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 23, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "level": 37, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "growl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Growl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Growl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/growl.shtml", + "shortDesc": "Lowers the foe(s) Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 41, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 6, + "level": 13, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "level": 20, + "move": { + "key": "refresh", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Refresh_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user cures its burn, poison, or paralysis. Fails if the user is not burned, poisoned, or paralyzed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Refresh", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/refresh.shtml", + "shortDesc": "User cures its burn, poison, or paralysis.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 5, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 10, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 25, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 6, + "level": 45, + "move": { + "key": "trumpcard", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Trump_Card_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "The power of this move is based on the amount of PP remaining after normal PP reduction and the Pressure Ability resolve. 200 power for 0 PP, 80 power for 1 PP, 60 power for 2 PP, 50 power for 3 PP, and 40 power for 4 or more PP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Trump Card", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/trumpcard.shtml", + "shortDesc": "More power the fewer PP this move has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation7": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 7, + "move": { + "key": "captivate", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Captivate_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 2 stages. The target is unaffected if both the user and the target are the same gender, or if either is genderless. Pokémon with the Oblivious Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Captivate", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/captivate.shtml", + "shortDesc": "Lowers the foe(s) Sp. Atk by 2 if opposite gender.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "detect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Detect_(move)", + "category": "Status", + "contestType": "Cool", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Detect", + "pp": 5, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/detect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", + "target": "Self", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "faketears", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fake_Tears_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Fake Tears", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/faketears.shtml", + "shortDesc": "Lowers the target's Sp. Def by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "naturalgift", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Natural_Gift_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "The type and power of this move depend on the user's held Berry, and the Berry is lost. Fails if the user is not holding a Berry, if the user has the Klutz Ability, or if Embargo or Magic Room is in effect for the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Natural Gift", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/naturalgift.shtml", + "shortDesc": "Power and type depends on the user's Berry.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "storedpower", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stored_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Power is equal to 20+(X*20), where X is the user's total stat stage changes that are greater than 0.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Stored Power", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/storedpower.shtml", + "shortDesc": " + 20 power for each of the user's stat boosts.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", + "target": "Normal", + "type": "Psychic", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "synchronoise", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Synchronoise_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "The target is immune if it does not share a type with the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Synchronoise", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/synchronoise.shtml", + "shortDesc": "Hits adjacent Pokémon sharing the user's type.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", + "target": "All Adjacent", + "type": "Psychic", + "zMovePower": 190 + } + }, + { + "generation": 7, + "move": { + "key": "tickle", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tickle_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack and Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tickle", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tickle.shtml", + "shortDesc": "Lowers the target's Attack and Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "wish", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wish_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "At the end of the next turn, the Pokémon at the user's position has 1/2 of the user's maximum HP restored to it, rounded down. Fails if this move is already in effect for the user's position.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Wish", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wish.shtml", + "shortDesc": "Next turn, 50% of the user's max HP is restored.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "yawn", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Yawn_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to fall asleep at the end of the next turn. Fails when used if the target cannot fall asleep or if it already has a non-volatile status condition. At the end of the next turn, if the target is still active, does not have a non-volatile status condition, and can fall asleep, it falls asleep. If the target becomes affected, this effect cannot be prevented by Safeguard or a substitute, or by falling asleep and waking up during the effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Yawn", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/yawn.shtml", + "shortDesc": "Puts the target to sleep after 1 turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "eventMoves": [ + { + "generation": 7, + "move": { + "key": "babydolleyes", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baby-doll_Eyes_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baby-Doll Eyes", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/babydolleyes.shtml", + "shortDesc": "Lowers the target's Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "celebrate", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Celebrate_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "It is your birthday.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Celebrate", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/celebrate.shtml", + "shortDesc": "No competitive use.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + } + ], + "tmMoves": [ + { + "generation": 7, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "confide", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Confide_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Confide", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/confide.shtml", + "shortDesc": "Lowers the target's Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "echoedvoice", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Echoed_Voice_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "For every consecutive turn that this move is used by at least one Pokémon, this move's power is multiplied by the number of turns to pass, but not more than 5.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Echoed Voice", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/echoedvoice.shtml", + "shortDesc": "Power increases when used on consecutive turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 7, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "round", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Round_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "If there are other active Pokémon that chose this move for use this turn, those Pokémon take their turn immediately after the user, in Speed order, and this move's power is 120 for each other user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Round", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/round.shtml", + "shortDesc": "Power doubles if others used Round this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/round", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "workup", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Work_Up_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Raises the user's Attack and Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Work Up", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/workup.shtml", + "shortDesc": "Raises the user's Attack and Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 7, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "healbell", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Heal_Bell_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "Every Pokémon in the user's party is cured of its non-volatile status condition. Active Pokémon with the Soundproof Ability are not cured, unless they are the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Heal Bell", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/healbell.shtml", + "shortDesc": "Cures the user's party of all status conditions.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", + "target": "Ally's Side", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "hypervoice", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Voice_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Voice", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hypervoice.shtml", + "shortDesc": "No additional effect. Hits adjacent foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 7, + "move": { + "key": "laserfocus", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Laser_Focus_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Until the end of the next turn, the user's attacks will be critical hits.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Laser Focus", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/laserfocus.shtml", + "shortDesc": "Until the end of the next turn, user's moves crit.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/laser-focus", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 7, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + } + ], + "virtualTransferMoves": [ + { + "generation": 7, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "bide", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bide_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "The user spends two turns locked into this move and then, on the second turn after using this move, the user attacks the last Pokémon that hit it, inflicting double the damage in HP it lost to attacks during the two turns. If the last Pokémon that hit it is no longer active, the user attacks a random opposing Pokémon instead. If the user is prevented from moving during this move's use, the effect ends. This move does not check accuracy and does not ignore type immunity.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Bide", + "pp": 10, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bide.shtml", + "shortDesc": "Waits 2 turns; deals double the damage taken.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "bodyslam", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Body_Slam_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to paralyze the target. Damage doubles and no accuracy check is done if the target has used Minimize while active.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Body Slam", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bodyslam.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "detect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Detect_(move)", + "category": "Status", + "contestType": "Cool", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Detect", + "pp": 5, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/detect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", + "target": "Self", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 7, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "growl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Growl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Growl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/growl.shtml", + "shortDesc": "Lowers the foe(s) Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "headbutt", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Headbutt_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": "The Pokémon can shake a small tree which may cause a wild Pokémon to fall down. It can be taught to a Pokémon by using TM02 in Generation II. Though available as a level up move in Generation I and future generations, it only had status as a field move in Generation II and Generation IV's HeartGold and SoulSilver.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/headbutt.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 7, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 7, + "move": { + "key": "mimic", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mimic_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "While the user remains active, this move is replaced by the last move used by the target. The copied move has the maximum PP for that move. Fails if the target has not made a move, if the user has Transformed, if the user already knows the move, or if the move is Assist, Behemoth Bash, Behemoth Blade, Belch, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Sketch, Sleep Talk, Struggle, Transform, or Wicked Torque.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Mimic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mimic.shtml", + "shortDesc": "The last move the target used replaces this one.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "rage", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rage_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Once this move is successfully used, the user's Attack is raised by 1 stage every time it is hit by another Pokémon's attack as long as this move is chosen for use.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Rage", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rage.shtml", + "shortDesc": "Raises the user's Attack by 1 if hit during use.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "reflect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Reflect_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "For 5 turns, the user and its party members take 0.5x damage from physical attacks, or 0.66x damage if in a Double Battle. Damage is not reduced further with Aurora Veil. Critical hits ignore this effect. It is removed from the user's side if the user or an ally is successfully hit by Brick Break, Psychic Fangs, or Defog. Lasts for 8 turns if the user is holding Light Clay. Fails if the effect is already active on the user's side.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Reflect", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/reflect.shtml", + "shortDesc": "For 5 turns, physical damage to allies is halved.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", + "target": "Ally's Side", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "skullbash", + "accuracy": 100, + "basePower": "130", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Skull_Bash_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. Raises the user's Defense by 1 stage on the first turn. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 140, + "name": "Skull Bash", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/skullbash.shtml", + "shortDesc": "Raises user's Defense by 1 on turn 1. Hits turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", + "target": "Normal", + "type": "Normal", + "zMovePower": 195 + } + }, + { + "generation": 7, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + } + ], + "levelUpMoves": [ + { + "generation": 7, + "level": 9, + "move": { + "key": "babydolleyes", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baby-doll_Eyes_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baby-Doll Eyes", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/babydolleyes.shtml", + "shortDesc": "Lowers the target's Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 33, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 17, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 29, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 37, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "growl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Growl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Growl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/growl.shtml", + "shortDesc": "Lowers the foe(s) Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 41, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 7, + "level": 13, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "level": 20, + "move": { + "key": "refresh", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Refresh_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user cures its burn, poison, or paralysis. Fails if the user is not burned, poisoned, or paralyzed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Refresh", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/refresh.shtml", + "shortDesc": "User cures its burn, poison, or paralysis.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 5, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 17, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 25, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 7, + "level": 45, + "move": { + "key": "trumpcard", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Trump_Card_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "The power of this move is based on the amount of PP remaining after normal PP reduction and the Pressure Ability resolve. 200 power for 0 PP, 80 power for 1 PP, 60 power for 2 PP, 50 power for 3 PP, and 40 power for 4 or more PP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Trump Card", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/trumpcard.shtml", + "shortDesc": "More power the fewer PP this move has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation8": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 9, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "detect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Detect_(move)", + "category": "Status", + "contestType": "Cool", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Detect", + "pp": 5, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/detect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", + "target": "Self", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "doublekick", + "accuracy": 100, + "basePower": "30", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Kick_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Hits twice. If the first hit breaks the target's substitute, it will take damage for the second hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 80, + "name": "Double Kick", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doublekick.shtml", + "shortDesc": "Hits 2 times in one turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-kick", + "target": "Normal", + "type": "Fighting", + "zMovePower": 100 + } + }, + { + "generation": 9, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 9, + "move": { + "key": "tickle", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tickle_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack and Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tickle", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tickle.shtml", + "shortDesc": "Lowers the target's Attack and Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "wish", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wish_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "At the end of the next turn, the Pokémon at the user's position has 1/2 of the user's maximum HP restored to it, rounded down. Fails if this move is already in effect for the user's position.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Wish", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wish.shtml", + "shortDesc": "Next turn, 50% of the user's max HP is restored.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "yawn", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Yawn_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to fall asleep at the end of the next turn. Fails when used if the target cannot fall asleep or if it already has a non-volatile status condition. At the end of the next turn, if the target is still active, does not have a non-volatile status condition, and can fall asleep, it falls asleep. If the target becomes affected, this effect cannot be prevented by Safeguard or a substitute, or by falling asleep and waking up during the effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Yawn", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/yawn.shtml", + "shortDesc": "Puts the target to sleep after 1 turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "eventMoves": [], + "tmMoves": [ + { + "generation": 9, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "bodyslam", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Body_Slam_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to paralyze the target. Damage doubles and no accuracy check is done if the target has used Minimize while active.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Body Slam", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bodyslam.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "calmmind", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Calm_Mind_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Raises the user's Special Attack and Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Calm Mind", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/calmmind.shtml", + "shortDesc": "Raises the user's Sp. Atk and Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/calm-mind", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 9, + "move": { + "key": "faketears", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fake_Tears_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Fake Tears", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/faketears.shtml", + "shortDesc": "Lowers the target's Sp. Def by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "hypervoice", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Voice_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Voice", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hypervoice.shtml", + "shortDesc": "No additional effect. Hits adjacent foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 9, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 9, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "roar", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Roar_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "The target is forced to switch out and be replaced with a random unfainted ally. Fails if the target is the last unfainted Pokémon in its party, or if the target used Ingrain previously or has the Suction Cups Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Roar", + "pp": 20, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/roar.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "storedpower", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stored_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Power is equal to 20+(X*20), where X is the user's total stat stage changes that are greater than 0.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Stored Power", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/storedpower.shtml", + "shortDesc": " + 20 power for each of the user's stat boosts.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", + "target": "Normal", + "type": "Psychic", + "zMovePower": 100 + } + }, + { + "generation": 9, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 9, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 9, + "move": { + "key": "terablast", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tera_Blast_(move)", + "category": "Special", + "contestType": null, + "desc": "If the user is Terastallized, this move becomes a physical attack if the user's Attack is greater than its Special Attack, including stat stage changes, and this move's type becomes the same as the user's Tera Type.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tera Blast", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/terablast.shtml", + "shortDesc": "If Terastallized: Phys. if Atk > SpA, type = Tera.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "trailblaze", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Trailblaze_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 100% chance to raise the user's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Trailblaze", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/trailblaze.shtml", + "shortDesc": "100% chance to raise the user's Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/trailblaze", + "target": "Normal", + "type": "Grass", + "zMovePower": 100 + } + }, + { + "generation": 9, + "move": { + "key": "weatherball", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Weather_Ball_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Power doubles if a weather condition other than Delta Stream is active, and this move's type changes to match. Ice type during Snow, Water type during Primordial Sea or Rain Dance, Rock type during Sandstorm, and Fire type during Desolate Land or Sunny Day. If the user is holding Utility Umbrella and uses Weather Ball during Primordial Sea, Rain Dance, Desolate Land, or Sunny Day, this move remains Normal type and does not double in power.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Weather Ball", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/weatherball.shtml", + "shortDesc": "Power doubles and type varies in each weather.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/weather-ball", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + } + ], + "tutorMoves": [], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 9, + "level": 15, + "move": { + "key": "babydolleyes", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baby-doll_Eyes_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baby-Doll Eyes", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/babydolleyes.shtml", + "shortDesc": "Lowers the target's Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 35, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 25, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 9, + "level": 45, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 30, + "move": { + "key": "copycat", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Copycat_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user uses the last move used by any Pokémon, including itself. Fails if no move has been used, or if the last move used was Assist, Baneful Bunker, Beak Blast, Behemoth Bash, Behemoth Blade, Belch, Bestow, Blazing Torque, Celebrate, Chatter, Circle Throw, Combat Torque, Copycat, Counter, Covet, Destiny Bond, Detect, Dragon Tail, Dynamax Cannon, Endure, Feint, Focus Punch, Follow Me, Helping Hand, Hold Hands, King's Shield, Magical Torque, Mat Block, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Protect, Rage Powder, Roar, Shell Trap, Sketch, Sleep Talk, Snatch, Spiky Shield, Spotlight, Struggle, Switcheroo, Thief, Transform, Trick, Whirlwind, or Wicked Torque.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Copycat", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/copycat.shtml", + "shortDesc": "Uses the last move used in the battle.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/copycat", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 9, + "level": 50, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "growl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Growl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Growl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/growl.shtml", + "shortDesc": "Lowers the foe(s) Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 55, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 9, + "level": 10, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 9, + "level": 5, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 20, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 40, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + } + ] + } + }, + "key": "eeveestarter", + "eggGroups": ["Undiscovered"], + "evYields": { "hp": 0, "attack": 0, "defense": 0, "specialattack": 0, "specialdefense": 1, "speed": 0 }, + "evolutionLevel": null, + "flavorTexts": [ + { + "flavor": "It can evolve into a variety of forms. Eevee's genes are the key to solving the mysteries of Pokémon evolution.", + "game": "Let's Go" + } + ], + "forme": "Starter", + "formeLetter": "S", + "gender": { "female": "12.5%", "male": "87.5%" }, + "height": 0.3, + "isEggObtainable": true, + "backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/eevee-starter.gif", + "levellingRate": "Medium Fast", + "maximumHatchTime": 9251, + "minimumHatchTime": 8995, + "num": 133, + "serebiiPage": "https://www.serebii.net/pokedex-sv/eevee", + "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/eevee-starter.gif", + "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/eevee-starter.gif", + "smogonPage": "https://www.smogon.com/dex/sv/pokemon/eevee-starter", + "baseForme": null, + "smogonTier": "LGPE", + "species": "eevee-starter", + "sprite": "https://play.pokemonshowdown.com/sprites/ani/eevee-starter.gif", + "types": [ + { + "name": "Normal", + "matchup": { + "attacking": { + "doubleEffectiveTypes": [], + "doubleResistedTypes": [], + "effectiveTypes": [], + "effectlessTypes": ["ghost"], + "normalTypes": [ + "bug", + "dark", + "dragon", + "electric", + "fairy", + "fighting", + "fire", + "flying", + "grass", + "ground", + "ice", + "normal", + "poison", + "psychic", + "water" + ], + "resistedTypes": ["rock", "steel"] + }, + "defending": { + "doubleEffectiveTypes": [], + "doubleResistedTypes": [], + "effectiveTypes": ["fighting"], + "effectlessTypes": ["ghost"], + "normalTypes": [ + "bug", + "dark", + "dragon", + "electric", + "fairy", + "fire", + "flying", + "grass", + "ground", + "ice", + "normal", + "poison", + "psychic", + "rock", + "steel", + "water" + ], + "resistedTypes": [] + } + } + } + ], + "baseSpecies": "eevee", + "baseStats": { "hp": 65, "attack": 75, "defense": 70, "specialattack": 65, "specialdefense": 85, "speed": 75 }, + "baseStatsTotal": 435, + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/eevee_(Pokémon)", + "catchRate": { "base": 45, "percentageWithOrdinaryPokeballAtFullHealth": "11.9%" }, + "color": "Brown", + "cosmeticFormes": null, + "weight": 6.5, + "legendary": false, + "mythical": false, + "evolutions": null, + "preevolutions": null + }, + { + "abilities": { + "first": { + "name": "Run Away", + "key": "runaway", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Run_Away_(Ability)", + "desc": null, + "isFieldAbility": null, + "serebiiPage": "https://www.serebii.net/abilitydex/run_away.shtml", + "shortDesc": "No competitive use.", + "smogonPage": "https://www.smogon.com/dex/ss/abilities/run_away", + "pokemonThatHaveThisAbility": [] + }, + "second": { + "name": "Adaptability", + "key": "adaptability", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Adaptability_(Ability)", + "desc": "This Pokémon's moves that match one of its types have a same-type attack bonus (STAB) of 2 instead of 1.5.", + "isFieldAbility": null, + "serebiiPage": "https://www.serebii.net/abilitydex/adaptability.shtml", + "shortDesc": "This Pokémon's same-type attack bonus (STAB) is 2 instead of 1.5.", + "smogonPage": "https://www.smogon.com/dex/ss/abilities/adaptability", + "pokemonThatHaveThisAbility": [] + }, + "hidden": { + "name": "Anticipation", + "key": "anticipation", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Anticipation_(Ability)", + "desc": "On switch-in, this Pokémon is alerted if any opposing Pokémon has an attack that is super effective against this Pokémon, or an OHKO move. This effect considers any move that deals direct damage as an attacking move of its respective type, Hidden Power counts as its determined type, and Judgment, Multi-Attack, Natural Gift, Revelation Dance, Techno Blast, and Weather Ball are considered Normal-type moves.", + "isFieldAbility": null, + "serebiiPage": "https://www.serebii.net/abilitydex/anticipation.shtml", + "shortDesc": "On switch-in, this Pokémon shudders if any foe has a supereffective or OHKO move.", + "smogonPage": "https://www.smogon.com/dex/ss/abilities/anticipation", + "pokemonThatHaveThisAbility": [] + }, + "special": null + }, + "learnsets": { + "generation3": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 3, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "tickle", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tickle_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack and Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tickle", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tickle.shtml", + "shortDesc": "Lowers the target's Attack and Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "wish", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wish_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "At the end of the next turn, the Pokémon at the user's position has 1/2 of the user's maximum HP restored to it, rounded down. Fails if this move is already in effect for the user's position.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Wish", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wish.shtml", + "shortDesc": "Next turn, 50% of the user's max HP is restored.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "eventMoves": [], + "tmMoves": [ + { + "generation": 3, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 3, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 3, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 3, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "secretpower", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Secret_Power_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 30% chance to cause a secondary effect on the target based on the battle terrain. Causes paralysis on the regular Wi-Fi terrain, causes paralysis during Electric Terrain, lowers Special Attack by 1 stage during Misty Terrain, causes sleep during Grassy Terrain and lowers Speed by 1 stage during Psychic Terrain.", + "isFieldMove": "The Pokémon can clear an entrance into a big tree, a bush or an indent in a wall in order to create a Secret Base in Generation III's Ruby, Sapphire and Emerald and Generation VI's Omega Ruby and Alpha Sapphire. It is taught to Pokémon using TM43 in Generations III and IV, and TM94 in Generation VI.", + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Secret Power", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/secretpower.shtml", + "shortDesc": "Effect varies with terrain. (30% paralysis chance)", + "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 3, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 3, + "move": { + "key": "bodyslam", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Body_Slam_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to paralyze the target. Damage doubles and no accuracy check is done if the target has used Minimize while active.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Body Slam", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bodyslam.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 3, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "mimic", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mimic_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "While the user remains active, this move is replaced by the last move used by the target. The copied move has the maximum PP for that move. Fails if the target has not made a move, if the user has Transformed, if the user already knows the move, or if the move is Assist, Behemoth Bash, Behemoth Blade, Belch, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Sketch, Sleep Talk, Struggle, Transform, or Wicked Torque.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Mimic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mimic.shtml", + "shortDesc": "The last move the target used replaces this one.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 3, + "level": 36, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 30, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 3, + "level": 16, + "move": { + "key": "growl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Growl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Growl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/growl.shtml", + "shortDesc": "Lowers the foe(s) Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 1, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 23, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 3, + "level": 8, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 3, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 42, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + } + ] + }, + "generation4": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 4, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "detect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Detect_(move)", + "category": "Status", + "contestType": "Cool", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Detect", + "pp": 5, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/detect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", + "target": "Self", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "faketears", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fake_Tears_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Fake Tears", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/faketears.shtml", + "shortDesc": "Lowers the target's Sp. Def by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "tickle", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tickle_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack and Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tickle", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tickle.shtml", + "shortDesc": "Lowers the target's Attack and Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "wish", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wish_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "At the end of the next turn, the Pokémon at the user's position has 1/2 of the user's maximum HP restored to it, rounded down. Fails if this move is already in effect for the user's position.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Wish", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wish.shtml", + "shortDesc": "Next turn, 50% of the user's max HP is restored.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "yawn", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Yawn_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to fall asleep at the end of the next turn. Fails when used if the target cannot fall asleep or if it already has a non-volatile status condition. At the end of the next turn, if the target is still active, does not have a non-volatile status condition, and can fall asleep, it falls asleep. If the target becomes affected, this effect cannot be prevented by Safeguard or a substitute, or by falling asleep and waking up during the effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Yawn", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/yawn.shtml", + "shortDesc": "Puts the target to sleep after 1 turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "eventMoves": [ + { + "generation": 4, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 4, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "trumpcard", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Trump_Card_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "The power of this move is based on the amount of PP remaining after normal PP reduction and the Pressure Ability resolve. 200 power for 0 PP, 80 power for 1 PP, 60 power for 2 PP, 50 power for 3 PP, and 40 power for 4 or more PP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Trump Card", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/trumpcard.shtml", + "shortDesc": "More power the fewer PP this move has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "tmMoves": [ + { + "generation": 4, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "captivate", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Captivate_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 2 stages. The target is unaffected if both the user and the target are the same gender, or if either is genderless. Pokémon with the Oblivious Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Captivate", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/captivate.shtml", + "shortDesc": "Lowers the foe(s) Sp. Atk by 2 if opposite gender.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 4, + "move": { + "key": "naturalgift", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Natural_Gift_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "The type and power of this move depend on the user's held Berry, and the Berry is lost. Fails if the user is not holding a Berry, if the user has the Klutz Ability, or if Embargo or Magic Room is in effect for the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Natural Gift", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/naturalgift.shtml", + "shortDesc": "Power and type depends on the user's Berry.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "secretpower", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Secret_Power_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 30% chance to cause a secondary effect on the target based on the battle terrain. Causes paralysis on the regular Wi-Fi terrain, causes paralysis during Electric Terrain, lowers Special Attack by 1 stage during Misty Terrain, causes sleep during Grassy Terrain and lowers Speed by 1 stage during Psychic Terrain.", + "isFieldMove": "The Pokémon can clear an entrance into a big tree, a bush or an indent in a wall in order to create a Secret Base in Generation III's Ruby, Sapphire and Emerald and Generation VI's Omega Ruby and Alpha Sapphire. It is taught to Pokémon using TM43 in Generations III and IV, and TM94 in Generation VI.", + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Secret Power", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/secretpower.shtml", + "shortDesc": "Effect varies with terrain. (30% paralysis chance)", + "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 4, + "move": { + "key": "headbutt", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Headbutt_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": "The Pokémon can shake a small tree which may cause a wild Pokémon to fall down. It can be taught to a Pokémon by using TM02 in Generation II. Though available as a level up move in Generation I and future generations, it only had status as a field move in Generation II and Generation IV's HeartGold and SoulSilver.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/headbutt.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "healbell", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Heal_Bell_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "Every Pokémon in the user's party is cured of its non-volatile status condition. Active Pokémon with the Soundproof Ability are not cured, unless they are the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Heal Bell", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/healbell.shtml", + "shortDesc": "Cures the user's party of all status conditions.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", + "target": "Ally's Side", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 4, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 4, + "level": 36, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 29, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 4, + "level": 15, + "move": { + "key": "growl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Growl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Growl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/growl.shtml", + "shortDesc": "Lowers the foe(s) Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 1, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 50, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 4, + "level": 22, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "level": 8, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 43, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 4, + "level": 57, + "move": { + "key": "trumpcard", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Trump_Card_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "The power of this move is based on the amount of PP remaining after normal PP reduction and the Pressure Ability resolve. 200 power for 0 PP, 80 power for 1 PP, 60 power for 2 PP, 50 power for 3 PP, and 40 power for 4 or more PP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Trump Card", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/trumpcard.shtml", + "shortDesc": "More power the fewer PP this move has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation5": { + "dreamworldMoves": [ + { + "generation": 5, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + } + ], + "eggMoves": [ + { + "generation": 5, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "detect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Detect_(move)", + "category": "Status", + "contestType": "Cool", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Detect", + "pp": 5, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/detect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", + "target": "Self", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "faketears", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fake_Tears_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Fake Tears", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/faketears.shtml", + "shortDesc": "Lowers the target's Sp. Def by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "naturalgift", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Natural_Gift_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "The type and power of this move depend on the user's held Berry, and the Berry is lost. Fails if the user is not holding a Berry, if the user has the Klutz Ability, or if Embargo or Magic Room is in effect for the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Natural Gift", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/naturalgift.shtml", + "shortDesc": "Power and type depends on the user's Berry.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "storedpower", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stored_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Power is equal to 20+(X*20), where X is the user's total stat stage changes that are greater than 0.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Stored Power", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/storedpower.shtml", + "shortDesc": " + 20 power for each of the user's stat boosts.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", + "target": "Normal", + "type": "Psychic", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "synchronoise", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Synchronoise_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "The target is immune if it does not share a type with the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Synchronoise", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/synchronoise.shtml", + "shortDesc": "Hits adjacent Pokémon sharing the user's type.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", + "target": "All Adjacent", + "type": "Psychic", + "zMovePower": 190 + } + }, + { + "generation": 5, + "move": { + "key": "tickle", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tickle_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack and Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tickle", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tickle.shtml", + "shortDesc": "Lowers the target's Attack and Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "wish", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wish_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "At the end of the next turn, the Pokémon at the user's position has 1/2 of the user's maximum HP restored to it, rounded down. Fails if this move is already in effect for the user's position.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Wish", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wish.shtml", + "shortDesc": "Next turn, 50% of the user's max HP is restored.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "yawn", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Yawn_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to fall asleep at the end of the next turn. Fails when used if the target cannot fall asleep or if it already has a non-volatile status condition. At the end of the next turn, if the target is still active, does not have a non-volatile status condition, and can fall asleep, it falls asleep. If the target becomes affected, this effect cannot be prevented by Safeguard or a substitute, or by falling asleep and waking up during the effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Yawn", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/yawn.shtml", + "shortDesc": "Puts the target to sleep after 1 turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "eventMoves": [ + { + "generation": 5, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "echoedvoice", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Echoed_Voice_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "For every consecutive turn that this move is used by at least one Pokémon, this move's power is multiplied by the number of turns to pass, but not more than 5.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Echoed Voice", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/echoedvoice.shtml", + "shortDesc": "Power increases when used on consecutive turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "sing", + "accuracy": 55, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sing_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to fall asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sing", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sing.shtml", + "shortDesc": "Causes the target to fall asleep.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sing", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "tmMoves": [ + { + "generation": 5, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "echoedvoice", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Echoed_Voice_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "For every consecutive turn that this move is used by at least one Pokémon, this move's power is multiplied by the number of turns to pass, but not more than 5.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Echoed Voice", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/echoedvoice.shtml", + "shortDesc": "Power increases when used on consecutive turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 5, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "retaliate", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Retaliate_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Power doubles if one of the user's party members fainted last turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 20, + "name": "Retaliate", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/retaliate.shtml", + "shortDesc": "Power doubles if an ally fainted last turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 5, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "round", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Round_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "If there are other active Pokémon that chose this move for use this turn, those Pokémon take their turn immediately after the user, in Speed order, and this move's power is 120 for each other user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Round", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/round.shtml", + "shortDesc": "Power doubles if others used Round this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/round", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "workup", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Work_Up_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Raises the user's Attack and Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Work Up", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/workup.shtml", + "shortDesc": "Raises the user's Attack and Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 5, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "healbell", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Heal_Bell_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "Every Pokémon in the user's party is cured of its non-volatile status condition. Active Pokémon with the Soundproof Ability are not cured, unless they are the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Heal Bell", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/healbell.shtml", + "shortDesc": "Cures the user's party of all status conditions.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", + "target": "Ally's Side", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "hypervoice", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Voice_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Voice", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hypervoice.shtml", + "shortDesc": "No additional effect. Hits adjacent foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 5, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 5, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 5, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 5, + "level": 36, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 29, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 5, + "level": 29, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 21, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "level": 37, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 5, + "level": 15, + "move": { + "key": "growl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Growl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Growl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/growl.shtml", + "shortDesc": "Lowers the foe(s) Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 1, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 50, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 5, + "level": 22, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "level": 8, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 43, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 5, + "level": 57, + "move": { + "key": "trumpcard", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Trump_Card_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "The power of this move is based on the amount of PP remaining after normal PP reduction and the Pressure Ability resolve. 200 power for 0 PP, 80 power for 1 PP, 60 power for 2 PP, 50 power for 3 PP, and 40 power for 4 or more PP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Trump Card", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/trumpcard.shtml", + "shortDesc": "More power the fewer PP this move has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation6": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 6, + "move": { + "key": "captivate", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Captivate_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 2 stages. The target is unaffected if both the user and the target are the same gender, or if either is genderless. Pokémon with the Oblivious Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Captivate", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/captivate.shtml", + "shortDesc": "Lowers the foe(s) Sp. Atk by 2 if opposite gender.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "detect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Detect_(move)", + "category": "Status", + "contestType": "Cool", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Detect", + "pp": 5, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/detect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", + "target": "Self", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "faketears", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fake_Tears_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Fake Tears", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/faketears.shtml", + "shortDesc": "Lowers the target's Sp. Def by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "naturalgift", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Natural_Gift_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "The type and power of this move depend on the user's held Berry, and the Berry is lost. Fails if the user is not holding a Berry, if the user has the Klutz Ability, or if Embargo or Magic Room is in effect for the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Natural Gift", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/naturalgift.shtml", + "shortDesc": "Power and type depends on the user's Berry.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "storedpower", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stored_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Power is equal to 20+(X*20), where X is the user's total stat stage changes that are greater than 0.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Stored Power", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/storedpower.shtml", + "shortDesc": " + 20 power for each of the user's stat boosts.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", + "target": "Normal", + "type": "Psychic", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "synchronoise", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Synchronoise_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "The target is immune if it does not share a type with the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Synchronoise", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/synchronoise.shtml", + "shortDesc": "Hits adjacent Pokémon sharing the user's type.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", + "target": "All Adjacent", + "type": "Psychic", + "zMovePower": 190 + } + }, + { + "generation": 6, + "move": { + "key": "tickle", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tickle_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack and Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tickle", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tickle.shtml", + "shortDesc": "Lowers the target's Attack and Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "wish", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wish_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "At the end of the next turn, the Pokémon at the user's position has 1/2 of the user's maximum HP restored to it, rounded down. Fails if this move is already in effect for the user's position.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Wish", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wish.shtml", + "shortDesc": "Next turn, 50% of the user's max HP is restored.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "yawn", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Yawn_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to fall asleep at the end of the next turn. Fails when used if the target cannot fall asleep or if it already has a non-volatile status condition. At the end of the next turn, if the target is still active, does not have a non-volatile status condition, and can fall asleep, it falls asleep. If the target becomes affected, this effect cannot be prevented by Safeguard or a substitute, or by falling asleep and waking up during the effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Yawn", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/yawn.shtml", + "shortDesc": "Puts the target to sleep after 1 turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "eventMoves": [ + { + "generation": 6, + "move": { + "key": "babydolleyes", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baby-doll_Eyes_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baby-Doll Eyes", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/babydolleyes.shtml", + "shortDesc": "Lowers the target's Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "babydolleyes", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baby-doll_Eyes_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baby-Doll Eyes", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/babydolleyes.shtml", + "shortDesc": "Lowers the target's Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "celebrate", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Celebrate_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "It is your birthday.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Celebrate", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/celebrate.shtml", + "shortDesc": "No competitive use.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + } + ], + "tmMoves": [ + { + "generation": 6, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "confide", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Confide_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Confide", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/confide.shtml", + "shortDesc": "Lowers the target's Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "echoedvoice", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Echoed_Voice_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "For every consecutive turn that this move is used by at least one Pokémon, this move's power is multiplied by the number of turns to pass, but not more than 5.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Echoed Voice", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/echoedvoice.shtml", + "shortDesc": "Power increases when used on consecutive turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "retaliate", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Retaliate_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Power doubles if one of the user's party members fainted last turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 20, + "name": "Retaliate", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/retaliate.shtml", + "shortDesc": "Power doubles if an ally fainted last turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "round", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Round_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "If there are other active Pokémon that chose this move for use this turn, those Pokémon take their turn immediately after the user, in Speed order, and this move's power is 120 for each other user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Round", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/round.shtml", + "shortDesc": "Power doubles if others used Round this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/round", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "secretpower", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Secret_Power_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 30% chance to cause a secondary effect on the target based on the battle terrain. Causes paralysis on the regular Wi-Fi terrain, causes paralysis during Electric Terrain, lowers Special Attack by 1 stage during Misty Terrain, causes sleep during Grassy Terrain and lowers Speed by 1 stage during Psychic Terrain.", + "isFieldMove": "The Pokémon can clear an entrance into a big tree, a bush or an indent in a wall in order to create a Secret Base in Generation III's Ruby, Sapphire and Emerald and Generation VI's Omega Ruby and Alpha Sapphire. It is taught to Pokémon using TM43 in Generations III and IV, and TM94 in Generation VI.", + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Secret Power", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/secretpower.shtml", + "shortDesc": "Effect varies with terrain. (30% paralysis chance)", + "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 6, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "healbell", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Heal_Bell_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "Every Pokémon in the user's party is cured of its non-volatile status condition. Active Pokémon with the Soundproof Ability are not cured, unless they are the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Heal Bell", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/healbell.shtml", + "shortDesc": "Cures the user's party of all status conditions.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", + "target": "Ally's Side", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "hypervoice", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Voice_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Voice", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hypervoice.shtml", + "shortDesc": "No additional effect. Hits adjacent foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 6, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 6, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 6, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 6, + "level": 9, + "move": { + "key": "babydolleyes", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baby-doll_Eyes_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baby-Doll Eyes", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/babydolleyes.shtml", + "shortDesc": "Lowers the target's Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 33, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 17, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 6, + "level": 29, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 23, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "level": 37, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "growl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Growl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Growl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/growl.shtml", + "shortDesc": "Lowers the foe(s) Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 41, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 6, + "level": 13, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "level": 20, + "move": { + "key": "refresh", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Refresh_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user cures its burn, poison, or paralysis. Fails if the user is not burned, poisoned, or paralyzed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Refresh", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/refresh.shtml", + "shortDesc": "User cures its burn, poison, or paralysis.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 5, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 10, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 25, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 6, + "level": 45, + "move": { + "key": "trumpcard", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Trump_Card_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "The power of this move is based on the amount of PP remaining after normal PP reduction and the Pressure Ability resolve. 200 power for 0 PP, 80 power for 1 PP, 60 power for 2 PP, 50 power for 3 PP, and 40 power for 4 or more PP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Trump Card", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/trumpcard.shtml", + "shortDesc": "More power the fewer PP this move has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation7": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 7, + "move": { + "key": "captivate", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Captivate_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 2 stages. The target is unaffected if both the user and the target are the same gender, or if either is genderless. Pokémon with the Oblivious Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Captivate", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/captivate.shtml", + "shortDesc": "Lowers the foe(s) Sp. Atk by 2 if opposite gender.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "detect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Detect_(move)", + "category": "Status", + "contestType": "Cool", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Detect", + "pp": 5, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/detect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", + "target": "Self", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "faketears", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fake_Tears_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Fake Tears", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/faketears.shtml", + "shortDesc": "Lowers the target's Sp. Def by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "naturalgift", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Natural_Gift_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "The type and power of this move depend on the user's held Berry, and the Berry is lost. Fails if the user is not holding a Berry, if the user has the Klutz Ability, or if Embargo or Magic Room is in effect for the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Natural Gift", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/naturalgift.shtml", + "shortDesc": "Power and type depends on the user's Berry.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "storedpower", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stored_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Power is equal to 20+(X*20), where X is the user's total stat stage changes that are greater than 0.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Stored Power", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/storedpower.shtml", + "shortDesc": " + 20 power for each of the user's stat boosts.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", + "target": "Normal", + "type": "Psychic", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "synchronoise", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Synchronoise_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "The target is immune if it does not share a type with the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Synchronoise", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/synchronoise.shtml", + "shortDesc": "Hits adjacent Pokémon sharing the user's type.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/synchronoise", + "target": "All Adjacent", + "type": "Psychic", + "zMovePower": 190 + } + }, + { + "generation": 7, + "move": { + "key": "tickle", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tickle_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack and Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tickle", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tickle.shtml", + "shortDesc": "Lowers the target's Attack and Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "wish", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wish_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "At the end of the next turn, the Pokémon at the user's position has 1/2 of the user's maximum HP restored to it, rounded down. Fails if this move is already in effect for the user's position.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Wish", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wish.shtml", + "shortDesc": "Next turn, 50% of the user's max HP is restored.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "yawn", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Yawn_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to fall asleep at the end of the next turn. Fails when used if the target cannot fall asleep or if it already has a non-volatile status condition. At the end of the next turn, if the target is still active, does not have a non-volatile status condition, and can fall asleep, it falls asleep. If the target becomes affected, this effect cannot be prevented by Safeguard or a substitute, or by falling asleep and waking up during the effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Yawn", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/yawn.shtml", + "shortDesc": "Puts the target to sleep after 1 turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "eventMoves": [ + { + "generation": 7, + "move": { + "key": "babydolleyes", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baby-doll_Eyes_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baby-Doll Eyes", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/babydolleyes.shtml", + "shortDesc": "Lowers the target's Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "celebrate", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Celebrate_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "It is your birthday.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Celebrate", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/celebrate.shtml", + "shortDesc": "No competitive use.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/celebrate", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + } + ], + "tmMoves": [ + { + "generation": 7, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "confide", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Confide_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Confide", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/confide.shtml", + "shortDesc": "Lowers the target's Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "echoedvoice", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Echoed_Voice_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "For every consecutive turn that this move is used by at least one Pokémon, this move's power is multiplied by the number of turns to pass, but not more than 5.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Echoed Voice", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/echoedvoice.shtml", + "shortDesc": "Power increases when used on consecutive turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/echoed-voice", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 7, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "round", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Round_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "If there are other active Pokémon that chose this move for use this turn, those Pokémon take their turn immediately after the user, in Speed order, and this move's power is 120 for each other user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Round", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/round.shtml", + "shortDesc": "Power doubles if others used Round this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/round", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "workup", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Work_Up_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Raises the user's Attack and Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Work Up", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/workup.shtml", + "shortDesc": "Raises the user's Attack and Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 7, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "healbell", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Heal_Bell_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "Every Pokémon in the user's party is cured of its non-volatile status condition. Active Pokémon with the Soundproof Ability are not cured, unless they are the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Heal Bell", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/healbell.shtml", + "shortDesc": "Cures the user's party of all status conditions.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/heal-bell", + "target": "Ally's Side", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "hypervoice", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Voice_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Voice", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hypervoice.shtml", + "shortDesc": "No additional effect. Hits adjacent foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 7, + "move": { + "key": "laserfocus", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Laser_Focus_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Until the end of the next turn, the user's attacks will be critical hits.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Laser Focus", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/laserfocus.shtml", + "shortDesc": "Until the end of the next turn, user's moves crit.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/laser-focus", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 7, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + } + ], + "virtualTransferMoves": [ + { + "generation": 7, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "bide", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bide_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "The user spends two turns locked into this move and then, on the second turn after using this move, the user attacks the last Pokémon that hit it, inflicting double the damage in HP it lost to attacks during the two turns. If the last Pokémon that hit it is no longer active, the user attacks a random opposing Pokémon instead. If the user is prevented from moving during this move's use, the effect ends. This move does not check accuracy and does not ignore type immunity.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Bide", + "pp": 10, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bide.shtml", + "shortDesc": "Waits 2 turns; deals double the damage taken.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "bodyslam", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Body_Slam_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to paralyze the target. Damage doubles and no accuracy check is done if the target has used Minimize while active.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Body Slam", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bodyslam.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "detect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Detect_(move)", + "category": "Status", + "contestType": "Cool", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Detect", + "pp": 5, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/detect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", + "target": "Self", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 7, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "growl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Growl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Growl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/growl.shtml", + "shortDesc": "Lowers the foe(s) Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "headbutt", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Headbutt_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": "The Pokémon can shake a small tree which may cause a wild Pokémon to fall down. It can be taught to a Pokémon by using TM02 in Generation II. Though available as a level up move in Generation I and future generations, it only had status as a field move in Generation II and Generation IV's HeartGold and SoulSilver.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/headbutt.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 7, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 7, + "move": { + "key": "mimic", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mimic_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "While the user remains active, this move is replaced by the last move used by the target. The copied move has the maximum PP for that move. Fails if the target has not made a move, if the user has Transformed, if the user already knows the move, or if the move is Assist, Behemoth Bash, Behemoth Blade, Belch, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Sketch, Sleep Talk, Struggle, Transform, or Wicked Torque.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Mimic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mimic.shtml", + "shortDesc": "The last move the target used replaces this one.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "rage", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rage_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Once this move is successfully used, the user's Attack is raised by 1 stage every time it is hit by another Pokémon's attack as long as this move is chosen for use.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Rage", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rage.shtml", + "shortDesc": "Raises the user's Attack by 1 if hit during use.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "reflect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Reflect_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "For 5 turns, the user and its party members take 0.5x damage from physical attacks, or 0.66x damage if in a Double Battle. Damage is not reduced further with Aurora Veil. Critical hits ignore this effect. It is removed from the user's side if the user or an ally is successfully hit by Brick Break, Psychic Fangs, or Defog. Lasts for 8 turns if the user is holding Light Clay. Fails if the effect is already active on the user's side.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Reflect", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/reflect.shtml", + "shortDesc": "For 5 turns, physical damage to allies is halved.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/reflect", + "target": "Ally's Side", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "skullbash", + "accuracy": 100, + "basePower": "130", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Skull_Bash_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. Raises the user's Defense by 1 stage on the first turn. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 140, + "name": "Skull Bash", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/skullbash.shtml", + "shortDesc": "Raises user's Defense by 1 on turn 1. Hits turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", + "target": "Normal", + "type": "Normal", + "zMovePower": 195 + } + }, + { + "generation": 7, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + } + ], + "levelUpMoves": [ + { + "generation": 7, + "level": 9, + "move": { + "key": "babydolleyes", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baby-doll_Eyes_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baby-Doll Eyes", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/babydolleyes.shtml", + "shortDesc": "Lowers the target's Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 33, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 17, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 29, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 37, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "growl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Growl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Growl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/growl.shtml", + "shortDesc": "Lowers the foe(s) Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 41, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 7, + "level": 13, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "level": 20, + "move": { + "key": "refresh", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Refresh_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user cures its burn, poison, or paralysis. Fails if the user is not burned, poisoned, or paralyzed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Refresh", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/refresh.shtml", + "shortDesc": "User cures its burn, poison, or paralysis.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 5, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 17, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 25, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 7, + "level": 45, + "move": { + "key": "trumpcard", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Trump_Card_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "The power of this move is based on the amount of PP remaining after normal PP reduction and the Pressure Ability resolve. 200 power for 0 PP, 80 power for 1 PP, 60 power for 2 PP, 50 power for 3 PP, and 40 power for 4 or more PP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Trump Card", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/trumpcard.shtml", + "shortDesc": "More power the fewer PP this move has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/trump-card", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation8": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 9, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "detect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Detect_(move)", + "category": "Status", + "contestType": "Cool", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Detect", + "pp": 5, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/detect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/detect", + "target": "Self", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "doublekick", + "accuracy": 100, + "basePower": "30", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Kick_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Hits twice. If the first hit breaks the target's substitute, it will take damage for the second hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 80, + "name": "Double Kick", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doublekick.shtml", + "shortDesc": "Hits 2 times in one turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-kick", + "target": "Normal", + "type": "Fighting", + "zMovePower": 100 + } + }, + { + "generation": 9, + "move": { + "key": "flail", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flail_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flail.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flail", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 9, + "move": { + "key": "tickle", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tickle_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack and Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tickle", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tickle.shtml", + "shortDesc": "Lowers the target's Attack and Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tickle", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "wish", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wish_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "At the end of the next turn, the Pokémon at the user's position has 1/2 of the user's maximum HP restored to it, rounded down. Fails if this move is already in effect for the user's position.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Wish", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wish.shtml", + "shortDesc": "Next turn, 50% of the user's max HP is restored.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wish", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "yawn", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Yawn_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to fall asleep at the end of the next turn. Fails when used if the target cannot fall asleep or if it already has a non-volatile status condition. At the end of the next turn, if the target is still active, does not have a non-volatile status condition, and can fall asleep, it falls asleep. If the target becomes affected, this effect cannot be prevented by Safeguard or a substitute, or by falling asleep and waking up during the effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Yawn", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/yawn.shtml", + "shortDesc": "Puts the target to sleep after 1 turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/yawn", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "eventMoves": [], + "tmMoves": [ + { + "generation": 9, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "bodyslam", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Body_Slam_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to paralyze the target. Damage doubles and no accuracy check is done if the target has used Minimize while active.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Body Slam", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bodyslam.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "calmmind", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Calm_Mind_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Raises the user's Special Attack and Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Calm Mind", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/calmmind.shtml", + "shortDesc": "Raises the user's Sp. Atk and Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/calm-mind", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 9, + "move": { + "key": "faketears", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fake_Tears_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Fake Tears", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/faketears.shtml", + "shortDesc": "Lowers the target's Sp. Def by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fake-tears", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "hypervoice", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Voice_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Voice", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hypervoice.shtml", + "shortDesc": "No additional effect. Hits adjacent foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 9, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 9, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "roar", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Roar_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "The target is forced to switch out and be replaced with a random unfainted ally. Fails if the target is the last unfainted Pokémon in its party, or if the target used Ingrain previously or has the Suction Cups Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Roar", + "pp": 20, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/roar.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "storedpower", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stored_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Power is equal to 20+(X*20), where X is the user's total stat stage changes that are greater than 0.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Stored Power", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/storedpower.shtml", + "shortDesc": " + 20 power for each of the user's stat boosts.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stored-power", + "target": "Normal", + "type": "Psychic", + "zMovePower": 100 + } + }, + { + "generation": 9, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 9, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 9, + "move": { + "key": "terablast", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tera_Blast_(move)", + "category": "Special", + "contestType": null, + "desc": "If the user is Terastallized, this move becomes a physical attack if the user's Attack is greater than its Special Attack, including stat stage changes, and this move's type becomes the same as the user's Tera Type.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tera Blast", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/terablast.shtml", + "shortDesc": "If Terastallized: Phys. if Atk > SpA, type = Tera.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "trailblaze", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Trailblaze_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 100% chance to raise the user's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Trailblaze", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/trailblaze.shtml", + "shortDesc": "100% chance to raise the user's Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/trailblaze", + "target": "Normal", + "type": "Grass", + "zMovePower": 100 + } + }, + { + "generation": 9, + "move": { + "key": "weatherball", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Weather_Ball_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Power doubles if a weather condition other than Delta Stream is active, and this move's type changes to match. Ice type during Snow, Water type during Primordial Sea or Rain Dance, Rock type during Sandstorm, and Fire type during Desolate Land or Sunny Day. If the user is holding Utility Umbrella and uses Weather Ball during Primordial Sea, Rain Dance, Desolate Land, or Sunny Day, this move remains Normal type and does not double in power.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Weather Ball", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/weatherball.shtml", + "shortDesc": "Power doubles and type varies in each weather.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/weather-ball", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + } + ], + "tutorMoves": [], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 9, + "level": 15, + "move": { + "key": "babydolleyes", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baby-doll_Eyes_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baby-Doll Eyes", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/babydolleyes.shtml", + "shortDesc": "Lowers the target's Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baby-doll-eyes", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 35, + "move": { + "key": "batonpass", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Baton_Pass_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user is replaced with another Pokémon in its party. The selected Pokémon has the user's stat stage changes, confusion, and certain move effects transferred to it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Baton Pass", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/batonpass.shtml", + "shortDesc": "User switches, passing stat changes and more.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/baton-pass", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 25, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 9, + "level": 45, + "move": { + "key": "charm", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charm_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Charm", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/charm.shtml", + "shortDesc": "Lowers the target's Attack by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charm", + "target": "Normal", + "type": "Fairy", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 30, + "move": { + "key": "copycat", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Copycat_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user uses the last move used by any Pokémon, including itself. Fails if no move has been used, or if the last move used was Assist, Baneful Bunker, Beak Blast, Behemoth Bash, Behemoth Blade, Belch, Bestow, Blazing Torque, Celebrate, Chatter, Circle Throw, Combat Torque, Copycat, Counter, Covet, Destiny Bond, Detect, Dragon Tail, Dynamax Cannon, Endure, Feint, Focus Punch, Follow Me, Helping Hand, Hold Hands, King's Shield, Magical Torque, Mat Block, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Protect, Rage Powder, Roar, Shell Trap, Sketch, Sleep Talk, Snatch, Spiky Shield, Spotlight, Struggle, Switcheroo, Thief, Transform, Trick, Whirlwind, or Wicked Torque.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Copycat", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/copycat.shtml", + "shortDesc": "Uses the last move used in the battle.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/copycat", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 9, + "level": 50, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "growl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Growl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Growl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/growl.shtml", + "shortDesc": "Lowers the foe(s) Attack by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/growl", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 55, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 9, + "level": 10, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 9, + "level": 5, + "move": { + "key": "sandattack", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sand_Attack_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sand Attack", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sandattack.shtml", + "shortDesc": "Lowers the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sand-attack", + "target": "Normal", + "type": "Ground", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 20, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 40, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + } + ] + } + }, + "key": "eeveegmax", + "eggGroups": ["Field"], + "evYields": { "hp": 0, "attack": 0, "defense": 0, "specialattack": 0, "specialdefense": 1, "speed": 0 }, + "evolutionLevel": null, + "flavorTexts": [ + { + "flavor": "Having gotten even friendlier and more innocent, Eevee tries to play with anyone around, only to end up crushing them with its immense body.", + "game": "Shield" + } + ], + "forme": "Gmax", + "formeLetter": "G", + "gender": { "female": "12.5%", "male": "87.5%" }, + "height": 18, + "isEggObtainable": true, + "backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/eevee-gmax.gif", + "levellingRate": "Medium Fast", + "maximumHatchTime": 9251, + "minimumHatchTime": 8995, + "num": 133, + "serebiiPage": "https://www.serebii.net/pokedex-swsh/eevee", + "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/eevee-gmax.gif", + "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/eevee-gmax.gif", + "smogonPage": "https://www.smogon.com/dex/ss/pokemon/eevee-gmax", + "baseForme": null, + "smogonTier": "Past", + "species": "eevee-gmax", + "sprite": "https://play.pokemonshowdown.com/sprites/ani/eevee-gmax.gif", + "types": [ + { + "name": "Normal", + "matchup": { + "attacking": { + "doubleEffectiveTypes": [], + "doubleResistedTypes": [], + "effectiveTypes": [], + "effectlessTypes": ["ghost"], + "normalTypes": [ + "bug", + "dark", + "dragon", + "electric", + "fairy", + "fighting", + "fire", + "flying", + "grass", + "ground", + "ice", + "normal", + "poison", + "psychic", + "water" + ], + "resistedTypes": ["rock", "steel"] + }, + "defending": { + "doubleEffectiveTypes": [], + "doubleResistedTypes": [], + "effectiveTypes": ["fighting"], + "effectlessTypes": ["ghost"], + "normalTypes": [ + "bug", + "dark", + "dragon", + "electric", + "fairy", + "fire", + "flying", + "grass", + "ground", + "ice", + "normal", + "poison", + "psychic", + "rock", + "steel", + "water" + ], + "resistedTypes": [] + } + } + } + ], + "baseSpecies": "eevee", + "baseStats": { "hp": 55, "attack": 55, "defense": 50, "specialattack": 45, "specialdefense": 65, "speed": 55 }, + "baseStatsTotal": 325, + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/eevee_(Pokémon)", + "catchRate": { "base": 45, "percentageWithOrdinaryPokeballAtFullHealth": "11.9%" }, + "color": "Brown", + "cosmeticFormes": null, + "weight": 19.5, + "legendary": false, + "mythical": false, + "evolutions": null, + "preevolutions": null + } + ], "preevolutions": null } } diff --git a/tests/testUtils/full-data-responses/rattata-alola.json b/tests/testUtils/full-data-responses/rattata-alola.json index 80afb6ae93..bfef55cca7 100644 --- a/tests/testUtils/full-data-responses/rattata-alola.json +++ b/tests/testUtils/full-data-responses/rattata-alola.json @@ -1820,7 +1820,6 @@ "maximumHatchTime": 4111, "minimumHatchTime": 3855, "num": 19, - "otherFormes": ["rattata"], "serebiiPage": "https://www.serebii.net/pokedex-swsh/rattata", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/rattata-alola.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/rattata-alola.gif", @@ -3737,7 +3736,6 @@ "maximumHatchTime": 4111, "minimumHatchTime": 3855, "num": 20, - "otherFormes": ["raticate", "raticatealolatotem"], "serebiiPage": "https://www.serebii.net/pokedex-swsh/raticate", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/raticate-alola.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/raticate-alola.gif", @@ -3851,6 +3849,11819 @@ "preevolutions": null } ], + "otherFormes": [ + { + "abilities": { + "first": { + "name": "Run Away", + "key": "runaway", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Run_Away_(Ability)", + "desc": null, + "isFieldAbility": null, + "serebiiPage": "https://www.serebii.net/abilitydex/run_away.shtml", + "shortDesc": "No competitive use.", + "smogonPage": "https://www.smogon.com/dex/ss/abilities/run_away", + "pokemonThatHaveThisAbility": [] + }, + "second": { + "name": "Guts", + "key": "guts", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Guts_(Ability)", + "desc": "If this Pokémon has a non-volatile status condition, its Attack is multiplied by 1.5. This Pokémon's physical attacks ignore the burn effect of halving damage.", + "isFieldAbility": null, + "serebiiPage": "https://www.serebii.net/abilitydex/guts.shtml", + "shortDesc": "If this Pokémon is statused, its Attack is 1.5x; ignores burn halving physical damage.", + "smogonPage": "https://www.smogon.com/dex/ss/abilities/guts", + "pokemonThatHaveThisAbility": [] + }, + "hidden": { + "name": "Hustle", + "key": "hustle", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hustle_(Ability)", + "desc": "This Pokémon's Attack is multiplied by 1.5 and the accuracy of its physical attacks is multiplied by 0.8.", + "isFieldAbility": "If you have a Pokémon with Hustle at the front of your party (even if fainted), there is a 50% chance that a Pokémon will be forced to the upper bound of their encounter level range.", + "serebiiPage": "https://www.serebii.net/abilitydex/hustle.shtml", + "shortDesc": "This Pokémon's Attack is 1.5x and accuracy of its physical attacks is 0.8x.", + "smogonPage": "https://www.smogon.com/dex/ss/abilities/hustle", + "pokemonThatHaveThisAbility": [] + }, + "special": null + }, + "learnsets": { + "generation3": { + "dreamworldMoves": [], + "eggMoves": [], + "eventMoves": [], + "tmMoves": [], + "tutorMoves": [], + "virtualTransferMoves": [], + "levelUpMoves": [] + }, + "generation4": { + "dreamworldMoves": [], + "eggMoves": [], + "eventMoves": [], + "tmMoves": [], + "tutorMoves": [], + "virtualTransferMoves": [], + "levelUpMoves": [] + }, + "generation5": { + "dreamworldMoves": [], + "eggMoves": [], + "eventMoves": [], + "tmMoves": [], + "tutorMoves": [], + "virtualTransferMoves": [], + "levelUpMoves": [] + }, + "generation6": { + "dreamworldMoves": [], + "eggMoves": [], + "eventMoves": [], + "tmMoves": [], + "tutorMoves": [], + "virtualTransferMoves": [], + "levelUpMoves": [] + }, + "generation7": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 7, + "move": { + "key": "counter", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Counter_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the last opposing Pokémon to hit the user with a physical attack this turn equal to twice the HP lost by the user from that attack. If the user did not lose HP from the attack, this move deals 1 HP of damage instead. If that opposing Pokémon's position is no longer in use and there is another opposing Pokémon on the field, the damage is done to it instead. Only the last hit of a multi-hit attack is counted. Fails if the user was not hit by an opposing Pokémon's physical attack this turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 75, + "name": "Counter", + "pp": 20, + "priority": -5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/counter.shtml", + "shortDesc": "If hit by physical attack, returns double damage.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", + "target": "Foe that last hit user", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "finalgambit", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Final_Gambit_(move)", + "category": "Special", + "contestType": "Tough", + "desc": "Deals damage to the target equal to the user's current HP. If this move is successful, the user faints.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Final Gambit", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/finalgambit.shtml", + "shortDesc": "Does damage equal to the user's HP. User faints.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/final-gambit", + "target": "Normal", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "furyswipes", + "accuracy": 80, + "basePower": "18", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fury_Swipes_(move)", + "category": "Physical", + "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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Fury Swipes", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/furyswipes.shtml", + "shortDesc": "Hits 2-5 times in one turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-swipes", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "mefirst", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Me_First_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The user uses the move the target chose for use this turn against it, if possible, with its power multiplied by 1.5. The move must be a damaging move other than Beak Blast, Belch, Blazing Torque, Combat Torque, Comeuppance, Counter, Covet, Focus Punch, Magical Torque, Me First, Metal Burst, Mirror Coat, Noxious Torque, Shell Trap, Struggle, Thief, or Wicked Torque. Fails if the target moves before the user. Ignores the target's substitute for the purpose of copying the move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Me First", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mefirst.shtml", + "shortDesc": "Copies a foe at 1.5x power. User must be faster.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/me-first", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "revenge", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Revenge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Power doubles if the user was hit by the target this turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Revenge", + "pp": 10, + "priority": -4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/revenge.shtml", + "shortDesc": "Power doubles if user is damaged by the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/revenge", + "target": "Normal", + "type": "Fighting", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "reversal", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Reversal_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Reversal", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/reversal.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/reversal", + "target": "Normal", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "snatch", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snatch_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "If another Pokémon uses certain non-damaging moves this turn, the user steals that move to use itself. If multiple Pokémon use one of those moves this turn, the applicable moves are all stolen by the first Pokémon in turn order that used this move this turn. This effect is ignored while the user is under the effect of Sky Drop.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Snatch", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snatch.shtml", + "shortDesc": "User steals certain support moves to use itself.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snatch", + "target": "Self", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "stockpile", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stockpile_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Raises the user's Defense and Special Defense by 1 stage. The user's Stockpile count increases by 1. Fails if the user's Stockpile count is 3. The user's Stockpile count is reset to 0 when it is no longer active.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Stockpile", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/stockpile.shtml", + "shortDesc": "Raises user's Defense, Sp. Def by 1. Max 3 uses.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stockpile", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "swallow", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swallow_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user restores its HP based on its Stockpile count. Restores 1/4 of its maximum HP if it's 1, 1/2 of its maximum HP if it's 2, both rounded half down, and all of its HP if it's 3. Fails if the user's Stockpile count is 0. The user's Defense and Special Defense decrease by as many stages as Stockpile had increased them, and the user's Stockpile count resets to 0.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swallow", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swallow.shtml", + "shortDesc": "Heals the user based on uses of Stockpile.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swallow", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "switcheroo", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Switcheroo_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The user swaps its held item with the target's held item. Fails if either the user or the target is holding a Mail or Z-Crystal, if neither is holding an item, if the user is trying to give or take a Mega Stone to or from the species that can Mega Evolve with it, or if the user is trying to give or take a Blue Orb, a Red Orb, a Griseous Orb, a Plate, a Drive, or a Memory to or from a Kyogre, a Groudon, a Giratina, an Arceus, a Genesect, or a Silvally, respectively. The target is immune to this move if it has the Sticky Hold Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Switcheroo", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/switcheroo.shtml", + "shortDesc": "User switches its held item with the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/switcheroo", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "uproar", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Uproar_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "The user spends three turns locked into this move. This move targets an opponent at random on each turn. On the first of the three turns, all sleeping active Pokémon wake up. During the three turns, no active Pokémon can fall asleep by any means, and Pokémon switched in during the effect do not wake up. If the user is prevented from moving or the attack is not successful against the target during one of the turns, the effect ends.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 30, + "name": "Uproar", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uproar.shtml", + "shortDesc": "Lasts 3 turns. Active Pokémon cannot fall asleep.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/uproar", + "target": "Random", + "type": "Normal", + "zMovePower": 175 + } + } + ], + "eventMoves": [], + "tmMoves": [ + { + "generation": 7, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "blizzard", + "accuracy": 70, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Blizzard_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to freeze the target. If the weather is Snow, this move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Blizzard", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/blizzard.shtml", + "shortDesc": "10% chance to freeze foe(s). Can't miss in Snow.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", + "target": "Adjacent Foes", + "type": "Ice", + "zMovePower": 185 + } + }, + { + "generation": 7, + "move": { + "key": "confide", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Confide_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Confide", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/confide.shtml", + "shortDesc": "Lowers the target's Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "darkpulse", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dark_Pulse_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dark Pulse", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/darkpulse.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dark-pulse", + "target": "Any", + "type": "Dark", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "embargo", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Embargo_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "For 5 turns, the target's held item has no effect. An item's effect of causing forme changes is unaffected, but any other effects from such items are negated. During the effect, Fling and Natural Gift are prevented from being used by the target. Items thrown at the target with Fling will still activate for it. If the target uses Baton Pass, the replacement will remain unable to use items.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Embargo", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/embargo.shtml", + "shortDesc": "For 5 turns, the target's item has no effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/embargo", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 7, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "grassknot", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Grass_Knot_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "This move's power is 20 if the target weighs less than 10 kg, 40 if less than 25 kg, 60 if less than 50 kg, 80 if less than 100 kg, 100 if less than 200 kg, and 120 if greater than or equal to 200 kg.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Grass Knot", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/grassknot.shtml", + "shortDesc": "More power the heavier the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/grass-knot", + "target": "Adjacent Foes", + "type": "Grass", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "icebeam", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Ice_Beam_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to freeze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Ice Beam", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/icebeam.shtml", + "shortDesc": "10% chance to freeze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", + "target": "Normal", + "type": "Ice", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "quash", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quash_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Causes the target to take its turn after all other Pokémon this turn, no matter the priority of its selected move. Fails if the target already moved this turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Quash", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quash.shtml", + "shortDesc": "Forces the target to move last this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quash", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "round", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Round_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "If there are other active Pokémon that chose this move for use this turn, those Pokémon take their turn immediately after the user, in Speed order, and this move's power is 120 for each other user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Round", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/round.shtml", + "shortDesc": "Power doubles if others used Round this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/round", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "shadowclaw", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a higher chance for a critical hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Shadow Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowclaw.shtml", + "shortDesc": "High critical hit ratio.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", + "target": "Normal", + "type": "Ghost", + "zMovePower": 140 + } + }, + { + "generation": 7, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "sludgebomb", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sludge_Bomb_(move)", + "category": "Special", + "contestType": "Tough", + "desc": "Has a 30% chance to poison the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Sludge Bomb", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sludgebomb.shtml", + "shortDesc": "30% chance to poison the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sludge-bomb", + "target": "Normal", + "type": "Poison", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "snarl", + "accuracy": 95, + "basePower": "55", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snarl_(move)", + "category": "Special", + "contestType": "Tough", + "desc": "Has a 100% chance to lower the target's Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Snarl", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snarl.shtml", + "shortDesc": "100% chance to lower the foe(s) Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snarl", + "target": "Adjacent Foes", + "type": "Dark", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "taunt", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Taunt_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Prevents the target from using non-damaging moves for its next three turns. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Taunt", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/taunt.shtml", + "shortDesc": "Target can't use status moves its next 3 turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/taunt", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "thief", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thief_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Thief", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thief.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thief", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "torment", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Torment_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Prevents the target from selecting the same move for use two turns in a row. This effect ends when the target is no longer active.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Torment", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/torment.shtml", + "shortDesc": "Target can't select the same move twice in a row.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/torment", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "uturn", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/U-turn_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this move is successful and the user has not fainted, the user switches out even if it is trapped and is replaced immediately by a selected party member. The user does not switch out if there are no unfainted party members, or if the target switched out using an Eject Button or through the effect of the Emergency Exit or Wimp Out Abilities.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "U-turn", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uturn.shtml", + "shortDesc": "User switches out after damaging the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/u-turn", + "target": "Normal", + "type": "Bug", + "zMovePower": 140 + } + } + ], + "tutorMoves": [ + { + "generation": 7, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "endeavor", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endeavor_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to (target's current HP - user's current HP). The target is unaffected if its current HP is less than or equal to the user's current HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Endeavor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endeavor.shtml", + "shortDesc": "Lowers the target's HP to the user's HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "icywind", + "accuracy": 95, + "basePower": "55", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Icy_Wind_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Icy Wind", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/icywind.shtml", + "shortDesc": "100% chance to lower the foe(s) Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", + "target": "Adjacent Foes", + "type": "Ice", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 7, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 7, + "move": { + "key": "shockwave", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shock_Wave_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Shock Wave", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shockwave.shtml", + "shortDesc": "This move does not check accuracy.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", + "target": "Normal", + "type": "Electric", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "snatch", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snatch_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "If another Pokémon uses certain non-damaging moves this turn, the user steals that move to use itself. If multiple Pokémon use one of those moves this turn, the applicable moves are all stolen by the first Pokémon in turn order that used this move this turn. This effect is ignored while the user is under the effect of Sky Drop.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Snatch", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snatch.shtml", + "shortDesc": "User steals certain support moves to use itself.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snatch", + "target": "Self", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "superfang", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Super_Fang_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to half of its current HP, rounded down, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Super Fang", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/superfang.shtml", + "shortDesc": "Does damage equal to 1/2 target's current HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "uproar", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Uproar_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "The user spends three turns locked into this move. This move targets an opponent at random on each turn. On the first of the three turns, all sleeping active Pokémon wake up. During the three turns, no active Pokémon can fall asleep by any means, and Pokémon switched in during the effect do not wake up. If the user is prevented from moving or the attack is not successful against the target during one of the turns, the effect ends.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 30, + "name": "Uproar", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uproar.shtml", + "shortDesc": "Lasts 3 turns. Active Pokémon cannot fall asleep.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/uproar", + "target": "Random", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 7, + "level": 19, + "move": { + "key": "assurance", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Assurance_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Power doubles if the target has already taken damage this turn, other than direct damage from Belly Drum, confusion, Curse, or Pain Split.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Assurance", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/assurance.shtml", + "shortDesc": "Power doubles if target was damaged this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/assurance", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 10, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 22, + "move": { + "key": "crunch", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Crunch_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 20% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Crunch", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/crunch.shtml", + "shortDesc": "20% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", + "target": "Normal", + "type": "Dark", + "zMovePower": 160 + } + }, + { + "generation": 7, + "level": 31, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 7, + "level": 34, + "move": { + "key": "endeavor", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endeavor_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to (target's current HP - user's current HP). The target is unaffected if its current HP is less than or equal to the user's current HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Endeavor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endeavor.shtml", + "shortDesc": "Lowers the target's HP to the user's HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 7, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 16, + "move": { + "key": "hyperfang", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hyperfang.shtml", + "shortDesc": "10% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "level": 13, + "move": { + "key": "pursuit", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Pursuit_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "If an opposing Pokémon switches out this turn, this move hits that Pokémon before it leaves the field, even if it was not the original target. If the user moves after an opponent using Flip Turn, Parting Shot, Teleport, U-turn, or Volt Switch, but not Baton Pass, it will hit that opponent before it leaves the field. Power doubles and no accuracy check is done if the user hits an opponent switching out, and the user's turn is over; if an opponent faints from this, the replacement Pokémon does not become active until the end of the turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Pursuit", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/pursuit.shtml", + "shortDesc": "If a foe is switching out, hits it at 2x power.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/pursuit", + "target": "Normal", + "type": "Dark", + "zMovePower": 100 + } + }, + { + "generation": 7, + "level": 4, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "level": 25, + "move": { + "key": "suckerpunch", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sucker_Punch_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Fails if the target did not select a physical attack, special attack, or Me First for use this turn, or if the target moves before the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Sucker Punch", + "pp": 5, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/suckerpunch.shtml", + "shortDesc": "Usually goes first. Fails if target is not attacking.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sucker-punch", + "target": "Normal", + "type": "Dark", + "zMovePower": 140 + } + }, + { + "generation": 7, + "level": 28, + "move": { + "key": "superfang", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Super_Fang_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to half of its current HP, rounded down, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Super Fang", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/superfang.shtml", + "shortDesc": "Does damage equal to 1/2 target's current HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation8": { + "dreamworldMoves": [], + "eggMoves": [], + "eventMoves": [], + "tmMoves": [], + "tutorMoves": [], + "virtualTransferMoves": [], + "levelUpMoves": [] + } + }, + "key": "rattata", + "eggGroups": ["Field"], + "evYields": { "hp": 0, "attack": 0, "defense": 0, "specialattack": 0, "specialdefense": 0, "speed": 1 }, + "evolutionLevel": null, + "flavorTexts": [ + { "flavor": "It's cautious in the extreme, and its hardy vitality lets it live in any kind of environment.", "game": "Shining Pearl" } + ], + "forme": null, + "formeLetter": null, + "gender": { "female": "50%", "male": "50%" }, + "height": 0.3, + "isEggObtainable": true, + "backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/rattata.gif", + "levellingRate": "Medium Fast", + "maximumHatchTime": 4111, + "minimumHatchTime": 3855, + "num": 19, + "serebiiPage": "https://www.serebii.net/pokedex-swsh/rattata", + "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/rattata.gif", + "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/rattata.gif", + "smogonPage": "https://www.smogon.com/dex/ss/pokemon/rattata", + "baseForme": null, + "smogonTier": "Past", + "species": "rattata", + "sprite": "https://play.pokemonshowdown.com/sprites/ani/rattata.gif", + "types": [ + { + "name": "Normal", + "matchup": { + "attacking": { + "doubleEffectiveTypes": [], + "doubleResistedTypes": [], + "effectiveTypes": [], + "effectlessTypes": ["ghost"], + "normalTypes": [ + "bug", + "dark", + "dragon", + "electric", + "fairy", + "fighting", + "fire", + "flying", + "grass", + "ground", + "ice", + "normal", + "poison", + "psychic", + "water" + ], + "resistedTypes": ["rock", "steel"] + }, + "defending": { + "doubleEffectiveTypes": [], + "doubleResistedTypes": [], + "effectiveTypes": ["fighting"], + "effectlessTypes": ["ghost"], + "normalTypes": [ + "bug", + "dark", + "dragon", + "electric", + "fairy", + "fire", + "flying", + "grass", + "ground", + "ice", + "normal", + "poison", + "psychic", + "rock", + "steel", + "water" + ], + "resistedTypes": [] + } + } + } + ], + "baseSpecies": null, + "baseStats": { "hp": 30, "attack": 56, "defense": 35, "specialattack": 25, "specialdefense": 35, "speed": 72 }, + "baseStatsTotal": 253, + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/rattata_(Pokémon)", + "catchRate": { "base": 255, "percentageWithOrdinaryPokeballAtFullHealth": "43.9%" }, + "color": "Purple", + "cosmeticFormes": null, + "weight": 3.5, + "legendary": false, + "mythical": false, + "evolutions": [ + { + "abilities": { + "first": { + "name": "Run Away", + "key": "runaway", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Run_Away_(Ability)", + "desc": null, + "isFieldAbility": null, + "serebiiPage": "https://www.serebii.net/abilitydex/run_away.shtml", + "shortDesc": "No competitive use.", + "smogonPage": "https://www.smogon.com/dex/ss/abilities/run_away", + "pokemonThatHaveThisAbility": [] + }, + "second": { + "name": "Guts", + "key": "guts", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Guts_(Ability)", + "desc": "If this Pokémon has a non-volatile status condition, its Attack is multiplied by 1.5. This Pokémon's physical attacks ignore the burn effect of halving damage.", + "isFieldAbility": null, + "serebiiPage": "https://www.serebii.net/abilitydex/guts.shtml", + "shortDesc": "If this Pokémon is statused, its Attack is 1.5x; ignores burn halving physical damage.", + "smogonPage": "https://www.smogon.com/dex/ss/abilities/guts", + "pokemonThatHaveThisAbility": [] + }, + "hidden": { + "name": "Hustle", + "key": "hustle", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hustle_(Ability)", + "desc": "This Pokémon's Attack is multiplied by 1.5 and the accuracy of its physical attacks is multiplied by 0.8.", + "isFieldAbility": "If you have a Pokémon with Hustle at the front of your party (even if fainted), there is a 50% chance that a Pokémon will be forced to the upper bound of their encounter level range.", + "serebiiPage": "https://www.serebii.net/abilitydex/hustle.shtml", + "shortDesc": "This Pokémon's Attack is 1.5x and accuracy of its physical attacks is 0.8x.", + "smogonPage": "https://www.smogon.com/dex/ss/abilities/hustle", + "pokemonThatHaveThisAbility": [] + }, + "special": null + }, + "learnsets": { + "generation3": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 3, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 3, + "move": { + "key": "counter", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Counter_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the last opposing Pokémon to hit the user with a physical attack this turn equal to twice the HP lost by the user from that attack. If the user did not lose HP from the attack, this move deals 1 HP of damage instead. If that opposing Pokémon's position is no longer in use and there is another opposing Pokémon on the field, the damage is done to it instead. Only the last hit of a multi-hit attack is counted. Fails if the user was not hit by an opposing Pokémon's physical attack this turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 75, + "name": "Counter", + "pp": 20, + "priority": -5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/counter.shtml", + "shortDesc": "If hit by physical attack, returns double damage.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", + "target": "Foe that last hit user", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "flamewheel", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flame_Wheel_(move)", + "category": "Physical", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Flame Wheel", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamewheel.shtml", + "shortDesc": "10% chance to burn the target. Thaws user.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flame-wheel", + "target": "Normal", + "type": "Fire", + "zMovePower": 120 + } + }, + { + "generation": 3, + "move": { + "key": "furyswipes", + "accuracy": 80, + "basePower": "18", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fury_Swipes_(move)", + "category": "Physical", + "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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Fury Swipes", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/furyswipes.shtml", + "shortDesc": "Hits 2-5 times in one turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-swipes", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "reversal", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Reversal_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Reversal", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/reversal.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/reversal", + "target": "Normal", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "screech", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Screech_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Lowers the target's Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Screech", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/screech.shtml", + "shortDesc": "Lowers the target's Defense by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/screech", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "uproar", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Uproar_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "The user spends three turns locked into this move. This move targets an opponent at random on each turn. On the first of the three turns, all sleeping active Pokémon wake up. During the three turns, no active Pokémon can fall asleep by any means, and Pokémon switched in during the effect do not wake up. If the user is prevented from moving or the attack is not successful against the target during one of the turns, the effect ends.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 30, + "name": "Uproar", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uproar.shtml", + "shortDesc": "Lasts 3 turns. Active Pokémon cannot fall asleep.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/uproar", + "target": "Random", + "type": "Normal", + "zMovePower": 175 + } + } + ], + "eventMoves": [], + "tmMoves": [ + { + "generation": 3, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "blizzard", + "accuracy": 70, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Blizzard_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to freeze the target. If the weather is Snow, this move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Blizzard", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/blizzard.shtml", + "shortDesc": "10% chance to freeze foe(s). Can't miss in Snow.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", + "target": "Adjacent Foes", + "type": "Ice", + "zMovePower": 185 + } + }, + { + "generation": 3, + "move": { + "key": "cut", + "accuracy": 95, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Cut_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": "The Pokémon is able to cut down small trees, and prior to gen 4, tall grass. It is taught to Pokémon with HM01 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Cut", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/cut.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 3, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 3, + "move": { + "key": "icebeam", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Ice_Beam_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to freeze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Ice Beam", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/icebeam.shtml", + "shortDesc": "10% chance to freeze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", + "target": "Normal", + "type": "Ice", + "zMovePower": 175 + } + }, + { + "generation": 3, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 3, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "rocksmash", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Smash_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 50% chance to lower the target's Defense by 1 stage.", + "isFieldMove": "The Pokémon can smash small boulders. Rock smash can be taught to a Pokémon by using TM08 in Generation II, by using HM06 in Generations III and IV, TM94 in Generation V and Pokémon X and Y, and HM06 in Omega Ruby and Alpha Sapphire.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 70, + "name": "Rock Smash", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocksmash.shtml", + "shortDesc": "50% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", + "target": "Normal", + "type": "Fighting", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "secretpower", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Secret_Power_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 30% chance to cause a secondary effect on the target based on the battle terrain. Causes paralysis on the regular Wi-Fi terrain, causes paralysis during Electric Terrain, lowers Special Attack by 1 stage during Misty Terrain, causes sleep during Grassy Terrain and lowers Speed by 1 stage during Psychic Terrain.", + "isFieldMove": "The Pokémon can clear an entrance into a big tree, a bush or an indent in a wall in order to create a Secret Base in Generation III's Ruby, Sapphire and Emerald and Generation VI's Omega Ruby and Alpha Sapphire. It is taught to Pokémon using TM43 in Generations III and IV, and TM94 in Generation VI.", + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Secret Power", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/secretpower.shtml", + "shortDesc": "Effect varies with terrain. (30% paralysis chance)", + "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 3, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "shockwave", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shock_Wave_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Shock Wave", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shockwave.shtml", + "shortDesc": "This move does not check accuracy.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", + "target": "Normal", + "type": "Electric", + "zMovePower": 120 + } + }, + { + "generation": 3, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "taunt", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Taunt_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Prevents the target from using non-damaging moves for its next three turns. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Taunt", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/taunt.shtml", + "shortDesc": "Target can't use status moves its next 3 turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/taunt", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "thief", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thief_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Thief", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thief.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thief", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 3, + "move": { + "key": "thunder", + "accuracy": 70, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 30% chance to paralyze the target. This move can hit a target using Bounce, Fly, or Sky Drop, or is under the effect of Sky Drop. If the weather is Primordial Sea or Rain Dance, this move does not check accuracy. If the weather is Desolate Land or Sunny Day, this move's accuracy is 50%. If this move is used against a Pokémon holding Utility Umbrella, this move's accuracy remains at 70%.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 40, + "name": "Thunder", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunder.shtml", + "shortDesc": "30% chance to paralyze. Can't miss in rain.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", + "target": "Normal", + "type": "Electric", + "zMovePower": 185 + } + }, + { + "generation": 3, + "move": { + "key": "thunderbolt", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunderbolt_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 10% chance to paralyze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Thunderbolt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderbolt.shtml", + "shortDesc": "10% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", + "target": "Normal", + "type": "Electric", + "zMovePower": 175 + } + }, + { + "generation": 3, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 3, + "move": { + "key": "bodyslam", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Body_Slam_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to paralyze the target. Damage doubles and no accuracy check is done if the target has used Minimize while active.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Body Slam", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bodyslam.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "counter", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Counter_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the last opposing Pokémon to hit the user with a physical attack this turn equal to twice the HP lost by the user from that attack. If the user did not lose HP from the attack, this move deals 1 HP of damage instead. If that opposing Pokémon's position is no longer in use and there is another opposing Pokémon on the field, the damage is done to it instead. Only the last hit of a multi-hit attack is counted. Fails if the user was not hit by an opposing Pokémon's physical attack this turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 75, + "name": "Counter", + "pp": 20, + "priority": -5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/counter.shtml", + "shortDesc": "If hit by physical attack, returns double damage.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", + "target": "Foe that last hit user", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "defensecurl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Defense_Curl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the user's Defense by 1 stage. As long as the user remains active, the power of the user's Ice Ball and Rollout will be doubled (this effect is not stackable).", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Defense Curl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/defensecurl.shtml", + "shortDesc": "Raises the user's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/defense-curl", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 3, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "icywind", + "accuracy": 95, + "basePower": "55", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Icy_Wind_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Icy Wind", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/icywind.shtml", + "shortDesc": "100% chance to lower the foe(s) Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", + "target": "Adjacent Foes", + "type": "Ice", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "mimic", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mimic_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "While the user remains active, this move is replaced by the last move used by the target. The copied move has the maximum PP for that move. Fails if the target has not made a move, if the user has Transformed, if the user already knows the move, or if the move is Assist, Behemoth Bash, Behemoth Blade, Belch, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Sketch, Sleep Talk, Struggle, Transform, or Wicked Torque.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Mimic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mimic.shtml", + "shortDesc": "The last move the target used replaces this one.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 3, + "move": { + "key": "thunderwave", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_Wave_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Paralyzes the target. This move does not ignore type immunity.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Thunder Wave", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderwave.shtml", + "shortDesc": "Paralyzes the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", + "target": "Normal", + "type": "Electric", + "zMovePower": 0 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 3, + "level": 41, + "move": { + "key": "endeavor", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endeavor_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to (target's current HP - user's current HP). The target is unaffected if its current HP is less than or equal to the user's current HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Endeavor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endeavor.shtml", + "shortDesc": "Lowers the target's HP to the user's HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 20, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 13, + "move": { + "key": "hyperfang", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hyperfang.shtml", + "shortDesc": "10% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 3, + "level": 27, + "move": { + "key": "pursuit", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Pursuit_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "If an opposing Pokémon switches out this turn, this move hits that Pokémon before it leaves the field, even if it was not the original target. If the user moves after an opponent using Flip Turn, Parting Shot, Teleport, U-turn, or Volt Switch, but not Baton Pass, it will hit that opponent before it leaves the field. Power doubles and no accuracy check is done if the user hits an opponent switching out, and the user's turn is over; if an opponent faints from this, the replacement Pokémon does not become active until the end of the turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Pursuit", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/pursuit.shtml", + "shortDesc": "If a foe is switching out, hits it at 2x power.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/pursuit", + "target": "Normal", + "type": "Dark", + "zMovePower": 100 + } + }, + { + "generation": 3, + "level": 7, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 3, + "level": 34, + "move": { + "key": "superfang", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Super_Fang_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to half of its current HP, rounded down, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Super Fang", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/superfang.shtml", + "shortDesc": "Does damage equal to 1/2 target's current HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 3, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation4": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 4, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "counter", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Counter_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the last opposing Pokémon to hit the user with a physical attack this turn equal to twice the HP lost by the user from that attack. If the user did not lose HP from the attack, this move deals 1 HP of damage instead. If that opposing Pokémon's position is no longer in use and there is another opposing Pokémon on the field, the damage is done to it instead. Only the last hit of a multi-hit attack is counted. Fails if the user was not hit by an opposing Pokémon's physical attack this turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 75, + "name": "Counter", + "pp": 20, + "priority": -5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/counter.shtml", + "shortDesc": "If hit by physical attack, returns double damage.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", + "target": "Foe that last hit user", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "flamewheel", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flame_Wheel_(move)", + "category": "Physical", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Flame Wheel", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamewheel.shtml", + "shortDesc": "10% chance to burn the target. Thaws user.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flame-wheel", + "target": "Normal", + "type": "Fire", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "furyswipes", + "accuracy": 80, + "basePower": "18", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fury_Swipes_(move)", + "category": "Physical", + "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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Fury Swipes", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/furyswipes.shtml", + "shortDesc": "Hits 2-5 times in one turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-swipes", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 4, + "move": { + "key": "mefirst", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Me_First_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The user uses the move the target chose for use this turn against it, if possible, with its power multiplied by 1.5. The move must be a damaging move other than Beak Blast, Belch, Blazing Torque, Combat Torque, Comeuppance, Counter, Covet, Focus Punch, Magical Torque, Me First, Metal Burst, Mirror Coat, Noxious Torque, Shell Trap, Struggle, Thief, or Wicked Torque. Fails if the target moves before the user. Ignores the target's substitute for the purpose of copying the move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Me First", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mefirst.shtml", + "shortDesc": "Copies a foe at 1.5x power. User must be faster.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/me-first", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "reversal", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Reversal_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Reversal", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/reversal.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/reversal", + "target": "Normal", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "screech", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Screech_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Lowers the target's Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Screech", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/screech.shtml", + "shortDesc": "Lowers the target's Defense by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/screech", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "uproar", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Uproar_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "The user spends three turns locked into this move. This move targets an opponent at random on each turn. On the first of the three turns, all sleeping active Pokémon wake up. During the three turns, no active Pokémon can fall asleep by any means, and Pokémon switched in during the effect do not wake up. If the user is prevented from moving or the attack is not successful against the target during one of the turns, the effect ends.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 30, + "name": "Uproar", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uproar.shtml", + "shortDesc": "Lasts 3 turns. Active Pokémon cannot fall asleep.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/uproar", + "target": "Random", + "type": "Normal", + "zMovePower": 175 + } + } + ], + "eventMoves": [], + "tmMoves": [ + { + "generation": 4, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "blizzard", + "accuracy": 70, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Blizzard_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to freeze the target. If the weather is Snow, this move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Blizzard", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/blizzard.shtml", + "shortDesc": "10% chance to freeze foe(s). Can't miss in Snow.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", + "target": "Adjacent Foes", + "type": "Ice", + "zMovePower": 185 + } + }, + { + "generation": 4, + "move": { + "key": "captivate", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Captivate_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 2 stages. The target is unaffected if both the user and the target are the same gender, or if either is genderless. Pokémon with the Oblivious Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Captivate", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/captivate.shtml", + "shortDesc": "Lowers the foe(s) Sp. Atk by 2 if opposite gender.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "chargebeam", + "accuracy": 90, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charge_Beam_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 70% chance to raise the user's Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Charge Beam", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/chargebeam.shtml", + "shortDesc": "70% chance to raise the user's Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charge-beam", + "target": "Normal", + "type": "Electric", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "cut", + "accuracy": 95, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Cut_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": "The Pokémon is able to cut down small trees, and prior to gen 4, tall grass. It is taught to Pokémon with HM01 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Cut", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/cut.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "grassknot", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Grass_Knot_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "This move's power is 20 if the target weighs less than 10 kg, 40 if less than 25 kg, 60 if less than 50 kg, 80 if less than 100 kg, 100 if less than 200 kg, and 120 if greater than or equal to 200 kg.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Grass Knot", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/grassknot.shtml", + "shortDesc": "More power the heavier the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/grass-knot", + "target": "Adjacent Foes", + "type": "Grass", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "icebeam", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Ice_Beam_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to freeze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Ice Beam", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/icebeam.shtml", + "shortDesc": "10% chance to freeze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", + "target": "Normal", + "type": "Ice", + "zMovePower": 175 + } + }, + { + "generation": 4, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 4, + "move": { + "key": "naturalgift", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Natural_Gift_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "The type and power of this move depend on the user's held Berry, and the Berry is lost. Fails if the user is not holding a Berry, if the user has the Klutz Ability, or if Embargo or Magic Room is in effect for the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Natural Gift", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/naturalgift.shtml", + "shortDesc": "Power and type depends on the user's Berry.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "pluck", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Pluck_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this move is successful and the user has not fainted, it steals the target's held Berry if it is holding one and eats it immediately, gaining its effects even if the user's item is being ignored. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Pluck", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/pluck.shtml", + "shortDesc": "User steals and eats the target's Berry.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/pluck", + "target": "Any", + "type": "Flying", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "rocksmash", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Smash_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 50% chance to lower the target's Defense by 1 stage.", + "isFieldMove": "The Pokémon can smash small boulders. Rock smash can be taught to a Pokémon by using TM08 in Generation II, by using HM06 in Generations III and IV, TM94 in Generation V and Pokémon X and Y, and HM06 in Omega Ruby and Alpha Sapphire.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 70, + "name": "Rock Smash", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocksmash.shtml", + "shortDesc": "50% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", + "target": "Normal", + "type": "Fighting", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "secretpower", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Secret_Power_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 30% chance to cause a secondary effect on the target based on the battle terrain. Causes paralysis on the regular Wi-Fi terrain, causes paralysis during Electric Terrain, lowers Special Attack by 1 stage during Misty Terrain, causes sleep during Grassy Terrain and lowers Speed by 1 stage during Psychic Terrain.", + "isFieldMove": "The Pokémon can clear an entrance into a big tree, a bush or an indent in a wall in order to create a Secret Base in Generation III's Ruby, Sapphire and Emerald and Generation VI's Omega Ruby and Alpha Sapphire. It is taught to Pokémon using TM43 in Generations III and IV, and TM94 in Generation VI.", + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Secret Power", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/secretpower.shtml", + "shortDesc": "Effect varies with terrain. (30% paralysis chance)", + "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "shockwave", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shock_Wave_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Shock Wave", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shockwave.shtml", + "shortDesc": "This move does not check accuracy.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", + "target": "Normal", + "type": "Electric", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "taunt", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Taunt_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Prevents the target from using non-damaging moves for its next three turns. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Taunt", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/taunt.shtml", + "shortDesc": "Target can't use status moves its next 3 turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/taunt", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "thief", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thief_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Thief", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thief.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thief", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "thunder", + "accuracy": 70, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 30% chance to paralyze the target. This move can hit a target using Bounce, Fly, or Sky Drop, or is under the effect of Sky Drop. If the weather is Primordial Sea or Rain Dance, this move does not check accuracy. If the weather is Desolate Land or Sunny Day, this move's accuracy is 50%. If this move is used against a Pokémon holding Utility Umbrella, this move's accuracy remains at 70%.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 40, + "name": "Thunder", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunder.shtml", + "shortDesc": "30% chance to paralyze. Can't miss in rain.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", + "target": "Normal", + "type": "Electric", + "zMovePower": 185 + } + }, + { + "generation": 4, + "move": { + "key": "thunderbolt", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunderbolt_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 10% chance to paralyze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Thunderbolt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderbolt.shtml", + "shortDesc": "10% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", + "target": "Normal", + "type": "Electric", + "zMovePower": 175 + } + }, + { + "generation": 4, + "move": { + "key": "thunderwave", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_Wave_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Paralyzes the target. This move does not ignore type immunity.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Thunder Wave", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderwave.shtml", + "shortDesc": "Paralyzes the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", + "target": "Normal", + "type": "Electric", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "uturn", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/U-turn_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this move is successful and the user has not fainted, the user switches out even if it is trapped and is replaced immediately by a selected party member. The user does not switch out if there are no unfainted party members, or if the target switched out using an Eject Button or through the effect of the Emergency Exit or Wimp Out Abilities.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "U-turn", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uturn.shtml", + "shortDesc": "User switches out after damaging the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/u-turn", + "target": "Normal", + "type": "Bug", + "zMovePower": 140 + } + } + ], + "tutorMoves": [ + { + "generation": 4, + "move": { + "key": "endeavor", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endeavor_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to (target's current HP - user's current HP). The target is unaffected if its current HP is less than or equal to the user's current HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Endeavor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endeavor.shtml", + "shortDesc": "Lowers the target's HP to the user's HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "headbutt", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Headbutt_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": "The Pokémon can shake a small tree which may cause a wild Pokémon to fall down. It can be taught to a Pokémon by using TM02 in Generation II. Though available as a level up move in Generation I and future generations, it only had status as a field move in Generation II and Generation IV's HeartGold and SoulSilver.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/headbutt.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "icywind", + "accuracy": 95, + "basePower": "55", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Icy_Wind_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Icy Wind", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/icywind.shtml", + "shortDesc": "100% chance to lower the foe(s) Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", + "target": "Adjacent Foes", + "type": "Ice", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 4, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "suckerpunch", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sucker_Punch_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Fails if the target did not select a physical attack, special attack, or Me First for use this turn, or if the target moves before the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Sucker Punch", + "pp": 5, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/suckerpunch.shtml", + "shortDesc": "Usually goes first. Fails if target is not attacking.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sucker-punch", + "target": "Normal", + "type": "Dark", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "superfang", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Super_Fang_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to half of its current HP, rounded down, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Super Fang", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/superfang.shtml", + "shortDesc": "Does damage equal to 1/2 target's current HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 4, + "level": 25, + "move": { + "key": "assurance", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Assurance_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Power doubles if the target has already taken damage this turn, other than direct damage from Belly Drum, confusion, Curse, or Pain Split.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Assurance", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/assurance.shtml", + "shortDesc": "Power doubles if target was damaged this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/assurance", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 4, + "level": 10, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 4, + "level": 22, + "move": { + "key": "crunch", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Crunch_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 20% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Crunch", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/crunch.shtml", + "shortDesc": "20% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", + "target": "Normal", + "type": "Dark", + "zMovePower": 160 + } + }, + { + "generation": 4, + "level": 31, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 4, + "level": 34, + "move": { + "key": "endeavor", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endeavor_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to (target's current HP - user's current HP). The target is unaffected if its current HP is less than or equal to the user's current HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Endeavor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endeavor.shtml", + "shortDesc": "Lowers the target's HP to the user's HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 7, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 16, + "move": { + "key": "hyperfang", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hyperfang.shtml", + "shortDesc": "10% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 4, + "level": 13, + "move": { + "key": "pursuit", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Pursuit_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "If an opposing Pokémon switches out this turn, this move hits that Pokémon before it leaves the field, even if it was not the original target. If the user moves after an opponent using Flip Turn, Parting Shot, Teleport, U-turn, or Volt Switch, but not Baton Pass, it will hit that opponent before it leaves the field. Power doubles and no accuracy check is done if the user hits an opponent switching out, and the user's turn is over; if an opponent faints from this, the replacement Pokémon does not become active until the end of the turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Pursuit", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/pursuit.shtml", + "shortDesc": "If a foe is switching out, hits it at 2x power.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/pursuit", + "target": "Normal", + "type": "Dark", + "zMovePower": 100 + } + }, + { + "generation": 4, + "level": 4, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "level": 19, + "move": { + "key": "suckerpunch", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sucker_Punch_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Fails if the target did not select a physical attack, special attack, or Me First for use this turn, or if the target moves before the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Sucker Punch", + "pp": 5, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/suckerpunch.shtml", + "shortDesc": "Usually goes first. Fails if target is not attacking.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sucker-punch", + "target": "Normal", + "type": "Dark", + "zMovePower": 140 + } + }, + { + "generation": 4, + "level": 28, + "move": { + "key": "superfang", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Super_Fang_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to half of its current HP, rounded down, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Super Fang", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/superfang.shtml", + "shortDesc": "Does damage equal to 1/2 target's current HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation5": { + "dreamworldMoves": [ + { + "generation": 5, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 5, + "move": { + "key": "mefirst", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Me_First_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The user uses the move the target chose for use this turn against it, if possible, with its power multiplied by 1.5. The move must be a damaging move other than Beak Blast, Belch, Blazing Torque, Combat Torque, Comeuppance, Counter, Covet, Focus Punch, Magical Torque, Me First, Metal Burst, Mirror Coat, Noxious Torque, Shell Trap, Struggle, Thief, or Wicked Torque. Fails if the target moves before the user. Ignores the target's substitute for the purpose of copying the move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Me First", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mefirst.shtml", + "shortDesc": "Copies a foe at 1.5x power. User must be faster.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/me-first", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + } + ], + "eggMoves": [ + { + "generation": 5, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "counter", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Counter_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the last opposing Pokémon to hit the user with a physical attack this turn equal to twice the HP lost by the user from that attack. If the user did not lose HP from the attack, this move deals 1 HP of damage instead. If that opposing Pokémon's position is no longer in use and there is another opposing Pokémon on the field, the damage is done to it instead. Only the last hit of a multi-hit attack is counted. Fails if the user was not hit by an opposing Pokémon's physical attack this turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 75, + "name": "Counter", + "pp": 20, + "priority": -5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/counter.shtml", + "shortDesc": "If hit by physical attack, returns double damage.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", + "target": "Foe that last hit user", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "finalgambit", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Final_Gambit_(move)", + "category": "Special", + "contestType": "Tough", + "desc": "Deals damage to the target equal to the user's current HP. If this move is successful, the user faints.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Final Gambit", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/finalgambit.shtml", + "shortDesc": "Does damage equal to the user's HP. User faints.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/final-gambit", + "target": "Normal", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "flamewheel", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flame_Wheel_(move)", + "category": "Physical", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Flame Wheel", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamewheel.shtml", + "shortDesc": "10% chance to burn the target. Thaws user.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flame-wheel", + "target": "Normal", + "type": "Fire", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "furyswipes", + "accuracy": 80, + "basePower": "18", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fury_Swipes_(move)", + "category": "Physical", + "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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Fury Swipes", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/furyswipes.shtml", + "shortDesc": "Hits 2-5 times in one turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-swipes", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 5, + "move": { + "key": "mefirst", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Me_First_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The user uses the move the target chose for use this turn against it, if possible, with its power multiplied by 1.5. The move must be a damaging move other than Beak Blast, Belch, Blazing Torque, Combat Torque, Comeuppance, Counter, Covet, Focus Punch, Magical Torque, Me First, Metal Burst, Mirror Coat, Noxious Torque, Shell Trap, Struggle, Thief, or Wicked Torque. Fails if the target moves before the user. Ignores the target's substitute for the purpose of copying the move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Me First", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mefirst.shtml", + "shortDesc": "Copies a foe at 1.5x power. User must be faster.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/me-first", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "revenge", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Revenge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Power doubles if the user was hit by the target this turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Revenge", + "pp": 10, + "priority": -4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/revenge.shtml", + "shortDesc": "Power doubles if user is damaged by the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/revenge", + "target": "Normal", + "type": "Fighting", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "reversal", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Reversal_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Reversal", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/reversal.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/reversal", + "target": "Normal", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "screech", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Screech_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Lowers the target's Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Screech", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/screech.shtml", + "shortDesc": "Lowers the target's Defense by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/screech", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "uproar", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Uproar_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "The user spends three turns locked into this move. This move targets an opponent at random on each turn. On the first of the three turns, all sleeping active Pokémon wake up. During the three turns, no active Pokémon can fall asleep by any means, and Pokémon switched in during the effect do not wake up. If the user is prevented from moving or the attack is not successful against the target during one of the turns, the effect ends.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 30, + "name": "Uproar", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uproar.shtml", + "shortDesc": "Lasts 3 turns. Active Pokémon cannot fall asleep.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/uproar", + "target": "Random", + "type": "Normal", + "zMovePower": 175 + } + } + ], + "eventMoves": [], + "tmMoves": [ + { + "generation": 5, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "blizzard", + "accuracy": 70, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Blizzard_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to freeze the target. If the weather is Snow, this move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Blizzard", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/blizzard.shtml", + "shortDesc": "10% chance to freeze foe(s). Can't miss in Snow.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", + "target": "Adjacent Foes", + "type": "Ice", + "zMovePower": 185 + } + }, + { + "generation": 5, + "move": { + "key": "chargebeam", + "accuracy": 90, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charge_Beam_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 70% chance to raise the user's Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Charge Beam", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/chargebeam.shtml", + "shortDesc": "70% chance to raise the user's Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charge-beam", + "target": "Normal", + "type": "Electric", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "cut", + "accuracy": 95, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Cut_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": "The Pokémon is able to cut down small trees, and prior to gen 4, tall grass. It is taught to Pokémon with HM01 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Cut", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/cut.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 5, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "grassknot", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Grass_Knot_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "This move's power is 20 if the target weighs less than 10 kg, 40 if less than 25 kg, 60 if less than 50 kg, 80 if less than 100 kg, 100 if less than 200 kg, and 120 if greater than or equal to 200 kg.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Grass Knot", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/grassknot.shtml", + "shortDesc": "More power the heavier the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/grass-knot", + "target": "Adjacent Foes", + "type": "Grass", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "icebeam", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Ice_Beam_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to freeze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Ice Beam", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/icebeam.shtml", + "shortDesc": "10% chance to freeze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", + "target": "Normal", + "type": "Ice", + "zMovePower": 175 + } + }, + { + "generation": 5, + "move": { + "key": "pluck", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Pluck_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this move is successful and the user has not fainted, it steals the target's held Berry if it is holding one and eats it immediately, gaining its effects even if the user's item is being ignored. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Pluck", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/pluck.shtml", + "shortDesc": "User steals and eats the target's Berry.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/pluck", + "target": "Any", + "type": "Flying", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "retaliate", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Retaliate_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Power doubles if one of the user's party members fainted last turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 20, + "name": "Retaliate", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/retaliate.shtml", + "shortDesc": "Power doubles if an ally fainted last turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 5, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "rocksmash", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Smash_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 50% chance to lower the target's Defense by 1 stage.", + "isFieldMove": "The Pokémon can smash small boulders. Rock smash can be taught to a Pokémon by using TM08 in Generation II, by using HM06 in Generations III and IV, TM94 in Generation V and Pokémon X and Y, and HM06 in Omega Ruby and Alpha Sapphire.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 70, + "name": "Rock Smash", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocksmash.shtml", + "shortDesc": "50% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", + "target": "Normal", + "type": "Fighting", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "round", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Round_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "If there are other active Pokémon that chose this move for use this turn, those Pokémon take their turn immediately after the user, in Speed order, and this move's power is 120 for each other user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Round", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/round.shtml", + "shortDesc": "Power doubles if others used Round this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/round", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "taunt", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Taunt_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Prevents the target from using non-damaging moves for its next three turns. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Taunt", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/taunt.shtml", + "shortDesc": "Target can't use status moves its next 3 turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/taunt", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "thief", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thief_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Thief", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thief.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thief", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "thunder", + "accuracy": 70, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 30% chance to paralyze the target. This move can hit a target using Bounce, Fly, or Sky Drop, or is under the effect of Sky Drop. If the weather is Primordial Sea or Rain Dance, this move does not check accuracy. If the weather is Desolate Land or Sunny Day, this move's accuracy is 50%. If this move is used against a Pokémon holding Utility Umbrella, this move's accuracy remains at 70%.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 40, + "name": "Thunder", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunder.shtml", + "shortDesc": "30% chance to paralyze. Can't miss in rain.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", + "target": "Normal", + "type": "Electric", + "zMovePower": 185 + } + }, + { + "generation": 5, + "move": { + "key": "thunderbolt", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunderbolt_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 10% chance to paralyze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Thunderbolt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderbolt.shtml", + "shortDesc": "10% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", + "target": "Normal", + "type": "Electric", + "zMovePower": 175 + } + }, + { + "generation": 5, + "move": { + "key": "thunderwave", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_Wave_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Paralyzes the target. This move does not ignore type immunity.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Thunder Wave", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderwave.shtml", + "shortDesc": "Paralyzes the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", + "target": "Normal", + "type": "Electric", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "uturn", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/U-turn_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this move is successful and the user has not fainted, the user switches out even if it is trapped and is replaced immediately by a selected party member. The user does not switch out if there are no unfainted party members, or if the target switched out using an Eject Button or through the effect of the Emergency Exit or Wimp Out Abilities.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "U-turn", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uturn.shtml", + "shortDesc": "User switches out after damaging the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/u-turn", + "target": "Normal", + "type": "Bug", + "zMovePower": 140 + } + }, + { + "generation": 5, + "move": { + "key": "wildcharge", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wild_Charge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Wild Charge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wildcharge.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wild-charge", + "target": "Normal", + "type": "Electric", + "zMovePower": 175 + } + }, + { + "generation": 5, + "move": { + "key": "workup", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Work_Up_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Raises the user's Attack and Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Work Up", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/workup.shtml", + "shortDesc": "Raises the user's Attack and Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 5, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "endeavor", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endeavor_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to (target's current HP - user's current HP). The target is unaffected if its current HP is less than or equal to the user's current HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Endeavor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endeavor.shtml", + "shortDesc": "Lowers the target's HP to the user's HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "icywind", + "accuracy": 95, + "basePower": "55", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Icy_Wind_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Icy Wind", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/icywind.shtml", + "shortDesc": "100% chance to lower the foe(s) Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", + "target": "Adjacent Foes", + "type": "Ice", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 5, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 5, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "superfang", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Super_Fang_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to half of its current HP, rounded down, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Super Fang", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/superfang.shtml", + "shortDesc": "Does damage equal to 1/2 target's current HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "uproar", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Uproar_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "The user spends three turns locked into this move. This move targets an opponent at random on each turn. On the first of the three turns, all sleeping active Pokémon wake up. During the three turns, no active Pokémon can fall asleep by any means, and Pokémon switched in during the effect do not wake up. If the user is prevented from moving or the attack is not successful against the target during one of the turns, the effect ends.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 30, + "name": "Uproar", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uproar.shtml", + "shortDesc": "Lasts 3 turns. Active Pokémon cannot fall asleep.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/uproar", + "target": "Random", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 5, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 5, + "level": 25, + "move": { + "key": "assurance", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Assurance_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Power doubles if the target has already taken damage this turn, other than direct damage from Belly Drum, confusion, Curse, or Pain Split.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Assurance", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/assurance.shtml", + "shortDesc": "Power doubles if target was damaged this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/assurance", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 5, + "level": 10, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 5, + "level": 22, + "move": { + "key": "crunch", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Crunch_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 20% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Crunch", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/crunch.shtml", + "shortDesc": "20% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", + "target": "Normal", + "type": "Dark", + "zMovePower": 160 + } + }, + { + "generation": 5, + "level": 31, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 5, + "level": 34, + "move": { + "key": "endeavor", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endeavor_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to (target's current HP - user's current HP). The target is unaffected if its current HP is less than or equal to the user's current HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Endeavor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endeavor.shtml", + "shortDesc": "Lowers the target's HP to the user's HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 7, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 16, + "move": { + "key": "hyperfang", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hyperfang.shtml", + "shortDesc": "10% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 5, + "level": 13, + "move": { + "key": "pursuit", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Pursuit_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "If an opposing Pokémon switches out this turn, this move hits that Pokémon before it leaves the field, even if it was not the original target. If the user moves after an opponent using Flip Turn, Parting Shot, Teleport, U-turn, or Volt Switch, but not Baton Pass, it will hit that opponent before it leaves the field. Power doubles and no accuracy check is done if the user hits an opponent switching out, and the user's turn is over; if an opponent faints from this, the replacement Pokémon does not become active until the end of the turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Pursuit", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/pursuit.shtml", + "shortDesc": "If a foe is switching out, hits it at 2x power.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/pursuit", + "target": "Normal", + "type": "Dark", + "zMovePower": 100 + } + }, + { + "generation": 5, + "level": 4, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "level": 19, + "move": { + "key": "suckerpunch", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sucker_Punch_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Fails if the target did not select a physical attack, special attack, or Me First for use this turn, or if the target moves before the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Sucker Punch", + "pp": 5, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/suckerpunch.shtml", + "shortDesc": "Usually goes first. Fails if target is not attacking.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sucker-punch", + "target": "Normal", + "type": "Dark", + "zMovePower": 140 + } + }, + { + "generation": 5, + "level": 28, + "move": { + "key": "superfang", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Super_Fang_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to half of its current HP, rounded down, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Super Fang", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/superfang.shtml", + "shortDesc": "Does damage equal to 1/2 target's current HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation6": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 6, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "counter", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Counter_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the last opposing Pokémon to hit the user with a physical attack this turn equal to twice the HP lost by the user from that attack. If the user did not lose HP from the attack, this move deals 1 HP of damage instead. If that opposing Pokémon's position is no longer in use and there is another opposing Pokémon on the field, the damage is done to it instead. Only the last hit of a multi-hit attack is counted. Fails if the user was not hit by an opposing Pokémon's physical attack this turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 75, + "name": "Counter", + "pp": 20, + "priority": -5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/counter.shtml", + "shortDesc": "If hit by physical attack, returns double damage.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", + "target": "Foe that last hit user", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "finalgambit", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Final_Gambit_(move)", + "category": "Special", + "contestType": "Tough", + "desc": "Deals damage to the target equal to the user's current HP. If this move is successful, the user faints.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Final Gambit", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/finalgambit.shtml", + "shortDesc": "Does damage equal to the user's HP. User faints.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/final-gambit", + "target": "Normal", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "flamewheel", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flame_Wheel_(move)", + "category": "Physical", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Flame Wheel", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamewheel.shtml", + "shortDesc": "10% chance to burn the target. Thaws user.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flame-wheel", + "target": "Normal", + "type": "Fire", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "furyswipes", + "accuracy": 80, + "basePower": "18", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fury_Swipes_(move)", + "category": "Physical", + "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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Fury Swipes", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/furyswipes.shtml", + "shortDesc": "Hits 2-5 times in one turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-swipes", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 6, + "move": { + "key": "mefirst", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Me_First_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The user uses the move the target chose for use this turn against it, if possible, with its power multiplied by 1.5. The move must be a damaging move other than Beak Blast, Belch, Blazing Torque, Combat Torque, Comeuppance, Counter, Covet, Focus Punch, Magical Torque, Me First, Metal Burst, Mirror Coat, Noxious Torque, Shell Trap, Struggle, Thief, or Wicked Torque. Fails if the target moves before the user. Ignores the target's substitute for the purpose of copying the move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Me First", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mefirst.shtml", + "shortDesc": "Copies a foe at 1.5x power. User must be faster.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/me-first", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "revenge", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Revenge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Power doubles if the user was hit by the target this turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Revenge", + "pp": 10, + "priority": -4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/revenge.shtml", + "shortDesc": "Power doubles if user is damaged by the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/revenge", + "target": "Normal", + "type": "Fighting", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "reversal", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Reversal_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Reversal", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/reversal.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/reversal", + "target": "Normal", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "screech", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Screech_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Lowers the target's Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Screech", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/screech.shtml", + "shortDesc": "Lowers the target's Defense by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/screech", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "uproar", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Uproar_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "The user spends three turns locked into this move. This move targets an opponent at random on each turn. On the first of the three turns, all sleeping active Pokémon wake up. During the three turns, no active Pokémon can fall asleep by any means, and Pokémon switched in during the effect do not wake up. If the user is prevented from moving or the attack is not successful against the target during one of the turns, the effect ends.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 30, + "name": "Uproar", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uproar.shtml", + "shortDesc": "Lasts 3 turns. Active Pokémon cannot fall asleep.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/uproar", + "target": "Random", + "type": "Normal", + "zMovePower": 175 + } + } + ], + "eventMoves": [], + "tmMoves": [ + { + "generation": 6, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "blizzard", + "accuracy": 70, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Blizzard_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to freeze the target. If the weather is Snow, this move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Blizzard", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/blizzard.shtml", + "shortDesc": "10% chance to freeze foe(s). Can't miss in Snow.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", + "target": "Adjacent Foes", + "type": "Ice", + "zMovePower": 185 + } + }, + { + "generation": 6, + "move": { + "key": "chargebeam", + "accuracy": 90, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charge_Beam_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 70% chance to raise the user's Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Charge Beam", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/chargebeam.shtml", + "shortDesc": "70% chance to raise the user's Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charge-beam", + "target": "Normal", + "type": "Electric", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "confide", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Confide_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Confide", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/confide.shtml", + "shortDesc": "Lowers the target's Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "cut", + "accuracy": 95, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Cut_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": "The Pokémon is able to cut down small trees, and prior to gen 4, tall grass. It is taught to Pokémon with HM01 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Cut", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/cut.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "grassknot", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Grass_Knot_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "This move's power is 20 if the target weighs less than 10 kg, 40 if less than 25 kg, 60 if less than 50 kg, 80 if less than 100 kg, 100 if less than 200 kg, and 120 if greater than or equal to 200 kg.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Grass Knot", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/grassknot.shtml", + "shortDesc": "More power the heavier the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/grass-knot", + "target": "Adjacent Foes", + "type": "Grass", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "icebeam", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Ice_Beam_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to freeze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Ice Beam", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/icebeam.shtml", + "shortDesc": "10% chance to freeze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", + "target": "Normal", + "type": "Ice", + "zMovePower": 175 + } + }, + { + "generation": 6, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "retaliate", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Retaliate_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Power doubles if one of the user's party members fainted last turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 20, + "name": "Retaliate", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/retaliate.shtml", + "shortDesc": "Power doubles if an ally fainted last turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/retaliate", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "rocksmash", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Smash_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 50% chance to lower the target's Defense by 1 stage.", + "isFieldMove": "The Pokémon can smash small boulders. Rock smash can be taught to a Pokémon by using TM08 in Generation II, by using HM06 in Generations III and IV, TM94 in Generation V and Pokémon X and Y, and HM06 in Omega Ruby and Alpha Sapphire.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 70, + "name": "Rock Smash", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocksmash.shtml", + "shortDesc": "50% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", + "target": "Normal", + "type": "Fighting", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "round", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Round_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "If there are other active Pokémon that chose this move for use this turn, those Pokémon take their turn immediately after the user, in Speed order, and this move's power is 120 for each other user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Round", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/round.shtml", + "shortDesc": "Power doubles if others used Round this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/round", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "secretpower", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Secret_Power_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 30% chance to cause a secondary effect on the target based on the battle terrain. Causes paralysis on the regular Wi-Fi terrain, causes paralysis during Electric Terrain, lowers Special Attack by 1 stage during Misty Terrain, causes sleep during Grassy Terrain and lowers Speed by 1 stage during Psychic Terrain.", + "isFieldMove": "The Pokémon can clear an entrance into a big tree, a bush or an indent in a wall in order to create a Secret Base in Generation III's Ruby, Sapphire and Emerald and Generation VI's Omega Ruby and Alpha Sapphire. It is taught to Pokémon using TM43 in Generations III and IV, and TM94 in Generation VI.", + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Secret Power", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/secretpower.shtml", + "shortDesc": "Effect varies with terrain. (30% paralysis chance)", + "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "taunt", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Taunt_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Prevents the target from using non-damaging moves for its next three turns. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Taunt", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/taunt.shtml", + "shortDesc": "Target can't use status moves its next 3 turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/taunt", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "thief", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thief_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Thief", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thief.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thief", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "thunder", + "accuracy": 70, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 30% chance to paralyze the target. This move can hit a target using Bounce, Fly, or Sky Drop, or is under the effect of Sky Drop. If the weather is Primordial Sea or Rain Dance, this move does not check accuracy. If the weather is Desolate Land or Sunny Day, this move's accuracy is 50%. If this move is used against a Pokémon holding Utility Umbrella, this move's accuracy remains at 70%.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 40, + "name": "Thunder", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunder.shtml", + "shortDesc": "30% chance to paralyze. Can't miss in rain.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", + "target": "Normal", + "type": "Electric", + "zMovePower": 185 + } + }, + { + "generation": 6, + "move": { + "key": "thunderbolt", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunderbolt_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 10% chance to paralyze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Thunderbolt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderbolt.shtml", + "shortDesc": "10% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", + "target": "Normal", + "type": "Electric", + "zMovePower": 175 + } + }, + { + "generation": 6, + "move": { + "key": "thunderwave", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_Wave_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Paralyzes the target. This move does not ignore type immunity.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Thunder Wave", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderwave.shtml", + "shortDesc": "Paralyzes the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", + "target": "Normal", + "type": "Electric", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "uturn", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/U-turn_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this move is successful and the user has not fainted, the user switches out even if it is trapped and is replaced immediately by a selected party member. The user does not switch out if there are no unfainted party members, or if the target switched out using an Eject Button or through the effect of the Emergency Exit or Wimp Out Abilities.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "U-turn", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uturn.shtml", + "shortDesc": "User switches out after damaging the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/u-turn", + "target": "Normal", + "type": "Bug", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "wildcharge", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wild_Charge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Wild Charge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wildcharge.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wild-charge", + "target": "Normal", + "type": "Electric", + "zMovePower": 175 + } + } + ], + "tutorMoves": [ + { + "generation": 6, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "endeavor", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endeavor_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to (target's current HP - user's current HP). The target is unaffected if its current HP is less than or equal to the user's current HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Endeavor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endeavor.shtml", + "shortDesc": "Lowers the target's HP to the user's HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "icywind", + "accuracy": 95, + "basePower": "55", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Icy_Wind_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Icy Wind", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/icywind.shtml", + "shortDesc": "100% chance to lower the foe(s) Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", + "target": "Adjacent Foes", + "type": "Ice", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 6, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 6, + "move": { + "key": "shockwave", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shock_Wave_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Shock Wave", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shockwave.shtml", + "shortDesc": "This move does not check accuracy.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", + "target": "Normal", + "type": "Electric", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "superfang", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Super_Fang_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to half of its current HP, rounded down, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Super Fang", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/superfang.shtml", + "shortDesc": "Does damage equal to 1/2 target's current HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "uproar", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Uproar_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "The user spends three turns locked into this move. This move targets an opponent at random on each turn. On the first of the three turns, all sleeping active Pokémon wake up. During the three turns, no active Pokémon can fall asleep by any means, and Pokémon switched in during the effect do not wake up. If the user is prevented from moving or the attack is not successful against the target during one of the turns, the effect ends.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 30, + "name": "Uproar", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uproar.shtml", + "shortDesc": "Lasts 3 turns. Active Pokémon cannot fall asleep.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/uproar", + "target": "Random", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 6, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 6, + "level": 25, + "move": { + "key": "assurance", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Assurance_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Power doubles if the target has already taken damage this turn, other than direct damage from Belly Drum, confusion, Curse, or Pain Split.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Assurance", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/assurance.shtml", + "shortDesc": "Power doubles if target was damaged this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/assurance", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 6, + "level": 10, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 6, + "level": 22, + "move": { + "key": "crunch", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Crunch_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 20% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Crunch", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/crunch.shtml", + "shortDesc": "20% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", + "target": "Normal", + "type": "Dark", + "zMovePower": 160 + } + }, + { + "generation": 6, + "level": 31, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 6, + "level": 34, + "move": { + "key": "endeavor", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endeavor_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to (target's current HP - user's current HP). The target is unaffected if its current HP is less than or equal to the user's current HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Endeavor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endeavor.shtml", + "shortDesc": "Lowers the target's HP to the user's HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 7, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 16, + "move": { + "key": "hyperfang", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hyperfang.shtml", + "shortDesc": "10% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 6, + "level": 13, + "move": { + "key": "pursuit", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Pursuit_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "If an opposing Pokémon switches out this turn, this move hits that Pokémon before it leaves the field, even if it was not the original target. If the user moves after an opponent using Flip Turn, Parting Shot, Teleport, U-turn, or Volt Switch, but not Baton Pass, it will hit that opponent before it leaves the field. Power doubles and no accuracy check is done if the user hits an opponent switching out, and the user's turn is over; if an opponent faints from this, the replacement Pokémon does not become active until the end of the turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Pursuit", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/pursuit.shtml", + "shortDesc": "If a foe is switching out, hits it at 2x power.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/pursuit", + "target": "Normal", + "type": "Dark", + "zMovePower": 100 + } + }, + { + "generation": 6, + "level": 4, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "level": 19, + "move": { + "key": "suckerpunch", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sucker_Punch_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Fails if the target did not select a physical attack, special attack, or Me First for use this turn, or if the target moves before the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Sucker Punch", + "pp": 5, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/suckerpunch.shtml", + "shortDesc": "Usually goes first. Fails if target is not attacking.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sucker-punch", + "target": "Normal", + "type": "Dark", + "zMovePower": 140 + } + }, + { + "generation": 6, + "level": 28, + "move": { + "key": "superfang", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Super_Fang_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to half of its current HP, rounded down, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Super Fang", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/superfang.shtml", + "shortDesc": "Does damage equal to 1/2 target's current HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation7": { + "dreamworldMoves": [], + "eggMoves": [ + { + "generation": 7, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "counter", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Counter_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the last opposing Pokémon to hit the user with a physical attack this turn equal to twice the HP lost by the user from that attack. If the user did not lose HP from the attack, this move deals 1 HP of damage instead. If that opposing Pokémon's position is no longer in use and there is another opposing Pokémon on the field, the damage is done to it instead. Only the last hit of a multi-hit attack is counted. Fails if the user was not hit by an opposing Pokémon's physical attack this turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 75, + "name": "Counter", + "pp": 20, + "priority": -5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/counter.shtml", + "shortDesc": "If hit by physical attack, returns double damage.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", + "target": "Foe that last hit user", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "finalgambit", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Final_Gambit_(move)", + "category": "Special", + "contestType": "Tough", + "desc": "Deals damage to the target equal to the user's current HP. If this move is successful, the user faints.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Final Gambit", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/finalgambit.shtml", + "shortDesc": "Does damage equal to the user's HP. User faints.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/final-gambit", + "target": "Normal", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "flamewheel", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flame_Wheel_(move)", + "category": "Physical", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Flame Wheel", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamewheel.shtml", + "shortDesc": "10% chance to burn the target. Thaws user.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flame-wheel", + "target": "Normal", + "type": "Fire", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "furyswipes", + "accuracy": 80, + "basePower": "18", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fury_Swipes_(move)", + "category": "Physical", + "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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Fury Swipes", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/furyswipes.shtml", + "shortDesc": "Hits 2-5 times in one turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-swipes", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 7, + "move": { + "key": "mefirst", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Me_First_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The user uses the move the target chose for use this turn against it, if possible, with its power multiplied by 1.5. The move must be a damaging move other than Beak Blast, Belch, Blazing Torque, Combat Torque, Comeuppance, Counter, Covet, Focus Punch, Magical Torque, Me First, Metal Burst, Mirror Coat, Noxious Torque, Shell Trap, Struggle, Thief, or Wicked Torque. Fails if the target moves before the user. Ignores the target's substitute for the purpose of copying the move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Me First", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mefirst.shtml", + "shortDesc": "Copies a foe at 1.5x power. User must be faster.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/me-first", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "revenge", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Revenge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Power doubles if the user was hit by the target this turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Revenge", + "pp": 10, + "priority": -4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/revenge.shtml", + "shortDesc": "Power doubles if user is damaged by the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/revenge", + "target": "Normal", + "type": "Fighting", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "reversal", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Reversal_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Reversal", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/reversal.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/reversal", + "target": "Normal", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "screech", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Screech_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Lowers the target's Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Screech", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/screech.shtml", + "shortDesc": "Lowers the target's Defense by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/screech", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "uproar", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Uproar_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "The user spends three turns locked into this move. This move targets an opponent at random on each turn. On the first of the three turns, all sleeping active Pokémon wake up. During the three turns, no active Pokémon can fall asleep by any means, and Pokémon switched in during the effect do not wake up. If the user is prevented from moving or the attack is not successful against the target during one of the turns, the effect ends.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 30, + "name": "Uproar", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uproar.shtml", + "shortDesc": "Lasts 3 turns. Active Pokémon cannot fall asleep.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/uproar", + "target": "Random", + "type": "Normal", + "zMovePower": 175 + } + } + ], + "eventMoves": [], + "tmMoves": [ + { + "generation": 7, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "blizzard", + "accuracy": 70, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Blizzard_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to freeze the target. If the weather is Snow, this move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Blizzard", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/blizzard.shtml", + "shortDesc": "10% chance to freeze foe(s). Can't miss in Snow.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", + "target": "Adjacent Foes", + "type": "Ice", + "zMovePower": 185 + } + }, + { + "generation": 7, + "move": { + "key": "chargebeam", + "accuracy": 90, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charge_Beam_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 70% chance to raise the user's Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Charge Beam", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/chargebeam.shtml", + "shortDesc": "70% chance to raise the user's Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/charge-beam", + "target": "Normal", + "type": "Electric", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "confide", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Confide_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Confide", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/confide.shtml", + "shortDesc": "Lowers the target's Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 7, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "grassknot", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Grass_Knot_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "This move's power is 20 if the target weighs less than 10 kg, 40 if less than 25 kg, 60 if less than 50 kg, 80 if less than 100 kg, 100 if less than 200 kg, and 120 if greater than or equal to 200 kg.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Grass Knot", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/grassknot.shtml", + "shortDesc": "More power the heavier the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/grass-knot", + "target": "Adjacent Foes", + "type": "Grass", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "icebeam", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Ice_Beam_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to freeze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Ice Beam", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/icebeam.shtml", + "shortDesc": "10% chance to freeze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/ice-beam", + "target": "Normal", + "type": "Ice", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "round", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Round_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "If there are other active Pokémon that chose this move for use this turn, those Pokémon take their turn immediately after the user, in Speed order, and this move's power is 120 for each other user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Round", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/round.shtml", + "shortDesc": "Power doubles if others used Round this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/round", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "taunt", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Taunt_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Prevents the target from using non-damaging moves for its next three turns. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Taunt", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/taunt.shtml", + "shortDesc": "Target can't use status moves its next 3 turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/taunt", + "target": "Normal", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "thief", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thief_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Thief", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thief.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thief", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "thunder", + "accuracy": 70, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 30% chance to paralyze the target. This move can hit a target using Bounce, Fly, or Sky Drop, or is under the effect of Sky Drop. If the weather is Primordial Sea or Rain Dance, this move does not check accuracy. If the weather is Desolate Land or Sunny Day, this move's accuracy is 50%. If this move is used against a Pokémon holding Utility Umbrella, this move's accuracy remains at 70%.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 40, + "name": "Thunder", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunder.shtml", + "shortDesc": "30% chance to paralyze. Can't miss in rain.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", + "target": "Normal", + "type": "Electric", + "zMovePower": 185 + } + }, + { + "generation": 7, + "move": { + "key": "thunderbolt", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunderbolt_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 10% chance to paralyze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Thunderbolt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderbolt.shtml", + "shortDesc": "10% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", + "target": "Normal", + "type": "Electric", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "thunderwave", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_Wave_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Paralyzes the target. This move does not ignore type immunity.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Thunder Wave", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderwave.shtml", + "shortDesc": "Paralyzes the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-wave", + "target": "Normal", + "type": "Electric", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "uturn", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/U-turn_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this move is successful and the user has not fainted, the user switches out even if it is trapped and is replaced immediately by a selected party member. The user does not switch out if there are no unfainted party members, or if the target switched out using an Eject Button or through the effect of the Emergency Exit or Wimp Out Abilities.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "U-turn", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uturn.shtml", + "shortDesc": "User switches out after damaging the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/u-turn", + "target": "Normal", + "type": "Bug", + "zMovePower": 140 + } + }, + { + "generation": 7, + "move": { + "key": "wildcharge", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Wild_Charge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Wild Charge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/wildcharge.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/wild-charge", + "target": "Normal", + "type": "Electric", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "workup", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Work_Up_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Raises the user's Attack and Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Work Up", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/workup.shtml", + "shortDesc": "Raises the user's Attack and Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/work-up", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 7, + "move": { + "key": "covet", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Covet_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Covet", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/covet.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/covet", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "endeavor", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endeavor_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to (target's current HP - user's current HP). The target is unaffected if its current HP is less than or equal to the user's current HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Endeavor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endeavor.shtml", + "shortDesc": "Lowers the target's HP to the user's HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "icywind", + "accuracy": 95, + "basePower": "55", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Icy_Wind_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Icy Wind", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/icywind.shtml", + "shortDesc": "100% chance to lower the foe(s) Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", + "target": "Adjacent Foes", + "type": "Ice", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 7, + "move": { + "key": "lastresort", + "accuracy": 100, + "basePower": "140", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Last_Resort_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "This move fails unless the user knows this move and at least one other move, and has used all the other moves it knows at least once each since it became active or Transformed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Last Resort", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/lastresort.shtml", + "shortDesc": "Fails unless each known move has been used.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/last-resort", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 7, + "move": { + "key": "shockwave", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shock_Wave_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Shock Wave", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shockwave.shtml", + "shortDesc": "This move does not check accuracy.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shock-wave", + "target": "Normal", + "type": "Electric", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "superfang", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Super_Fang_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to half of its current HP, rounded down, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Super Fang", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/superfang.shtml", + "shortDesc": "Does damage equal to 1/2 target's current HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "uproar", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Uproar_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "The user spends three turns locked into this move. This move targets an opponent at random on each turn. On the first of the three turns, all sleeping active Pokémon wake up. During the three turns, no active Pokémon can fall asleep by any means, and Pokémon switched in during the effect do not wake up. If the user is prevented from moving or the attack is not successful against the target during one of the turns, the effect ends.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 30, + "name": "Uproar", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/uproar.shtml", + "shortDesc": "Lasts 3 turns. Active Pokémon cannot fall asleep.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/uproar", + "target": "Random", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ], + "virtualTransferMoves": [ + { + "generation": 7, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "bide", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bide_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "The user spends two turns locked into this move and then, on the second turn after using this move, the user attacks the last Pokémon that hit it, inflicting double the damage in HP it lost to attacks during the two turns. If the last Pokémon that hit it is no longer active, the user attacks a random opposing Pokémon instead. If the user is prevented from moving during this move's use, the effect ends. This move does not check accuracy and does not ignore type immunity.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Bide", + "pp": 10, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bide.shtml", + "shortDesc": "Waits 2 turns; deals double the damage taken.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bide", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "blizzard", + "accuracy": 70, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Blizzard_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to freeze the target. If the weather is Snow, this move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Blizzard", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/blizzard.shtml", + "shortDesc": "10% chance to freeze foe(s). Can't miss in Snow.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/blizzard", + "target": "Adjacent Foes", + "type": "Ice", + "zMovePower": 185 + } + }, + { + "generation": 7, + "move": { + "key": "bodyslam", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Body_Slam_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to paralyze the target. Damage doubles and no accuracy check is done if the target has used Minimize while active.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Body Slam", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bodyslam.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "bubblebeam", + "accuracy": 100, + "basePower": "65", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bubble_Beam_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Bubble Beam", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bubblebeam.shtml", + "shortDesc": "10% chance to lower the target's Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bubble-beam", + "target": "Normal", + "type": "Water", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "counter", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Counter_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the last opposing Pokémon to hit the user with a physical attack this turn equal to twice the HP lost by the user from that attack. If the user did not lose HP from the attack, this move deals 1 HP of damage instead. If that opposing Pokémon's position is no longer in use and there is another opposing Pokémon on the field, the damage is done to it instead. Only the last hit of a multi-hit attack is counted. Fails if the user was not hit by an opposing Pokémon's physical attack this turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 75, + "name": "Counter", + "pp": 20, + "priority": -5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/counter.shtml", + "shortDesc": "If hit by physical attack, returns double damage.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/counter", + "target": "Foe that last hit user", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "curse", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Curse_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "If the user is not a Ghost type, lowers the user's Speed by 1 stage and raises the user's Attack and Defense by 1 stage. If the user is a Ghost type, the user loses 1/2 of its maximum HP, rounded down and even if it would cause fainting, in exchange for the target losing 1/4 of its maximum HP, rounded down, at the end of each turn while it is active. If the target uses Baton Pass, the replacement will continue to be affected. Fails if there is no target or if the target is already affected.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Curse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/curse.shtml", + "shortDesc": "Curses if Ghost, else -1 Spe, +1 Atk, +1 Def.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/curse", + "target": "Random", + "type": "Ghost", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "defensecurl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Defense_Curl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the user's Defense by 1 stage. As long as the user remains active, the power of the user's Ice Ball and Rollout will be doubled (this effect is not stackable).", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Defense Curl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/defensecurl.shtml", + "shortDesc": "Raises the user's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/defense-curl", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "dig", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dig_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Earthquake and Magnitude but takes double damage from them, and is also unaffected by weather. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can dig the player out of a cavern to the place where the player entered it, similar to an Escape Rope. It can be taught to a Pokémon by using TM28 in all generations. Several Pokémon can also learn the move by leveling up.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dig", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dig.shtml", + "shortDesc": "Digs underground turn 1, strikes turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dig", + "target": "Normal", + "type": "Ground", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 7, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "flamewheel", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flame_Wheel_(move)", + "category": "Physical", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Flame Wheel", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamewheel.shtml", + "shortDesc": "10% chance to burn the target. Thaws user.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flame-wheel", + "target": "Normal", + "type": "Fire", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "furyswipes", + "accuracy": 80, + "basePower": "18", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fury_Swipes_(move)", + "category": "Physical", + "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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Fury Swipes", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/furyswipes.shtml", + "shortDesc": "Hits 2-5 times in one turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-swipes", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "headbutt", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Headbutt_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": "The Pokémon can shake a small tree which may cause a wild Pokémon to fall down. It can be taught to a Pokémon by using TM02 in Generation II. Though available as a level up move in Generation I and future generations, it only had status as a field move in Generation II and Generation IV's HeartGold and SoulSilver.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/headbutt.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 7, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "hyperfang", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hyperfang.shtml", + "shortDesc": "10% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "icywind", + "accuracy": 95, + "basePower": "55", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Icy_Wind_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Icy Wind", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/icywind.shtml", + "shortDesc": "100% chance to lower the foe(s) Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/icy-wind", + "target": "Adjacent Foes", + "type": "Ice", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 7, + "move": { + "key": "mimic", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mimic_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "While the user remains active, this move is replaced by the last move used by the target. The copied move has the maximum PP for that move. Fails if the target has not made a move, if the user has Transformed, if the user already knows the move, or if the move is Assist, Behemoth Bash, Behemoth Blade, Belch, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Sketch, Sleep Talk, Struggle, Transform, or Wicked Torque.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Mimic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mimic.shtml", + "shortDesc": "The last move the target used replaces this one.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "pursuit", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Pursuit_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "If an opposing Pokémon switches out this turn, this move hits that Pokémon before it leaves the field, even if it was not the original target. If the user moves after an opponent using Flip Turn, Parting Shot, Teleport, U-turn, or Volt Switch, but not Baton Pass, it will hit that opponent before it leaves the field. Power doubles and no accuracy check is done if the user hits an opponent switching out, and the user's turn is over; if an opponent faints from this, the replacement Pokémon does not become active until the end of the turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Pursuit", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/pursuit.shtml", + "shortDesc": "If a foe is switching out, hits it at 2x power.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/pursuit", + "target": "Normal", + "type": "Dark", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "rage", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rage_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Once this move is successfully used, the user's Attack is raised by 1 stage every time it is hit by another Pokémon's attack as long as this move is chosen for use.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Rage", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rage.shtml", + "shortDesc": "Raises the user's Attack by 1 if hit during use.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "reversal", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Reversal_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "The power of this move is 20 if X is 33 to 48, 40 if X is 17 to 32, 80 if X is 10 to 16, 100 if X is 5 to 9, 150 if X is 2 to 4, and 200 if X is 0 or 1, where X is equal to (user's current HP * 48 / user's maximum HP), rounded down.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Reversal", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/reversal.shtml", + "shortDesc": "More power the less HP the user has left.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/reversal", + "target": "Normal", + "type": "Fighting", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "rocksmash", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Smash_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 50% chance to lower the target's Defense by 1 stage.", + "isFieldMove": "The Pokémon can smash small boulders. Rock smash can be taught to a Pokémon by using TM08 in Generation II, by using HM06 in Generations III and IV, TM94 in Generation V and Pokémon X and Y, and HM06 in Omega Ruby and Alpha Sapphire.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 70, + "name": "Rock Smash", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocksmash.shtml", + "shortDesc": "50% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", + "target": "Normal", + "type": "Fighting", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "screech", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Screech_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Lowers the target's Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Screech", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/screech.shtml", + "shortDesc": "Lowers the target's Defense by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/screech", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "shadowball", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Ball_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "Has a 20% chance to lower the target's Special Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Shadow Ball", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowball.shtml", + "shortDesc": "20% chance to lower the target's Sp. Def by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-ball", + "target": "Normal", + "type": "Ghost", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "skullbash", + "accuracy": 100, + "basePower": "130", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Skull_Bash_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "This attack charges on the first turn and executes on the second. Raises the user's Defense by 1 stage on the first turn. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 140, + "name": "Skull Bash", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/skullbash.shtml", + "shortDesc": "Raises user's Defense by 1 on turn 1. Hits turn 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/skull-bash", + "target": "Normal", + "type": "Normal", + "zMovePower": 195 + } + }, + { + "generation": 7, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "superfang", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Super_Fang_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to half of its current HP, rounded down, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Super Fang", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/superfang.shtml", + "shortDesc": "Does damage equal to 1/2 target's current HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "thief", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thief_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If this attack was successful and the user has not fainted, it steals the target's held item if the user is not holding one. The target's item is not stolen if it is a Mail or Z-Crystal, or if the target is a Kyogre holding a Blue Orb, a Groudon holding a Red Orb, a Giratina holding a Griseous Orb, an Arceus holding a Plate, a Genesect holding a Drive, a Silvally holding a Memory, or a Pokémon that can Mega Evolve holding the Mega Stone for its species. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Thief", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thief.shtml", + "shortDesc": "If the user has no item, it steals the target's.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thief", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "thunder", + "accuracy": 70, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 30% chance to paralyze the target. This move can hit a target using Bounce, Fly, or Sky Drop, or is under the effect of Sky Drop. If the weather is Primordial Sea or Rain Dance, this move does not check accuracy. If the weather is Desolate Land or Sunny Day, this move's accuracy is 50%. If this move is used against a Pokémon holding Utility Umbrella, this move's accuracy remains at 70%.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 40, + "name": "Thunder", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunder.shtml", + "shortDesc": "30% chance to paralyze. Can't miss in rain.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder", + "target": "Normal", + "type": "Electric", + "zMovePower": 185 + } + }, + { + "generation": 7, + "move": { + "key": "thunderbolt", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunderbolt_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 10% chance to paralyze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Thunderbolt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderbolt.shtml", + "shortDesc": "10% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunderbolt", + "target": "Normal", + "type": "Electric", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "watergun", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Water_Gun_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Water Gun", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/watergun.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/water-gun", + "target": "Normal", + "type": "Water", + "zMovePower": 100 + } + } + ], + "levelUpMoves": [ + { + "generation": 7, + "level": 19, + "move": { + "key": "assurance", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Assurance_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Power doubles if the target has already taken damage this turn, other than direct damage from Belly Drum, confusion, Curse, or Pain Split.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Assurance", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/assurance.shtml", + "shortDesc": "Power doubles if target was damaged this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/assurance", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 10, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 22, + "move": { + "key": "crunch", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Crunch_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 20% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Crunch", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/crunch.shtml", + "shortDesc": "20% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", + "target": "Normal", + "type": "Dark", + "zMovePower": 160 + } + }, + { + "generation": 7, + "level": 31, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 7, + "level": 34, + "move": { + "key": "endeavor", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endeavor_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to (target's current HP - user's current HP). The target is unaffected if its current HP is less than or equal to the user's current HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Endeavor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endeavor.shtml", + "shortDesc": "Lowers the target's HP to the user's HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endeavor", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 7, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 16, + "move": { + "key": "hyperfang", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hyperfang.shtml", + "shortDesc": "10% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "level": 13, + "move": { + "key": "pursuit", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Pursuit_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "If an opposing Pokémon switches out this turn, this move hits that Pokémon before it leaves the field, even if it was not the original target. If the user moves after an opponent using Flip Turn, Parting Shot, Teleport, U-turn, or Volt Switch, but not Baton Pass, it will hit that opponent before it leaves the field. Power doubles and no accuracy check is done if the user hits an opponent switching out, and the user's turn is over; if an opponent faints from this, the replacement Pokémon does not become active until the end of the turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Pursuit", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/pursuit.shtml", + "shortDesc": "If a foe is switching out, hits it at 2x power.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/pursuit", + "target": "Normal", + "type": "Dark", + "zMovePower": 100 + } + }, + { + "generation": 7, + "level": 4, + "move": { + "key": "quickattack", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Quick_Attack_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Quick Attack", + "pp": 30, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/quickattack.shtml", + "shortDesc": "Usually goes first.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/quick-attack", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "level": 25, + "move": { + "key": "suckerpunch", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sucker_Punch_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Fails if the target did not select a physical attack, special attack, or Me First for use this turn, or if the target moves before the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Sucker Punch", + "pp": 5, + "priority": 1, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/suckerpunch.shtml", + "shortDesc": "Usually goes first. Fails if target is not attacking.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sucker-punch", + "target": "Normal", + "type": "Dark", + "zMovePower": 140 + } + }, + { + "generation": 7, + "level": 28, + "move": { + "key": "superfang", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Super_Fang_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Deals damage to the target equal to half of its current HP, rounded down, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Super Fang", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/superfang.shtml", + "shortDesc": "Does damage equal to 1/2 target's current HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/super-fang", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "tackle", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tackle_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Tackle", + "pp": 35, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tackle.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tackle", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "tailwhip", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tail_Whip_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tail Whip", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwhip.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tail-whip", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation8": { + "dreamworldMoves": [], + "eggMoves": [], + "eventMoves": [], + "tmMoves": [], + "tutorMoves": [], + "virtualTransferMoves": [], + "levelUpMoves": [] + } + }, + "key": "raticate", + "eggGroups": ["Field"], + "evYields": { "hp": 0, "attack": 0, "defense": 0, "specialattack": 0, "specialdefense": 0, "speed": 2 }, + "evolutionLevel": "20", + "flavorTexts": [ + { + "flavor": "It whittles down its constantly growing fangs by gnawing on hard things. It can chew apart cinder block walls.", + "game": "Shining Pearl" + } + ], + "forme": null, + "formeLetter": null, + "gender": { "female": "50%", "male": "50%" }, + "height": 0.7, + "isEggObtainable": true, + "backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/raticate.gif", + "levellingRate": "Medium Fast", + "maximumHatchTime": 4111, + "minimumHatchTime": 3855, + "num": 20, + "serebiiPage": "https://www.serebii.net/pokedex-swsh/raticate", + "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/raticate.gif", + "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/raticate.gif", + "smogonPage": "https://www.smogon.com/dex/ss/pokemon/raticate", + "baseForme": null, + "smogonTier": "Past", + "species": "raticate", + "sprite": "https://play.pokemonshowdown.com/sprites/ani/raticate.gif", + "types": [ + { + "name": "Normal", + "matchup": { + "attacking": { + "doubleEffectiveTypes": [], + "doubleResistedTypes": [], + "effectiveTypes": [], + "effectlessTypes": ["ghost"], + "normalTypes": [ + "bug", + "dark", + "dragon", + "electric", + "fairy", + "fighting", + "fire", + "flying", + "grass", + "ground", + "ice", + "normal", + "poison", + "psychic", + "water" + ], + "resistedTypes": ["rock", "steel"] + }, + "defending": { + "doubleEffectiveTypes": [], + "doubleResistedTypes": [], + "effectiveTypes": ["fighting"], + "effectlessTypes": ["ghost"], + "normalTypes": [ + "bug", + "dark", + "dragon", + "electric", + "fairy", + "fire", + "flying", + "grass", + "ground", + "ice", + "normal", + "poison", + "psychic", + "rock", + "steel", + "water" + ], + "resistedTypes": [] + } + } + } + ], + "baseSpecies": null, + "baseStats": { "hp": 55, "attack": 81, "defense": 60, "specialattack": 50, "specialdefense": 70, "speed": 97 }, + "baseStatsTotal": 413, + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/raticate_(Pokémon)", + "catchRate": { "base": 127, "percentageWithOrdinaryPokeballAtFullHealth": "26%" }, + "color": "Brown", + "cosmeticFormes": null, + "weight": 18.5, + "legendary": false, + "mythical": false + } + ], + "preevolutions": null + } + ], "preevolutions": null } } diff --git a/tests/testUtils/full-data-responses/salamence.json b/tests/testUtils/full-data-responses/salamence.json index da671c19f6..2854e573cb 100644 --- a/tests/testUtils/full-data-responses/salamence.json +++ b/tests/testUtils/full-data-responses/salamence.json @@ -10749,7 +10749,6 @@ "maximumHatchTime": 10536, "minimumHatchTime": 10280, "num": 373, - "otherFormes": ["salamencemega"], "serebiiPage": "https://www.serebii.net/pokedex-sv/salamence", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/salamence.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/salamence.gif", @@ -10829,6 +10828,10831 @@ "legendary": false, "mythical": false, "evolutions": null, + "otherFormes": [ + { + "abilities": { + "first": { + "name": "Aerilate", + "key": "aerilate", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Aerilate_(Ability)", + "desc": "This Pokémon's Normal-type moves become Flying-type moves and have their power multiplied by 1.2. This effect comes after other effects that change a move's type, but before Ion Deluge and Electrify's effects.", + "isFieldAbility": null, + "serebiiPage": "https://www.serebii.net/abilitydex/aerilate.shtml", + "shortDesc": "This Pokémon's Normal-type moves become Flying type and have 1.2x power.", + "smogonPage": "https://www.smogon.com/dex/ss/abilities/aerilate", + "pokemonThatHaveThisAbility": [] + }, + "second": null, + "hidden": null, + "special": null + }, + "learnsets": { + "generation3": { + "dreamworldMoves": [], + "eggMoves": [], + "eventMoves": [ + { + "generation": 3, + "move": { + "key": "aerialace", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Aerial_Ace_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Aerial Ace", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/aerialace.shtml", + "shortDesc": "This move does not check accuracy.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", + "target": "Any", + "type": "Flying", + "zMovePower": 120 + } + }, + { + "generation": 3, + "move": { + "key": "dragonbreath", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Breath_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 30% chance to paralyze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Breath", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonbreath.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 3, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "dragondance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Dance_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's Attack and Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Dragon Dance", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragondance.shtml", + "shortDesc": "Raises the user's Attack and Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", + "target": "Self", + "type": "Dragon", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "fly", + "accuracy": 95, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fly_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Gust, Hurricane, Sky Uppercut, Smack Down, Thousand Arrows, Thunder, and Twister, and Gust and Twister have doubled power when used against it. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can fly the player to any previously visited town/landmark. Fly can be taught to Pokémon with HM02 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Fly", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fly.shtml", + "shortDesc": "Flies up on first turn, then strikes the next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", + "target": "Any", + "type": "Flying", + "zMovePower": 175 + } + }, + { + "generation": 3, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "refresh", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Refresh_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user cures its burn, poison, or paralysis. Fails if the user is not burned, poisoned, or paralyzed.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Refresh", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/refresh.shtml", + "shortDesc": "User cures its burn, poison, or paralysis.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/refresh", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "scaryface", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Scary_Face_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Lowers the target's Speed by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Scary Face", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/scaryface.shtml", + "shortDesc": "Lowers the target's Speed by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ], + "tmMoves": [ + { + "generation": 3, + "move": { + "key": "aerialace", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Aerial_Ace_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Aerial Ace", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/aerialace.shtml", + "shortDesc": "This move does not check accuracy.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", + "target": "Any", + "type": "Flying", + "zMovePower": 120 + } + }, + { + "generation": 3, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "brickbreak", + "accuracy": 100, + "basePower": "75", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Brick_Break_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "If this attack does not miss, the effects of Reflect, Light Screen, and Aurora Veil end for the target's side of the field before damage is calculated.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Brick Break", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/brickbreak.shtml", + "shortDesc": "Destroys screens, unless the target is immune.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", + "target": "Normal", + "type": "Fighting", + "zMovePower": 140 + } + }, + { + "generation": 3, + "move": { + "key": "cut", + "accuracy": 95, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Cut_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": "The Pokémon is able to cut down small trees, and prior to gen 4, tall grass. It is taught to Pokémon with HM01 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Cut", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/cut.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "earthquake", + "accuracy": 100, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Earthquake_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Damage doubles if the target is using Dig.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Earthquake", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/earthquake.shtml", + "shortDesc": "Hits adjacent Pokémon. Double damage on Dig.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", + "target": "All Adjacent", + "type": "Ground", + "zMovePower": 180 + } + }, + { + "generation": 3, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 3, + "move": { + "key": "fireblast", + "accuracy": 85, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fire_Blast_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Fire Blast", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fireblast.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", + "target": "Normal", + "type": "Fire", + "zMovePower": 185 + } + }, + { + "generation": 3, + "move": { + "key": "flamethrower", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flamethrower_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flamethrower", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamethrower.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", + "target": "Normal", + "type": "Fire", + "zMovePower": 175 + } + }, + { + "generation": 3, + "move": { + "key": "fly", + "accuracy": 95, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fly_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Gust, Hurricane, Sky Uppercut, Smack Down, Thousand Arrows, Thunder, and Twister, and Gust and Twister have doubled power when used against it. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can fly the player to any previously visited town/landmark. Fly can be taught to Pokémon with HM02 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Fly", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fly.shtml", + "shortDesc": "Flies up on first turn, then strikes the next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", + "target": "Any", + "type": "Flying", + "zMovePower": 175 + } + }, + { + "generation": 3, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 3, + "move": { + "key": "hyperbeam", + "accuracy": 90, + "basePower": "150", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Beam_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "If this move is successful, the user must recharge on the following turn and cannot select a move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 150, + "name": "Hyper Beam", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hyperbeam.shtml", + "shortDesc": "User cannot move next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 3, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 3, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "roar", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Roar_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "The target is forced to switch out and be replaced with a random unfainted ally. Fails if the target is the last unfainted Pokémon in its party, or if the target used Ingrain previously or has the Suction Cups Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Roar", + "pp": 20, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/roar.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "rocksmash", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Smash_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 50% chance to lower the target's Defense by 1 stage.", + "isFieldMove": "The Pokémon can smash small boulders. Rock smash can be taught to a Pokémon by using TM08 in Generation II, by using HM06 in Generations III and IV, TM94 in Generation V and Pokémon X and Y, and HM06 in Omega Ruby and Alpha Sapphire.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 70, + "name": "Rock Smash", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocksmash.shtml", + "shortDesc": "50% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", + "target": "Normal", + "type": "Fighting", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "rocktomb", + "accuracy": 95, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Tomb_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Rock Tomb", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocktomb.shtml", + "shortDesc": "100% chance to lower the target's Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", + "target": "Normal", + "type": "Rock", + "zMovePower": 120 + } + }, + { + "generation": 3, + "move": { + "key": "secretpower", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Secret_Power_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 30% chance to cause a secondary effect on the target based on the battle terrain. Causes paralysis on the regular Wi-Fi terrain, causes paralysis during Electric Terrain, lowers Special Attack by 1 stage during Misty Terrain, causes sleep during Grassy Terrain and lowers Speed by 1 stage during Psychic Terrain.", + "isFieldMove": "The Pokémon can clear an entrance into a big tree, a bush or an indent in a wall in order to create a Secret Base in Generation III's Ruby, Sapphire and Emerald and Generation VI's Omega Ruby and Alpha Sapphire. It is taught to Pokémon using TM43 in Generations III and IV, and TM94 in Generation VI.", + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Secret Power", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/secretpower.shtml", + "shortDesc": "Effect varies with terrain. (30% paralysis chance)", + "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 3, + "move": { + "key": "steelwing", + "accuracy": 90, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Steel_Wing_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to raise the user's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Steel Wing", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/steelwing.shtml", + "shortDesc": "10% chance to raise the user's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-wing", + "target": "Normal", + "type": "Steel", + "zMovePower": 140 + } + }, + { + "generation": 3, + "move": { + "key": "strength", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Strength_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": "The Pokémon is able to push certain types of boulders around. Strength can be taught to Pokémon with HM04 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Strength", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/strength.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 3, + "move": { + "key": "bodyslam", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Body_Slam_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to paralyze the target. Damage doubles and no accuracy check is done if the target has used Minimize while active.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Body Slam", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bodyslam.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 3, + "move": { + "key": "defensecurl", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Defense_Curl_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the user's Defense by 1 stage. As long as the user remains active, the power of the user's Ice Ball and Rollout will be doubled (this effect is not stackable).", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Defense Curl", + "pp": 40, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/defensecurl.shtml", + "shortDesc": "Raises the user's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/defense-curl", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 3, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "furycutter", + "accuracy": 95, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fury_Cutter_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Power doubles with each successful hit, up to a maximum of 160 power. The power is reset if this move misses or another move is used.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Fury Cutter", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/furycutter.shtml", + "shortDesc": "Power doubles with each hit, up to 160.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", + "target": "Normal", + "type": "Bug", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "mimic", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mimic_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "While the user remains active, this move is replaced by the last move used by the target. The copied move has the maximum PP for that move. Fails if the target has not made a move, if the user has Transformed, if the user already knows the move, or if the move is Assist, Behemoth Bash, Behemoth Blade, Belch, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Sketch, Sleep Talk, Struggle, Transform, or Wicked Torque.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Mimic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mimic.shtml", + "shortDesc": "The last move the target used replaces this one.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mimic", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "rockslide", + "accuracy": 90, + "basePower": "75", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Slide_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Rock Slide", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rockslide.shtml", + "shortDesc": "30% chance to make the foe(s) flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", + "target": "Adjacent Foes", + "type": "Rock", + "zMovePower": 140 + } + }, + { + "generation": 3, + "move": { + "key": "rollout", + "accuracy": 90, + "basePower": "30", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rollout_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this move is successful, the user is locked into this move and cannot make another move until it misses, 5 turns have passed, or the attack cannot be used. Power doubles with each successful hit of this move and doubles again if Defense Curl was used previously by the user. If this move is called by Sleep Talk, the move is used for one turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Rollout", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rollout.shtml", + "shortDesc": "Power doubles with each hit. Repeats for 5 turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rollout", + "target": "Normal", + "type": "Rock", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 3, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 3, + "level": 1, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 3, + "level": 61, + "move": { + "key": "crunch", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Crunch_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 20% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Crunch", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/crunch.shtml", + "shortDesc": "20% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", + "target": "Normal", + "type": "Dark", + "zMovePower": 160 + } + }, + { + "generation": 3, + "level": 93, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 3, + "level": 38, + "move": { + "key": "dragonbreath", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Breath_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 30% chance to paralyze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Breath", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonbreath.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 3, + "level": 79, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 3, + "level": 25, + "move": { + "key": "ember", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Ember_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Ember", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/ember.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", + "target": "Normal", + "type": "Fire", + "zMovePower": 100 + } + }, + { + "generation": 3, + "level": 50, + "move": { + "key": "fly", + "accuracy": 95, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fly_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Gust, Hurricane, Sky Uppercut, Smack Down, Thousand Arrows, Thunder, and Twister, and Gust and Twister have doubled power when used against it. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can fly the player to any previously visited town/landmark. Fly can be taught to Pokémon with HM02 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Fly", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fly.shtml", + "shortDesc": "Flies up on first turn, then strikes the next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", + "target": "Any", + "type": "Flying", + "zMovePower": 175 + } + }, + { + "generation": 3, + "level": 21, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 1, + "move": { + "key": "headbutt", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Headbutt_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": "The Pokémon can shake a small tree which may cause a wild Pokémon to fall down. It can be taught to a Pokémon by using TM02 in Generation II. Though available as a level up move in Generation I and future generations, it only had status as a field move in Generation II and Generation IV's HeartGold and SoulSilver.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/headbutt.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 3, + "level": 1, + "move": { + "key": "leer", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Leer_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Leer", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/leer.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 30, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 3, + "level": 1, + "move": { + "key": "rage", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rage_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Once this move is successfully used, the user's Attack is raised by 1 stage every time it is hit by another Pokémon's attack as long as this move is chosen for use.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Rage", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rage.shtml", + "shortDesc": "Raises the user's Attack by 1 if hit during use.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 3, + "level": 47, + "move": { + "key": "scaryface", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Scary_Face_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Lowers the target's Speed by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Scary Face", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/scaryface.shtml", + "shortDesc": "Lowers the target's Speed by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + } + ] + }, + "generation4": { + "dreamworldMoves": [], + "eggMoves": [], + "eventMoves": [ + { + "generation": 4, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "fireblast", + "accuracy": 85, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fire_Blast_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Fire Blast", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fireblast.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", + "target": "Normal", + "type": "Fire", + "zMovePower": 185 + } + }, + { + "generation": 4, + "move": { + "key": "hydropump", + "accuracy": 80, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hydro_Pump_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Hydro Pump", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hydropump.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hydro-pump", + "target": "Normal", + "type": "Water", + "zMovePower": 185 + } + }, + { + "generation": 4, + "move": { + "key": "stoneedge", + "accuracy": 80, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stone_Edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a higher chance for a critical hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Stone Edge", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/stoneedge.shtml", + "shortDesc": "High critical hit ratio.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", + "target": "Normal", + "type": "Rock", + "zMovePower": 180 + } + } + ], + "tmMoves": [ + { + "generation": 4, + "move": { + "key": "aerialace", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Aerial_Ace_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Aerial Ace", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/aerialace.shtml", + "shortDesc": "This move does not check accuracy.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", + "target": "Any", + "type": "Flying", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "brickbreak", + "accuracy": 100, + "basePower": "75", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Brick_Break_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "If this attack does not miss, the effects of Reflect, Light Screen, and Aurora Veil end for the target's side of the field before damage is calculated.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Brick Break", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/brickbreak.shtml", + "shortDesc": "Destroys screens, unless the target is immune.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", + "target": "Normal", + "type": "Fighting", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "captivate", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Captivate_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 2 stages. The target is unaffected if both the user and the target are the same gender, or if either is genderless. Pokémon with the Oblivious Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Captivate", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/captivate.shtml", + "shortDesc": "Lowers the foe(s) Sp. Atk by 2 if opposite gender.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/captivate", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "cut", + "accuracy": 95, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Cut_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": "The Pokémon is able to cut down small trees, and prior to gen 4, tall grass. It is taught to Pokémon with HM01 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Cut", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/cut.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "defog", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Defog_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Lowers the target's evasiveness by 1 stage. If this move is successful and whether or not the target's evasiveness was affected, the effects of Reflect, Light Screen, Aurora Veil, Safeguard, Mist, Spikes, Toxic Spikes, Stealth Rock, and Sticky Web end for the target's side, and the effects of Spikes, Toxic Spikes, Stealth Rock, and Sticky Web end for the user's side. Ignores a target's substitute, although a substitute will still block the lowering of evasiveness. If there is a terrain active and this move is successful, the terrain will be cleared.", + "isFieldMove": "The Pokémon can clear out fog on the field. Defog can be taught to a Pokémon by using HM05 in Diamond, Pearl, and Platinum. Since Generation V, it has lost its HM status.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Defog", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/defog.shtml", + "shortDesc": "-1 evasion; clears terrain and hazards on both sides.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/defog", + "target": "Normal", + "type": "Flying", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "dragonpulse", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Pulse_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Pulse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonpulse.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", + "target": "Any", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "earthquake", + "accuracy": 100, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Earthquake_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Damage doubles if the target is using Dig.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Earthquake", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/earthquake.shtml", + "shortDesc": "Hits adjacent Pokémon. Double damage on Dig.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", + "target": "All Adjacent", + "type": "Ground", + "zMovePower": 180 + } + }, + { + "generation": 4, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "fireblast", + "accuracy": 85, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fire_Blast_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Fire Blast", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fireblast.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", + "target": "Normal", + "type": "Fire", + "zMovePower": 185 + } + }, + { + "generation": 4, + "move": { + "key": "flamethrower", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flamethrower_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flamethrower", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamethrower.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", + "target": "Normal", + "type": "Fire", + "zMovePower": 175 + } + }, + { + "generation": 4, + "move": { + "key": "fly", + "accuracy": 95, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fly_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Gust, Hurricane, Sky Uppercut, Smack Down, Thousand Arrows, Thunder, and Twister, and Gust and Twister have doubled power when used against it. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can fly the player to any previously visited town/landmark. Fly can be taught to Pokémon with HM02 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Fly", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fly.shtml", + "shortDesc": "Flies up on first turn, then strikes the next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", + "target": "Any", + "type": "Flying", + "zMovePower": 175 + } + }, + { + "generation": 4, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "gigaimpact", + "accuracy": 90, + "basePower": "150", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Giga_Impact_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If this move is successful, the user must recharge on the following turn and cannot select a move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 150, + "name": "Giga Impact", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/gigaimpact.shtml", + "shortDesc": "User cannot move next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 4, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "hyperbeam", + "accuracy": 90, + "basePower": "150", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Beam_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "If this move is successful, the user must recharge on the following turn and cannot select a move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 150, + "name": "Hyper Beam", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hyperbeam.shtml", + "shortDesc": "User cannot move next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 4, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 4, + "move": { + "key": "naturalgift", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Natural_Gift_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "The type and power of this move depend on the user's held Berry, and the Berry is lost. Fails if the user is not holding a Berry, if the user has the Klutz Ability, or if Embargo or Magic Room is in effect for the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Natural Gift", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/naturalgift.shtml", + "shortDesc": "Power and type depends on the user's Berry.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/natural-gift", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "roar", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Roar_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "The target is forced to switch out and be replaced with a random unfainted ally. Fails if the target is the last unfainted Pokémon in its party, or if the target used Ingrain previously or has the Suction Cups Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Roar", + "pp": 20, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/roar.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "rockslide", + "accuracy": 90, + "basePower": "75", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Slide_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Rock Slide", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rockslide.shtml", + "shortDesc": "30% chance to make the foe(s) flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", + "target": "Adjacent Foes", + "type": "Rock", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "rocksmash", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Smash_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 50% chance to lower the target's Defense by 1 stage.", + "isFieldMove": "The Pokémon can smash small boulders. Rock smash can be taught to a Pokémon by using TM08 in Generation II, by using HM06 in Generations III and IV, TM94 in Generation V and Pokémon X and Y, and HM06 in Omega Ruby and Alpha Sapphire.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 70, + "name": "Rock Smash", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocksmash.shtml", + "shortDesc": "50% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", + "target": "Normal", + "type": "Fighting", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "rocktomb", + "accuracy": 95, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Tomb_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Rock Tomb", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocktomb.shtml", + "shortDesc": "100% chance to lower the target's Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", + "target": "Normal", + "type": "Rock", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "roost", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Roost_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The user restores 1/2 of its maximum HP, rounded half up. If the user is not Terastallized, until the end of the turn Flying-type users lose their Flying type and pure Flying-type users become Normal type. Does nothing if the user's HP is full.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Roost", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/roost.shtml", + "shortDesc": "Heals 50% HP. Flying-type removed 'til turn ends.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", + "target": "Self", + "type": "Flying", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "secretpower", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Secret_Power_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 30% chance to cause a secondary effect on the target based on the battle terrain. Causes paralysis on the regular Wi-Fi terrain, causes paralysis during Electric Terrain, lowers Special Attack by 1 stage during Misty Terrain, causes sleep during Grassy Terrain and lowers Speed by 1 stage during Psychic Terrain.", + "isFieldMove": "The Pokémon can clear an entrance into a big tree, a bush or an indent in a wall in order to create a Secret Base in Generation III's Ruby, Sapphire and Emerald and Generation VI's Omega Ruby and Alpha Sapphire. It is taught to Pokémon using TM43 in Generations III and IV, and TM94 in Generation VI.", + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Secret Power", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/secretpower.shtml", + "shortDesc": "Effect varies with terrain. (30% paralysis chance)", + "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "shadowclaw", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a higher chance for a critical hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Shadow Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowclaw.shtml", + "shortDesc": "High critical hit ratio.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", + "target": "Normal", + "type": "Ghost", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "steelwing", + "accuracy": 90, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Steel_Wing_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to raise the user's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Steel Wing", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/steelwing.shtml", + "shortDesc": "10% chance to raise the user's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-wing", + "target": "Normal", + "type": "Steel", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "stoneedge", + "accuracy": 80, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stone_Edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a higher chance for a critical hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Stone Edge", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/stoneedge.shtml", + "shortDesc": "High critical hit ratio.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", + "target": "Normal", + "type": "Rock", + "zMovePower": 180 + } + }, + { + "generation": 4, + "move": { + "key": "strength", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Strength_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": "The Pokémon is able to push certain types of boulders around. Strength can be taught to Pokémon with HM04 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Strength", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/strength.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 4, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 4, + "move": { + "key": "aircutter", + "accuracy": 95, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Air_Cutter_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a higher chance for a critical hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Air Cutter", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/aircutter.shtml", + "shortDesc": "High critical hit ratio. Hits adjacent foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/air-cutter", + "target": "Adjacent Foes", + "type": "Flying", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "aquatail", + "accuracy": 90, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Aqua_Tail_(move)", + "category": "Physical", + "contestType": "Beautiful", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Aqua Tail", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/aquatail.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", + "target": "Normal", + "type": "Water", + "zMovePower": 175 + } + }, + { + "generation": 4, + "move": { + "key": "dracometeor", + "accuracy": 90, + "basePower": "130", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Draco_Meteor_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Lowers the user's Special Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Draco Meteor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dracometeor.shtml", + "shortDesc": "Lowers the user's Sp. Atk by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", + "target": "Normal", + "type": "Dragon", + "zMovePower": 195 + } + }, + { + "generation": 4, + "move": { + "key": "furycutter", + "accuracy": 95, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fury_Cutter_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Power doubles with each successful hit, up to a maximum of 160 power. The power is reset if this move misses or another move is used.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Fury Cutter", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/furycutter.shtml", + "shortDesc": "Power doubles with each hit, up to 160.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fury-cutter", + "target": "Normal", + "type": "Bug", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "headbutt", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Headbutt_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": "The Pokémon can shake a small tree which may cause a wild Pokémon to fall down. It can be taught to a Pokémon by using TM02 in Generation II. Though available as a level up move in Generation I and future generations, it only had status as a field move in Generation II and Generation IV's HeartGold and SoulSilver.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/headbutt.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 4, + "move": { + "key": "heatwave", + "accuracy": 90, + "basePower": "95", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Heat_Wave_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Heat Wave", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/heatwave.shtml", + "shortDesc": "10% chance to burn the foe(s).", + "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", + "target": "Adjacent Foes", + "type": "Fire", + "zMovePower": 175 + } + }, + { + "generation": 4, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "ominouswind", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Ominous_Wind_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to raise the user's Attack, Defense, Special Attack, Special Defense, and Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Ominous Wind", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/ominouswind.shtml", + "shortDesc": "10% chance to raise all stats by 1 (not acc/eva).", + "smogonPage": "https://www.smogon.com/dex/ss/moves/ominous-wind", + "target": "Normal", + "type": "Ghost", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "outrage", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Outrage_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "The user spends two or three turns locked into this move and becomes confused immediately after its move on the last turn of the effect if it is not already. This move targets an opposing Pokémon at random on each turn. If the user is prevented from moving, is asleep at the beginning of a turn, or the attack is not successful against the target on the first turn of the effect or the second turn of a three-turn effect, the effect ends without causing confusion. If this move is called by Sleep Talk and the user is asleep, the move is used for one turn and does not confuse the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Outrage", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/outrage.shtml", + "shortDesc": "Lasts 2-3 turns. Confuses the user afterwards.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", + "target": "Random", + "type": "Dragon", + "zMovePower": 190 + } + }, + { + "generation": 4, + "move": { + "key": "rollout", + "accuracy": 90, + "basePower": "30", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rollout_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "If this move is successful, the user is locked into this move and cannot make another move until it misses, 5 turns have passed, or the attack cannot be used. Power doubles with each successful hit of this move and doubles again if Defense Curl was used previously by the user. If this move is called by Sleep Talk, the move is used for one turn.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Rollout", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rollout.shtml", + "shortDesc": "Power doubles with each hit. Repeats for 5 turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rollout", + "target": "Normal", + "type": "Rock", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 4, + "move": { + "key": "tailwind", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tailwind_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "For 4 turns, the user and its party members have their Speed doubled. Fails if this move is already in effect for the user's side.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tailwind", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwind.shtml", + "shortDesc": "For 4 turns, allies' Speed is doubled.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", + "target": "Ally's Side", + "type": "Flying", + "zMovePower": 0 + } + }, + { + "generation": 4, + "move": { + "key": "twister", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Twister_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 20% chance to make the target flinch. Power doubles if the target is using Bounce, Fly, or Sky Drop, or is under the effect of Sky Drop.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Twister", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/twister.shtml", + "shortDesc": "20% chance to make the foe(s) flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/twister", + "target": "Adjacent Foes", + "type": "Dragon", + "zMovePower": 100 + } + }, + { + "generation": 4, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 4, + "level": 1, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 4, + "level": 53, + "move": { + "key": "crunch", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Crunch_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 20% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Crunch", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/crunch.shtml", + "shortDesc": "20% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", + "target": "Normal", + "type": "Dark", + "zMovePower": 160 + } + }, + { + "generation": 4, + "level": 70, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 4, + "level": 32, + "move": { + "key": "dragonbreath", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Breath_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 30% chance to paralyze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Breath", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonbreath.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 4, + "level": 61, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 4, + "level": 25, + "move": { + "key": "ember", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Ember_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Ember", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/ember.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", + "target": "Normal", + "type": "Fire", + "zMovePower": 100 + } + }, + { + "generation": 4, + "level": 1, + "move": { + "key": "firefang", + "accuracy": 95, + "basePower": "65", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fire_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to burn the target and a 10% chance to make it flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Fire Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/firefang.shtml", + "shortDesc": "10% chance to burn. 10% chance to flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", + "target": "Normal", + "type": "Fire", + "zMovePower": 120 + } + }, + { + "generation": 4, + "level": 50, + "move": { + "key": "fly", + "accuracy": 95, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fly_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Gust, Hurricane, Sky Uppercut, Smack Down, Thousand Arrows, Thunder, and Twister, and Gust and Twister have doubled power when used against it. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can fly the player to any previously visited town/landmark. Fly can be taught to Pokémon with HM02 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Fly", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fly.shtml", + "shortDesc": "Flies up on first turn, then strikes the next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", + "target": "Any", + "type": "Flying", + "zMovePower": 175 + } + }, + { + "generation": 4, + "level": 20, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 1, + "move": { + "key": "headbutt", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Headbutt_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": "The Pokémon can shake a small tree which may cause a wild Pokémon to fall down. It can be taught to a Pokémon by using TM02 in Generation II. Though available as a level up move in Generation I and future generations, it only had status as a field move in Generation II and Generation IV's HeartGold and SoulSilver.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/headbutt.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 4, + "level": 1, + "move": { + "key": "leer", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Leer_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Leer", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/leer.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 30, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 1, + "move": { + "key": "rage", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rage_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Once this move is successfully used, the user's Attack is raised by 1 stage every time it is hit by another Pokémon's attack as long as this move is chosen for use.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Rage", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rage.shtml", + "shortDesc": "Raises the user's Attack by 1 if hit during use.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 4, + "level": 43, + "move": { + "key": "scaryface", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Scary_Face_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Lowers the target's Speed by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Scary Face", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/scaryface.shtml", + "shortDesc": "Lowers the target's Speed by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 4, + "level": 1, + "move": { + "key": "thunderfang", + "accuracy": 95, + "basePower": "65", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to paralyze the target and a 10% chance to make it flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Thunder Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderfang.shtml", + "shortDesc": "10% chance to paralyze. 10% chance to flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", + "target": "Normal", + "type": "Electric", + "zMovePower": 120 + } + }, + { + "generation": 4, + "level": 37, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ] + }, + "generation5": { + "dreamworldMoves": [], + "eggMoves": [], + "eventMoves": [ + { + "generation": 5, + "move": { + "key": "aerialace", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Aerial_Ace_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Aerial Ace", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/aerialace.shtml", + "shortDesc": "This move does not check accuracy.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", + "target": "Any", + "type": "Flying", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "dragondance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Dance_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's Attack and Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Dragon Dance", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragondance.shtml", + "shortDesc": "Raises the user's Attack and Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", + "target": "Self", + "type": "Dragon", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "outrage", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Outrage_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "The user spends two or three turns locked into this move and becomes confused immediately after its move on the last turn of the effect if it is not already. This move targets an opposing Pokémon at random on each turn. If the user is prevented from moving, is asleep at the beginning of a turn, or the attack is not successful against the target on the first turn of the effect or the second turn of a three-turn effect, the effect ends without causing confusion. If this move is called by Sleep Talk and the user is asleep, the move is used for one turn and does not confuse the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Outrage", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/outrage.shtml", + "shortDesc": "Lasts 2-3 turns. Confuses the user afterwards.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", + "target": "Random", + "type": "Dragon", + "zMovePower": 190 + } + } + ], + "tmMoves": [ + { + "generation": 5, + "move": { + "key": "aerialace", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Aerial_Ace_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Aerial Ace", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/aerialace.shtml", + "shortDesc": "This move does not check accuracy.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", + "target": "Any", + "type": "Flying", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "brickbreak", + "accuracy": 100, + "basePower": "75", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Brick_Break_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "If this attack does not miss, the effects of Reflect, Light Screen, and Aurora Veil end for the target's side of the field before damage is calculated.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Brick Break", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/brickbreak.shtml", + "shortDesc": "Destroys screens, unless the target is immune.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", + "target": "Normal", + "type": "Fighting", + "zMovePower": 140 + } + }, + { + "generation": 5, + "move": { + "key": "bulldoze", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bulldoze_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bulldoze", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bulldoze.shtml", + "shortDesc": "100% chance lower adjacent Pkmn Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", + "target": "All Adjacent", + "type": "Ground", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "cut", + "accuracy": 95, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Cut_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": "The Pokémon is able to cut down small trees, and prior to gen 4, tall grass. It is taught to Pokémon with HM01 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Cut", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/cut.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "dragontail", + "accuracy": 90, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Tail_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If both the user and the target have not fainted, the target is forced to switch out and be replaced with a random unfainted ally. This effect fails if the target used Ingrain previously, has the Suction Cups Ability, or this move hit a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Tail", + "pp": 10, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragontail.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "earthquake", + "accuracy": 100, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Earthquake_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Damage doubles if the target is using Dig.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Earthquake", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/earthquake.shtml", + "shortDesc": "Hits adjacent Pokémon. Double damage on Dig.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", + "target": "All Adjacent", + "type": "Ground", + "zMovePower": 180 + } + }, + { + "generation": 5, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 5, + "move": { + "key": "fireblast", + "accuracy": 85, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fire_Blast_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Fire Blast", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fireblast.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", + "target": "Normal", + "type": "Fire", + "zMovePower": 185 + } + }, + { + "generation": 5, + "move": { + "key": "flamethrower", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flamethrower_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flamethrower", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamethrower.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", + "target": "Normal", + "type": "Fire", + "zMovePower": 175 + } + }, + { + "generation": 5, + "move": { + "key": "fly", + "accuracy": 95, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fly_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Gust, Hurricane, Sky Uppercut, Smack Down, Thousand Arrows, Thunder, and Twister, and Gust and Twister have doubled power when used against it. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can fly the player to any previously visited town/landmark. Fly can be taught to Pokémon with HM02 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Fly", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fly.shtml", + "shortDesc": "Flies up on first turn, then strikes the next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", + "target": "Any", + "type": "Flying", + "zMovePower": 175 + } + }, + { + "generation": 5, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "gigaimpact", + "accuracy": 90, + "basePower": "150", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Giga_Impact_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If this move is successful, the user must recharge on the following turn and cannot select a move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 150, + "name": "Giga Impact", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/gigaimpact.shtml", + "shortDesc": "User cannot move next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 5, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "honeclaws", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hone_Claws_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the user's Attack and accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Hone Claws", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/honeclaws.shtml", + "shortDesc": "Raises the user's Attack and accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hone-claws", + "target": "Self", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "hyperbeam", + "accuracy": 90, + "basePower": "150", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Beam_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "If this move is successful, the user must recharge on the following turn and cannot select a move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 150, + "name": "Hyper Beam", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hyperbeam.shtml", + "shortDesc": "User cannot move next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 5, + "move": { + "key": "incinerate", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Incinerate_(move)", + "category": "Special", + "contestType": "Tough", + "desc": "The target loses its held item if it is a Berry or a Gem. This move cannot cause Pokémon with the Sticky Hold Ability to lose their held item. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Incinerate", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/incinerate.shtml", + "shortDesc": "Destroys the foe(s) Berry/Gem.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/incinerate", + "target": "Adjacent Foes", + "type": "Fire", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "roar", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Roar_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "The target is forced to switch out and be replaced with a random unfainted ally. Fails if the target is the last unfainted Pokémon in its party, or if the target used Ingrain previously or has the Suction Cups Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Roar", + "pp": 20, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/roar.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "rockslide", + "accuracy": 90, + "basePower": "75", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Slide_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Rock Slide", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rockslide.shtml", + "shortDesc": "30% chance to make the foe(s) flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", + "target": "Adjacent Foes", + "type": "Rock", + "zMovePower": 140 + } + }, + { + "generation": 5, + "move": { + "key": "rocksmash", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Smash_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 50% chance to lower the target's Defense by 1 stage.", + "isFieldMove": "The Pokémon can smash small boulders. Rock smash can be taught to a Pokémon by using TM08 in Generation II, by using HM06 in Generations III and IV, TM94 in Generation V and Pokémon X and Y, and HM06 in Omega Ruby and Alpha Sapphire.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 70, + "name": "Rock Smash", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocksmash.shtml", + "shortDesc": "50% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", + "target": "Normal", + "type": "Fighting", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "rocktomb", + "accuracy": 95, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Tomb_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Rock Tomb", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocktomb.shtml", + "shortDesc": "100% chance to lower the target's Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", + "target": "Normal", + "type": "Rock", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "round", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Round_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "If there are other active Pokémon that chose this move for use this turn, those Pokémon take their turn immediately after the user, in Speed order, and this move's power is 120 for each other user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Round", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/round.shtml", + "shortDesc": "Power doubles if others used Round this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/round", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 5, + "move": { + "key": "shadowclaw", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a higher chance for a critical hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Shadow Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowclaw.shtml", + "shortDesc": "High critical hit ratio.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", + "target": "Normal", + "type": "Ghost", + "zMovePower": 140 + } + }, + { + "generation": 5, + "move": { + "key": "stoneedge", + "accuracy": 80, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stone_Edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a higher chance for a critical hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Stone Edge", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/stoneedge.shtml", + "shortDesc": "High critical hit ratio.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", + "target": "Normal", + "type": "Rock", + "zMovePower": 180 + } + }, + { + "generation": 5, + "move": { + "key": "strength", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Strength_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": "The Pokémon is able to push certain types of boulders around. Strength can be taught to Pokémon with HM04 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Strength", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/strength.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 5, + "move": { + "key": "aquatail", + "accuracy": 90, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Aqua_Tail_(move)", + "category": "Physical", + "contestType": "Beautiful", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Aqua Tail", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/aquatail.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", + "target": "Normal", + "type": "Water", + "zMovePower": 175 + } + }, + { + "generation": 5, + "move": { + "key": "dracometeor", + "accuracy": 90, + "basePower": "130", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Draco_Meteor_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Lowers the user's Special Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Draco Meteor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dracometeor.shtml", + "shortDesc": "Lowers the user's Sp. Atk by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", + "target": "Normal", + "type": "Dragon", + "zMovePower": 195 + } + }, + { + "generation": 5, + "move": { + "key": "dragonpulse", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Pulse_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Pulse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonpulse.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", + "target": "Any", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 5, + "move": { + "key": "heatwave", + "accuracy": 90, + "basePower": "95", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Heat_Wave_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Heat Wave", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/heatwave.shtml", + "shortDesc": "10% chance to burn the foe(s).", + "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", + "target": "Adjacent Foes", + "type": "Fire", + "zMovePower": 175 + } + }, + { + "generation": 5, + "move": { + "key": "hypervoice", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Voice_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Voice", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hypervoice.shtml", + "shortDesc": "No additional effect. Hits adjacent foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 5, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 5, + "move": { + "key": "outrage", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Outrage_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "The user spends two or three turns locked into this move and becomes confused immediately after its move on the last turn of the effect if it is not already. This move targets an opposing Pokémon at random on each turn. If the user is prevented from moving, is asleep at the beginning of a turn, or the attack is not successful against the target on the first turn of the effect or the second turn of a three-turn effect, the effect ends without causing confusion. If this move is called by Sleep Talk and the user is asleep, the move is used for one turn and does not confuse the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Outrage", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/outrage.shtml", + "shortDesc": "Lasts 2-3 turns. Confuses the user afterwards.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", + "target": "Random", + "type": "Dragon", + "zMovePower": 190 + } + }, + { + "generation": 5, + "move": { + "key": "roost", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Roost_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The user restores 1/2 of its maximum HP, rounded half up. If the user is not Terastallized, until the end of the turn Flying-type users lose their Flying type and pure Flying-type users become Normal type. Does nothing if the user's HP is full.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Roost", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/roost.shtml", + "shortDesc": "Heals 50% HP. Flying-type removed 'til turn ends.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", + "target": "Self", + "type": "Flying", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "move": { + "key": "tailwind", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tailwind_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "For 4 turns, the user and its party members have their Speed doubled. Fails if this move is already in effect for the user's side.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tailwind", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwind.shtml", + "shortDesc": "For 4 turns, allies' Speed is doubled.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", + "target": "Ally's Side", + "type": "Flying", + "zMovePower": 0 + } + }, + { + "generation": 5, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 5, + "level": 1, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 5, + "level": 53, + "move": { + "key": "crunch", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Crunch_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 20% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Crunch", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/crunch.shtml", + "shortDesc": "20% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", + "target": "Normal", + "type": "Dark", + "zMovePower": 160 + } + }, + { + "generation": 5, + "level": 70, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 5, + "level": 32, + "move": { + "key": "dragonbreath", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Breath_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 30% chance to paralyze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Breath", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonbreath.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 5, + "level": 61, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 5, + "level": 80, + "move": { + "key": "dragontail", + "accuracy": 90, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Tail_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If both the user and the target have not fainted, the target is forced to switch out and be replaced with a random unfainted ally. This effect fails if the target used Ingrain previously, has the Suction Cups Ability, or this move hit a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Tail", + "pp": 10, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragontail.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 5, + "level": 25, + "move": { + "key": "ember", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Ember_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Ember", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/ember.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", + "target": "Normal", + "type": "Fire", + "zMovePower": 100 + } + }, + { + "generation": 5, + "level": 1, + "move": { + "key": "firefang", + "accuracy": 95, + "basePower": "65", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fire_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to burn the target and a 10% chance to make it flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Fire Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/firefang.shtml", + "shortDesc": "10% chance to burn. 10% chance to flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", + "target": "Normal", + "type": "Fire", + "zMovePower": 120 + } + }, + { + "generation": 5, + "level": 50, + "move": { + "key": "fly", + "accuracy": 95, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fly_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Gust, Hurricane, Sky Uppercut, Smack Down, Thousand Arrows, Thunder, and Twister, and Gust and Twister have doubled power when used against it. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can fly the player to any previously visited town/landmark. Fly can be taught to Pokémon with HM02 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Fly", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fly.shtml", + "shortDesc": "Flies up on first turn, then strikes the next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", + "target": "Any", + "type": "Flying", + "zMovePower": 175 + } + }, + { + "generation": 5, + "level": 20, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 1, + "move": { + "key": "headbutt", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Headbutt_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": "The Pokémon can shake a small tree which may cause a wild Pokémon to fall down. It can be taught to a Pokémon by using TM02 in Generation II. Though available as a level up move in Generation I and future generations, it only had status as a field move in Generation II and Generation IV's HeartGold and SoulSilver.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/headbutt.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 5, + "level": 1, + "move": { + "key": "leer", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Leer_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Leer", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/leer.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 30, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 1, + "move": { + "key": "rage", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rage_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Once this move is successfully used, the user's Attack is raised by 1 stage every time it is hit by another Pokémon's attack as long as this move is chosen for use.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Rage", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rage.shtml", + "shortDesc": "Raises the user's Attack by 1 if hit during use.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 5, + "level": 43, + "move": { + "key": "scaryface", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Scary_Face_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Lowers the target's Speed by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Scary Face", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/scaryface.shtml", + "shortDesc": "Lowers the target's Speed by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 5, + "level": 1, + "move": { + "key": "thunderfang", + "accuracy": 95, + "basePower": "65", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to paralyze the target and a 10% chance to make it flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Thunder Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderfang.shtml", + "shortDesc": "10% chance to paralyze. 10% chance to flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", + "target": "Normal", + "type": "Electric", + "zMovePower": 120 + } + }, + { + "generation": 5, + "level": 37, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ] + }, + "generation6": { + "dreamworldMoves": [], + "eggMoves": [], + "eventMoves": [], + "tmMoves": [ + { + "generation": 6, + "move": { + "key": "aerialace", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Aerial_Ace_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Aerial Ace", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/aerialace.shtml", + "shortDesc": "This move does not check accuracy.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", + "target": "Any", + "type": "Flying", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "brickbreak", + "accuracy": 100, + "basePower": "75", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Brick_Break_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "If this attack does not miss, the effects of Reflect, Light Screen, and Aurora Veil end for the target's side of the field before damage is calculated.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Brick Break", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/brickbreak.shtml", + "shortDesc": "Destroys screens, unless the target is immune.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", + "target": "Normal", + "type": "Fighting", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "bulldoze", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bulldoze_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bulldoze", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bulldoze.shtml", + "shortDesc": "100% chance lower adjacent Pkmn Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", + "target": "All Adjacent", + "type": "Ground", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "confide", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Confide_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Confide", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/confide.shtml", + "shortDesc": "Lowers the target's Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "cut", + "accuracy": 95, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Cut_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": "The Pokémon is able to cut down small trees, and prior to gen 4, tall grass. It is taught to Pokémon with HM01 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Cut", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/cut.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/cut", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "dragontail", + "accuracy": 90, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Tail_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If both the user and the target have not fainted, the target is forced to switch out and be replaced with a random unfainted ally. This effect fails if the target used Ingrain previously, has the Suction Cups Ability, or this move hit a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Tail", + "pp": 10, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragontail.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "earthquake", + "accuracy": 100, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Earthquake_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Damage doubles if the target is using Dig.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Earthquake", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/earthquake.shtml", + "shortDesc": "Hits adjacent Pokémon. Double damage on Dig.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", + "target": "All Adjacent", + "type": "Ground", + "zMovePower": 180 + } + }, + { + "generation": 6, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "fireblast", + "accuracy": 85, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fire_Blast_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Fire Blast", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fireblast.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", + "target": "Normal", + "type": "Fire", + "zMovePower": 185 + } + }, + { + "generation": 6, + "move": { + "key": "flamethrower", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flamethrower_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flamethrower", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamethrower.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", + "target": "Normal", + "type": "Fire", + "zMovePower": 175 + } + }, + { + "generation": 6, + "move": { + "key": "fly", + "accuracy": 95, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fly_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Gust, Hurricane, Sky Uppercut, Smack Down, Thousand Arrows, Thunder, and Twister, and Gust and Twister have doubled power when used against it. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can fly the player to any previously visited town/landmark. Fly can be taught to Pokémon with HM02 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Fly", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fly.shtml", + "shortDesc": "Flies up on first turn, then strikes the next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", + "target": "Any", + "type": "Flying", + "zMovePower": 175 + } + }, + { + "generation": 6, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "gigaimpact", + "accuracy": 90, + "basePower": "150", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Giga_Impact_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If this move is successful, the user must recharge on the following turn and cannot select a move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 150, + "name": "Giga Impact", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/gigaimpact.shtml", + "shortDesc": "User cannot move next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 6, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "honeclaws", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hone_Claws_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the user's Attack and accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Hone Claws", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/honeclaws.shtml", + "shortDesc": "Raises the user's Attack and accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hone-claws", + "target": "Self", + "type": "Dark", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "hyperbeam", + "accuracy": 90, + "basePower": "150", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Beam_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "If this move is successful, the user must recharge on the following turn and cannot select a move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 150, + "name": "Hyper Beam", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hyperbeam.shtml", + "shortDesc": "User cannot move next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 6, + "move": { + "key": "incinerate", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Incinerate_(move)", + "category": "Special", + "contestType": "Tough", + "desc": "The target loses its held item if it is a Berry or a Gem. This move cannot cause Pokémon with the Sticky Hold Ability to lose their held item. Items lost to this move cannot be regained with Recycle or the Harvest Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Incinerate", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/incinerate.shtml", + "shortDesc": "Destroys the foe(s) Berry/Gem.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/incinerate", + "target": "Adjacent Foes", + "type": "Fire", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "roar", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Roar_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "The target is forced to switch out and be replaced with a random unfainted ally. Fails if the target is the last unfainted Pokémon in its party, or if the target used Ingrain previously or has the Suction Cups Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Roar", + "pp": 20, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/roar.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "rockslide", + "accuracy": 90, + "basePower": "75", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Slide_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Rock Slide", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rockslide.shtml", + "shortDesc": "30% chance to make the foe(s) flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", + "target": "Adjacent Foes", + "type": "Rock", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "rocksmash", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Smash_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 50% chance to lower the target's Defense by 1 stage.", + "isFieldMove": "The Pokémon can smash small boulders. Rock smash can be taught to a Pokémon by using TM08 in Generation II, by using HM06 in Generations III and IV, TM94 in Generation V and Pokémon X and Y, and HM06 in Omega Ruby and Alpha Sapphire.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 70, + "name": "Rock Smash", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocksmash.shtml", + "shortDesc": "50% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-smash", + "target": "Normal", + "type": "Fighting", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "rocktomb", + "accuracy": 95, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Tomb_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Rock Tomb", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocktomb.shtml", + "shortDesc": "100% chance to lower the target's Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", + "target": "Normal", + "type": "Rock", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "roost", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Roost_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The user restores 1/2 of its maximum HP, rounded half up. If the user is not Terastallized, until the end of the turn Flying-type users lose their Flying type and pure Flying-type users become Normal type. Does nothing if the user's HP is full.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Roost", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/roost.shtml", + "shortDesc": "Heals 50% HP. Flying-type removed 'til turn ends.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", + "target": "Self", + "type": "Flying", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "round", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Round_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "If there are other active Pokémon that chose this move for use this turn, those Pokémon take their turn immediately after the user, in Speed order, and this move's power is 120 for each other user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Round", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/round.shtml", + "shortDesc": "Power doubles if others used Round this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/round", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 6, + "move": { + "key": "secretpower", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Secret_Power_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 30% chance to cause a secondary effect on the target based on the battle terrain. Causes paralysis on the regular Wi-Fi terrain, causes paralysis during Electric Terrain, lowers Special Attack by 1 stage during Misty Terrain, causes sleep during Grassy Terrain and lowers Speed by 1 stage during Psychic Terrain.", + "isFieldMove": "The Pokémon can clear an entrance into a big tree, a bush or an indent in a wall in order to create a Secret Base in Generation III's Ruby, Sapphire and Emerald and Generation VI's Omega Ruby and Alpha Sapphire. It is taught to Pokémon using TM43 in Generations III and IV, and TM94 in Generation VI.", + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Secret Power", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/secretpower.shtml", + "shortDesc": "Effect varies with terrain. (30% paralysis chance)", + "smogonPage": "https://www.smogon.com/dex/ss/moves/secret-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "shadowclaw", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a higher chance for a critical hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Shadow Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowclaw.shtml", + "shortDesc": "High critical hit ratio.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", + "target": "Normal", + "type": "Ghost", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "steelwing", + "accuracy": 90, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Steel_Wing_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to raise the user's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Steel Wing", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/steelwing.shtml", + "shortDesc": "10% chance to raise the user's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-wing", + "target": "Normal", + "type": "Steel", + "zMovePower": 140 + } + }, + { + "generation": 6, + "move": { + "key": "stoneedge", + "accuracy": 80, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stone_Edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a higher chance for a critical hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Stone Edge", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/stoneedge.shtml", + "shortDesc": "High critical hit ratio.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", + "target": "Normal", + "type": "Rock", + "zMovePower": 180 + } + }, + { + "generation": 6, + "move": { + "key": "strength", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Strength_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": "The Pokémon is able to push certain types of boulders around. Strength can be taught to Pokémon with HM04 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Strength", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/strength.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/strength", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 6, + "move": { + "key": "aquatail", + "accuracy": 90, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Aqua_Tail_(move)", + "category": "Physical", + "contestType": "Beautiful", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Aqua Tail", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/aquatail.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", + "target": "Normal", + "type": "Water", + "zMovePower": 175 + } + }, + { + "generation": 6, + "move": { + "key": "dracometeor", + "accuracy": 90, + "basePower": "130", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Draco_Meteor_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Lowers the user's Special Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Draco Meteor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dracometeor.shtml", + "shortDesc": "Lowers the user's Sp. Atk by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", + "target": "Normal", + "type": "Dragon", + "zMovePower": 195 + } + }, + { + "generation": 6, + "move": { + "key": "dragonpulse", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Pulse_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Pulse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonpulse.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", + "target": "Any", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 6, + "move": { + "key": "heatwave", + "accuracy": 90, + "basePower": "95", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Heat_Wave_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Heat Wave", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/heatwave.shtml", + "shortDesc": "10% chance to burn the foe(s).", + "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", + "target": "Adjacent Foes", + "type": "Fire", + "zMovePower": 175 + } + }, + { + "generation": 6, + "move": { + "key": "hypervoice", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Voice_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Voice", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hypervoice.shtml", + "shortDesc": "No additional effect. Hits adjacent foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 6, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 6, + "move": { + "key": "outrage", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Outrage_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "The user spends two or three turns locked into this move and becomes confused immediately after its move on the last turn of the effect if it is not already. This move targets an opposing Pokémon at random on each turn. If the user is prevented from moving, is asleep at the beginning of a turn, or the attack is not successful against the target on the first turn of the effect or the second turn of a three-turn effect, the effect ends without causing confusion. If this move is called by Sleep Talk and the user is asleep, the move is used for one turn and does not confuse the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Outrage", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/outrage.shtml", + "shortDesc": "Lasts 2-3 turns. Confuses the user afterwards.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", + "target": "Random", + "type": "Dragon", + "zMovePower": 190 + } + }, + { + "generation": 6, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "move": { + "key": "tailwind", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tailwind_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "For 4 turns, the user and its party members have their Speed doubled. Fails if this move is already in effect for the user's side.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tailwind", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwind.shtml", + "shortDesc": "For 4 turns, allies' Speed is doubled.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", + "target": "Ally's Side", + "type": "Flying", + "zMovePower": 0 + } + }, + { + "generation": 6, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 6, + "level": 1, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 6, + "level": 25, + "move": { + "key": "crunch", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Crunch_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 20% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Crunch", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/crunch.shtml", + "shortDesc": "20% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", + "target": "Normal", + "type": "Dark", + "zMovePower": 160 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 6, + "level": 13, + "move": { + "key": "dragonbreath", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Breath_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 30% chance to paralyze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Breath", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonbreath.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 6, + "level": 29, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "dragontail", + "accuracy": 90, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Tail_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If both the user and the target have not fainted, the target is forced to switch out and be replaced with a random unfainted ally. This effect fails if the target used Ingrain previously, has the Suction Cups Ability, or this move hit a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Tail", + "pp": 10, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragontail.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "ember", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Ember_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Ember", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/ember.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", + "target": "Normal", + "type": "Fire", + "zMovePower": 100 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "firefang", + "accuracy": 95, + "basePower": "65", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fire_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to burn the target and a 10% chance to make it flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Fire Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/firefang.shtml", + "shortDesc": "10% chance to burn. 10% chance to flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", + "target": "Normal", + "type": "Fire", + "zMovePower": 120 + } + }, + { + "generation": 6, + "level": 49, + "move": { + "key": "flamethrower", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flamethrower_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flamethrower", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamethrower.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", + "target": "Normal", + "type": "Fire", + "zMovePower": 175 + } + }, + { + "generation": 6, + "level": 50, + "move": { + "key": "fly", + "accuracy": 95, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fly_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Gust, Hurricane, Sky Uppercut, Smack Down, Thousand Arrows, Thunder, and Twister, and Gust and Twister have doubled power when used against it. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can fly the player to any previously visited town/landmark. Fly can be taught to Pokémon with HM02 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Fly", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fly.shtml", + "shortDesc": "Flies up on first turn, then strikes the next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", + "target": "Any", + "type": "Flying", + "zMovePower": 175 + } + }, + { + "generation": 6, + "level": 20, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "headbutt", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Headbutt_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": "The Pokémon can shake a small tree which may cause a wild Pokémon to fall down. It can be taught to a Pokémon by using TM02 in Generation II. Though available as a level up move in Generation I and future generations, it only had status as a field move in Generation II and Generation IV's HeartGold and SoulSilver.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/headbutt.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "leer", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Leer_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Leer", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/leer.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 30, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "rage", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rage_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Once this move is successfully used, the user's Attack is raised by 1 stage every time it is hit by another Pokémon's attack as long as this move is chosen for use.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Rage", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rage.shtml", + "shortDesc": "Raises the user's Attack by 1 if hit during use.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 6, + "level": 42, + "move": { + "key": "scaryface", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Scary_Face_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Lowers the target's Speed by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Scary Face", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/scaryface.shtml", + "shortDesc": "Lowers the target's Speed by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 6, + "level": 1, + "move": { + "key": "thunderfang", + "accuracy": 95, + "basePower": "65", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to paralyze the target and a 10% chance to make it flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Thunder Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderfang.shtml", + "shortDesc": "10% chance to paralyze. 10% chance to flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", + "target": "Normal", + "type": "Electric", + "zMovePower": 120 + } + }, + { + "generation": 6, + "level": 35, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ] + }, + "generation7": { + "dreamworldMoves": [], + "eggMoves": [], + "eventMoves": [], + "tmMoves": [ + { + "generation": 7, + "move": { + "key": "aerialace", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Aerial_Ace_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Aerial Ace", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/aerialace.shtml", + "shortDesc": "This move does not check accuracy.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", + "target": "Any", + "type": "Flying", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "attract", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Attract_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Causes the target to become infatuated, making it unable to attack 50% of the time. Fails if both the user and the target are the same gender, if either is genderless, or if the target is already infatuated. The effect ends when either the user or the target is no longer active. Pokémon with the Oblivious Ability or protected by the Aroma Veil Ability are immune.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Attract", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/attract.shtml", + "shortDesc": "A target of the opposite gender gets infatuated.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/attract", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "brickbreak", + "accuracy": 100, + "basePower": "75", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Brick_Break_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "If this attack does not miss, the effects of Reflect, Light Screen, and Aurora Veil end for the target's side of the field before damage is calculated.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Brick Break", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/brickbreak.shtml", + "shortDesc": "Destroys screens, unless the target is immune.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", + "target": "Normal", + "type": "Fighting", + "zMovePower": 140 + } + }, + { + "generation": 7, + "move": { + "key": "brutalswing", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Brutal_Swing_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Brutal Swing", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/brutalswing.shtml", + "shortDesc": "No additional effect. Hits adjacent Pokémon.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/brutal-swing", + "target": "All Adjacent", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "bulldoze", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bulldoze_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bulldoze", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bulldoze.shtml", + "shortDesc": "100% chance lower adjacent Pkmn Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", + "target": "All Adjacent", + "type": "Ground", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "confide", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Confide_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Lowers the target's Special Attack by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Confide", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/confide.shtml", + "shortDesc": "Lowers the target's Sp. Atk by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/confide", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "doubleteam", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double_Team_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's evasiveness by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Double Team", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleteam.shtml", + "shortDesc": "Raises the user's evasiveness by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-team", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "dragontail", + "accuracy": 90, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Tail_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If both the user and the target have not fainted, the target is forced to switch out and be replaced with a random unfainted ally. This effect fails if the target used Ingrain previously, has the Suction Cups Ability, or this move hit a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Tail", + "pp": 10, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragontail.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "earthquake", + "accuracy": 100, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Earthquake_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Damage doubles if the target is using Dig.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Earthquake", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/earthquake.shtml", + "shortDesc": "Hits adjacent Pokémon. Double damage on Dig.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", + "target": "All Adjacent", + "type": "Ground", + "zMovePower": 180 + } + }, + { + "generation": 7, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 7, + "move": { + "key": "fireblast", + "accuracy": 85, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fire_Blast_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Fire Blast", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fireblast.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", + "target": "Normal", + "type": "Fire", + "zMovePower": 185 + } + }, + { + "generation": 7, + "move": { + "key": "flamethrower", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flamethrower_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flamethrower", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamethrower.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", + "target": "Normal", + "type": "Fire", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "fly", + "accuracy": 95, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fly_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Gust, Hurricane, Sky Uppercut, Smack Down, Thousand Arrows, Thunder, and Twister, and Gust and Twister have doubled power when used against it. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can fly the player to any previously visited town/landmark. Fly can be taught to Pokémon with HM02 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Fly", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fly.shtml", + "shortDesc": "Flies up on first turn, then strikes the next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", + "target": "Any", + "type": "Flying", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "frustration", + "accuracy": 100, + "basePower": "(255 - user's Happiness) * 2/5", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Frustration_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of ((255 - user's Happiness) * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Frustration", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/frustration.shtml", + "shortDesc": "Max 102 power at minimum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/frustration", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "gigaimpact", + "accuracy": 90, + "basePower": "150", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Giga_Impact_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If this move is successful, the user must recharge on the following turn and cannot select a move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 150, + "name": "Giga Impact", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/gigaimpact.shtml", + "shortDesc": "User cannot move next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 7, + "move": { + "key": "hiddenpower", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hidden_Power_(move)", + "category": "Special", + "contestType": "Clever", + "desc": "This move's type depends on the user's individual values (IVs), and can be any type but Fairy and Normal.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": 80, + "name": "Hidden Power", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hiddenpower.shtml", + "shortDesc": "Varies in type based on the user's IVs.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hidden-power", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "hyperbeam", + "accuracy": 90, + "basePower": "150", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Beam_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "If this move is successful, the user must recharge on the following turn and cannot select a move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 150, + "name": "Hyper Beam", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hyperbeam.shtml", + "shortDesc": "User cannot move next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 7, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "return", + "accuracy": 100, + "basePower": "(user's Happiness * 2/5)", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Return_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power is equal to the greater of (user's Happiness * 2/5), rounded down, or 1.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Return", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/return.shtml", + "shortDesc": "Max 102 power at maximum Happiness.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/return", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "roar", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Roar_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "The target is forced to switch out and be replaced with a random unfainted ally. Fails if the target is the last unfainted Pokémon in its party, or if the target used Ingrain previously or has the Suction Cups Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Roar", + "pp": 20, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/roar.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "rockslide", + "accuracy": 90, + "basePower": "75", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Slide_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Rock Slide", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rockslide.shtml", + "shortDesc": "30% chance to make the foe(s) flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", + "target": "Adjacent Foes", + "type": "Rock", + "zMovePower": 140 + } + }, + { + "generation": 7, + "move": { + "key": "rocktomb", + "accuracy": 95, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Tomb_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Rock Tomb", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocktomb.shtml", + "shortDesc": "100% chance to lower the target's Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", + "target": "Normal", + "type": "Rock", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "roost", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Roost_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The user restores 1/2 of its maximum HP, rounded half up. If the user is not Terastallized, until the end of the turn Flying-type users lose their Flying type and pure Flying-type users become Normal type. Does nothing if the user's HP is full.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Roost", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/roost.shtml", + "shortDesc": "Heals 50% HP. Flying-type removed 'til turn ends.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", + "target": "Self", + "type": "Flying", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "round", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Round_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "If there are other active Pokémon that chose this move for use this turn, those Pokémon take their turn immediately after the user, in Speed order, and this move's power is 120 for each other user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Round", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/round.shtml", + "shortDesc": "Power doubles if others used Round this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/round", + "target": "Normal", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 7, + "move": { + "key": "shadowclaw", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a higher chance for a critical hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Shadow Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowclaw.shtml", + "shortDesc": "High critical hit ratio.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", + "target": "Normal", + "type": "Ghost", + "zMovePower": 140 + } + }, + { + "generation": 7, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "steelwing", + "accuracy": 90, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Steel_Wing_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to raise the user's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Steel Wing", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/steelwing.shtml", + "shortDesc": "10% chance to raise the user's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/steel-wing", + "target": "Normal", + "type": "Steel", + "zMovePower": 140 + } + }, + { + "generation": 7, + "move": { + "key": "stoneedge", + "accuracy": 80, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stone_Edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a higher chance for a critical hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Stone Edge", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/stoneedge.shtml", + "shortDesc": "High critical hit ratio.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", + "target": "Normal", + "type": "Rock", + "zMovePower": 180 + } + }, + { + "generation": 7, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "swagger", + "accuracy": 85, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swagger_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "Raises the target's Attack by 2 stages and confuses it.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Swagger", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swagger.shtml", + "shortDesc": "Raises the target's Attack by 2 and confuses it.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swagger", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "toxic", + "accuracy": 90, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Toxic_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "Badly poisons the target. If a Poison-type Pokémon uses this move, the target cannot avoid the attack, even if the target is in the middle of a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Toxic", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/toxic.shtml", + "shortDesc": "Badly poisons the target. Poison types can't miss.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/toxic", + "target": "Normal", + "type": "Poison", + "zMovePower": 0 + } + } + ], + "tutorMoves": [ + { + "generation": 7, + "move": { + "key": "aquatail", + "accuracy": 90, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Aqua_Tail_(move)", + "category": "Physical", + "contestType": "Beautiful", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Aqua Tail", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/aquatail.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/aqua-tail", + "target": "Normal", + "type": "Water", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "defog", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Defog_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Lowers the target's evasiveness by 1 stage. If this move is successful and whether or not the target's evasiveness was affected, the effects of Reflect, Light Screen, Aurora Veil, Safeguard, Mist, Spikes, Toxic Spikes, Stealth Rock, and Sticky Web end for the target's side, and the effects of Spikes, Toxic Spikes, Stealth Rock, and Sticky Web end for the user's side. Ignores a target's substitute, although a substitute will still block the lowering of evasiveness. If there is a terrain active and this move is successful, the terrain will be cleared.", + "isFieldMove": "The Pokémon can clear out fog on the field. Defog can be taught to a Pokémon by using HM05 in Diamond, Pearl, and Platinum. Since Generation V, it has lost its HM status.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Defog", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/defog.shtml", + "shortDesc": "-1 evasion; clears terrain and hazards on both sides.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/defog", + "target": "Normal", + "type": "Flying", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "dracometeor", + "accuracy": 90, + "basePower": "130", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Draco_Meteor_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Lowers the user's Special Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Draco Meteor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dracometeor.shtml", + "shortDesc": "Lowers the user's Sp. Atk by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", + "target": "Normal", + "type": "Dragon", + "zMovePower": 195 + } + }, + { + "generation": 7, + "move": { + "key": "dragonpulse", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Pulse_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Pulse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonpulse.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", + "target": "Any", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 7, + "move": { + "key": "heatwave", + "accuracy": 90, + "basePower": "95", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Heat_Wave_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Heat Wave", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/heatwave.shtml", + "shortDesc": "10% chance to burn the foe(s).", + "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", + "target": "Adjacent Foes", + "type": "Fire", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "hypervoice", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Voice_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Voice", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hypervoice.shtml", + "shortDesc": "No additional effect. Hits adjacent foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 7, + "move": { + "key": "irontail", + "accuracy": 75, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Tail_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 30% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Tail", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irontail.shtml", + "shortDesc": "30% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-tail", + "target": "Normal", + "type": "Steel", + "zMovePower": 180 + } + }, + { + "generation": 7, + "move": { + "key": "laserfocus", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Laser_Focus_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Until the end of the next turn, the user's attacks will be critical hits.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Laser Focus", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/laserfocus.shtml", + "shortDesc": "Until the end of the next turn, user's moves crit.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/laser-focus", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "outrage", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Outrage_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "The user spends two or three turns locked into this move and becomes confused immediately after its move on the last turn of the effect if it is not already. This move targets an opposing Pokémon at random on each turn. If the user is prevented from moving, is asleep at the beginning of a turn, or the attack is not successful against the target on the first turn of the effect or the second turn of a three-turn effect, the effect ends without causing confusion. If this move is called by Sleep Talk and the user is asleep, the move is used for one turn and does not confuse the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Outrage", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/outrage.shtml", + "shortDesc": "Lasts 2-3 turns. Confuses the user afterwards.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", + "target": "Random", + "type": "Dragon", + "zMovePower": 190 + } + }, + { + "generation": 7, + "move": { + "key": "snore", + "accuracy": 100, + "basePower": "50", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Snore_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 30% chance to make the target flinch. Fails if the user is not asleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 100, + "name": "Snore", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/snore.shtml", + "shortDesc": "User must be asleep. 30% chance to flinch target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/snore", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "move": { + "key": "tailwind", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tailwind_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "For 4 turns, the user and its party members have their Speed doubled. Fails if this move is already in effect for the user's side.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tailwind", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwind.shtml", + "shortDesc": "For 4 turns, allies' Speed is doubled.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", + "target": "Ally's Side", + "type": "Flying", + "zMovePower": 0 + } + }, + { + "generation": 7, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 7, + "level": 1, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 25, + "move": { + "key": "crunch", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Crunch_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 20% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Crunch", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/crunch.shtml", + "shortDesc": "20% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", + "target": "Normal", + "type": "Dark", + "zMovePower": 160 + } + }, + { + "generation": 7, + "level": 63, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 7, + "level": 13, + "move": { + "key": "dragonbreath", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Breath_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 30% chance to paralyze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Breath", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonbreath.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 29, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "dragontail", + "accuracy": 90, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Tail_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If both the user and the target have not fainted, the target is forced to switch out and be replaced with a random unfainted ally. This effect fails if the target used Ingrain previously, has the Suction Cups Ability, or this move hit a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Tail", + "pp": 10, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragontail.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "ember", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Ember_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Ember", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/ember.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", + "target": "Normal", + "type": "Fire", + "zMovePower": 100 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "firefang", + "accuracy": 95, + "basePower": "65", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fire_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to burn the target and a 10% chance to make it flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Fire Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/firefang.shtml", + "shortDesc": "10% chance to burn. 10% chance to flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", + "target": "Normal", + "type": "Fire", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 49, + "move": { + "key": "flamethrower", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flamethrower_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flamethrower", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamethrower.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", + "target": "Normal", + "type": "Fire", + "zMovePower": 175 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "fly", + "accuracy": 95, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fly_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Gust, Hurricane, Sky Uppercut, Smack Down, Thousand Arrows, Thunder, and Twister, and Gust and Twister have doubled power when used against it. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can fly the player to any previously visited town/landmark. Fly can be taught to Pokémon with HM02 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Fly", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fly.shtml", + "shortDesc": "Flies up on first turn, then strikes the next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", + "target": "Any", + "type": "Flying", + "zMovePower": 175 + } + }, + { + "generation": 7, + "level": 21, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 17, + "move": { + "key": "headbutt", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Headbutt_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": "The Pokémon can shake a small tree which may cause a wild Pokémon to fall down. It can be taught to a Pokémon by using TM02 in Generation II. Though available as a level up move in Generation I and future generations, it only had status as a field move in Generation II and Generation IV's HeartGold and SoulSilver.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/headbutt.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "leer", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Leer_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Leer", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/leer.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "rage", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rage_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Once this move is successfully used, the user's Attack is raised by 1 stage every time it is hit by another Pokémon's attack as long as this move is chosen for use.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": "Past", + "isZ": null, + "maxMovePower": null, + "name": "Rage", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rage.shtml", + "shortDesc": "Raises the user's Attack by 1 if hit during use.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rage", + "target": "Normal", + "type": "Normal", + "zMovePower": 100 + } + }, + { + "generation": 7, + "level": 42, + "move": { + "key": "scaryface", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Scary_Face_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Lowers the target's Speed by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Scary Face", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/scaryface.shtml", + "shortDesc": "Lowers the target's Speed by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 7, + "level": 1, + "move": { + "key": "thunderfang", + "accuracy": 95, + "basePower": "65", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to paralyze the target and a 10% chance to make it flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Thunder Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderfang.shtml", + "shortDesc": "10% chance to paralyze. 10% chance to flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", + "target": "Normal", + "type": "Electric", + "zMovePower": 120 + } + }, + { + "generation": 7, + "level": 35, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ] + }, + "generation8": { + "dreamworldMoves": [], + "eggMoves": [], + "eventMoves": [], + "tmMoves": [ + { + "generation": 9, + "move": { + "key": "aerialace", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Aerial_Ace_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Aerial Ace", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/aerialace.shtml", + "shortDesc": "This move does not check accuracy.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/aerial-ace", + "target": "Any", + "type": "Flying", + "zMovePower": 120 + } + }, + { + "generation": 9, + "move": { + "key": "airslash", + "accuracy": 95, + "basePower": "75", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Air_Slash_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Air Slash", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/airslash.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/air-slash", + "target": "Any", + "type": "Flying", + "zMovePower": 140 + } + }, + { + "generation": 9, + "move": { + "key": "bodyslam", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Body_Slam_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to paralyze the target. Damage doubles and no accuracy check is done if the target has used Minimize while active.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Body Slam", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bodyslam.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/body-slam", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "brickbreak", + "accuracy": 100, + "basePower": "75", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Brick_Break_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "If this attack does not miss, the effects of Reflect, Light Screen, and Aurora Veil end for the target's side of the field before damage is calculated.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Brick Break", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/brickbreak.shtml", + "shortDesc": "Destroys screens, unless the target is immune.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/brick-break", + "target": "Normal", + "type": "Fighting", + "zMovePower": 140 + } + }, + { + "generation": 9, + "move": { + "key": "bulldoze", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bulldoze_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bulldoze", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bulldoze.shtml", + "shortDesc": "100% chance lower adjacent Pkmn Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bulldoze", + "target": "All Adjacent", + "type": "Ground", + "zMovePower": 120 + } + }, + { + "generation": 9, + "move": { + "key": "crunch", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Crunch_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 20% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Crunch", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/crunch.shtml", + "shortDesc": "20% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", + "target": "Normal", + "type": "Dark", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "dracometeor", + "accuracy": 90, + "basePower": "130", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Draco_Meteor_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Lowers the user's Special Attack by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Draco Meteor", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dracometeor.shtml", + "shortDesc": "Lowers the user's Sp. Atk by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/draco-meteor", + "target": "Normal", + "type": "Dragon", + "zMovePower": 195 + } + }, + { + "generation": 9, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "dragondance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Dance_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's Attack and Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Dragon Dance", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragondance.shtml", + "shortDesc": "Raises the user's Attack and Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-dance", + "target": "Self", + "type": "Dragon", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "dragonpulse", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Pulse_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Pulse", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonpulse.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-pulse", + "target": "Any", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "dragontail", + "accuracy": 90, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Tail_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If both the user and the target have not fainted, the target is forced to switch out and be replaced with a random unfainted ally. This effect fails if the target used Ingrain previously, has the Suction Cups Ability, or this move hit a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Tail", + "pp": 10, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragontail.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 9, + "move": { + "key": "dualwingbeat", + "accuracy": 90, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dual_Wingbeat_(move)", + "category": "Physical", + "contestType": null, + "desc": "Hits twice. If the first hit breaks the target's substitute, it will take damage for the second hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Dual Wingbeat", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dualwingbeat.shtml", + "shortDesc": "Hits 2 times in one turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dual-wingbeat", + "target": "Normal", + "type": "Flying", + "zMovePower": 100 + } + }, + { + "generation": 9, + "move": { + "key": "earthquake", + "accuracy": 100, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Earthquake_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Damage doubles if the target is using Dig.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Earthquake", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/earthquake.shtml", + "shortDesc": "Hits adjacent Pokémon. Double damage on Dig.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/earthquake", + "target": "All Adjacent", + "type": "Ground", + "zMovePower": 180 + } + }, + { + "generation": 9, + "move": { + "key": "endure", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Endure_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "The user will survive attacks made by other Pokémon during this turn with at least 1 HP. 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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Endure", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/endure.shtml", + "shortDesc": "User survives attacks this turn with at least 1 HP.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/endure", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "facade", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Facade_(move)", + "category": "Physical", + "contestType": "Cute", + "desc": "Power doubles if the user is burned, paralyzed, or poisoned. The physical damage halving effect from the user's burn is ignored.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Facade", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/facade.shtml", + "shortDesc": "Power doubles if user is burn/poison/paralyzed.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/facade", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 9, + "move": { + "key": "fireblast", + "accuracy": 85, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fire_Blast_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Fire Blast", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fireblast.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-blast", + "target": "Normal", + "type": "Fire", + "zMovePower": 185 + } + }, + { + "generation": 9, + "move": { + "key": "firefang", + "accuracy": 95, + "basePower": "65", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fire_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to burn the target and a 10% chance to make it flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Fire Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/firefang.shtml", + "shortDesc": "10% chance to burn. 10% chance to flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-fang", + "target": "Normal", + "type": "Fire", + "zMovePower": 120 + } + }, + { + "generation": 9, + "move": { + "key": "firespin", + "accuracy": 85, + "basePower": "35", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fire_Spin_(move)", + "category": "Special", + "contestType": "Beautiful", + "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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Fire Spin", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/firespin.shtml", + "shortDesc": "Traps and damages the target for 4-5 turns.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fire-spin", + "target": "Normal", + "type": "Fire", + "zMovePower": 100 + } + }, + { + "generation": 9, + "move": { + "key": "flamethrower", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flamethrower_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flamethrower", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamethrower.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", + "target": "Normal", + "type": "Fire", + "zMovePower": 175 + } + }, + { + "generation": 9, + "move": { + "key": "fly", + "accuracy": 95, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fly_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Gust, Hurricane, Sky Uppercut, Smack Down, Thousand Arrows, Thunder, and Twister, and Gust and Twister have doubled power when used against it. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can fly the player to any previously visited town/landmark. Fly can be taught to Pokémon with HM02 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Fly", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fly.shtml", + "shortDesc": "Flies up on first turn, then strikes the next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", + "target": "Any", + "type": "Flying", + "zMovePower": 175 + } + }, + { + "generation": 9, + "move": { + "key": "gigaimpact", + "accuracy": 90, + "basePower": "150", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Giga_Impact_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If this move is successful, the user must recharge on the following turn and cannot select a move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 150, + "name": "Giga Impact", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/gigaimpact.shtml", + "shortDesc": "User cannot move next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/giga-impact", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 9, + "move": { + "key": "heatwave", + "accuracy": 90, + "basePower": "95", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Heat_Wave_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Heat Wave", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/heatwave.shtml", + "shortDesc": "10% chance to burn the foe(s).", + "smogonPage": "https://www.smogon.com/dex/ss/moves/heat-wave", + "target": "Adjacent Foes", + "type": "Fire", + "zMovePower": 175 + } + }, + { + "generation": 9, + "move": { + "key": "helpinghand", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Helping_Hand_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The power of the target's attack this turn is multiplied by 1.5 (this effect is stackable). Fails if there is no ally adjacent to the user or if the ally already moved this turn, but does not fail if the ally is using a two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Helping Hand", + "pp": 20, + "priority": 5, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/helpinghand.shtml", + "shortDesc": "One adjacent ally's move power is 1.5x this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/helping-hand", + "target": "Adjacent Ally", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "hurricane", + "accuracy": 70, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hurricane_(move)", + "category": "Special", + "contestType": "Tough", + "desc": "Has a 30% chance to confuse the target. This move can hit a target using Bounce, Fly, or Sky Drop, or is under the effect of Sky Drop. If the weather is Primordial Sea or Rain Dance, this move does not check accuracy. If the weather is Desolate Land or Sunny Day, this move's accuracy is 50%. If this move is used against a Pokémon holding Utility Umbrella, this move's accuracy remains at 70%.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Hurricane", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hurricane.shtml", + "shortDesc": "30% chance to confuse target. Can't miss in rain.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hurricane", + "target": "Any", + "type": "Flying", + "zMovePower": 185 + } + }, + { + "generation": 9, + "move": { + "key": "hydropump", + "accuracy": 80, + "basePower": "110", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hydro_Pump_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Hydro Pump", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hydropump.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hydro-pump", + "target": "Normal", + "type": "Water", + "zMovePower": 185 + } + }, + { + "generation": 9, + "move": { + "key": "hyperbeam", + "accuracy": 90, + "basePower": "150", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Beam_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "If this move is successful, the user must recharge on the following turn and cannot select a move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 150, + "name": "Hyper Beam", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hyperbeam.shtml", + "shortDesc": "User cannot move next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-beam", + "target": "Normal", + "type": "Normal", + "zMovePower": 200 + } + }, + { + "generation": 9, + "move": { + "key": "hypervoice", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Hyper_Voice_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Hyper Voice", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/hypervoice.shtml", + "shortDesc": "No additional effect. Hits adjacent foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/hyper-voice", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 9, + "move": { + "key": "irondefense", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Defense_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Raises the user's Defense by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Iron Defense", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/irondefense.shtml", + "shortDesc": "Raises the user's Defense by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-defense", + "target": "Self", + "type": "Steel", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "ironhead", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Iron_Head_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Iron Head", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/ironhead.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/iron-head", + "target": "Normal", + "type": "Steel", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "mudslap", + "accuracy": 100, + "basePower": "20", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Mud-slap_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 100% chance to lower the target's accuracy by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Mud-Slap", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/mudslap.shtml", + "shortDesc": "100% chance to lower the target's accuracy by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/mud-slap", + "target": "Normal", + "type": "Ground", + "zMovePower": 100 + } + }, + { + "generation": 9, + "move": { + "key": "outrage", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Outrage_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "The user spends two or three turns locked into this move and becomes confused immediately after its move on the last turn of the effect if it is not already. This move targets an opposing Pokémon at random on each turn. If the user is prevented from moving, is asleep at the beginning of a turn, or the attack is not successful against the target on the first turn of the effect or the second turn of a three-turn effect, the effect ends without causing confusion. If this move is called by Sleep Talk and the user is asleep, the move is used for one turn and does not confuse the user.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Outrage", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/outrage.shtml", + "shortDesc": "Lasts 2-3 turns. Confuses the user afterwards.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/outrage", + "target": "Random", + "type": "Dragon", + "zMovePower": 190 + } + }, + { + "generation": 9, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "psychicfangs", + "accuracy": 100, + "basePower": "85", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Psychic_Fangs_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "If this attack does not miss, the effects of Reflect, Light Screen, and Aurora Veil end for the target's side of the field before damage is calculated.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Psychic Fangs", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/psychicfangs.shtml", + "shortDesc": "Destroys screens, unless the target is immune.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/psychic-fangs", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "raindance", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rain_Dance_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Rain Dance. The damage of Water-type attacks is multiplied by 1.5 and the damage of Fire-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Damp Rock. Fails if the current weather is Rain Dance.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rain Dance", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/raindance.shtml", + "shortDesc": "For 5 turns, heavy rain powers Water moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rain-dance", + "target": "All", + "type": "Water", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "rest", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rest_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user falls asleep for the next two turns and restores all of its HP, curing itself of any non-volatile status condition in the process. Fails if the user has full HP, is already asleep, or if another effect is preventing sleep.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Rest", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rest.shtml", + "shortDesc": "User sleeps 2 turns and restores HP and status.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rest", + "target": "Self", + "type": "Psychic", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "roar", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Roar_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "The target is forced to switch out and be replaced with a random unfainted ally. Fails if the target is the last unfainted Pokémon in its party, or if the target used Ingrain previously or has the Suction Cups Ability.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Roar", + "pp": 20, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/roar.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/roar", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "rockslide", + "accuracy": 90, + "basePower": "75", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Slide_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Rock Slide", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rockslide.shtml", + "shortDesc": "30% chance to make the foe(s) flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-slide", + "target": "Adjacent Foes", + "type": "Rock", + "zMovePower": 140 + } + }, + { + "generation": 9, + "move": { + "key": "rocktomb", + "accuracy": 95, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Rock_Tomb_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 100% chance to lower the target's Speed by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Rock Tomb", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/rocktomb.shtml", + "shortDesc": "100% chance to lower the target's Speed by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/rock-tomb", + "target": "Normal", + "type": "Rock", + "zMovePower": 120 + } + }, + { + "generation": 9, + "move": { + "key": "scaryface", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Scary_Face_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Lowers the target's Speed by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Scary Face", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/scaryface.shtml", + "shortDesc": "Lowers the target's Speed by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "shadowclaw", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Shadow_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a higher chance for a critical hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Shadow Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/shadowclaw.shtml", + "shortDesc": "High critical hit ratio.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/shadow-claw", + "target": "Normal", + "type": "Ghost", + "zMovePower": 140 + } + }, + { + "generation": 9, + "move": { + "key": "sleeptalk", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sleep_Talk_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "One of the user's known moves, besides this move, is selected for use at random. Fails if the user is not asleep. The selected move does not have PP deducted from it, and can currently have 0 PP. This move cannot select Assist, Beak Blast, Belch, Bide, Blazing Torque, Celebrate, Chatter, Combat Torque, Copycat, Dynamax Cannon, Focus Punch, Hold Hands, Magical Torque, Me First, Metronome, Mimic, Mirror Move, Nature Power, Noxious Torque, Shell Trap, Sketch, Sleep Talk, Struggle, Uproar, Wicked Torque, or any two-turn move.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sleep Talk", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sleeptalk.shtml", + "shortDesc": "User must be asleep. Uses another known move.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sleep-talk", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "stoneedge", + "accuracy": 80, + "basePower": "100", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Stone_Edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a higher chance for a critical hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Stone Edge", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/stoneedge.shtml", + "shortDesc": "High critical hit ratio.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/stone-edge", + "target": "Normal", + "type": "Rock", + "zMovePower": 180 + } + }, + { + "generation": 9, + "move": { + "key": "substitute", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Substitute_(move)", + "category": "Status", + "contestType": "Cute", + "desc": "The user takes 1/4 of its maximum HP, rounded down, and puts it into a substitute to take its place in battle. The substitute is removed once enough damage is inflicted on it, or if the user switches out or faints. Baton Pass can be used to transfer the substitute to an ally, and the substitute will keep its remaining HP. Until the substitute is broken, it receives damage from all attacks made by other Pokémon and shields the user from status effects and stat stage changes caused by other Pokémon. Sound-based moves and Pokémon with the Infiltrator Ability ignore substitutes. The user still takes normal damage from weather and status effects while behind its substitute. If the substitute breaks during a multi-hit attack, the user will take damage from any remaining hits. If a substitute is created while the user is trapped by a binding move, the binding effect ends immediately. Fails if the user does not have enough HP remaining to create a substitute without fainting, or if it already has a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Substitute", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/substitute.shtml", + "shortDesc": "User takes 1/4 its max HP to put in a substitute.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/substitute", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "sunnyday", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Sunny_Day_(move)", + "category": "Status", + "contestType": "Beautiful", + "desc": "For 5 turns, the weather becomes Sunny Day. The damage of Fire-type attacks is multiplied by 1.5 and the damage of Water-type attacks is multiplied by 0.5 during the effect. Lasts for 8 turns if the user is holding Heat Rock. Fails if the current weather is Sunny Day.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Sunny Day", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/sunnyday.shtml", + "shortDesc": "For 5 turns, intense sunlight powers Fire moves.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/sunny-day", + "target": "All", + "type": "Fire", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "swift", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Swift_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "This move does not check accuracy.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Swift", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/swift.shtml", + "shortDesc": "This move does not check accuracy. Hits foes.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/swift", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 120 + } + }, + { + "generation": 9, + "move": { + "key": "tailwind", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tailwind_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "For 4 turns, the user and its party members have their Speed doubled. Fails if this move is already in effect for the user's side.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tailwind", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/tailwind.shtml", + "shortDesc": "For 4 turns, allies' Speed is doubled.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tailwind", + "target": "Ally's Side", + "type": "Flying", + "zMovePower": 0 + } + }, + { + "generation": 9, + "move": { + "key": "takedown", + "accuracy": 85, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Take_Down_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 1/4 the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Take Down", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/takedown.shtml", + "shortDesc": "Has 1/4 recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/take-down", + "target": "Normal", + "type": "Normal", + "zMovePower": 175 + } + }, + { + "generation": 9, + "move": { + "key": "terablast", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Tera_Blast_(move)", + "category": "Special", + "contestType": null, + "desc": "If the user is Terastallized, this move becomes a physical attack if the user's Attack is greater than its Special Attack, including stat stage changes, and this move's type becomes the same as the user's Tera Type.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Tera Blast", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/terablast.shtml", + "shortDesc": "If Terastallized: Phys. if Atk > SpA, type = Tera.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/tera-blast", + "target": "Normal", + "type": "Normal", + "zMovePower": 160 + } + }, + { + "generation": 9, + "move": { + "key": "thunderfang", + "accuracy": 95, + "basePower": "65", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Thunder_Fang_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "Has a 10% chance to paralyze the target and a 10% chance to make it flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Thunder Fang", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/thunderfang.shtml", + "shortDesc": "10% chance to paralyze. 10% chance to flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/thunder-fang", + "target": "Normal", + "type": "Electric", + "zMovePower": 120 + } + }, + { + "generation": 9, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ], + "tutorMoves": [], + "virtualTransferMoves": [], + "levelUpMoves": [ + { + "generation": 9, + "level": 1, + "move": { + "key": "bite", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Bite_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Bite", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/bite.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/bite", + "target": "Normal", + "type": "Dark", + "zMovePower": 120 + } + }, + { + "generation": 9, + "level": 25, + "move": { + "key": "crunch", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Crunch_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 20% chance to lower the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Crunch", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/crunch.shtml", + "shortDesc": "20% chance to lower the target's Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/crunch", + "target": "Normal", + "type": "Dark", + "zMovePower": 160 + } + }, + { + "generation": 9, + "level": 73, + "move": { + "key": "doubleedge", + "accuracy": 100, + "basePower": "120", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Double-edge_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If the target lost HP, the user takes recoil damage equal to 33% the HP lost by the target, rounded half up, but not less than 1 HP.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 140, + "name": "Double-Edge", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/doubleedge.shtml", + "shortDesc": "Has 33% recoil.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/double-edge", + "target": "Normal", + "type": "Normal", + "zMovePower": 190 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "dragonbreath", + "accuracy": 100, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Breath_(move)", + "category": "Special", + "contestType": "Cool", + "desc": "Has a 30% chance to paralyze the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Breath", + "pp": 20, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonbreath.shtml", + "shortDesc": "30% chance to paralyze the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-breath", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 9, + "level": 33, + "move": { + "key": "dragonclaw", + "accuracy": 100, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Claw_(move)", + "category": "Physical", + "contestType": "Cool", + "desc": "No additional effect.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Dragon Claw", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragonclaw.shtml", + "shortDesc": "No additional effect.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-claw", + "target": "Normal", + "type": "Dragon", + "zMovePower": 160 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "dragontail", + "accuracy": 90, + "basePower": "60", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dragon_Tail_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "If both the user and the target have not fainted, the target is forced to switch out and be replaced with a random unfainted ally. This effect fails if the target used Ingrain previously, has the Suction Cups Ability, or this move hit a substitute.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 110, + "name": "Dragon Tail", + "pp": 10, + "priority": -6, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dragontail.shtml", + "shortDesc": "Forces the target to switch to a random ally.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dragon-tail", + "target": "Normal", + "type": "Dragon", + "zMovePower": 120 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "dualwingbeat", + "accuracy": 90, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Dual_Wingbeat_(move)", + "category": "Physical", + "contestType": null, + "desc": "Hits twice. If the first hit breaks the target's substitute, it will take damage for the second hit.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Dual Wingbeat", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/dualwingbeat.shtml", + "shortDesc": "Hits 2 times in one turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/dual-wingbeat", + "target": "Normal", + "type": "Flying", + "zMovePower": 100 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "ember", + "accuracy": 100, + "basePower": "40", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Ember_(move)", + "category": "Special", + "contestType": "Cute", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 90, + "name": "Ember", + "pp": 25, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/ember.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/ember", + "target": "Normal", + "type": "Fire", + "zMovePower": 100 + } + }, + { + "generation": 9, + "level": 55, + "move": { + "key": "flamethrower", + "accuracy": 100, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Flamethrower_(move)", + "category": "Special", + "contestType": "Beautiful", + "desc": "Has a 10% chance to burn the target.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Flamethrower", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/flamethrower.shtml", + "shortDesc": "10% chance to burn the target.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/flamethrower", + "target": "Normal", + "type": "Fire", + "zMovePower": 175 + } + }, + { + "generation": 9, + "level": 0, + "move": { + "key": "fly", + "accuracy": 95, + "basePower": "90", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Fly_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "This attack charges on the first turn and executes on the second. On the first turn, the user avoids all attacks other than Gust, Hurricane, Sky Uppercut, Smack Down, Thousand Arrows, Thunder, and Twister, and Gust and Twister have doubled power when used against it. If the user is holding a Power Herb, the move completes in one turn.", + "isFieldMove": "The Pokémon can fly the player to any previously visited town/landmark. Fly can be taught to Pokémon with HM02 in all generations.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Fly", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/fly.shtml", + "shortDesc": "Flies up on first turn, then strikes the next turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/fly", + "target": "Any", + "type": "Flying", + "zMovePower": 175 + } + }, + { + "generation": 9, + "level": 46, + "move": { + "key": "focusenergy", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Focus_Energy_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Raises the user's chance for a critical hit by 2 stages. Fails if the user already has the effect. Baton Pass can be used to transfer this effect to an ally.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Focus Energy", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/focusenergy.shtml", + "shortDesc": "Raises the user's critical hit ratio by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/focus-energy", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 15, + "move": { + "key": "headbutt", + "accuracy": 100, + "basePower": "70", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Headbutt_(move)", + "category": "Physical", + "contestType": "Tough", + "desc": "Has a 30% chance to make the target flinch.", + "isFieldMove": "The Pokémon can shake a small tree which may cause a wild Pokémon to fall down. It can be taught to a Pokémon by using TM02 in Generation II. Though available as a level up move in Generation I and future generations, it only had status as a field move in Generation II and Generation IV's HeartGold and SoulSilver.", + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 120, + "name": "Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/headbutt.shtml", + "shortDesc": "30% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/headbutt", + "target": "Normal", + "type": "Normal", + "zMovePower": 140 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "leer", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Leer_(move)", + "category": "Status", + "contestType": "Cool", + "desc": "Lowers the target's Defense by 1 stage.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Leer", + "pp": 30, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/leer.shtml", + "shortDesc": "Lowers the foe(s) Defense by 1.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/leer", + "target": "Adjacent Foes", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "protect", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Protect_(move)", + "category": "Status", + "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, 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.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Protect", + "pp": 10, + "priority": 4, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/protect.shtml", + "shortDesc": "Prevents moves from affecting the user this turn.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/protect", + "target": "Self", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 1, + "move": { + "key": "roost", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Roost_(move)", + "category": "Status", + "contestType": "Clever", + "desc": "The user restores 1/2 of its maximum HP, rounded half up. If the user is not Terastallized, until the end of the turn Flying-type users lose their Flying type and pure Flying-type users become Normal type. Does nothing if the user's HP is full.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Roost", + "pp": 5, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/roost.shtml", + "shortDesc": "Heals 50% HP. Flying-type removed 'til turn ends.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/roost", + "target": "Self", + "type": "Flying", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 20, + "move": { + "key": "scaryface", + "accuracy": 100, + "basePower": "0", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Scary_Face_(move)", + "category": "Status", + "contestType": "Tough", + "desc": "Lowers the target's Speed by 2 stages.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": null, + "name": "Scary Face", + "pp": 10, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/scaryface.shtml", + "shortDesc": "Lowers the target's Speed by 2.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/scary-face", + "target": "Normal", + "type": "Normal", + "zMovePower": 0 + } + }, + { + "generation": 9, + "level": 39, + "move": { + "key": "zenheadbutt", + "accuracy": 90, + "basePower": "80", + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Zen_Headbutt_(move)", + "category": "Physical", + "contestType": "Clever", + "desc": "Has a 20% chance to make the target flinch.", + "isFieldMove": null, + "isGMax": null, + "isNonstandard": null, + "isZ": null, + "maxMovePower": 130, + "name": "Zen Headbutt", + "pp": 15, + "priority": 0, + "serebiiPage": "https://www.serebii.net/attackdex-swsh/zenheadbutt.shtml", + "shortDesc": "20% chance to make the target flinch.", + "smogonPage": "https://www.smogon.com/dex/ss/moves/zen-headbutt", + "target": "Normal", + "type": "Psychic", + "zMovePower": 160 + } + } + ] + } + }, + "key": "salamencemega", + "eggGroups": ["Dragon"], + "evYields": { "hp": 0, "attack": 3, "defense": 0, "specialattack": 0, "specialdefense": 0, "speed": 0 }, + "evolutionLevel": null, + "flavorTexts": [ + { + "flavor": "It puts its forelegs inside its shell to streamline itself for flight. Salamence flies at high speeds over all kinds of topographical features.", + "game": "Ultra Moon" + } + ], + "forme": "Mega", + "formeLetter": "M", + "gender": { "female": "50%", "male": "50%" }, + "height": 1.8, + "isEggObtainable": true, + "backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/salamence-mega.gif", + "levellingRate": "Slow", + "maximumHatchTime": 10536, + "minimumHatchTime": 10280, + "num": 373, + "serebiiPage": "https://www.serebii.net/pokedex-swsh/salamence", + "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/salamence-mega.gif", + "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/salamence-mega.gif", + "smogonPage": "https://www.smogon.com/dex/ss/pokemon/salamence-mega", + "baseForme": null, + "smogonTier": "Past", + "species": "salamence-mega", + "sprite": "https://play.pokemonshowdown.com/sprites/ani/salamence-mega.gif", + "types": [ + { + "name": "Dragon", + "matchup": { + "attacking": { + "doubleEffectiveTypes": [], + "doubleResistedTypes": [], + "effectiveTypes": ["dragon"], + "effectlessTypes": ["fairy"], + "normalTypes": [ + "bug", + "dark", + "electric", + "fighting", + "fire", + "flying", + "ghost", + "grass", + "ground", + "ice", + "normal", + "poison", + "psychic", + "rock", + "water" + ], + "resistedTypes": ["steel"] + }, + "defending": { + "doubleEffectiveTypes": [], + "doubleResistedTypes": [], + "effectiveTypes": ["dragon", "fairy", "ice"], + "effectlessTypes": [], + "normalTypes": ["bug", "dark", "fighting", "flying", "ghost", "ground", "normal", "poison", "psychic", "rock", "steel"], + "resistedTypes": ["electric", "fire", "grass", "water"] + } + } + }, + { + "name": "Flying", + "matchup": { + "attacking": { + "doubleEffectiveTypes": [], + "doubleResistedTypes": [], + "effectiveTypes": ["bug", "fighting", "grass"], + "effectlessTypes": [], + "normalTypes": ["dark", "dragon", "fairy", "fire", "flying", "ghost", "ground", "ice", "normal", "poison", "psychic", "water"], + "resistedTypes": ["electric", "rock", "steel"] + }, + "defending": { + "doubleEffectiveTypes": [], + "doubleResistedTypes": [], + "effectiveTypes": ["electric", "ice", "rock"], + "effectlessTypes": ["ground"], + "normalTypes": ["dark", "dragon", "fairy", "fire", "flying", "ghost", "normal", "poison", "psychic", "steel", "water"], + "resistedTypes": ["bug", "fighting", "grass"] + } + } + } + ], + "baseSpecies": "salamence", + "baseStats": { "hp": 95, "attack": 145, "defense": 130, "specialattack": 120, "specialdefense": 90, "speed": 120 }, + "baseStatsTotal": 700, + "bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/salamence_(Pokémon)", + "catchRate": { "base": 45, "percentageWithOrdinaryPokeballAtFullHealth": "11.9%" }, + "color": "Blue", + "cosmeticFormes": null, + "weight": 112.6, + "legendary": false, + "mythical": false, + "evolutions": null, + "preevolutions": null + } + ], "preevolutions": [ { "abilities": { @@ -21582,7 +32406,6 @@ "maximumHatchTime": 10536, "minimumHatchTime": 10280, "num": 372, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-sv/shelgon", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/shelgon.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/shelgon.gif", @@ -29590,7 +40413,6 @@ "maximumHatchTime": 10536, "minimumHatchTime": 10280, "num": 371, - "otherFormes": null, "serebiiPage": "https://www.serebii.net/pokedex-sv/bagon", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/bagon.gif", "shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/bagon.gif", diff --git a/tests/testUtils/full-data-responses/syclar.json b/tests/testUtils/full-data-responses/syclar.json index 09a65c0846..ffff4756f3 100644 --- a/tests/testUtils/full-data-responses/syclar.json +++ b/tests/testUtils/full-data-responses/syclar.json @@ -5026,7 +5026,6 @@ "maximumHatchTime": null, "minimumHatchTime": null, "num": -1, - "otherFormes": null, "serebiiPage": "", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/gen5-back-shiny/syclar.png", "shinySprite": "https://play.pokemonshowdown.com/sprites/gen5-shiny/syclar.png", @@ -10130,7 +10129,6 @@ "maximumHatchTime": null, "minimumHatchTime": null, "num": -2, - "otherFormes": null, "serebiiPage": "", "shinyBackSprite": "https://play.pokemonshowdown.com/sprites/gen5-back-shiny/syclant.png", "shinySprite": "https://play.pokemonshowdown.com/sprites/gen5-shiny/syclant.png", @@ -10211,6 +10209,7 @@ "preevolutions": null } ], + "otherFormes": null, "preevolutions": null } } diff --git a/tests/testUtils/queries/pokemon-all-data.ts b/tests/testUtils/queries/pokemon-all-data.ts index b621516af1..0a61c53ffa 100644 --- a/tests/testUtils/queries/pokemon-all-data.ts +++ b/tests/testUtils/queries/pokemon-all-data.ts @@ -194,7 +194,6 @@ export const getPokemonWithFullDataAndEvolutions = gql` maximumHatchTime minimumHatchTime num - otherFormes serebiiPage shinyBackSprite shinySprite @@ -244,6 +243,16 @@ export const getPokemonWithFullDataAndEvolutions = gql` } } + otherFormes { + ...FullDataFragment + evolutions { + ...FullDataFragment + } + preevolutions { + ...FullDataFragment + } + } + preevolutions { ...FullDataFragment evolutions { diff --git a/tests/testUtils/queries/pokemon.ts b/tests/testUtils/queries/pokemon.ts index 7166b2856f..4bd8f9cbbe 100644 --- a/tests/testUtils/queries/pokemon.ts +++ b/tests/testUtils/queries/pokemon.ts @@ -72,7 +72,6 @@ export const getPokemonWithFullData = gql` maximumHatchTime minimumHatchTime num - otherFormes serebiiPage shinyBackSprite shinySprite