From 82ac1061fa0ce47d2916b42330b6879fcda54b7c Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Sun, 28 Mar 2021 20:22:46 +0200 Subject: [PATCH] Loads of work on getting data ready. --- Items.json | 6 +- Moves.json | 18638 +++++++++------------ Pokemon.json | 13176 +++++++++++++-- Scripts/Interfaces/BaseTurnChoice.as | 4 +- Scripts/Interfaces/Battle.as | 3 +- Scripts/Interfaces/BattleSide.as | 5 + Scripts/Interfaces/FleeTurnChoice.as | 5 + Scripts/Interfaces/HitData.as | 2 + Scripts/Interfaces/ItemUseScript.as | 9 + Scripts/Interfaces/MoveTurnChoice.as | 2 +- Scripts/Interfaces/PkmnScript.as | 8 + Scripts/Interfaces/Pokemon.as | 5 +- Scripts/Interfaces/SwitchTurnChoice.as | 3 +- Scripts/Interfaces/dictionary.as | 16 + Scripts/Interfaces/dictionaryValue.as | 8 + Scripts/Items/heal_item.as | 26 + Scripts/Moves/2_5HitMove.as | 26 + Scripts/Moves/ChangeAllTargetStats.as | 18 + Scripts/Moves/ChangeTargetAtt.as | 14 + Scripts/Moves/Drain.as | 10 +- Scripts/Moves/HealEachEndOfTurn.as | 15 + Scripts/Moves/PreventFoeRunning.as | 9 + Scripts/Moves/Struggle.as | 8 + Scripts/Moves/SwapWithTarget.as | 18 + Scripts/Pokemon/{flinch.as => Flinch.as} | 1 + Scripts/Pokemon/HealEachEndOfTurn.as | 18 + Scripts/Pokemon/PreventFoeRunning.as | 20 + 27 files changed, 19683 insertions(+), 12390 deletions(-) create mode 100644 Scripts/Interfaces/BattleSide.as create mode 100644 Scripts/Interfaces/FleeTurnChoice.as create mode 100644 Scripts/Interfaces/ItemUseScript.as create mode 100644 Scripts/Interfaces/dictionary.as create mode 100644 Scripts/Interfaces/dictionaryValue.as create mode 100644 Scripts/Items/heal_item.as create mode 100644 Scripts/Moves/2_5HitMove.as create mode 100644 Scripts/Moves/ChangeAllTargetStats.as create mode 100644 Scripts/Moves/ChangeTargetAtt.as create mode 100644 Scripts/Moves/HealEachEndOfTurn.as create mode 100644 Scripts/Moves/PreventFoeRunning.as create mode 100644 Scripts/Moves/Struggle.as create mode 100644 Scripts/Moves/SwapWithTarget.as rename Scripts/Pokemon/{flinch.as => Flinch.as} (79%) create mode 100644 Scripts/Pokemon/HealEachEndOfTurn.as create mode 100644 Scripts/Pokemon/PreventFoeRunning.as diff --git a/Items.json b/Items.json index 489b97f..3439d59 100644 --- a/Items.json +++ b/Items.json @@ -3560,7 +3560,11 @@ "itemType": "medicine", "flags": [], "price": 200, - "flingPower": 30 + "flingPower": 30, + "effect": { + "name": "heal", + "parameters": [20] + } }, { "name": "powder_jar", diff --git a/Moves.json b/Moves.json index a4b8d7c..31f037a 100644 --- a/Moves.json +++ b/Moves.json @@ -1,10564 +1,8076 @@ -[ - { - "name": "10_000_000_volt_thunderbolt", - "type": "electric", - "power": 195, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "absorb", - "type": "grass", - "power": 20, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "heal" - ], - "effect": { - "name": "drain", - "chance": -1, - "parameters": [0.5] +{ + "$schema": "https://git.p-epsilon.com/Deukhoofd/PokemonJsonSchemas/raw/branch/master/moves.schema.json", + "data": [ + { + "name": "10_000_000_volt_thunderbolt", + "type": "electric", + "power": 195, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "absorb", + "type": "grass", + "power": 20, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "heal"], + "effect": { + "name": "drain", + "chance": -1, + "parameters": [0.5] + } + }, + { + "name": "accelerock", + "type": "rock", + "power": 40, + "pp": 20, + "accuracy": 100, + "priority": 1, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "acid", + "type": "poison", + "power": 40, + "pp": 30, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"], + "effect": { + "name": "ChangeTargetSpDef", + "chance": 10, + "parameters": [-1] + } + }, + { + "name": "acid_armor", + "type": "poison", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"], + "effect": { + "name": "ChangeTargetDef", + "chance": -1, + "parameters": [2] + } + }, + { + "name": "acid_downpour__physical", + "type": "poison", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "acid_downpour__special", + "type": "poison", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "acid_spray", + "type": "poison", + "power": 40, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "ballistics"], + "effect": { + "name": "ChangeTargetSpDef", + "chance": -1, + "parameters": [-2] + } + }, + { + "name": "acrobatics", + "type": "flying", + "power": 55, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "distance"], + "effect": { + "name": "Acrobatics", + "chance": -1 + } + }, + { + "name": "acupressure", + "type": "normal", + "power": 0, + "pp": 30, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [], + "effect": { + "name": "Acupressure", + "chance": -1 + } + }, + { + "name": "aerial_ace", + "type": "flying", + "power": 60, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "distance"] + }, + { + "name": "aeroblast", + "type": "flying", + "power": 100, + "pp": 5, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "distance"], + "effect": { + "name": "IncreasedCriticalStage" + } + }, + { + "name": "after_you", + "type": "normal", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["ignore-substitute"], + "effect": { + "name": "AfterYou" + } + }, + { + "name": "agility", + "type": "psychic", + "power": 0, + "pp": 30, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"], + "effect": { + "name": "ChangeTargetSpeed", + "parameters": [2] + } + }, + { + "name": "air_cutter", + "type": "flying", + "power": 60, + "pp": 25, + "accuracy": 95, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"], + "effect": { + "name": "IncreasedCriticalStage" + } + }, + { + "name": "air_slash", + "type": "flying", + "power": 75, + "pp": 15, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "distance"], + "effect": { + "name": "Flinch", + "chance": 30 + } + }, + { + "name": "all_out_pummeling__physical", + "type": "fighting", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "all_out_pummeling__special", + "type": "fighting", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "ally_switch", + "type": "psychic", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 2, + "target": "Self", + "category": "status", + "flags": [], + "effect": { + "name": "SwapWithTarget" + } + }, + { + "name": "amnesia", + "type": "psychic", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"], + "effect": { + "name": "ChangeTargetSpDef", + "parameters": [2] + } + }, + { + "name": "anchor_shot", + "type": "steel", + "power": 80, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"], + "effect": { + "name": "PreventFoeRunning" + } + }, + { + "name": "ancient_power", + "type": "rock", + "power": 60, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"], + "effect": { + "name": "ChangeAllTargetStats", + "chance": 10, + "parameters": [1] + } + }, + { + "name": "aqua_jet", + "type": "water", + "power": 40, + "pp": 20, + "accuracy": 100, + "priority": 1, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "aqua_ring", + "type": "water", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"], + "effect": { + "name": "HealEachEndOfTurn", + "parameters": [6.25] + } + }, + { + "name": "aqua_tail", + "type": "water", + "power": 90, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "arm_thrust", + "type": "fighting", + "power": 15, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"], + "effect": { + "name": "2_5HitMove" + } + }, + { + "name": "aromatherapy", + "type": "grass", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "AdjacentAllySelf", + "category": "status", + "flags": ["snatch", "distance"] + }, + { + "name": "aromatic_mist", + "type": "fairy", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "AdjacentAlly", + "category": "status", + "flags": ["ignore-substitute"] + }, + { + "name": "assist", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "assurance", + "type": "dark", + "power": 60, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "astonish", + "type": "ghost", + "power": 30, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "attack_order", + "type": "bug", + "power": 90, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "attract", + "type": "normal", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [ + "protect", + "reflectable", + "mirror", + "ignore-substitute", + "mental" + ] + }, + { + "name": "aura_sphere", + "type": "fighting", + "power": 80, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "distance", "pulse", "ballistics"] + }, + { + "name": "aurora_beam", + "type": "ice", + "power": 65, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "aurora_veil", + "type": "ice", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "AllAlly", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "autotomize", + "type": "steel", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "avalanche", + "type": "ice", + "power": 60, + "pp": 10, + "accuracy": 100, + "priority": -4, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "baby_doll_eyes", + "type": "fairy", + "power": 0, + "pp": 30, + "accuracy": 100, + "priority": 1, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "baneful_bunker", + "type": "poison", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 4, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "barrage", + "type": "normal", + "power": 15, + "pp": 20, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror", "ballistics"] + }, + { + "name": "barrier", + "type": "psychic", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "baton_pass", + "type": "normal", + "power": 0, + "pp": 40, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "beak_blast", + "type": "flying", + "power": 100, + "pp": 15, + "accuracy": 100, + "priority": -3, + "target": "Any", + "category": "physical", + "flags": ["protect"] + }, + { + "name": "beat_up", + "type": "dark", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "belch", + "type": "poison", + "power": 120, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect"] + }, + { + "name": "belly_drum", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "bestow", + "type": "normal", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["mirror", "ignore-substitute"] + }, + { + "name": "bide", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 1, + "target": "Self", + "category": "physical", + "flags": ["contact", "protect"] + }, + { + "name": "bind", + "type": "normal", + "power": 15, + "pp": 20, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "bite", + "type": "dark", + "power": 60, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "bite"] + }, + { + "name": "black_hole_eclipse__physical", + "type": "dark", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "black_hole_eclipse__special", + "type": "dark", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "blast_burn", + "type": "fire", + "power": 150, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["recharge", "protect", "mirror"] + }, + { + "name": "blaze_kick", + "type": "fire", + "power": 85, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "blizzard", + "type": "ice", + "power": 110, + "pp": 5, + "accuracy": 70, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "block", + "type": "normal", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["reflectable", "mirror"] + }, + { + "name": "bloom_doom__physical", + "type": "grass", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "bloom_doom__special", + "type": "grass", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "blue_flare", + "type": "fire", + "power": 130, + "pp": 5, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "body_slam", + "type": "normal", + "power": 85, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "nonskybattle"] + }, + { + "name": "bolt_strike", + "type": "electric", + "power": 130, + "pp": 5, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "bone_club", + "type": "ground", + "power": 65, + "pp": 20, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "bone_rush", + "type": "ground", + "power": 25, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "bonemerang", + "type": "ground", + "power": 50, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "boomburst", + "type": "normal", + "power": 140, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "special", + "flags": ["protect", "mirror", "sound", "ignore-substitute"] + }, + { + "name": "bounce", + "type": "flying", + "power": 85, + "pp": 5, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "charge", "protect", "mirror", "gravity", "distance"] + }, + { + "name": "brave_bird", + "type": "flying", + "power": 120, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "distance"] + }, + { + "name": "breakneck_blitz__physical", + "type": "normal", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "breakneck_blitz__special", + "type": "normal", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "brick_break", + "type": "fighting", + "power": 75, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "brine", + "type": "water", + "power": 65, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "brutal_swing", + "type": "dark", + "power": 60, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "bubble", + "type": "water", + "power": 40, + "pp": 30, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "bubble_beam", + "type": "water", + "power": 65, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "bug_bite", + "type": "bug", + "power": 60, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "bug_buzz", + "type": "bug", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "sound", "ignore-substitute"] + }, + { + "name": "bulk_up", + "type": "fighting", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "bulldoze", + "type": "ground", + "power": 60, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "physical", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "bullet_punch", + "type": "steel", + "power": 40, + "pp": 30, + "accuracy": 100, + "priority": 1, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "bullet_seed", + "type": "grass", + "power": 25, + "pp": 30, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror", "ballistics"] + }, + { + "name": "burn_up", + "type": "fire", + "power": 130, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "defrost"] + }, + { + "name": "calm_mind", + "type": "psychic", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "camouflage", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "captivate", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "catastropika", + "type": "electric", + "power": 210, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact"] + }, + { + "name": "celebrate", + "type": "normal", + "power": 0, + "pp": 40, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "charge", + "type": "electric", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "charge_beam", + "type": "electric", + "power": 50, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "charm", + "type": "fairy", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "chatter", + "type": "flying", + "power": 65, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "sound", "distance", "ignore-substitute"] + }, + { + "name": "chip_away", + "type": "normal", + "power": 70, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "circle_throw", + "type": "fighting", + "power": 60, + "pp": 10, + "accuracy": 90, + "priority": -6, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "clamp", + "type": "water", + "power": 35, + "pp": 15, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "clanging_scales", + "type": "dragon", + "power": 110, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror", "sound", "ignore-substitute"] + }, + { + "name": "clear_smog", + "type": "poison", + "power": 50, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "close_combat", + "type": "fighting", + "power": 120, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "coil", + "type": "poison", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "comet_punch", + "type": "normal", + "power": 18, + "pp": 15, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "confide", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["reflectable", "mirror", "sound", "ignore-substitute"] + }, + { + "name": "confuse_ray", + "type": "ghost", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "confusion", + "type": "psychic", + "power": 50, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "constrict", + "type": "normal", + "power": 10, + "pp": 35, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "continental_crush__physical", + "type": "rock", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "continental_crush__special", + "type": "rock", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "conversion", + "type": "normal", + "power": 0, + "pp": 30, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "conversion_2", + "type": "normal", + "power": 0, + "pp": 30, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["ignore-substitute"] + }, + { + "name": "copycat", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "core_enforcer", + "type": "dragon", + "power": 100, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "corkscrew_crash__physical", + "type": "steel", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "corkscrew_crash__special", + "type": "steel", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "cosmic_power", + "type": "psychic", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "cotton_guard", + "type": "grass", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "cotton_spore", + "type": "grass", + "power": 0, + "pp": 40, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": ["protect", "reflectable", "mirror", "powder"] + }, + { + "name": "counter", + "type": "fighting", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": -5, + "target": "Self", + "category": "physical", + "flags": ["contact", "protect"] + }, + { + "name": "covet", + "type": "normal", + "power": 60, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "crabhammer", + "type": "water", + "power": 100, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "crafty_shield", + "type": "fairy", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 3, + "target": "AllAlly", + "category": "status", + "flags": [] + }, + { + "name": "cross_chop", + "type": "fighting", + "power": 100, + "pp": 5, + "accuracy": 80, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "cross_poison", + "type": "poison", + "power": 70, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "crunch", + "type": "dark", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "bite"] + }, + { + "name": "crush_claw", + "type": "normal", + "power": 75, + "pp": 10, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "crush_grip", + "type": "normal", + "power": 0, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "curse", + "type": "ghost", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["ignore-substitute"] + }, + { + "name": "cut", + "type": "normal", + "power": 50, + "pp": 30, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "dark_pulse", + "type": "dark", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "distance", "pulse"] + }, + { + "name": "dark_void", + "type": "dark", + "power": 0, + "pp": 10, + "accuracy": 50, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "darkest_lariat", + "type": "dark", + "power": 85, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "dazzling_gleam", + "type": "fairy", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "defend_order", + "type": "bug", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "defense_curl", + "type": "normal", + "power": 0, + "pp": 40, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "defog", + "type": "flying", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "Adjacent", + "category": "status", + "flags": ["protect", "reflectable", "mirror", "ignore-substitute"] + }, + { + "name": "destiny_bond", + "type": "ghost", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["ignore-substitute"] + }, + { + "name": "detect", + "type": "fighting", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 4, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "devastating_drake__physical", + "type": "dragon", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "devastating_drake__special", + "type": "dragon", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "diamond_storm", + "type": "rock", + "power": 100, + "pp": 5, + "accuracy": 95, + "priority": 0, + "target": "AllOpponent", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "dig", + "type": "ground", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "charge", "protect", "mirror", "nonskybattle"] + }, + { + "name": "disable", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror", "ignore-substitute"] + }, + { + "name": "disarming_voice", + "type": "fairy", + "power": 40, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror", "sound", "ignore-substitute"] + }, + { + "name": "discharge", + "type": "electric", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "AllAdjacent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "dive", + "type": "water", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "charge", "protect", "mirror", "nonskybattle"] + }, + { + "name": "dizzy_punch", + "type": "normal", + "power": 70, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "doom_desire", + "type": "steel", + "power": 140, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "double_edge", + "type": "normal", + "power": 120, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "double_hit", + "type": "normal", + "power": 35, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "double_kick", + "type": "fighting", + "power": 30, + "pp": 30, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "double_slap", + "type": "normal", + "power": 15, + "pp": 10, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "double_team", + "type": "normal", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "draco_meteor", + "type": "dragon", + "power": 130, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "dragon_ascent", + "type": "flying", + "power": 120, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "distance"] + }, + { + "name": "dragon_breath", + "type": "dragon", + "power": 60, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "dragon_claw", + "type": "dragon", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "dragon_dance", + "type": "dragon", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "dance"] + }, + { + "name": "dragon_hammer", + "type": "dragon", + "power": 90, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "dragon_pulse", + "type": "dragon", + "power": 85, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "distance", "pulse"] + }, + { + "name": "dragon_rage", + "type": "dragon", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "dragon_rush", + "type": "dragon", + "power": 100, + "pp": 10, + "accuracy": 75, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "dragon_tail", + "type": "dragon", + "power": 60, + "pp": 10, + "accuracy": 90, + "priority": -6, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "drain_punch", + "type": "fighting", + "power": 75, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch", "heal"] + }, + { + "name": "draining_kiss", + "type": "fairy", + "power": 50, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["contact", "protect", "mirror", "heal"] + }, + { + "name": "dream_eater", + "type": "psychic", + "power": 100, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "heal"] + }, + { + "name": "drill_peck", + "type": "flying", + "power": 80, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "distance"] + }, + { + "name": "drill_run", + "type": "ground", + "power": 80, + "pp": 10, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "dual_chop", + "type": "dragon", + "power": 40, + "pp": 15, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "dynamic_punch", + "type": "fighting", + "power": 100, + "pp": 5, + "accuracy": 50, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "earth_power", + "type": "ground", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "earthquake", + "type": "ground", + "power": 100, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "physical", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "echoed_voice", + "type": "normal", + "power": 40, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "sound", "ignore-substitute"] + }, + { + "name": "eerie_impulse", + "type": "electric", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "egg_bomb", + "type": "normal", + "power": 100, + "pp": 10, + "accuracy": 75, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror", "ballistics"] + }, + { + "name": "electric_terrain", + "type": "electric", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["nonskybattle"] + }, + { + "name": "electrify", + "type": "electric", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror"] + }, + { + "name": "electro_ball", + "type": "electric", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "ballistics"] + }, + { + "name": "electroweb", + "type": "electric", + "power": 55, + "pp": 15, + "accuracy": 95, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "embargo", + "type": "dark", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "ember", + "type": "fire", + "power": 40, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "encore", + "type": "normal", + "power": 0, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [ + "protect", + "reflectable", + "mirror", + "ignore-substitute", + "mental" + ] + }, + { + "name": "endeavor", + "type": "normal", + "power": 0, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "endure", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 4, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "energy_ball", + "type": "grass", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "ballistics"] + }, + { + "name": "entrainment", + "type": "normal", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Adjacent", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "eruption", + "type": "fire", + "power": 150, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "explosion", + "type": "normal", + "power": 250, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "extrasensory", + "type": "psychic", + "power": 80, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "extreme_evoboost", + "type": "normal", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "extreme_speed", + "type": "normal", + "power": 80, + "pp": 5, + "accuracy": 100, + "priority": 2, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "facade", + "type": "normal", + "power": 70, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "fairy_lock", + "type": "fairy", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["mirror", "ignore-substitute"] + }, + { + "name": "fairy_wind", + "type": "fairy", + "power": 40, + "pp": 30, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "fake_out", + "type": "normal", + "power": 40, + "pp": 10, + "accuracy": 100, + "priority": 3, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "fake_tears", + "type": "dark", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "false_swipe", + "type": "normal", + "power": 40, + "pp": 40, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "feather_dance", + "type": "flying", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror", "dance"] + }, + { + "name": "feint", + "type": "normal", + "power": 30, + "pp": 10, + "accuracy": 100, + "priority": 2, + "target": "Any", + "category": "physical", + "flags": ["mirror"] + }, + { + "name": "feint_attack", + "type": "dark", + "power": 60, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "fell_stinger", + "type": "bug", + "power": 50, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "fiery_dance", + "type": "fire", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "dance"] + }, + { + "name": "final_gambit", + "type": "fighting", + "power": 0, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect"] + }, + { + "name": "fire_blast", + "type": "fire", + "power": 110, + "pp": 5, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "fire_fang", + "type": "fire", + "power": 65, + "pp": 15, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "bite"] + }, + { + "name": "fire_lash", + "type": "fire", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "fire_pledge", + "type": "fire", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "fire_punch", + "type": "fire", + "power": 75, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "fire_spin", + "type": "fire", + "power": 35, + "pp": 15, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "first_impression", + "type": "bug", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 2, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "fissure", + "type": "ground", + "power": 0, + "pp": 5, + "accuracy": 30, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "flail", + "type": "normal", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "flame_burst", + "type": "fire", + "power": 70, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "flame_charge", + "type": "fire", + "power": 50, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "flame_wheel", + "type": "fire", + "power": 60, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "defrost"] + }, + { + "name": "flamethrower", + "type": "fire", + "power": 90, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "flare_blitz", + "type": "fire", + "power": 120, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "defrost"] + }, + { + "name": "flash", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "flash_cannon", + "type": "steel", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "flatter", + "type": "dark", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "fleur_cannon", + "type": "fairy", + "power": 130, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "fling", + "type": "dark", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "floral_healing", + "type": "fairy", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "heal"] + }, + { + "name": "flower_shield", + "type": "fairy", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["distance"] + }, + { + "name": "fly", + "type": "flying", + "power": 90, + "pp": 15, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "charge", "protect", "mirror", "gravity", "distance"] + }, + { + "name": "flying_press", + "type": "fighting", + "power": 100, + "pp": 10, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [ + "contact", + "protect", + "mirror", + "gravity", + "distance", + "nonskybattle" + ] + }, + { + "name": "focus_blast", + "type": "fighting", + "power": 120, + "pp": 5, + "accuracy": 70, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "ballistics"] + }, + { + "name": "focus_energy", + "type": "normal", + "power": 0, + "pp": 30, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "focus_punch", + "type": "fighting", + "power": 150, + "pp": 20, + "accuracy": 100, + "priority": -3, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "punch"] + }, + { + "name": "follow_me", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 2, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "force_palm", + "type": "fighting", + "power": 60, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "foresight", + "type": "normal", + "power": 0, + "pp": 40, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror", "ignore-substitute"] + }, + { + "name": "forests_curse", + "type": "grass", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "foul_play", + "type": "dark", + "power": 95, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "freeze_dry", + "type": "ice", + "power": 70, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "freeze_shock", + "type": "ice", + "power": 140, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["charge", "protect", "mirror"] + }, + { + "name": "frenzy_plant", + "type": "grass", + "power": 150, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["recharge", "protect", "mirror", "nonskybattle"] + }, + { + "name": "frost_breath", + "type": "ice", + "power": 60, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "frustration", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "fury_attack", + "type": "normal", + "power": 15, + "pp": 20, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "fury_cutter", + "type": "bug", + "power": 40, + "pp": 20, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "fury_swipes", + "type": "normal", + "power": 18, + "pp": 15, + "accuracy": 80, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "fusion_bolt", + "type": "electric", + "power": 100, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "fusion_flare", + "type": "fire", + "power": 100, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "defrost"] + }, + { + "name": "future_sight", + "type": "psychic", + "power": 120, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "gastro_acid", + "type": "poison", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "gear_grind", + "type": "steel", + "power": 50, + "pp": 15, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "gear_up", + "type": "steel", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "AdjacentAllySelf", + "category": "status", + "flags": ["snatch", "ignore-substitute"] + }, + { + "name": "genesis_supernova", + "type": "psychic", + "power": 185, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "geomancy", + "type": "fairy", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["charge", "nonskybattle"] + }, + { + "name": "giga_drain", + "type": "grass", + "power": 75, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "heal"] + }, + { + "name": "giga_impact", + "type": "normal", + "power": 150, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "recharge", "protect", "mirror"] + }, + { + "name": "gigavolt_havoc__physical", + "type": "electric", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "gigavolt_havoc__special", + "type": "electric", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "glaciate", + "type": "ice", + "power": 65, + "pp": 10, + "accuracy": 95, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "glare", + "type": "normal", + "power": 0, + "pp": 30, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "grass_knot", + "type": "grass", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["contact", "protect", "mirror", "nonskybattle"] + }, + { + "name": "grass_pledge", + "type": "grass", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "grass_whistle", + "type": "grass", + "power": 0, + "pp": 15, + "accuracy": 55, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [ + "protect", + "reflectable", + "mirror", + "sound", + "ignore-substitute" + ] + }, + { + "name": "grassy_terrain", + "type": "grass", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["nonskybattle"] + }, + { + "name": "gravity", + "type": "psychic", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["nonskybattle"] + }, + { + "name": "growl", + "type": "normal", + "power": 0, + "pp": 40, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": [ + "protect", + "reflectable", + "mirror", + "sound", + "ignore-substitute" + ], + "effect": { + "name": "ChangeTargetAtt", + "chance": -1, + "parameters": [-1] + } + }, + { + "name": "growth", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "grudge", + "type": "ghost", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["ignore-substitute"] + }, + { + "name": "guard_split", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect"] + }, + { + "name": "guard_swap", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror", "ignore-substitute"] + }, + { + "name": "guardian_of_alola", + "type": "fairy", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "guillotine", + "type": "normal", + "power": 0, + "pp": 5, + "accuracy": 30, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "gunk_shot", + "type": "poison", + "power": 120, + "pp": 5, + "accuracy": 80, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "gust", + "type": "flying", + "power": 40, + "pp": 35, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "distance"] + }, + { + "name": "gyro_ball", + "type": "steel", + "power": 0, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "ballistics"] + }, + { + "name": "hail", + "type": "ice", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": [] + }, + { + "name": "hammer_arm", + "type": "fighting", + "power": 100, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "happy_hour", + "type": "normal", + "power": 0, + "pp": 30, + "accuracy": 0, + "priority": 0, + "target": "AllAlly", + "category": "status", + "flags": [] + }, + { + "name": "harden", + "type": "normal", + "power": 0, + "pp": 30, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "haze", + "type": "ice", + "power": 0, + "pp": 30, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["ignore-substitute"] + }, + { + "name": "head_charge", + "type": "normal", + "power": 120, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "head_smash", + "type": "rock", + "power": 150, + "pp": 5, + "accuracy": 80, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "headbutt", + "type": "normal", + "power": 70, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "heal_bell", + "type": "normal", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "AdjacentAllySelf", + "category": "status", + "flags": ["snatch", "sound", "distance", "ignore-substitute"] + }, + { + "name": "heal_block", + "type": "psychic", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "heal_order", + "type": "bug", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal"] + }, + { + "name": "heal_pulse", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "distance", "heal", "pulse"] + }, + { + "name": "healing_wish", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal"] + }, + { + "name": "heart_stamp", + "type": "psychic", + "power": 60, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "heart_swap", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror", "ignore-substitute"] + }, + { + "name": "heat_crash", + "type": "fire", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "nonskybattle"] + }, + { + "name": "heat_wave", + "type": "fire", + "power": 95, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "heavy_slam", + "type": "steel", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "nonskybattle"] + }, + { + "name": "helping_hand", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 5, + "target": "AdjacentAlly", + "category": "status", + "flags": ["ignore-substitute"] + }, + { + "name": "hex", + "type": "ghost", + "power": 65, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "hidden_power", + "type": "normal", + "power": 60, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "high_horsepower", + "type": "ground", + "power": 95, + "pp": 10, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "high_jump_kick", + "type": "fighting", + "power": 130, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "gravity"] + }, + { + "name": "hold_back", + "type": "normal", + "power": 40, + "pp": 40, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "hold_hands", + "type": "normal", + "power": 0, + "pp": 40, + "accuracy": 0, + "priority": 0, + "target": "AdjacentAlly", + "category": "status", + "flags": ["ignore-substitute"] + }, + { + "name": "hone_claws", + "type": "dark", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "horn_attack", + "type": "normal", + "power": 65, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "horn_drill", + "type": "normal", + "power": 0, + "pp": 5, + "accuracy": 30, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "horn_leech", + "type": "grass", + "power": 75, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "heal"] + }, + { + "name": "howl", + "type": "normal", + "power": 0, + "pp": 40, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "hurricane", + "type": "flying", + "power": 110, + "pp": 10, + "accuracy": 70, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "distance"] + }, + { + "name": "hydro_cannon", + "type": "water", + "power": 150, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["recharge", "protect", "mirror"] + }, + { + "name": "hydro_pump", + "type": "water", + "power": 110, + "pp": 5, + "accuracy": 80, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "hydro_vortex__physical", + "type": "water", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "hydro_vortex__special", + "type": "water", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "hyper_beam", + "type": "normal", + "power": 150, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["recharge", "protect", "mirror"] + }, + { + "name": "hyper_fang", + "type": "normal", + "power": 80, + "pp": 15, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "hyper_voice", + "type": "normal", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror", "sound", "ignore-substitute"] + }, + { + "name": "hyperspace_fury", + "type": "dark", + "power": 100, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["mirror", "ignore-substitute"] + }, + { + "name": "hyperspace_hole", + "type": "psychic", + "power": 80, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["mirror", "ignore-substitute"] + }, + { + "name": "hypnosis", + "type": "psychic", + "power": 0, + "pp": 20, + "accuracy": 60, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "ice_ball", + "type": "ice", + "power": 30, + "pp": 20, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "ballistics"] + }, + { + "name": "ice_beam", + "type": "ice", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "ice_burn", + "type": "ice", + "power": 140, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["charge", "protect", "mirror"] + }, + { + "name": "ice_fang", + "type": "ice", + "power": 65, + "pp": 15, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "bite"] + }, + { + "name": "ice_hammer", + "type": "ice", + "power": 100, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "ice_punch", + "type": "ice", + "power": 75, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "ice_shard", + "type": "ice", + "power": 40, + "pp": 30, + "accuracy": 100, + "priority": 1, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "icicle_crash", + "type": "ice", + "power": 85, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "icicle_spear", + "type": "ice", + "power": 25, + "pp": 30, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "icy_wind", + "type": "ice", + "power": 55, + "pp": 15, + "accuracy": 95, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "imprison", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "ignore-substitute"] + }, + { + "name": "incinerate", + "type": "fire", + "power": 60, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "inferno", + "type": "fire", + "power": 100, + "pp": 5, + "accuracy": 50, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "inferno_overdrive__physical", + "type": "fire", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "inferno_overdrive__special", + "type": "fire", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "infestation", + "type": "bug", + "power": 20, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "ingrain", + "type": "grass", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "nonskybattle"] + }, + { + "name": "instruct", + "type": "psychic", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "ignore-substitute"] + }, + { + "name": "ion_deluge", + "type": "electric", + "power": 0, + "pp": 25, + "accuracy": 0, + "priority": 1, + "target": "All", + "category": "status", + "flags": [] + }, + { + "name": "iron_defense", + "type": "steel", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "iron_head", + "type": "steel", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "iron_tail", + "type": "steel", + "power": 100, + "pp": 15, + "accuracy": 75, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "judgment", + "type": "normal", + "power": 100, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "jump_kick", + "type": "fighting", + "power": 100, + "pp": 10, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "gravity"] + }, + { + "name": "karate_chop", + "type": "fighting", + "power": 50, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "kinesis", + "type": "psychic", + "power": 0, + "pp": 15, + "accuracy": 80, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "kings_shield", + "type": "steel", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 4, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "knock_off", + "type": "dark", + "power": 65, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "lands_wrath", + "type": "ground", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "physical", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "laser_focus", + "type": "normal", + "power": 0, + "pp": 30, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "last_resort", + "type": "normal", + "power": 140, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "lava_plume", + "type": "fire", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "leaf_blade", + "type": "grass", + "power": 90, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "leaf_storm", + "type": "grass", + "power": 130, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "leaf_tornado", + "type": "grass", + "power": 65, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "leafage", + "type": "grass", + "power": 40, + "pp": 40, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "leech_life", + "type": "bug", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "heal"] + }, + { + "name": "leech_seed", + "type": "grass", + "power": 0, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "leer", + "type": "normal", + "power": 0, + "pp": 30, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": ["protect", "reflectable", "mirror"], + "effect": { + "name": "ChangeTargetDef", + "chance": -1, + "parameters": [-1] + } + }, + { + "name": "lick", + "type": "ghost", + "power": 30, + "pp": 30, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "light_of_ruin", + "type": "fairy", + "power": 140, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "light_screen", + "type": "psychic", + "power": 0, + "pp": 30, + "accuracy": 0, + "priority": 0, + "target": "AllAlly", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "liquidation", + "type": "water", + "power": 85, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "lock_on", + "type": "normal", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror"] + }, + { + "name": "lovely_kiss", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 75, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "low_kick", + "type": "fighting", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "low_sweep", + "type": "fighting", + "power": 65, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "lucky_chant", + "type": "normal", + "power": 0, + "pp": 30, + "accuracy": 0, + "priority": 0, + "target": "AllAlly", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "lunar_dance", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal", "dance"] + }, + { + "name": "lunge", + "type": "bug", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "luster_purge", + "type": "psychic", + "power": 70, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "mach_punch", + "type": "fighting", + "power": 40, + "pp": 30, + "accuracy": 100, + "priority": 1, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "magic_coat", + "type": "psychic", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 4, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "magic_room", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["mirror"] + }, + { + "name": "magical_leaf", + "type": "grass", + "power": 60, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "magma_storm", + "type": "fire", + "power": 100, + "pp": 5, + "accuracy": 75, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "magnet_bomb", + "type": "steel", + "power": 60, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror", "ballistics"] + }, + { + "name": "magnet_rise", + "type": "electric", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "gravity"] + }, + { + "name": "magnetic_flux", + "type": "electric", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "AdjacentAllySelf", + "category": "status", + "flags": ["snatch", "distance", "ignore-substitute"] + }, + { + "name": "magnitude", + "type": "ground", + "power": 0, + "pp": 30, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "physical", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "malicious_moonsault", + "type": "dark", + "power": 180, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact"] + }, + { + "name": "mat_block", + "type": "fighting", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "AllAlly", + "category": "status", + "flags": ["snatch", "nonskybattle"] + }, + { + "name": "me_first", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "AdjacentOpponent", + "category": "status", + "flags": ["protect", "ignore-substitute"] + }, + { + "name": "mean_look", + "type": "normal", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["reflectable", "mirror"] + }, + { + "name": "meditate", + "type": "psychic", + "power": 0, + "pp": 40, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "mega_drain", + "type": "grass", + "power": 40, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "heal"] + }, + { + "name": "mega_kick", + "type": "normal", + "power": 120, + "pp": 5, + "accuracy": 75, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "mega_punch", + "type": "normal", + "power": 80, + "pp": 20, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "megahorn", + "type": "bug", + "power": 120, + "pp": 10, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "memento", + "type": "dark", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror"] + }, + { + "name": "metal_burst", + "type": "steel", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Self", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "metal_claw", + "type": "steel", + "power": 50, + "pp": 35, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "metal_sound", + "type": "steel", + "power": 0, + "pp": 40, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [ + "protect", + "reflectable", + "mirror", + "sound", + "ignore-substitute" + ] + }, + { + "name": "meteor_mash", + "type": "steel", + "power": 90, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "metronome", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "milk_drink", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal"] + }, + { + "name": "mimic", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "ignore-substitute"] + }, + { + "name": "mind_reader", + "type": "normal", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror"] + }, + { + "name": "minimize", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "miracle_eye", + "type": "psychic", + "power": 0, + "pp": 40, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror", "ignore-substitute"] + }, + { + "name": "mirror_coat", + "type": "psychic", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": -5, + "target": "Self", + "category": "special", + "flags": ["protect"] + }, + { + "name": "mirror_move", + "type": "flying", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [] + }, + { + "name": "mirror_shot", + "type": "steel", + "power": 65, + "pp": 10, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "mist", + "type": "ice", + "power": 0, + "pp": 30, + "accuracy": 0, + "priority": 0, + "target": "AllAlly", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "mist_ball", + "type": "psychic", + "power": 70, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "misty_terrain", + "type": "fairy", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["nonskybattle"] + }, + { + "name": "moonblast", + "type": "fairy", + "power": 95, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "moongeist_beam", + "type": "ghost", + "power": 100, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "moonlight", + "type": "fairy", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal"] + }, + { + "name": "morning_sun", + "type": "normal", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal"] + }, + { + "name": "mud_bomb", + "type": "ground", + "power": 65, + "pp": 10, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "ballistics"] + }, + { + "name": "mud_shot", + "type": "ground", + "power": 55, + "pp": 15, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "mud_slap", + "type": "ground", + "power": 20, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "mud_sport", + "type": "ground", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["nonskybattle"] + }, + { + "name": "muddy_water", + "type": "water", + "power": 90, + "pp": 10, + "accuracy": 85, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "multi_attack", + "type": "normal", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "mystical_fire", + "type": "fire", + "power": 75, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "nasty_plot", + "type": "dark", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "natural_gift", + "type": "normal", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "nature_power", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [] + }, + { + "name": "natures_madness", + "type": "fairy", + "power": 0, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "needle_arm", + "type": "grass", + "power": 60, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "never_ending_nightmare__physical", + "type": "ghost", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "never_ending_nightmare__special", + "type": "ghost", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "night_daze", + "type": "dark", + "power": 85, + "pp": 10, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "night_shade", + "type": "ghost", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "night_slash", + "type": "dark", + "power": 70, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "nightmare", + "type": "ghost", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror"] + }, + { + "name": "noble_roar", + "type": "normal", + "power": 0, + "pp": 30, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [ + "protect", + "reflectable", + "mirror", + "sound", + "ignore-substitute" + ] + }, + { + "name": "nuzzle", + "type": "electric", + "power": 20, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "oblivion_wing", + "type": "flying", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "distance", "heal"] + }, + { + "name": "oceanic_operetta", + "type": "water", + "power": 195, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "octazooka", + "type": "water", + "power": 65, + "pp": 10, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "ballistics"] + }, + { + "name": "odor_sleuth", + "type": "normal", + "power": 0, + "pp": 40, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror", "ignore-substitute"] + }, + { + "name": "ominous_wind", + "type": "ghost", + "power": 60, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "origin_pulse", + "type": "water", + "power": 110, + "pp": 10, + "accuracy": 85, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "outrage", + "type": "dragon", + "power": 120, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "RandomOpponent", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "overheat", + "type": "fire", + "power": 130, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "pain_split", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror"] + }, + { + "name": "parabolic_charge", + "type": "electric", + "power": 65, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "special", + "flags": ["protect", "mirror", "heal"] + }, + { + "name": "parting_shot", + "type": "dark", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [ + "protect", + "reflectable", + "mirror", + "sound", + "ignore-substitute" + ] + }, + { + "name": "pay_day", + "type": "normal", + "power": 40, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "payback", + "type": "dark", + "power": 50, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "peck", + "type": "flying", + "power": 35, + "pp": 35, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "distance"] + }, + { + "name": "perish_song", + "type": "normal", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["sound", "distance", "ignore-substitute"] + }, + { + "name": "petal_blizzard", + "type": "grass", + "power": 90, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "petal_dance", + "type": "grass", + "power": 120, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "RandomOpponent", + "category": "special", + "flags": ["contact", "protect", "mirror", "dance"] + }, + { + "name": "phantom_force", + "type": "ghost", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "charge", "mirror"] + }, + { + "name": "pin_missile", + "type": "bug", + "power": 25, + "pp": 20, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "play_nice", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["reflectable", "mirror", "ignore-substitute"] + }, + { + "name": "play_rough", + "type": "fairy", + "power": 90, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "pluck", + "type": "flying", + "power": 60, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "distance"] + }, + { + "name": "poison_fang", + "type": "poison", + "power": 50, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "bite"] + }, + { + "name": "poison_gas", + "type": "poison", + "power": 0, + "pp": 40, + "accuracy": 90, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "poison_jab", + "type": "poison", + "power": 80, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "poison_powder", + "type": "poison", + "power": 0, + "pp": 35, + "accuracy": 75, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror", "powder"] + }, + { + "name": "poison_sting", + "type": "poison", + "power": 15, + "pp": 35, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "poison_tail", + "type": "poison", + "power": 50, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "pollen_puff", + "type": "bug", + "power": 90, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "pound", + "type": "normal", + "power": 40, + "pp": 35, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "powder", + "type": "bug", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 1, + "target": "Any", + "category": "status", + "flags": [ + "protect", + "reflectable", + "mirror", + "ignore-substitute", + "powder" + ] + }, + { + "name": "powder_snow", + "type": "ice", + "power": 40, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "power_gem", + "type": "rock", + "power": 80, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "power_split", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect"] + }, + { + "name": "power_swap", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror", "ignore-substitute"] + }, + { + "name": "power_trick", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "power_trip", + "type": "dark", + "power": 20, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "power_up_punch", + "type": "fighting", + "power": 40, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "power_whip", + "type": "grass", + "power": 120, + "pp": 10, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "precipice_blades", + "type": "ground", + "power": 120, + "pp": 10, + "accuracy": 85, + "priority": 0, + "target": "AllOpponent", + "category": "physical", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "present", + "type": "normal", + "power": 0, + "pp": 15, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "prismatic_laser", + "type": "psychic", + "power": 160, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["recharge", "protect", "mirror"] + }, + { + "name": "protect", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 4, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "psybeam", + "type": "psychic", + "power": 65, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "psych_up", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["ignore-substitute"] + }, + { + "name": "psychic", + "type": "psychic", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "psychic_fangs", + "type": "psychic", + "power": 85, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "psychic_terrain", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["nonskybattle"] + }, + { + "name": "psycho_boost", + "type": "psychic", + "power": 140, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "psycho_cut", + "type": "psychic", + "power": 70, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "psycho_shift", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror"] + }, + { + "name": "psyshock", + "type": "psychic", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "psystrike", + "type": "psychic", + "power": 100, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "psywave", + "type": "psychic", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "pulverizing_pancake", + "type": "normal", + "power": 210, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact"] + }, + { + "name": "punishment", + "type": "dark", + "power": 0, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "purify", + "type": "poison", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "heal"] + }, + { + "name": "pursuit", + "type": "dark", + "power": 40, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "quash", + "type": "dark", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror"] + }, + { + "name": "quick_attack", + "type": "normal", + "power": 40, + "pp": 30, + "accuracy": 100, + "priority": 1, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "quick_guard", + "type": "fighting", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 3, + "target": "AllAlly", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "quiver_dance", + "type": "bug", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "dance"] + }, + { + "name": "rage", + "type": "normal", + "power": 20, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "rage_powder", + "type": "bug", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 2, + "target": "Self", + "category": "status", + "flags": ["powder"] + }, + { + "name": "rain_dance", + "type": "water", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": [] + }, + { + "name": "rapid_spin", + "type": "normal", + "power": 20, + "pp": 40, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "razor_leaf", + "type": "grass", + "power": 55, + "pp": 25, + "accuracy": 95, + "priority": 0, + "target": "AllOpponent", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "razor_shell", + "type": "water", + "power": 75, + "pp": 10, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "razor_wind", + "type": "normal", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["charge", "protect", "mirror"] + }, + { + "name": "recover", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal"] + }, + { + "name": "recycle", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "reflect", + "type": "psychic", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "AllAlly", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "reflect_type", + "type": "normal", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "ignore-substitute"] + }, + { + "name": "refresh", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "relic_song", + "type": "normal", + "power": 75, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror", "sound", "ignore-substitute"] + }, + { + "name": "rest", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal"] + }, + { + "name": "retaliate", + "type": "normal", + "power": 70, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "return", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "revelation_dance", + "type": "normal", + "power": 90, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "dance"] + }, + { + "name": "revenge", + "type": "fighting", + "power": 60, + "pp": 10, + "accuracy": 100, + "priority": -4, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "reversal", + "type": "fighting", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "roar", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": -6, + "target": "Any", + "category": "status", + "flags": ["reflectable", "mirror", "sound", "ignore-substitute"] + }, + { + "name": "roar_of_time", + "type": "dragon", + "power": 150, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["recharge", "protect", "mirror"] + }, + { + "name": "rock_blast", + "type": "rock", + "power": 25, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "rock_climb", + "type": "normal", + "power": 90, + "pp": 20, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "rock_polish", + "type": "rock", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "rock_slide", + "type": "rock", + "power": 75, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "AllOpponent", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "rock_smash", + "type": "fighting", + "power": 40, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "rock_throw", + "type": "rock", + "power": 50, + "pp": 15, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "rock_tomb", + "type": "rock", + "power": 60, + "pp": 15, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "rock_wrecker", + "type": "rock", + "power": 150, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["recharge", "protect", "mirror"] + }, + { + "name": "role_play", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["ignore-substitute"] + }, + { + "name": "rolling_kick", + "type": "fighting", + "power": 60, + "pp": 15, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "rollout", + "type": "rock", + "power": 30, + "pp": 20, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "roost", + "type": "flying", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal"] + }, + { + "name": "rototiller", + "type": "ground", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["distance", "nonskybattle"] + }, + { + "name": "round", + "type": "normal", + "power": 60, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "sound", "ignore-substitute"] + }, + { + "name": "sacred_fire", + "type": "fire", + "power": 100, + "pp": 5, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror", "defrost"] + }, + { + "name": "sacred_sword", + "type": "fighting", + "power": 90, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "safeguard", + "type": "normal", + "power": 0, + "pp": 25, + "accuracy": 0, + "priority": 0, + "target": "AllAlly", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "sand_attack", + "type": "ground", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "sand_tomb", + "type": "ground", + "power": 35, + "pp": 15, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "sandstorm", + "type": "rock", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": [] + }, + { + "name": "savage_spin_out__physical", + "type": "bug", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "savage_spin_out__special", + "type": "bug", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "scald", + "type": "water", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "defrost"] + }, + { + "name": "scary_face", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "scratch", + "type": "normal", + "power": 40, + "pp": 35, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "screech", + "type": "normal", + "power": 0, + "pp": 40, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [ + "protect", + "reflectable", + "mirror", + "sound", + "ignore-substitute" + ] + }, + { + "name": "searing_shot", + "type": "fire", + "power": 100, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "secret_power", + "type": "normal", + "power": 70, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "secret_sword", + "type": "fighting", + "power": 85, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "seed_bomb", + "type": "grass", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror", "ballistics"] + }, + { + "name": "seed_flare", + "type": "grass", + "power": 120, + "pp": 5, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "seismic_toss", + "type": "fighting", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "nonskybattle"] + }, + { + "name": "self_destruct", + "type": "normal", + "power": 200, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "shadow_ball", + "type": "ghost", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "ballistics"] + }, + { + "name": "shadow_bone", + "type": "ghost", + "power": 85, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "shadow_claw", + "type": "ghost", + "power": 70, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "shadow_force", + "type": "ghost", + "power": 120, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "charge", "mirror"] + }, + { + "name": "shadow_punch", + "type": "ghost", + "power": 60, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "shadow_sneak", + "type": "ghost", + "power": 40, + "pp": 30, + "accuracy": 100, + "priority": 1, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "sharpen", + "type": "normal", + "power": 0, + "pp": 30, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "shattered_psyche__physical", + "type": "psychic", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "shattered_psyche__special", + "type": "psychic", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "sheer_cold", + "type": "ice", + "power": 0, + "pp": 5, + "accuracy": 30, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "shell_smash", + "type": "normal", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "shell_trap", + "type": "fire", + "power": 150, + "pp": 5, + "accuracy": 100, + "priority": -3, + "target": "AllOpponent", + "category": "special", + "flags": ["protect"] + }, + { + "name": "shift_gear", + "type": "steel", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "shock_wave", + "type": "electric", + "power": 60, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "shore_up", + "type": "ground", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal"] + }, + { + "name": "signal_beam", + "type": "bug", + "power": 75, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "silver_wind", + "type": "bug", + "power": 60, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "simple_beam", + "type": "normal", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "sing", + "type": "normal", + "power": 0, + "pp": 15, + "accuracy": 55, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [ + "protect", + "reflectable", + "mirror", + "sound", + "ignore-substitute" + ] + }, + { + "name": "sinister_arrow_raid", + "type": "ghost", + "power": 180, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "sketch", + "type": "normal", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["ignore-substitute"] + }, + { + "name": "skill_swap", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror", "ignore-substitute"] + }, + { + "name": "skull_bash", + "type": "normal", + "power": 130, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "charge", "protect", "mirror"] + }, + { + "name": "sky_attack", + "type": "flying", + "power": 140, + "pp": 5, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["charge", "protect", "mirror", "distance"] + }, + { + "name": "sky_drop", + "type": "flying", + "power": 60, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "charge", "protect", "mirror", "gravity", "distance"] + }, + { + "name": "sky_uppercut", + "type": "fighting", + "power": 85, + "pp": 15, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "slack_off", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal"] + }, + { + "name": "slam", + "type": "normal", + "power": 80, + "pp": 20, + "accuracy": 75, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "nonskybattle"] + }, + { + "name": "slash", + "type": "normal", + "power": 70, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "sleep_powder", + "type": "grass", + "power": 0, + "pp": 15, + "accuracy": 75, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror", "powder"] + }, + { + "name": "sleep_talk", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "sludge", + "type": "poison", + "power": 65, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "sludge_bomb", + "type": "poison", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "ballistics"] + }, + { + "name": "sludge_wave", + "type": "poison", + "power": 95, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "smack_down", + "type": "rock", + "power": 50, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "smart_strike", + "type": "steel", + "power": 70, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "smelling_salts", + "type": "normal", + "power": 70, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "smog", + "type": "poison", + "power": 30, + "pp": 20, + "accuracy": 70, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "smokescreen", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "snarl", + "type": "dark", + "power": 55, + "pp": 15, + "accuracy": 95, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror", "sound", "ignore-substitute"] + }, + { + "name": "snatch", + "type": "dark", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 4, + "target": "Self", + "category": "status", + "flags": ["ignore-substitute"] + }, + { + "name": "snore", + "type": "normal", + "power": 50, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "sound", "ignore-substitute"] + }, + { + "name": "soak", + "type": "water", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "soft_boiled", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal"] + }, + { + "name": "solar_beam", + "type": "grass", + "power": 120, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["charge", "protect", "mirror"] + }, + { + "name": "solar_blade", + "type": "grass", + "power": 125, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "charge", "protect", "mirror"] + }, + { + "name": "sonic_boom", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "soul_stealing_7_star_strike", + "type": "ghost", + "power": 195, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact"] + }, + { + "name": "spacial_rend", + "type": "dragon", + "power": 100, + "pp": 5, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "spark", + "type": "electric", + "power": 65, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "sparkling_aria", + "type": "water", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "special", + "flags": ["protect", "mirror", "sound", "ignore-substitute"] + }, + { + "name": "spectral_thief", + "type": "ghost", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "ignore-substitute"] + }, + { + "name": "speed_swap", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror", "ignore-substitute"] + }, + { + "name": "spider_web", + "type": "bug", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "spike_cannon", + "type": "normal", + "power": 20, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "spikes", + "type": "ground", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": ["reflectable", "nonskybattle"] + }, + { + "name": "spiky_shield", + "type": "grass", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 4, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "spirit_shackle", + "type": "ghost", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "spit_up", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect"] + }, + { + "name": "spite", + "type": "ghost", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror", "ignore-substitute"] + }, + { + "name": "splash", + "type": "normal", + "power": 0, + "pp": 40, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["gravity"] + }, + { + "name": "spore", + "type": "grass", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror", "powder"] + }, + { + "name": "spotlight", + "type": "normal", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 3, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable"] + }, + { + "name": "stealth_rock", + "type": "rock", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": ["reflectable"] + }, + { + "name": "steam_eruption", + "type": "water", + "power": 110, + "pp": 5, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "defrost"] + }, + { + "name": "steamroller", + "type": "bug", + "power": 65, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "steel_wing", + "type": "steel", + "power": 70, + "pp": 25, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "sticky_web", + "type": "bug", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": ["reflectable"] + }, + { + "name": "stockpile", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "stoked_sparksurfer", + "type": "electric", + "power": 175, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "stomp", + "type": "normal", + "power": 65, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "nonskybattle"] + }, + { + "name": "stomping_tantrum", + "type": "ground", + "power": 75, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "stone_edge", + "type": "rock", + "power": 100, + "pp": 5, + "accuracy": 80, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "stored_power", + "type": "psychic", + "power": 20, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "storm_throw", + "type": "fighting", + "power": 60, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "strength", + "type": "normal", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "strength_sap", + "type": "grass", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror", "heal"] + }, + { + "name": "string_shot", + "type": "bug", + "power": 0, + "pp": 40, + "accuracy": 95, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "struggle", + "type": "normal", + "power": 50, + "pp": 255, + "accuracy": 0, + "priority": 0, + "target": "RandomOpponent", + "category": "physical", + "flags": ["contact", "protect"] + }, + { + "name": "struggle_bug", + "type": "bug", + "power": 50, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "stun_spore", + "type": "grass", + "power": 0, + "pp": 30, + "accuracy": 75, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror", "powder"] + }, + { + "name": "submission", + "type": "fighting", + "power": 80, + "pp": 20, + "accuracy": 80, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "substitute", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "nonskybattle"] + }, + { + "name": "subzero_slammer__physical", + "type": "ice", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "subzero_slammer__special", + "type": "ice", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "sucker_punch", + "type": "dark", + "power": 70, + "pp": 5, + "accuracy": 100, + "priority": 1, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "sunny_day", + "type": "fire", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": [] + }, + { + "name": "sunsteel_strike", + "type": "steel", + "power": 100, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "super_fang", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "superpower", + "type": "fighting", + "power": 120, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "supersonic", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 55, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [ + "protect", + "reflectable", + "mirror", + "sound", + "ignore-substitute" + ] + }, + { + "name": "supersonic_skystrike__physical", + "type": "flying", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "supersonic_skystrike__special", + "type": "flying", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "surf", + "type": "water", + "power": 90, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "special", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "swagger", + "type": "normal", + "power": 0, + "pp": 15, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "swallow", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal"] + }, + { + "name": "sweet_kiss", + "type": "fairy", + "power": 0, + "pp": 10, + "accuracy": 75, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "sweet_scent", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "swift", + "type": "normal", + "power": 60, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "switcheroo", + "type": "dark", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror"] + }, + { + "name": "swords_dance", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "dance"] + }, + { + "name": "synchronoise", + "type": "psychic", + "power": 120, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "synthesis", + "type": "grass", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal"] + }, + { + "name": "tackle", + "type": "normal", + "power": 40, + "pp": 35, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "tail_glow", + "type": "bug", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "tail_slap", + "type": "normal", + "power": 25, + "pp": 10, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "tail_whip", + "type": "normal", + "power": 0, + "pp": 30, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "tailwind", + "type": "flying", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "AllAlly", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "take_down", + "type": "normal", + "power": 90, + "pp": 20, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "taunt", + "type": "dark", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [ + "protect", + "reflectable", + "mirror", + "ignore-substitute", + "mental" + ] + }, + { + "name": "tearful_look", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["reflectable", "mirror"] + }, + { + "name": "techno_blast", + "type": "normal", + "power": 120, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "tectonic_rage__physical", + "type": "ground", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "tectonic_rage__special", + "type": "ground", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "teeter_dance", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["protect", "mirror", "dance"] + }, + { + "name": "telekinesis", + "type": "psychic", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror", "gravity"] + }, + { + "name": "teleport", + "type": "psychic", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": [] + }, + { + "name": "thief", + "type": "dark", + "power": 60, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "thousand_arrows", + "type": "ground", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "physical", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "thousand_waves", + "type": "ground", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "physical", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "thrash", + "type": "normal", + "power": 120, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "RandomOpponent", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "throat_chop", + "type": "dark", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "thunder", + "type": "electric", + "power": 110, + "pp": 10, + "accuracy": 70, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "thunder_fang", + "type": "electric", + "power": 65, + "pp": 15, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "bite"] + }, + { + "name": "thunder_punch", + "type": "electric", + "power": 75, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "punch"] + }, + { + "name": "thunder_shock", + "type": "electric", + "power": 40, + "pp": 30, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "thunder_wave", + "type": "electric", + "power": 0, + "pp": 20, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "thunderbolt", + "type": "electric", + "power": 90, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "tickle", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "topsy_turvy", + "type": "dark", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "torment", + "type": "dark", + "power": 0, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [ + "protect", + "reflectable", + "mirror", + "ignore-substitute", + "mental" + ] + }, + { + "name": "toxic", + "type": "poison", + "power": 0, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "toxic_spikes", + "type": "poison", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": ["reflectable", "nonskybattle"] + }, + { + "name": "toxic_thread", + "type": "poison", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "transform", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": [] + }, + { + "name": "tri_attack", + "type": "normal", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "trick", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "mirror"] + }, + { + "name": "trick_or_treat", + "type": "ghost", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "trick_room", + "type": "psychic", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": -7, + "target": "All", + "category": "status", + "flags": ["mirror"] + }, + { + "name": "triple_kick", + "type": "fighting", + "power": 10, + "pp": 10, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "trop_kick", + "type": "grass", + "power": 70, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "trump_card", + "type": "normal", + "power": 0, + "pp": 5, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "twineedle", + "type": "bug", + "power": 25, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["protect", "mirror"] + }, + { + "name": "twinkle_tackle__physical", + "type": "fairy", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": [] + }, + { + "name": "twinkle_tackle__special", + "type": "fairy", + "power": 0, + "pp": 1, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "special", + "flags": [] + }, + { + "name": "twister", + "type": "dragon", + "power": 40, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "u_turn", + "type": "bug", + "power": 70, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "uproar", + "type": "normal", + "power": 90, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "RandomOpponent", + "category": "special", + "flags": ["protect", "mirror", "sound", "ignore-substitute"] + }, + { + "name": "v_create", + "type": "fire", + "power": 180, + "pp": 5, + "accuracy": 95, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "vacuum_wave", + "type": "fighting", + "power": 40, + "pp": 30, + "accuracy": 100, + "priority": 1, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "venom_drench", + "type": "poison", + "power": 0, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "venoshock", + "type": "poison", + "power": 65, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "vice_grip", + "type": "normal", + "power": 55, + "pp": 30, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "vine_whip", + "type": "grass", + "power": 45, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "vital_throw", + "type": "fighting", + "power": 70, + "pp": 10, + "accuracy": 0, + "priority": -1, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "volt_switch", + "type": "electric", + "power": 70, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "volt_tackle", + "type": "electric", + "power": 120, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "wake_up_slap", + "type": "fighting", + "power": 70, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "water_gun", + "type": "water", + "power": 40, + "pp": 25, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "water_pledge", + "type": "water", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "nonskybattle"] + }, + { + "name": "water_pulse", + "type": "water", + "power": 60, + "pp": 20, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "distance", "pulse"] + }, + { + "name": "water_shuriken", + "type": "water", + "power": 15, + "pp": 20, + "accuracy": 100, + "priority": 1, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "water_sport", + "type": "water", + "power": 0, + "pp": 15, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["nonskybattle"] + }, + { + "name": "water_spout", + "type": "water", + "power": 150, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "AllOpponent", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "waterfall", + "type": "water", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "weather_ball", + "type": "normal", + "power": 50, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "ballistics"] + }, + { + "name": "whirlpool", + "type": "water", + "power": 35, + "pp": 15, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror", "mental"] + }, + { + "name": "whirlwind", + "type": "normal", + "power": 0, + "pp": 20, + "accuracy": 0, + "priority": -6, + "target": "Any", + "category": "status", + "flags": ["reflectable", "mirror", "ignore-substitute"] + }, + { + "name": "wide_guard", + "type": "rock", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 3, + "target": "AllAlly", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "wild_charge", + "type": "electric", + "power": 90, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "will_o_wisp", + "type": "fire", + "power": 0, + "pp": 15, + "accuracy": 85, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "wing_attack", + "type": "flying", + "power": 60, + "pp": 35, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror", "distance"] + }, + { + "name": "wish", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch", "heal"] + }, + { + "name": "withdraw", + "type": "water", + "power": 0, + "pp": 40, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "wonder_room", + "type": "psychic", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "All", + "category": "status", + "flags": ["mirror"] + }, + { + "name": "wood_hammer", + "type": "grass", + "power": 120, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "work_up", + "type": "normal", + "power": 0, + "pp": 30, + "accuracy": 0, + "priority": 0, + "target": "Self", + "category": "status", + "flags": ["snatch"] + }, + { + "name": "worry_seed", + "type": "grass", + "power": 0, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "wrap", + "type": "normal", + "power": 15, + "pp": 20, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "wring_out", + "type": "normal", + "power": 0, + "pp": 5, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "x_scissor", + "type": "bug", + "power": 80, + "pp": 15, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "yawn", + "type": "normal", + "power": 0, + "pp": 10, + "accuracy": 0, + "priority": 0, + "target": "Any", + "category": "status", + "flags": ["protect", "reflectable", "mirror"] + }, + { + "name": "zap_cannon", + "type": "electric", + "power": 120, + "pp": 5, + "accuracy": 50, + "priority": 0, + "target": "Any", + "category": "special", + "flags": ["protect", "mirror"] + }, + { + "name": "zen_headbutt", + "type": "psychic", + "power": 80, + "pp": 15, + "accuracy": 90, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] + }, + { + "name": "zing_zap", + "type": "electric", + "power": 80, + "pp": 10, + "accuracy": 100, + "priority": 0, + "target": "Any", + "category": "physical", + "flags": ["contact", "protect", "mirror"] } - }, - { - "name": "accelerock", - "type": "rock", - "power": 40, - "pp": 20, - "accuracy": 100, - "priority": 1, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "acid", - "type": "poison", - "power": 40, - "pp": 30, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ], - "effect": { - "name": "ChangeTargetSpDef", - "chance": 10, - "parameters": [-1] - } - }, - { - "name": "acid_armor", - "type": "poison", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ], - "effect": { - "name": "ChangeTargetDef", - "chance": -1, - "parameters": [2] - } - }, - { - "name": "acid_downpour__physical", - "type": "poison", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "acid_downpour__special", - "type": "poison", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "acid_spray", - "type": "poison", - "power": 40, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "ballistics" - ], - "effect": { - "name": "ChangeTargetSpDef", - "chance": -1, - "parameters": [-2] - } - }, - { - "name": "acrobatics", - "type": "flying", - "power": 55, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "distance" - ], - "effect": { - "name": "Acrobatics", - "chance": -1 - } - }, - { - "name": "acupressure", - "type": "normal", - "power": 0, - "pp": 30, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [], - "effect": { - "name": "Acupressure", - "chance": -1 - } - }, - { - "name": "aerial_ace", - "type": "flying", - "power": 60, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "distance" - ] - }, - { - "name": "aeroblast", - "type": "flying", - "power": 100, - "pp": 5, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "distance" - ], - "effect":{ - "name": "IncreasedCriticalStage" - } - }, - { - "name": "after_you", - "type": "normal", - "power": 0, - "pp": 15, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "ignore-substitute" - ], - "effect":{ - "name": "AfterYou" - } - }, - { - "name": "agility", - "type": "psychic", - "power": 0, - "pp": 30, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ], - "effect":{ - "name": "ChangeTargetSpeed", - "parameters": [2] - } - }, - { - "name": "air_cutter", - "type": "flying", - "power": 60, - "pp": 25, - "accuracy": 95, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ], - "effect":{ - "name": "IncreasedCriticalStage" - } - }, - { - "name": "air_slash", - "type": "flying", - "power": 75, - "pp": 15, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "distance" - ], - "effect": { - "name": "Flinch", - "chance": 30 - } - }, - { - "name": "all_out_pummeling__physical", - "type": "fighting", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "all_out_pummeling__special", - "type": "fighting", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "ally_switch", - "type": "psychic", - "power": 0, - "pp": 15, - "accuracy": -1, - "priority": 2, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "amnesia", - "type": "psychic", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "anchor_shot", - "type": "steel", - "power": 80, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "ancient_power", - "type": "rock", - "power": 60, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "aqua_jet", - "type": "water", - "power": 40, - "pp": 20, - "accuracy": 100, - "priority": 1, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "aqua_ring", - "type": "water", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "aqua_tail", - "type": "water", - "power": 90, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "arm_thrust", - "type": "fighting", - "power": 15, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "aromatherapy", - "type": "grass", - "power": 0, - "pp": 5, - "accuracy": -1, - "priority": 0, - "target": "AdjacentAllySelf", - "category": "status", - "flags": [ - "snatch", - "distance" - ] - }, - { - "name": "aromatic_mist", - "type": "fairy", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "AdjacentAlly", - "category": "status", - "flags": [ - "ignore-substitute" - ] - }, - { - "name": "assist", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "assurance", - "type": "dark", - "power": 60, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "astonish", - "type": "ghost", - "power": 30, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "attack_order", - "type": "bug", - "power": 90, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "attract", - "type": "normal", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "ignore-substitute", - "mental" - ] - }, - { - "name": "aura_sphere", - "type": "fighting", - "power": 80, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "distance", - "pulse", - "ballistics" - ] - }, - { - "name": "aurora_beam", - "type": "ice", - "power": 65, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "aurora_veil", - "type": "ice", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "AllAlly", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "autotomize", - "type": "steel", - "power": 0, - "pp": 15, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "avalanche", - "type": "ice", - "power": 60, - "pp": 10, - "accuracy": 100, - "priority": -4, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "baby_doll_eyes", - "type": "fairy", - "power": 0, - "pp": 30, - "accuracy": 100, - "priority": 1, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "baneful_bunker", - "type": "poison", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 4, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "barrage", - "type": "normal", - "power": 15, - "pp": 20, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "barrier", - "type": "psychic", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "baton_pass", - "type": "normal", - "power": 0, - "pp": 40, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "beak_blast", - "type": "flying", - "power": 100, - "pp": 15, - "accuracy": 100, - "priority": -3, - "target": "Any", - "category": "physical", - "flags": [ - "protect" - ] - }, - { - "name": "beat_up", - "type": "dark", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "belch", - "type": "poison", - "power": 120, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect" - ] - }, - { - "name": "belly_drum", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "bestow", - "type": "normal", - "power": 0, - "pp": 15, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "mirror", - "ignore-substitute" - ] - }, - { - "name": "bide", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 1, - "target": "Self", - "category": "physical", - "flags": [ - "contact", - "protect" - ] - }, - { - "name": "bind", - "type": "normal", - "power": 15, - "pp": 20, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "bite", - "type": "dark", - "power": 60, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "bite" - ] - }, - { - "name": "black_hole_eclipse__physical", - "type": "dark", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "black_hole_eclipse__special", - "type": "dark", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "blast_burn", - "type": "fire", - "power": 150, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "recharge", - "protect", - "mirror" - ] - }, - { - "name": "blaze_kick", - "type": "fire", - "power": 85, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "blizzard", - "type": "ice", - "power": 110, - "pp": 5, - "accuracy": 70, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "block", - "type": "normal", - "power": 0, - "pp": 5, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "reflectable", - "mirror" - ] - }, - { - "name": "bloom_doom__physical", - "type": "grass", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "bloom_doom__special", - "type": "grass", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "blue_flare", - "type": "fire", - "power": 130, - "pp": 5, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "body_slam", - "type": "normal", - "power": 85, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "bolt_strike", - "type": "electric", - "power": 130, - "pp": 5, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "bone_club", - "type": "ground", - "power": 65, - "pp": 20, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "bone_rush", - "type": "ground", - "power": 25, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "bonemerang", - "type": "ground", - "power": 50, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "boomburst", - "type": "normal", - "power": 140, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "special", - "flags": [ - "protect", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "bounce", - "type": "flying", - "power": 85, - "pp": 5, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "charge", - "protect", - "mirror", - "gravity", - "distance" - ] - }, - { - "name": "brave_bird", - "type": "flying", - "power": 120, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "distance" - ] - }, - { - "name": "breakneck_blitz__physical", - "type": "normal", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "breakneck_blitz__special", - "type": "normal", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "brick_break", - "type": "fighting", - "power": 75, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "brine", - "type": "water", - "power": 65, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "brutal_swing", - "type": "dark", - "power": 60, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "bubble", - "type": "water", - "power": 40, - "pp": 30, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "bubble_beam", - "type": "water", - "power": 65, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "bug_bite", - "type": "bug", - "power": 60, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "bug_buzz", - "type": "bug", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "bulk_up", - "type": "fighting", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "bulldoze", - "type": "ground", - "power": 60, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "physical", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "bullet_punch", - "type": "steel", - "power": 40, - "pp": 30, - "accuracy": 100, - "priority": 1, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "bullet_seed", - "type": "grass", - "power": 25, - "pp": 30, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "burn_up", - "type": "fire", - "power": 130, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "defrost" - ] - }, - { - "name": "calm_mind", - "type": "psychic", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "camouflage", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "captivate", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "catastropika", - "type": "electric", - "power": 210, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact" - ] - }, - { - "name": "celebrate", - "type": "normal", - "power": 0, - "pp": 40, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "charge", - "type": "electric", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "charge_beam", - "type": "electric", - "power": 50, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "charm", - "type": "fairy", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "chatter", - "type": "flying", - "power": 65, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "sound", - "distance", - "ignore-substitute" - ] - }, - { - "name": "chip_away", - "type": "normal", - "power": 70, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "circle_throw", - "type": "fighting", - "power": 60, - "pp": 10, - "accuracy": 90, - "priority": -6, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "clamp", - "type": "water", - "power": 35, - "pp": 15, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "clanging_scales", - "type": "dragon", - "power": 110, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "clear_smog", - "type": "poison", - "power": 50, - "pp": 15, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "close_combat", - "type": "fighting", - "power": 120, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "coil", - "type": "poison", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "comet_punch", - "type": "normal", - "power": 18, - "pp": 15, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "confide", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "reflectable", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "confuse_ray", - "type": "ghost", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "confusion", - "type": "psychic", - "power": 50, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "constrict", - "type": "normal", - "power": 10, - "pp": 35, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "continental_crush__physical", - "type": "rock", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "continental_crush__special", - "type": "rock", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "conversion", - "type": "normal", - "power": 0, - "pp": 30, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "conversion_2", - "type": "normal", - "power": 0, - "pp": 30, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "ignore-substitute" - ] - }, - { - "name": "copycat", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "core_enforcer", - "type": "dragon", - "power": 100, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "corkscrew_crash__physical", - "type": "steel", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "corkscrew_crash__special", - "type": "steel", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "cosmic_power", - "type": "psychic", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "cotton_guard", - "type": "grass", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "cotton_spore", - "type": "grass", - "power": 0, - "pp": 40, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "powder" - ] - }, - { - "name": "counter", - "type": "fighting", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": -5, - "target": "Self", - "category": "physical", - "flags": [ - "contact", - "protect" - ] - }, - { - "name": "covet", - "type": "normal", - "power": 60, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "crabhammer", - "type": "water", - "power": 100, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "crafty_shield", - "type": "fairy", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 3, - "target": "AllAlly", - "category": "status", - "flags": [] - }, - { - "name": "cross_chop", - "type": "fighting", - "power": 100, - "pp": 5, - "accuracy": 80, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "cross_poison", - "type": "poison", - "power": 70, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "crunch", - "type": "dark", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "bite" - ] - }, - { - "name": "crush_claw", - "type": "normal", - "power": 75, - "pp": 10, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "crush_grip", - "type": "normal", - "power": 0, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "curse", - "type": "ghost", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "ignore-substitute" - ] - }, - { - "name": "cut", - "type": "normal", - "power": 50, - "pp": 30, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "dark_pulse", - "type": "dark", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "distance", - "pulse" - ] - }, - { - "name": "dark_void", - "type": "dark", - "power": 0, - "pp": 10, - "accuracy": 50, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "darkest_lariat", - "type": "dark", - "power": 85, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "dazzling_gleam", - "type": "fairy", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "defend_order", - "type": "bug", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "defense_curl", - "type": "normal", - "power": 0, - "pp": 40, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "defog", - "type": "flying", - "power": 0, - "pp": 15, - "accuracy": -1, - "priority": 0, - "target": "Adjacent", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "ignore-substitute" - ] - }, - { - "name": "destiny_bond", - "type": "ghost", - "power": 0, - "pp": 5, - "accuracy": -1, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "ignore-substitute" - ] - }, - { - "name": "detect", - "type": "fighting", - "power": 0, - "pp": 5, - "accuracy": -1, - "priority": 4, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "devastating_drake__physical", - "type": "dragon", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "devastating_drake__special", - "type": "dragon", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "diamond_storm", - "type": "rock", - "power": 100, - "pp": 5, - "accuracy": 95, - "priority": 0, - "target": "AllOpponent", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "dig", - "type": "ground", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "charge", - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "disable", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "ignore-substitute" - ] - }, - { - "name": "disarming_voice", - "type": "fairy", - "power": 40, - "pp": 15, - "accuracy": -1, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "discharge", - "type": "electric", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "AllAdjacent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "dive", - "type": "water", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "charge", - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "dizzy_punch", - "type": "normal", - "power": 70, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "doom_desire", - "type": "steel", - "power": 140, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "double_edge", - "type": "normal", - "power": 120, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "double_hit", - "type": "normal", - "power": 35, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "double_kick", - "type": "fighting", - "power": 30, - "pp": 30, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "double_slap", - "type": "normal", - "power": 15, - "pp": 10, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "double_team", - "type": "normal", - "power": 0, - "pp": 15, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "draco_meteor", - "type": "dragon", - "power": 130, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "dragon_ascent", - "type": "flying", - "power": 120, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "distance" - ] - }, - { - "name": "dragon_breath", - "type": "dragon", - "power": 60, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "dragon_claw", - "type": "dragon", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "dragon_dance", - "type": "dragon", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "dance" - ] - }, - { - "name": "dragon_hammer", - "type": "dragon", - "power": 90, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "dragon_pulse", - "type": "dragon", - "power": 85, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "distance", - "pulse" - ] - }, - { - "name": "dragon_rage", - "type": "dragon", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "dragon_rush", - "type": "dragon", - "power": 100, - "pp": 10, - "accuracy": 75, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "dragon_tail", - "type": "dragon", - "power": 60, - "pp": 10, - "accuracy": 90, - "priority": -6, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "drain_punch", - "type": "fighting", - "power": 75, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch", - "heal" - ] - }, - { - "name": "draining_kiss", - "type": "fairy", - "power": 50, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "contact", - "protect", - "mirror", - "heal" - ] - }, - { - "name": "dream_eater", - "type": "psychic", - "power": 100, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "heal" - ] - }, - { - "name": "drill_peck", - "type": "flying", - "power": 80, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "distance" - ] - }, - { - "name": "drill_run", - "type": "ground", - "power": 80, - "pp": 10, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "dual_chop", - "type": "dragon", - "power": 40, - "pp": 15, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "dynamic_punch", - "type": "fighting", - "power": 100, - "pp": 5, - "accuracy": 50, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "earth_power", - "type": "ground", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "earthquake", - "type": "ground", - "power": 100, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "physical", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "echoed_voice", - "type": "normal", - "power": 40, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "eerie_impulse", - "type": "electric", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "egg_bomb", - "type": "normal", - "power": 100, - "pp": 10, - "accuracy": 75, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "electric_terrain", - "type": "electric", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "nonskybattle" - ] - }, - { - "name": "electrify", - "type": "electric", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "electro_ball", - "type": "electric", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "electroweb", - "type": "electric", - "power": 55, - "pp": 15, - "accuracy": 95, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "embargo", - "type": "dark", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "ember", - "type": "fire", - "power": 40, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "encore", - "type": "normal", - "power": 0, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "ignore-substitute", - "mental" - ] - }, - { - "name": "endeavor", - "type": "normal", - "power": 0, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "endure", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 4, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "energy_ball", - "type": "grass", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "entrainment", - "type": "normal", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Adjacent", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "eruption", - "type": "fire", - "power": 150, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "explosion", - "type": "normal", - "power": 250, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "extrasensory", - "type": "psychic", - "power": 80, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "extreme_evoboost", - "type": "normal", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "extreme_speed", - "type": "normal", - "power": 80, - "pp": 5, - "accuracy": 100, - "priority": 2, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "facade", - "type": "normal", - "power": 70, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "fairy_lock", - "type": "fairy", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "mirror", - "ignore-substitute" - ] - }, - { - "name": "fairy_wind", - "type": "fairy", - "power": 40, - "pp": 30, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "fake_out", - "type": "normal", - "power": 40, - "pp": 10, - "accuracy": 100, - "priority": 3, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "fake_tears", - "type": "dark", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "false_swipe", - "type": "normal", - "power": 40, - "pp": 40, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "feather_dance", - "type": "flying", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "dance" - ] - }, - { - "name": "feint", - "type": "normal", - "power": 30, - "pp": 10, - "accuracy": 100, - "priority": 2, - "target": "Any", - "category": "physical", - "flags": [ - "mirror" - ] - }, - { - "name": "feint_attack", - "type": "dark", - "power": 60, - "pp": 20, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "fell_stinger", - "type": "bug", - "power": 50, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "fiery_dance", - "type": "fire", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "dance" - ] - }, - { - "name": "final_gambit", - "type": "fighting", - "power": 0, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect" - ] - }, - { - "name": "fire_blast", - "type": "fire", - "power": 110, - "pp": 5, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "fire_fang", - "type": "fire", - "power": 65, - "pp": 15, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "bite" - ] - }, - { - "name": "fire_lash", - "type": "fire", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "fire_pledge", - "type": "fire", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "fire_punch", - "type": "fire", - "power": 75, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "fire_spin", - "type": "fire", - "power": 35, - "pp": 15, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "first_impression", - "type": "bug", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 2, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "fissure", - "type": "ground", - "power": 0, - "pp": 5, - "accuracy": 30, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "flail", - "type": "normal", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "flame_burst", - "type": "fire", - "power": 70, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "flame_charge", - "type": "fire", - "power": 50, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "flame_wheel", - "type": "fire", - "power": 60, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "defrost" - ] - }, - { - "name": "flamethrower", - "type": "fire", - "power": 90, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "flare_blitz", - "type": "fire", - "power": 120, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "defrost" - ] - }, - { - "name": "flash", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "flash_cannon", - "type": "steel", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "flatter", - "type": "dark", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "fleur_cannon", - "type": "fairy", - "power": 130, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "fling", - "type": "dark", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "floral_healing", - "type": "fairy", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "heal" - ] - }, - { - "name": "flower_shield", - "type": "fairy", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "distance" - ] - }, - { - "name": "fly", - "type": "flying", - "power": 90, - "pp": 15, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "charge", - "protect", - "mirror", - "gravity", - "distance" - ] - }, - { - "name": "flying_press", - "type": "fighting", - "power": 100, - "pp": 10, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "gravity", - "distance", - "nonskybattle" - ] - }, - { - "name": "focus_blast", - "type": "fighting", - "power": 120, - "pp": 5, - "accuracy": 70, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "focus_energy", - "type": "normal", - "power": 0, - "pp": 30, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "focus_punch", - "type": "fighting", - "power": 150, - "pp": 20, - "accuracy": 100, - "priority": -3, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "punch" - ] - }, - { - "name": "follow_me", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": -1, - "priority": 2, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "force_palm", - "type": "fighting", - "power": 60, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "foresight", - "type": "normal", - "power": 0, - "pp": 40, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "ignore-substitute" - ] - }, - { - "name": "forests_curse", - "type": "grass", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "foul_play", - "type": "dark", - "power": 95, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "freeze_dry", - "type": "ice", - "power": 70, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "freeze_shock", - "type": "ice", - "power": 140, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "charge", - "protect", - "mirror" - ] - }, - { - "name": "frenzy_plant", - "type": "grass", - "power": 150, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "recharge", - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "frost_breath", - "type": "ice", - "power": 60, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "frustration", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "fury_attack", - "type": "normal", - "power": 15, - "pp": 20, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "fury_cutter", - "type": "bug", - "power": 40, - "pp": 20, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "fury_swipes", - "type": "normal", - "power": 18, - "pp": 15, - "accuracy": 80, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "fusion_bolt", - "type": "electric", - "power": 100, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "fusion_flare", - "type": "fire", - "power": 100, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "defrost" - ] - }, - { - "name": "future_sight", - "type": "psychic", - "power": 120, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "gastro_acid", - "type": "poison", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "gear_grind", - "type": "steel", - "power": 50, - "pp": 15, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "gear_up", - "type": "steel", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "AdjacentAllySelf", - "category": "status", - "flags": [ - "snatch", - "ignore-substitute" - ] - }, - { - "name": "genesis_supernova", - "type": "psychic", - "power": 185, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "geomancy", - "type": "fairy", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "charge", - "nonskybattle" - ] - }, - { - "name": "giga_drain", - "type": "grass", - "power": 75, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "heal" - ] - }, - { - "name": "giga_impact", - "type": "normal", - "power": 150, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "recharge", - "protect", - "mirror" - ] - }, - { - "name": "gigavolt_havoc__physical", - "type": "electric", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "gigavolt_havoc__special", - "type": "electric", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "glaciate", - "type": "ice", - "power": 65, - "pp": 10, - "accuracy": 95, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "glare", - "type": "normal", - "power": 0, - "pp": 30, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "grass_knot", - "type": "grass", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "contact", - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "grass_pledge", - "type": "grass", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "grass_whistle", - "type": "grass", - "power": 0, - "pp": 15, - "accuracy": 55, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "grassy_terrain", - "type": "grass", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "nonskybattle" - ] - }, - { - "name": "gravity", - "type": "psychic", - "power": 0, - "pp": 5, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "nonskybattle" - ] - }, - { - "name": "growl", - "type": "normal", - "power": 0, - "pp": 40, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "growth", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "grudge", - "type": "ghost", - "power": 0, - "pp": 5, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "ignore-substitute" - ] - }, - { - "name": "guard_split", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect" - ] - }, - { - "name": "guard_swap", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror", - "ignore-substitute" - ] - }, - { - "name": "guardian_of_alola", - "type": "fairy", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "guillotine", - "type": "normal", - "power": 0, - "pp": 5, - "accuracy": 30, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "gunk_shot", - "type": "poison", - "power": 120, - "pp": 5, - "accuracy": 80, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "gust", - "type": "flying", - "power": 40, - "pp": 35, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "distance" - ] - }, - { - "name": "gyro_ball", - "type": "steel", - "power": 0, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "hail", - "type": "ice", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [] - }, - { - "name": "hammer_arm", - "type": "fighting", - "power": 100, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "happy_hour", - "type": "normal", - "power": 0, - "pp": 30, - "accuracy": 0, - "priority": 0, - "target": "AllAlly", - "category": "status", - "flags": [] - }, - { - "name": "harden", - "type": "normal", - "power": 0, - "pp": 30, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "haze", - "type": "ice", - "power": 0, - "pp": 30, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "ignore-substitute" - ] - }, - { - "name": "head_charge", - "type": "normal", - "power": 120, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "head_smash", - "type": "rock", - "power": 150, - "pp": 5, - "accuracy": 80, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "headbutt", - "type": "normal", - "power": 70, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "heal_bell", - "type": "normal", - "power": 0, - "pp": 5, - "accuracy": 0, - "priority": 0, - "target": "AdjacentAllySelf", - "category": "status", - "flags": [ - "snatch", - "sound", - "distance", - "ignore-substitute" - ] - }, - { - "name": "heal_block", - "type": "psychic", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "heal_order", - "type": "bug", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal" - ] - }, - { - "name": "heal_pulse", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "distance", - "heal", - "pulse" - ] - }, - { - "name": "healing_wish", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal" - ] - }, - { - "name": "heart_stamp", - "type": "psychic", - "power": 60, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "heart_swap", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror", - "ignore-substitute" - ] - }, - { - "name": "heat_crash", - "type": "fire", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "heat_wave", - "type": "fire", - "power": 95, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "heavy_slam", - "type": "steel", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "helping_hand", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 5, - "target": "AdjacentAlly", - "category": "status", - "flags": [ - "ignore-substitute" - ] - }, - { - "name": "hex", - "type": "ghost", - "power": 65, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "hidden_power", - "type": "normal", - "power": 60, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "high_horsepower", - "type": "ground", - "power": 95, - "pp": 10, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "high_jump_kick", - "type": "fighting", - "power": 130, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "gravity" - ] - }, - { - "name": "hold_back", - "type": "normal", - "power": 40, - "pp": 40, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "hold_hands", - "type": "normal", - "power": 0, - "pp": 40, - "accuracy": 0, - "priority": 0, - "target": "AdjacentAlly", - "category": "status", - "flags": [ - "ignore-substitute" - ] - }, - { - "name": "hone_claws", - "type": "dark", - "power": 0, - "pp": 15, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "horn_attack", - "type": "normal", - "power": 65, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "horn_drill", - "type": "normal", - "power": 0, - "pp": 5, - "accuracy": 30, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "horn_leech", - "type": "grass", - "power": 75, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "heal" - ] - }, - { - "name": "howl", - "type": "normal", - "power": 0, - "pp": 40, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "hurricane", - "type": "flying", - "power": 110, - "pp": 10, - "accuracy": 70, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "distance" - ] - }, - { - "name": "hydro_cannon", - "type": "water", - "power": 150, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "recharge", - "protect", - "mirror" - ] - }, - { - "name": "hydro_pump", - "type": "water", - "power": 110, - "pp": 5, - "accuracy": 80, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "hydro_vortex__physical", - "type": "water", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "hydro_vortex__special", - "type": "water", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "hyper_beam", - "type": "normal", - "power": 150, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "recharge", - "protect", - "mirror" - ] - }, - { - "name": "hyper_fang", - "type": "normal", - "power": 80, - "pp": 15, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "hyper_voice", - "type": "normal", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "hyperspace_fury", - "type": "dark", - "power": 100, - "pp": 5, - "accuracy": -1, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "mirror", - "ignore-substitute" - ] - }, - { - "name": "hyperspace_hole", - "type": "psychic", - "power": 80, - "pp": 5, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "mirror", - "ignore-substitute" - ] - }, - { - "name": "hypnosis", - "type": "psychic", - "power": 0, - "pp": 20, - "accuracy": 60, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "ice_ball", - "type": "ice", - "power": 30, - "pp": 20, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "ice_beam", - "type": "ice", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "ice_burn", - "type": "ice", - "power": 140, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "charge", - "protect", - "mirror" - ] - }, - { - "name": "ice_fang", - "type": "ice", - "power": 65, - "pp": 15, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "bite" - ] - }, - { - "name": "ice_hammer", - "type": "ice", - "power": 100, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "ice_punch", - "type": "ice", - "power": 75, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "ice_shard", - "type": "ice", - "power": 40, - "pp": 30, - "accuracy": 100, - "priority": 1, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "icicle_crash", - "type": "ice", - "power": 85, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "icicle_spear", - "type": "ice", - "power": 25, - "pp": 30, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "icy_wind", - "type": "ice", - "power": 55, - "pp": 15, - "accuracy": 95, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "imprison", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "ignore-substitute" - ] - }, - { - "name": "incinerate", - "type": "fire", - "power": 60, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "inferno", - "type": "fire", - "power": 100, - "pp": 5, - "accuracy": 50, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "inferno_overdrive__physical", - "type": "fire", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "inferno_overdrive__special", - "type": "fire", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "infestation", - "type": "bug", - "power": 20, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "ingrain", - "type": "grass", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "nonskybattle" - ] - }, - { - "name": "instruct", - "type": "psychic", - "power": 0, - "pp": 15, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "ignore-substitute" - ] - }, - { - "name": "ion_deluge", - "type": "electric", - "power": 0, - "pp": 25, - "accuracy": 0, - "priority": 1, - "target": "All", - "category": "status", - "flags": [] - }, - { - "name": "iron_defense", - "type": "steel", - "power": 0, - "pp": 15, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "iron_head", - "type": "steel", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "iron_tail", - "type": "steel", - "power": 100, - "pp": 15, - "accuracy": 75, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "judgment", - "type": "normal", - "power": 100, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "jump_kick", - "type": "fighting", - "power": 100, - "pp": 10, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "gravity" - ] - }, - { - "name": "karate_chop", - "type": "fighting", - "power": 50, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "kinesis", - "type": "psychic", - "power": 0, - "pp": 15, - "accuracy": 80, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "kings_shield", - "type": "steel", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 4, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "knock_off", - "type": "dark", - "power": 65, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "lands_wrath", - "type": "ground", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "physical", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "laser_focus", - "type": "normal", - "power": 0, - "pp": 30, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "last_resort", - "type": "normal", - "power": 140, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "lava_plume", - "type": "fire", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "leaf_blade", - "type": "grass", - "power": 90, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "leaf_storm", - "type": "grass", - "power": 130, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "leaf_tornado", - "type": "grass", - "power": 65, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "leafage", - "type": "grass", - "power": 40, - "pp": 40, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "leech_life", - "type": "bug", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "heal" - ] - }, - { - "name": "leech_seed", - "type": "grass", - "power": 0, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "leer", - "type": "normal", - "power": 0, - "pp": 30, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "lick", - "type": "ghost", - "power": 30, - "pp": 30, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "light_of_ruin", - "type": "fairy", - "power": 140, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "light_screen", - "type": "psychic", - "power": 0, - "pp": 30, - "accuracy": 0, - "priority": 0, - "target": "AllAlly", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "liquidation", - "type": "water", - "power": 85, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "lock_on", - "type": "normal", - "power": 0, - "pp": 5, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "lovely_kiss", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 75, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "low_kick", - "type": "fighting", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "low_sweep", - "type": "fighting", - "power": 65, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "lucky_chant", - "type": "normal", - "power": 0, - "pp": 30, - "accuracy": 0, - "priority": 0, - "target": "AllAlly", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "lunar_dance", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal", - "dance" - ] - }, - { - "name": "lunge", - "type": "bug", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "luster_purge", - "type": "psychic", - "power": 70, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "mach_punch", - "type": "fighting", - "power": 40, - "pp": 30, - "accuracy": 100, - "priority": 1, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "magic_coat", - "type": "psychic", - "power": 0, - "pp": 15, - "accuracy": 0, - "priority": 4, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "magic_room", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "mirror" - ] - }, - { - "name": "magical_leaf", - "type": "grass", - "power": 60, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "magma_storm", - "type": "fire", - "power": 100, - "pp": 5, - "accuracy": 75, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "magnet_bomb", - "type": "steel", - "power": 60, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "magnet_rise", - "type": "electric", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "gravity" - ] - }, - { - "name": "magnetic_flux", - "type": "electric", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "AdjacentAllySelf", - "category": "status", - "flags": [ - "snatch", - "distance", - "ignore-substitute" - ] - }, - { - "name": "magnitude", - "type": "ground", - "power": 0, - "pp": 30, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "physical", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "malicious_moonsault", - "type": "dark", - "power": 180, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact" - ] - }, - { - "name": "mat_block", - "type": "fighting", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "AllAlly", - "category": "status", - "flags": [ - "snatch", - "nonskybattle" - ] - }, - { - "name": "me_first", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "AdjacentOpponent", - "category": "status", - "flags": [ - "protect", - "ignore-substitute" - ] - }, - { - "name": "mean_look", - "type": "normal", - "power": 0, - "pp": 5, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "reflectable", - "mirror" - ] - }, - { - "name": "meditate", - "type": "psychic", - "power": 0, - "pp": 40, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "mega_drain", - "type": "grass", - "power": 40, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "heal" - ] - }, - { - "name": "mega_kick", - "type": "normal", - "power": 120, - "pp": 5, - "accuracy": 75, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "mega_punch", - "type": "normal", - "power": 80, - "pp": 20, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "megahorn", - "type": "bug", - "power": 120, - "pp": 10, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "memento", - "type": "dark", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "metal_burst", - "type": "steel", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Self", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "metal_claw", - "type": "steel", - "power": 50, - "pp": 35, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "metal_sound", - "type": "steel", - "power": 0, - "pp": 40, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "meteor_mash", - "type": "steel", - "power": 90, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "metronome", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "milk_drink", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal" - ] - }, - { - "name": "mimic", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "ignore-substitute" - ] - }, - { - "name": "mind_reader", - "type": "normal", - "power": 0, - "pp": 5, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "minimize", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "miracle_eye", - "type": "psychic", - "power": 0, - "pp": 40, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "ignore-substitute" - ] - }, - { - "name": "mirror_coat", - "type": "psychic", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": -5, - "target": "Self", - "category": "special", - "flags": [ - "protect" - ] - }, - { - "name": "mirror_move", - "type": "flying", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [] - }, - { - "name": "mirror_shot", - "type": "steel", - "power": 65, - "pp": 10, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "mist", - "type": "ice", - "power": 0, - "pp": 30, - "accuracy": 0, - "priority": 0, - "target": "AllAlly", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "mist_ball", - "type": "psychic", - "power": 70, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "misty_terrain", - "type": "fairy", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "nonskybattle" - ] - }, - { - "name": "moonblast", - "type": "fairy", - "power": 95, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "moongeist_beam", - "type": "ghost", - "power": 100, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "moonlight", - "type": "fairy", - "power": 0, - "pp": 5, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal" - ] - }, - { - "name": "morning_sun", - "type": "normal", - "power": 0, - "pp": 5, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal" - ] - }, - { - "name": "mud_bomb", - "type": "ground", - "power": 65, - "pp": 10, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "mud_shot", - "type": "ground", - "power": 55, - "pp": 15, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "mud_slap", - "type": "ground", - "power": 20, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "mud_sport", - "type": "ground", - "power": 0, - "pp": 15, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "nonskybattle" - ] - }, - { - "name": "muddy_water", - "type": "water", - "power": 90, - "pp": 10, - "accuracy": 85, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "multi_attack", - "type": "normal", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "mystical_fire", - "type": "fire", - "power": 75, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "nasty_plot", - "type": "dark", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "natural_gift", - "type": "normal", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "nature_power", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [] - }, - { - "name": "natures_madness", - "type": "fairy", - "power": 0, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "needle_arm", - "type": "grass", - "power": 60, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "never_ending_nightmare__physical", - "type": "ghost", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "never_ending_nightmare__special", - "type": "ghost", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "night_daze", - "type": "dark", - "power": 85, - "pp": 10, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "night_shade", - "type": "ghost", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "night_slash", - "type": "dark", - "power": 70, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "nightmare", - "type": "ghost", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "noble_roar", - "type": "normal", - "power": 0, - "pp": 30, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "nuzzle", - "type": "electric", - "power": 20, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "oblivion_wing", - "type": "flying", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "distance", - "heal" - ] - }, - { - "name": "oceanic_operetta", - "type": "water", - "power": 195, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "octazooka", - "type": "water", - "power": 65, - "pp": 10, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "odor_sleuth", - "type": "normal", - "power": 0, - "pp": 40, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "ignore-substitute" - ] - }, - { - "name": "ominous_wind", - "type": "ghost", - "power": 60, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "origin_pulse", - "type": "water", - "power": 110, - "pp": 10, - "accuracy": 85, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "outrage", - "type": "dragon", - "power": 120, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "RandomOpponent", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "overheat", - "type": "fire", - "power": 130, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "pain_split", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "parabolic_charge", - "type": "electric", - "power": 65, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "special", - "flags": [ - "protect", - "mirror", - "heal" - ] - }, - { - "name": "parting_shot", - "type": "dark", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "pay_day", - "type": "normal", - "power": 40, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "payback", - "type": "dark", - "power": 50, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "peck", - "type": "flying", - "power": 35, - "pp": 35, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "distance" - ] - }, - { - "name": "perish_song", - "type": "normal", - "power": 0, - "pp": 5, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "sound", - "distance", - "ignore-substitute" - ] - }, - { - "name": "petal_blizzard", - "type": "grass", - "power": 90, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "petal_dance", - "type": "grass", - "power": 120, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "RandomOpponent", - "category": "special", - "flags": [ - "contact", - "protect", - "mirror", - "dance" - ] - }, - { - "name": "phantom_force", - "type": "ghost", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "charge", - "mirror" - ] - }, - { - "name": "pin_missile", - "type": "bug", - "power": 25, - "pp": 20, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "play_nice", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "reflectable", - "mirror", - "ignore-substitute" - ] - }, - { - "name": "play_rough", - "type": "fairy", - "power": 90, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "pluck", - "type": "flying", - "power": 60, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "distance" - ] - }, - { - "name": "poison_fang", - "type": "poison", - "power": 50, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "bite" - ] - }, - { - "name": "poison_gas", - "type": "poison", - "power": 0, - "pp": 40, - "accuracy": 90, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "poison_jab", - "type": "poison", - "power": 80, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "poison_powder", - "type": "poison", - "power": 0, - "pp": 35, - "accuracy": 75, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "powder" - ] - }, - { - "name": "poison_sting", - "type": "poison", - "power": 15, - "pp": 35, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "poison_tail", - "type": "poison", - "power": 50, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "pollen_puff", - "type": "bug", - "power": 90, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "pound", - "type": "normal", - "power": 40, - "pp": 35, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "powder", - "type": "bug", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 1, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "ignore-substitute", - "powder" - ] - }, - { - "name": "powder_snow", - "type": "ice", - "power": 40, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "power_gem", - "type": "rock", - "power": 80, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "power_split", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect" - ] - }, - { - "name": "power_swap", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror", - "ignore-substitute" - ] - }, - { - "name": "power_trick", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "power_trip", - "type": "dark", - "power": 20, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "power_up_punch", - "type": "fighting", - "power": 40, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "power_whip", - "type": "grass", - "power": 120, - "pp": 10, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "precipice_blades", - "type": "ground", - "power": 120, - "pp": 10, - "accuracy": 85, - "priority": 0, - "target": "AllOpponent", - "category": "physical", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "present", - "type": "normal", - "power": 0, - "pp": 15, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "prismatic_laser", - "type": "psychic", - "power": 160, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "recharge", - "protect", - "mirror" - ] - }, - { - "name": "protect", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 4, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "psybeam", - "type": "psychic", - "power": 65, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "psych_up", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "ignore-substitute" - ] - }, - { - "name": "psychic", - "type": "psychic", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "psychic_fangs", - "type": "psychic", - "power": 85, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "psychic_terrain", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "nonskybattle" - ] - }, - { - "name": "psycho_boost", - "type": "psychic", - "power": 140, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "psycho_cut", - "type": "psychic", - "power": 70, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "psycho_shift", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "psyshock", - "type": "psychic", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "psystrike", - "type": "psychic", - "power": 100, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "psywave", - "type": "psychic", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "pulverizing_pancake", - "type": "normal", - "power": 210, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact" - ] - }, - { - "name": "punishment", - "type": "dark", - "power": 0, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "purify", - "type": "poison", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "heal" - ] - }, - { - "name": "pursuit", - "type": "dark", - "power": 40, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "quash", - "type": "dark", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "quick_attack", - "type": "normal", - "power": 40, - "pp": 30, - "accuracy": 100, - "priority": 1, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "quick_guard", - "type": "fighting", - "power": 0, - "pp": 15, - "accuracy": 0, - "priority": 3, - "target": "AllAlly", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "quiver_dance", - "type": "bug", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "dance" - ] - }, - { - "name": "rage", - "type": "normal", - "power": 20, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "rage_powder", - "type": "bug", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 2, - "target": "Self", - "category": "status", - "flags": [ - "powder" - ] - }, - { - "name": "rain_dance", - "type": "water", - "power": 0, - "pp": 5, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [] - }, - { - "name": "rapid_spin", - "type": "normal", - "power": 20, - "pp": 40, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "razor_leaf", - "type": "grass", - "power": 55, - "pp": 25, - "accuracy": 95, - "priority": 0, - "target": "AllOpponent", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "razor_shell", - "type": "water", - "power": 75, - "pp": 10, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "razor_wind", - "type": "normal", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "charge", - "protect", - "mirror" - ] - }, - { - "name": "recover", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal" - ] - }, - { - "name": "recycle", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "reflect", - "type": "psychic", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "AllAlly", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "reflect_type", - "type": "normal", - "power": 0, - "pp": 15, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "ignore-substitute" - ] - }, - { - "name": "refresh", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "relic_song", - "type": "normal", - "power": 75, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "rest", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal" - ] - }, - { - "name": "retaliate", - "type": "normal", - "power": 70, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "return", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "revelation_dance", - "type": "normal", - "power": 90, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "dance" - ] - }, - { - "name": "revenge", - "type": "fighting", - "power": 60, - "pp": 10, - "accuracy": 100, - "priority": -4, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "reversal", - "type": "fighting", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "roar", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": -6, - "target": "Any", - "category": "status", - "flags": [ - "reflectable", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "roar_of_time", - "type": "dragon", - "power": 150, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "recharge", - "protect", - "mirror" - ] - }, - { - "name": "rock_blast", - "type": "rock", - "power": 25, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "rock_climb", - "type": "normal", - "power": 90, - "pp": 20, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "rock_polish", - "type": "rock", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "rock_slide", - "type": "rock", - "power": 75, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "AllOpponent", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "rock_smash", - "type": "fighting", - "power": 40, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "rock_throw", - "type": "rock", - "power": 50, - "pp": 15, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "rock_tomb", - "type": "rock", - "power": 60, - "pp": 15, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "rock_wrecker", - "type": "rock", - "power": 150, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "recharge", - "protect", - "mirror" - ] - }, - { - "name": "role_play", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "ignore-substitute" - ] - }, - { - "name": "rolling_kick", - "type": "fighting", - "power": 60, - "pp": 15, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "rollout", - "type": "rock", - "power": 30, - "pp": 20, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "roost", - "type": "flying", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal" - ] - }, - { - "name": "rototiller", - "type": "ground", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "distance", - "nonskybattle" - ] - }, - { - "name": "round", - "type": "normal", - "power": 60, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "sacred_fire", - "type": "fire", - "power": 100, - "pp": 5, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror", - "defrost" - ] - }, - { - "name": "sacred_sword", - "type": "fighting", - "power": 90, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "safeguard", - "type": "normal", - "power": 0, - "pp": 25, - "accuracy": 0, - "priority": 0, - "target": "AllAlly", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "sand_attack", - "type": "ground", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "sand_tomb", - "type": "ground", - "power": 35, - "pp": 15, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "sandstorm", - "type": "rock", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [] - }, - { - "name": "savage_spin_out__physical", - "type": "bug", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "savage_spin_out__special", - "type": "bug", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "scald", - "type": "water", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "defrost" - ] - }, - { - "name": "scary_face", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "scratch", - "type": "normal", - "power": 40, - "pp": 35, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "screech", - "type": "normal", - "power": 0, - "pp": 40, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "searing_shot", - "type": "fire", - "power": 100, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "secret_power", - "type": "normal", - "power": 70, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "secret_sword", - "type": "fighting", - "power": 85, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "seed_bomb", - "type": "grass", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "seed_flare", - "type": "grass", - "power": 120, - "pp": 5, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "seismic_toss", - "type": "fighting", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "self_destruct", - "type": "normal", - "power": 200, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "shadow_ball", - "type": "ghost", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "shadow_blast", - "type": "", - "power": 80, - "pp": 0, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect" - ] - }, - { - "name": "shadow_blitz", - "type": "", - "power": 40, - "pp": 0, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "shadow_bolt", - "type": "", - "power": 75, - "pp": 0, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect" - ] - }, - { - "name": "shadow_bone", - "type": "ghost", - "power": 85, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "shadow_break", - "type": "", - "power": 75, - "pp": 0, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "shadow_chill", - "type": "", - "power": 75, - "pp": 0, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "shadow_claw", - "type": "ghost", - "power": 70, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "shadow_down", - "type": "", - "power": 0, - "pp": 0, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "shadow_end", - "type": "", - "power": 120, - "pp": 0, - "accuracy": 60, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "shadow_fire", - "type": "", - "power": 75, - "pp": 0, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "shadow_force", - "type": "ghost", - "power": 120, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "charge", - "mirror" - ] - }, - { - "name": "shadow_half", - "type": "", - "power": 0, - "pp": 0, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "special", - "flags": [ - "recharge", - "protect" - ] - }, - { - "name": "shadow_hold", - "type": "", - "power": 0, - "pp": 0, - "accuracy": 0, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "shadow_mist", - "type": "", - "power": 0, - "pp": 0, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "shadow_panic", - "type": "", - "power": 0, - "pp": 0, - "accuracy": 90, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "mirror", - "sound" - ] - }, - { - "name": "shadow_punch", - "type": "ghost", - "power": 60, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "shadow_rave", - "type": "", - "power": 70, - "pp": 0, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "shadow_rush", - "type": "", - "power": 55, - "pp": 0, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect" - ] - }, - { - "name": "shadow_shed", - "type": "", - "power": 0, - "pp": 0, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "protect" - ] - }, - { - "name": "shadow_sky", - "type": "", - "power": 0, - "pp": 0, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "protect" - ] - }, - { - "name": "shadow_sneak", - "type": "ghost", - "power": 40, - "pp": 30, - "accuracy": 100, - "priority": 1, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "shadow_storm", - "type": "", - "power": 95, - "pp": 0, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect" - ] - }, - { - "name": "shadow_wave", - "type": "", - "power": 50, - "pp": 0, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect" - ] - }, - { - "name": "sharpen", - "type": "normal", - "power": 0, - "pp": 30, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "shattered_psyche__physical", - "type": "psychic", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "shattered_psyche__special", - "type": "psychic", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "sheer_cold", - "type": "ice", - "power": 0, - "pp": 5, - "accuracy": 30, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "shell_smash", - "type": "normal", - "power": 0, - "pp": 15, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "shell_trap", - "type": "fire", - "power": 150, - "pp": 5, - "accuracy": 100, - "priority": -3, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect" - ] - }, - { - "name": "shift_gear", - "type": "steel", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "shock_wave", - "type": "electric", - "power": 60, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "shore_up", - "type": "ground", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal" - ] - }, - { - "name": "signal_beam", - "type": "bug", - "power": 75, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "silver_wind", - "type": "bug", - "power": 60, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "simple_beam", - "type": "normal", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "sing", - "type": "normal", - "power": 0, - "pp": 15, - "accuracy": 55, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "sinister_arrow_raid", - "type": "ghost", - "power": 180, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "sketch", - "type": "normal", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "ignore-substitute" - ] - }, - { - "name": "skill_swap", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror", - "ignore-substitute" - ] - }, - { - "name": "skull_bash", - "type": "normal", - "power": 130, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "charge", - "protect", - "mirror" - ] - }, - { - "name": "sky_attack", - "type": "flying", - "power": 140, - "pp": 5, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "charge", - "protect", - "mirror", - "distance" - ] - }, - { - "name": "sky_drop", - "type": "flying", - "power": 60, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "charge", - "protect", - "mirror", - "gravity", - "distance" - ] - }, - { - "name": "sky_uppercut", - "type": "fighting", - "power": 85, - "pp": 15, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "slack_off", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal" - ] - }, - { - "name": "slam", - "type": "normal", - "power": 80, - "pp": 20, - "accuracy": 75, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "slash", - "type": "normal", - "power": 70, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "sleep_powder", - "type": "grass", - "power": 0, - "pp": 15, - "accuracy": 75, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "powder" - ] - }, - { - "name": "sleep_talk", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "sludge", - "type": "poison", - "power": 65, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "sludge_bomb", - "type": "poison", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "sludge_wave", - "type": "poison", - "power": 95, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "smack_down", - "type": "rock", - "power": 50, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "smart_strike", - "type": "steel", - "power": 70, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "smelling_salts", - "type": "normal", - "power": 70, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "smog", - "type": "poison", - "power": 30, - "pp": 20, - "accuracy": 70, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "smokescreen", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "snarl", - "type": "dark", - "power": 55, - "pp": 15, - "accuracy": 95, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "snatch", - "type": "dark", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 4, - "target": "Self", - "category": "status", - "flags": [ - "ignore-substitute" - ] - }, - { - "name": "snore", - "type": "normal", - "power": 50, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "soak", - "type": "water", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "soft_boiled", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal" - ] - }, - { - "name": "solar_beam", - "type": "grass", - "power": 120, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "charge", - "protect", - "mirror" - ] - }, - { - "name": "solar_blade", - "type": "grass", - "power": 125, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "charge", - "protect", - "mirror" - ] - }, - { - "name": "sonic_boom", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "soul_stealing_7_star_strike", - "type": "ghost", - "power": 195, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact" - ] - }, - { - "name": "spacial_rend", - "type": "dragon", - "power": 100, - "pp": 5, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "spark", - "type": "electric", - "power": 65, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "sparkling_aria", - "type": "water", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "special", - "flags": [ - "protect", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "spectral_thief", - "type": "ghost", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "ignore-substitute" - ] - }, - { - "name": "speed_swap", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror", - "ignore-substitute" - ] - }, - { - "name": "spider_web", - "type": "bug", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "spike_cannon", - "type": "normal", - "power": 20, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "spikes", - "type": "ground", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "reflectable", - "nonskybattle" - ] - }, - { - "name": "spiky_shield", - "type": "grass", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 4, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "spirit_shackle", - "type": "ghost", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "spit_up", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect" - ] - }, - { - "name": "spite", - "type": "ghost", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "ignore-substitute" - ] - }, - { - "name": "splash", - "type": "normal", - "power": 0, - "pp": 40, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "gravity" - ] - }, - { - "name": "spore", - "type": "grass", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "powder" - ] - }, - { - "name": "spotlight", - "type": "normal", - "power": 0, - "pp": 15, - "accuracy": 0, - "priority": 3, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable" - ] - }, - { - "name": "stealth_rock", - "type": "rock", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "reflectable" - ] - }, - { - "name": "steam_eruption", - "type": "water", - "power": 110, - "pp": 5, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "defrost" - ] - }, - { - "name": "steamroller", - "type": "bug", - "power": 65, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "steel_wing", - "type": "steel", - "power": 70, - "pp": 25, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "sticky_web", - "type": "bug", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "reflectable" - ] - }, - { - "name": "stockpile", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "stoked_sparksurfer", - "type": "electric", - "power": 175, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "stomp", - "type": "normal", - "power": 65, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "stomping_tantrum", - "type": "ground", - "power": 75, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "stone_edge", - "type": "rock", - "power": 100, - "pp": 5, - "accuracy": 80, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "stored_power", - "type": "psychic", - "power": 20, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "storm_throw", - "type": "fighting", - "power": 60, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "strength", - "type": "normal", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "strength_sap", - "type": "grass", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "heal" - ] - }, - { - "name": "string_shot", - "type": "bug", - "power": 0, - "pp": 40, - "accuracy": 95, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "struggle", - "type": "normal", - "power": 50, - "pp": 100000000, - "accuracy": -1, - "priority": 0, - "target": "RandomOpponent", - "category": "physical", - "flags": [ - "contact", - "protect" - ] - }, - { - "name": "struggle_bug", - "type": "bug", - "power": 50, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "stun_spore", - "type": "grass", - "power": 0, - "pp": 30, - "accuracy": 75, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "powder" - ] - }, - { - "name": "submission", - "type": "fighting", - "power": 80, - "pp": 20, - "accuracy": 80, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "substitute", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "nonskybattle" - ] - }, - { - "name": "subzero_slammer__physical", - "type": "ice", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "subzero_slammer__special", - "type": "ice", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "sucker_punch", - "type": "dark", - "power": 70, - "pp": 5, - "accuracy": 100, - "priority": 1, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "sunny_day", - "type": "fire", - "power": 0, - "pp": 5, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [] - }, - { - "name": "sunsteel_strike", - "type": "steel", - "power": 100, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "super_fang", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "superpower", - "type": "fighting", - "power": 120, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "supersonic", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 55, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "supersonic_skystrike__physical", - "type": "flying", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "supersonic_skystrike__special", - "type": "flying", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "surf", - "type": "water", - "power": 90, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "special", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "swagger", - "type": "normal", - "power": 0, - "pp": 15, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "swallow", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal" - ] - }, - { - "name": "sweet_kiss", - "type": "fairy", - "power": 0, - "pp": 10, - "accuracy": 75, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "sweet_scent", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "swift", - "type": "normal", - "power": 60, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "switcheroo", - "type": "dark", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "swords_dance", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "dance" - ] - }, - { - "name": "synchronoise", - "type": "psychic", - "power": 120, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "synthesis", - "type": "grass", - "power": 0, - "pp": 5, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal" - ] - }, - { - "name": "tackle", - "type": "normal", - "power": 40, - "pp": 35, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "tail_glow", - "type": "bug", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "tail_slap", - "type": "normal", - "power": 25, - "pp": 10, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "tail_whip", - "type": "normal", - "power": 0, - "pp": 30, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "tailwind", - "type": "flying", - "power": 0, - "pp": 15, - "accuracy": 0, - "priority": 0, - "target": "AllAlly", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "take_down", - "type": "normal", - "power": 90, - "pp": 20, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "taunt", - "type": "dark", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "ignore-substitute", - "mental" - ] - }, - { - "name": "tearful_look", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "reflectable", - "mirror" - ] - }, - { - "name": "techno_blast", - "type": "normal", - "power": 120, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "tectonic_rage__physical", - "type": "ground", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "tectonic_rage__special", - "type": "ground", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "teeter_dance", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "protect", - "mirror", - "dance" - ] - }, - { - "name": "telekinesis", - "type": "psychic", - "power": 0, - "pp": 15, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "gravity" - ] - }, - { - "name": "teleport", - "type": "psychic", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [] - }, - { - "name": "thief", - "type": "dark", - "power": 60, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "thousand_arrows", - "type": "ground", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "physical", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "thousand_waves", - "type": "ground", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "physical", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "thrash", - "type": "normal", - "power": 120, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "RandomOpponent", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "throat_chop", - "type": "dark", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "thunder", - "type": "electric", - "power": 110, - "pp": 10, - "accuracy": 70, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "thunder_fang", - "type": "electric", - "power": 65, - "pp": 15, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "bite" - ] - }, - { - "name": "thunder_punch", - "type": "electric", - "power": 75, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "punch" - ] - }, - { - "name": "thunder_shock", - "type": "electric", - "power": 40, - "pp": 30, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "thunder_wave", - "type": "electric", - "power": 0, - "pp": 20, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "thunderbolt", - "type": "electric", - "power": 90, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "tickle", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "topsy_turvy", - "type": "dark", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "torment", - "type": "dark", - "power": 0, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror", - "ignore-substitute", - "mental" - ] - }, - { - "name": "toxic", - "type": "poison", - "power": 0, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "toxic_spikes", - "type": "poison", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "reflectable", - "nonskybattle" - ] - }, - { - "name": "toxic_thread", - "type": "poison", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "transform", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [] - }, - { - "name": "tri_attack", - "type": "normal", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "trick", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "trick_or_treat", - "type": "ghost", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "trick_room", - "type": "psychic", - "power": 0, - "pp": 5, - "accuracy": 0, - "priority": -7, - "target": "All", - "category": "status", - "flags": [ - "mirror" - ] - }, - { - "name": "triple_kick", - "type": "fighting", - "power": 10, - "pp": 10, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "trop_kick", - "type": "grass", - "power": 70, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "trump_card", - "type": "normal", - "power": 0, - "pp": 5, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "twineedle", - "type": "bug", - "power": 25, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "twinkle_tackle__physical", - "type": "fairy", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [] - }, - { - "name": "twinkle_tackle__special", - "type": "fairy", - "power": 0, - "pp": 1, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [] - }, - { - "name": "twister", - "type": "dragon", - "power": 40, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "u_turn", - "type": "bug", - "power": 70, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "uproar", - "type": "normal", - "power": 90, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "RandomOpponent", - "category": "special", - "flags": [ - "protect", - "mirror", - "sound", - "ignore-substitute" - ] - }, - { - "name": "v_create", - "type": "fire", - "power": 180, - "pp": 5, - "accuracy": 95, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "vacuum_wave", - "type": "fighting", - "power": 40, - "pp": 30, - "accuracy": 100, - "priority": 1, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "venom_drench", - "type": "poison", - "power": 0, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "venoshock", - "type": "poison", - "power": 65, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "vice_grip", - "type": "normal", - "power": 55, - "pp": 30, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "vine_whip", - "type": "grass", - "power": 45, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "vital_throw", - "type": "fighting", - "power": 70, - "pp": 10, - "accuracy": 0, - "priority": -1, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "volt_switch", - "type": "electric", - "power": 70, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "volt_tackle", - "type": "electric", - "power": 120, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "wake_up_slap", - "type": "fighting", - "power": 70, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "water_gun", - "type": "water", - "power": 40, - "pp": 25, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "water_pledge", - "type": "water", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "nonskybattle" - ] - }, - { - "name": "water_pulse", - "type": "water", - "power": 60, - "pp": 20, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "distance", - "pulse" - ] - }, - { - "name": "water_shuriken", - "type": "water", - "power": 15, - "pp": 20, - "accuracy": 100, - "priority": 1, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "water_sport", - "type": "water", - "power": 0, - "pp": 15, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "nonskybattle" - ] - }, - { - "name": "water_spout", - "type": "water", - "power": 150, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "AllOpponent", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "waterfall", - "type": "water", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "weather_ball", - "type": "normal", - "power": 50, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "ballistics" - ] - }, - { - "name": "whirlpool", - "type": "water", - "power": 35, - "pp": 15, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror", - "mental" - ] - }, - { - "name": "whirlwind", - "type": "normal", - "power": 0, - "pp": 20, - "accuracy": 0, - "priority": -6, - "target": "Any", - "category": "status", - "flags": [ - "reflectable", - "mirror", - "ignore-substitute" - ] - }, - { - "name": "wide_guard", - "type": "rock", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 3, - "target": "AllAlly", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "wild_charge", - "type": "electric", - "power": 90, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "will_o_wisp", - "type": "fire", - "power": 0, - "pp": 15, - "accuracy": 85, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "wing_attack", - "type": "flying", - "power": 60, - "pp": 35, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror", - "distance" - ] - }, - { - "name": "wish", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch", - "heal" - ] - }, - { - "name": "withdraw", - "type": "water", - "power": 0, - "pp": 40, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "wonder_room", - "type": "psychic", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "All", - "category": "status", - "flags": [ - "mirror" - ] - }, - { - "name": "wood_hammer", - "type": "grass", - "power": 120, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "work_up", - "type": "normal", - "power": 0, - "pp": 30, - "accuracy": 0, - "priority": 0, - "target": "Self", - "category": "status", - "flags": [ - "snatch" - ] - }, - { - "name": "worry_seed", - "type": "grass", - "power": 0, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "wrap", - "type": "normal", - "power": 15, - "pp": 20, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "wring_out", - "type": "normal", - "power": 0, - "pp": 5, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "x_scissor", - "type": "bug", - "power": 80, - "pp": 15, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "yawn", - "type": "normal", - "power": 0, - "pp": 10, - "accuracy": 0, - "priority": 0, - "target": "Any", - "category": "status", - "flags": [ - "protect", - "reflectable", - "mirror" - ] - }, - { - "name": "zap_cannon", - "type": "electric", - "power": 120, - "pp": 5, - "accuracy": 50, - "priority": 0, - "target": "Any", - "category": "special", - "flags": [ - "protect", - "mirror" - ] - }, - { - "name": "zen_headbutt", - "type": "psychic", - "power": 80, - "pp": 15, - "accuracy": 90, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - }, - { - "name": "zing_zap", - "type": "electric", - "power": 80, - "pp": 10, - "accuracy": 100, - "priority": 0, - "target": "Any", - "category": "physical", - "flags": [ - "contact", - "protect", - "mirror" - ] - } -] \ No newline at end of file + ] +} diff --git a/Pokemon.json b/Pokemon.json index 0e7d51b..391c39d 100644 --- a/Pokemon.json +++ b/Pokemon.json @@ -1,4 +1,5 @@ { + "$schema": "https://git.p-epsilon.com/Deukhoofd/PokemonJsonSchemas/raw/branch/master/pokemon.schema.json", "abomasnow": { "species": "abomasnow", "id": 460, @@ -8,14 +9,21 @@ "catchRate": 60, "color": "white", "genderDifference": true, - "eggGroups": ["monster", "plant"], + "eggGroups": ["monster", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["snow_warning"], "hiddenAbilities": ["soundproof"], - "baseStats": { "attack": 92, "defense": 75, "hp": 90, "specialAttack": 92, "specialDefense": 85, "speed": 60 }, + "baseStats": { + "attack": 92, + "defense": 75, + "hp": 90, + "specialAttack": 92, + "specialDefense": 85, + "speed": 60 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["grass", "ice"], "height": 2.2, @@ -85,7 +93,14 @@ "isMega": true, "abilities": ["snow_warning"], "hiddenAbilities": [], - "baseStats": { "attack": 132, "defense": 105, "hp": 90, "specialAttack": 132, "specialDefense": 105, "speed": 30 }, + "baseStats": { + "attack": 132, + "defense": 105, + "hp": 90, + "specialAttack": 132, + "specialDefense": 105, + "speed": 30 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["grass", "ice"], "height": 2.7, @@ -163,14 +178,21 @@ "catchRate": 200, "color": "brown", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["synchronize", "inner_focus"], "hiddenAbilities": ["magic_guard"], - "baseStats": { "attack": 20, "defense": 15, "hp": 25, "specialAttack": 105, "specialDefense": 55, "speed": 90 }, + "baseStats": { + "attack": 20, + "defense": 15, + "hp": 25, + "specialAttack": 105, + "specialDefense": 55, + "speed": 90 + }, "evReward": { "specialAttack": 1 }, "types": ["psychic"], "height": 0.9, @@ -178,7 +200,20 @@ "baseExp": 62, "moves": { "levelMoves": [{ "name": "teleport", "level": 1 }], - "eggMoves": ["fire_punch", "ice_punch", "thunder_punch", "barrier", "encore", "knock_off", "skill_swap", "psycho_shift", "power_trick", "guard_swap", "guard_split", "ally_switch"], + "eggMoves": [ + "fire_punch", + "ice_punch", + "thunder_punch", + "barrier", + "encore", + "knock_off", + "skill_swap", + "psycho_shift", + "power_trick", + "guard_swap", + "guard_split", + "ally_switch" + ], "tutorMoves": [], "machine": [ "thunder_wave", @@ -233,14 +268,21 @@ "catchRate": 30, "color": "white", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["pressure", "super_luck"], "hiddenAbilities": ["justified"], - "baseStats": { "attack": 130, "defense": 60, "hp": 65, "specialAttack": 75, "specialDefense": 60, "speed": 75 }, + "baseStats": { + "attack": 130, + "defense": 60, + "hp": 65, + "specialAttack": 75, + "specialDefense": 60, + "speed": 75 + }, "evReward": { "attack": 2 }, "types": ["dark"], "height": 1.2, @@ -347,7 +389,14 @@ "isMega": true, "abilities": ["magic_bounce"], "hiddenAbilities": [], - "baseStats": { "attack": 150, "defense": 60, "hp": 65, "specialAttack": 115, "specialDefense": 60, "speed": 115 }, + "baseStats": { + "attack": 150, + "defense": 60, + "hp": 65, + "specialAttack": 115, + "specialDefense": 60, + "speed": 115 + }, "evReward": { "attack": 2 }, "types": ["dark"], "height": 1.2, @@ -453,7 +502,14 @@ "default": { "abilities": ["hydration", "sticky_hold"], "hiddenAbilities": ["unburden"], - "baseStats": { "attack": 70, "defense": 40, "hp": 80, "specialAttack": 100, "specialDefense": 60, "speed": 145 }, + "baseStats": { + "attack": 70, + "defense": 40, + "hp": 80, + "specialAttack": 100, + "specialDefense": 60, + "speed": 145 + }, "evReward": { "speed": 2 }, "types": ["bug"], "height": 0.8, @@ -534,7 +590,14 @@ "blade": { "abilities": ["stance_change"], "hiddenAbilities": [], - "baseStats": { "attack": 150, "defense": 50, "hp": 60, "specialAttack": 150, "specialDefense": 50, "speed": 60 }, + "baseStats": { + "attack": 150, + "defense": 50, + "hp": 60, + "specialAttack": 150, + "specialDefense": 50, + "speed": 60 + }, "evReward": { "attack": 2, "specialAttack": 1 }, "types": ["steel", "ghost"], "height": 1.7, @@ -596,7 +659,14 @@ "default": { "abilities": ["stance_change"], "hiddenAbilities": [], - "baseStats": { "attack": 50, "defense": 150, "hp": 60, "specialAttack": 50, "specialDefense": 150, "speed": 60 }, + "baseStats": { + "attack": 50, + "defense": 150, + "hp": 60, + "specialAttack": 50, + "specialDefense": 150, + "speed": 60 + }, "evReward": { "defense": 2, "specialDefense": 1 }, "types": ["steel", "ghost"], "height": 1.7, @@ -656,7 +726,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "aerodactyl": { "species": "aerodactyl", @@ -674,7 +744,14 @@ "default": { "abilities": ["rock_head", "pressure"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 105, "defense": 65, "hp": 80, "specialAttack": 60, "specialDefense": 75, "speed": 130 }, + "baseStats": { + "attack": 105, + "defense": 65, + "hp": 80, + "specialAttack": 60, + "specialDefense": 75, + "speed": 130 + }, "evReward": { "speed": 2 }, "types": ["rock", "flying"], "height": 1.8, @@ -701,7 +778,18 @@ { "name": "rock_slide", "level": 73 }, { "name": "giga_impact", "level": 81 } ], - "eggMoves": ["whirlwind", "curse", "foresight", "steel_wing", "dragon_breath", "pursuit", "roost", "tailwind", "assurance", "wide_guard"], + "eggMoves": [ + "whirlwind", + "curse", + "foresight", + "steel_wing", + "dragon_breath", + "pursuit", + "roost", + "tailwind", + "assurance", + "wide_guard" + ], "tutorMoves": [], "machine": [ "fly", @@ -752,7 +840,14 @@ "isMega": true, "abilities": ["tough_claws"], "hiddenAbilities": [], - "baseStats": { "attack": 135, "defense": 85, "hp": 80, "specialAttack": 70, "specialDefense": 95, "speed": 150 }, + "baseStats": { + "attack": 135, + "defense": 85, + "hp": 80, + "specialAttack": 70, + "specialDefense": 95, + "speed": 150 + }, "evReward": { "speed": 2 }, "types": ["rock", "flying"], "height": 2.1, @@ -845,7 +940,14 @@ "default": { "abilities": ["sturdy", "rock_head"], "hiddenAbilities": ["heavy_metal"], - "baseStats": { "attack": 110, "defense": 180, "hp": 70, "specialAttack": 60, "specialDefense": 60, "speed": 50 }, + "baseStats": { + "attack": 110, + "defense": 180, + "hp": 70, + "specialAttack": 60, + "specialDefense": 60, + "speed": 50 + }, "evReward": { "defense": 3 }, "types": ["steel", "rock"], "height": 2.1, @@ -934,7 +1036,14 @@ "isMega": true, "abilities": ["filter"], "hiddenAbilities": [], - "baseStats": { "attack": 140, "defense": 230, "hp": 70, "specialAttack": 60, "specialDefense": 80, "speed": 50 }, + "baseStats": { + "attack": 140, + "defense": 230, + "hp": 70, + "specialAttack": 60, + "specialDefense": 80, + "speed": 50 + }, "evReward": { "defense": 3 }, "types": ["steel"], "height": 2.2, @@ -1031,14 +1140,21 @@ "catchRate": 45, "color": "purple", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["run_away", "pickup"], "hiddenAbilities": ["skill_link"], - "baseStats": { "attack": 70, "defense": 55, "hp": 55, "specialAttack": 40, "specialDefense": 55, "speed": 85 }, + "baseStats": { + "attack": 70, + "defense": 55, + "hp": 55, + "specialAttack": 40, + "specialDefense": 55, + "speed": 85 + }, "evReward": { "speed": 1 }, "types": ["normal"], "height": 0.8, @@ -1061,7 +1177,22 @@ { "name": "nasty_plot", "level": 39 }, { "name": "last_resort", "level": 43 } ], - "eggMoves": ["double_slap", "slam", "counter", "agility", "screech", "spite", "pursuit", "beat_up", "fake_out", "revenge", "bounce", "covet", "switcheroo", "quick_guard"], + "eggMoves": [ + "double_slap", + "slam", + "counter", + "agility", + "screech", + "spite", + "pursuit", + "beat_up", + "fake_out", + "revenge", + "bounce", + "covet", + "switcheroo", + "quick_guard" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -1103,7 +1234,9 @@ } } }, - "evolutions": [{ "species": "ambipom", "method": "hasmove", "data": "doublehit" }] + "evolutions": [ + { "species": "ambipom", "method": "hasmove", "data": "doublehit" } + ] }, "alakazam": { "species": "alakazam", @@ -1114,14 +1247,21 @@ "catchRate": 50, "color": "brown", "genderDifference": true, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["synchronize", "inner_focus"], "hiddenAbilities": ["magic_guard"], - "baseStats": { "attack": 50, "defense": 45, "hp": 55, "specialAttack": 135, "specialDefense": 95, "speed": 120 }, + "baseStats": { + "attack": 50, + "defense": 45, + "hp": 55, + "specialAttack": 135, + "specialDefense": 95, + "speed": 120 + }, "evReward": { "specialAttack": 3 }, "types": ["psychic"], "height": 1.5, @@ -1197,7 +1337,14 @@ "isMega": true, "abilities": ["trace"], "hiddenAbilities": [], - "baseStats": { "attack": 50, "defense": 65, "hp": 55, "specialAttack": 175, "specialDefense": 105, "speed": 150 }, + "baseStats": { + "attack": 50, + "defense": 65, + "hp": 55, + "specialAttack": 175, + "specialDefense": 105, + "speed": 150 + }, "evReward": { "specialAttack": 3 }, "types": ["psychic"], "height": 1.2, @@ -1288,7 +1435,14 @@ "default": { "abilities": ["healer", "hydration"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 75, "defense": 80, "hp": 165, "specialAttack": 40, "specialDefense": 45, "speed": 65 }, + "baseStats": { + "attack": 75, + "defense": 80, + "hp": 165, + "specialAttack": 40, + "specialDefense": 45, + "speed": 65 + }, "evReward": { "hp": 2 }, "types": ["water"], "height": 1.2, @@ -1320,7 +1474,14 @@ { "name": "wide_guard", "level": 61 }, { "name": "hydro_pump", "level": 65 } ], - "eggMoves": ["mist", "endure", "pain_split", "mirror_coat", "refresh", "tickle"], + "eggMoves": [ + "mist", + "endure", + "pain_split", + "mirror_coat", + "refresh", + "tickle" + ], "tutorMoves": [], "machine": [ "surf", @@ -1373,7 +1534,14 @@ "default": { "abilities": ["natural_cure"], "hiddenAbilities": ["cloud_nine"], - "baseStats": { "attack": 70, "defense": 90, "hp": 75, "specialAttack": 70, "specialDefense": 105, "speed": 80 }, + "baseStats": { + "attack": 70, + "defense": 90, + "hp": 75, + "specialAttack": 70, + "specialDefense": 105, + "speed": 80 + }, "evReward": { "specialDefense": 2 }, "types": ["dragon", "flying"], "height": 1.1, @@ -1453,7 +1621,14 @@ "isMega": true, "abilities": ["pixilate"], "hiddenAbilities": [], - "baseStats": { "attack": 110, "defense": 110, "hp": 75, "specialAttack": 110, "specialDefense": 105, "speed": 80 }, + "baseStats": { + "attack": 110, + "defense": 110, + "hp": 75, + "specialAttack": 110, + "specialDefense": 105, + "speed": 80 + }, "evReward": { "specialDefense": 2 }, "types": ["dragon", "fairy"], "height": 1.5, @@ -1548,7 +1723,14 @@ "default": { "abilities": ["refrigerate"], "hiddenAbilities": ["snow_warning"], - "baseStats": { "attack": 59, "defense": 50, "hp": 77, "specialAttack": 67, "specialDefense": 63, "speed": 46 }, + "baseStats": { + "attack": 59, + "defense": 50, + "hp": 77, + "specialAttack": 67, + "specialDefense": 63, + "speed": 46 + }, "evReward": { "hp": 1 }, "types": ["rock", "ice"], "height": 1.3, @@ -1575,7 +1757,13 @@ { "name": "hyper_beam", "level": 57 }, { "name": "blizzard", "level": 65 } ], - "eggMoves": ["barrier", "haze", "mirror_coat", "magnet_rise", "discharge"], + "eggMoves": [ + "barrier", + "haze", + "mirror_coat", + "magnet_rise", + "discharge" + ], "tutorMoves": [], "machine": [ "roar", @@ -1624,7 +1812,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "ambipom": { "species": "ambipom", @@ -1635,14 +1823,21 @@ "catchRate": 45, "color": "purple", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["technician", "pickup"], "hiddenAbilities": ["skill_link"], - "baseStats": { "attack": 100, "defense": 66, "hp": 75, "specialAttack": 60, "specialDefense": 66, "speed": 115 }, + "baseStats": { + "attack": 100, + "defense": 66, + "hp": 75, + "specialAttack": 60, + "specialDefense": 66, + "speed": 115 + }, "evReward": { "speed": 2 }, "types": ["normal"], "height": 1.2, @@ -1723,14 +1918,21 @@ "catchRate": 75, "color": "white", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["effect_spore"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 85, "defense": 70, "hp": 114, "specialAttack": 85, "specialDefense": 80, "speed": 30 }, + "baseStats": { + "attack": 85, + "defense": 70, + "hp": 114, + "specialAttack": 85, + "specialDefense": 80, + "speed": 30 + }, "evReward": { "hp": 2 }, "types": ["grass", "poison"], "height": 0.6, @@ -1801,14 +2003,21 @@ "catchRate": 45, "color": "yellow", "genderDifference": false, - "eggGroups": ["monster", "ground"], + "eggGroups": ["monster", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["static"], "hiddenAbilities": ["plus"], - "baseStats": { "attack": 75, "defense": 85, "hp": 90, "specialAttack": 115, "specialDefense": 90, "speed": 55 }, + "baseStats": { + "attack": 75, + "defense": 85, + "hp": 90, + "specialAttack": 115, + "specialDefense": 90, + "speed": 55 + }, "evReward": { "specialAttack": 3 }, "types": ["electric"], "height": 1.4, @@ -1884,7 +2093,14 @@ "isMega": true, "abilities": ["mold_breaker"], "hiddenAbilities": [], - "baseStats": { "attack": 95, "defense": 105, "hp": 90, "specialAttack": 165, "specialDefense": 110, "speed": 45 }, + "baseStats": { + "attack": 95, + "defense": 105, + "hp": 90, + "specialAttack": 165, + "specialDefense": 110, + "speed": 45 + }, "evReward": { "specialAttack": 3 }, "types": ["electric", "dragon"], "height": 1.4, @@ -1975,7 +2191,14 @@ "default": { "abilities": ["battle_armor"], "hiddenAbilities": ["swift_swim"], - "baseStats": { "attack": 95, "defense": 50, "hp": 45, "specialAttack": 40, "specialDefense": 50, "speed": 75 }, + "baseStats": { + "attack": 95, + "defense": 50, + "hp": 45, + "specialAttack": 40, + "specialDefense": 50, + "speed": 75 + }, "evReward": { "attack": 1 }, "types": ["rock", "bug"], "height": 0.7, @@ -1999,7 +2222,17 @@ { "name": "protect", "level": 49 }, { "name": "rock_blast", "level": 55 } ], - "eggMoves": ["sand_attack", "screech", "curse", "rapid_spin", "knock_off", "iron_defense", "water_pulse", "cross_poison", "aqua_jet"], + "eggMoves": [ + "sand_attack", + "screech", + "curse", + "rapid_spin", + "knock_off", + "iron_defense", + "water_pulse", + "cross_poison", + "aqua_jet" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -2050,7 +2283,14 @@ "default": { "abilities": ["water_bubble"], "hiddenAbilities": ["water_absorb"], - "baseStats": { "attack": 70, "defense": 92, "hp": 68, "specialAttack": 50, "specialDefense": 132, "speed": 42 }, + "baseStats": { + "attack": 70, + "defense": 92, + "hp": 68, + "specialAttack": 50, + "specialDefense": 132, + "speed": 42 + }, "evReward": { "specialDefense": 2 }, "types": ["water", "bug"], "height": 1.8, @@ -2112,7 +2352,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "arbok": { "species": "arbok", @@ -2123,14 +2363,21 @@ "catchRate": 90, "color": "purple", "genderDifference": false, - "eggGroups": ["ground", "dragon"], + "eggGroups": ["field", "dragon"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["intimidate", "shed_skin"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 95, "defense": 69, "hp": 60, "specialAttack": 65, "specialDefense": 79, "speed": 80 }, + "baseStats": { + "attack": 95, + "defense": 69, + "hp": 60, + "specialAttack": 65, + "specialDefense": 79, + "speed": 80 + }, "evReward": { "attack": 2 }, "types": ["poison"], "height": 3.5, @@ -2215,14 +2462,21 @@ "catchRate": 75, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["intimidate", "flash_fire"], "hiddenAbilities": ["justified"], - "baseStats": { "attack": 110, "defense": 80, "hp": 90, "specialAttack": 100, "specialDefense": 80, "speed": 95 }, + "baseStats": { + "attack": 110, + "defense": 80, + "hp": 90, + "specialAttack": 100, + "specialDefense": 80, + "speed": 95 + }, "evReward": { "attack": 2 }, "types": ["fire"], "height": 1.9, @@ -2293,7 +2547,14 @@ "default": { "abilities": ["multitype"], "hiddenAbilities": [], - "baseStats": { "attack": 120, "defense": 120, "hp": 120, "specialAttack": 120, "specialDefense": 120, "speed": 120 }, + "baseStats": { + "attack": 120, + "defense": 120, + "hp": 120, + "specialAttack": 120, + "specialDefense": 120, + "speed": 120 + }, "evReward": { "hp": 3 }, "types": ["normal"], "height": 3.2, @@ -2409,7 +2670,14 @@ "default": { "abilities": ["defeatist"], "hiddenAbilities": [], - "baseStats": { "attack": 112, "defense": 45, "hp": 55, "specialAttack": 74, "specialDefense": 45, "speed": 70 }, + "baseStats": { + "attack": 112, + "defense": 45, + "hp": 55, + "specialAttack": 74, + "specialDefense": 45, + "speed": 70 + }, "evReward": { "attack": 1 }, "types": ["rock", "flying"], "height": 0.5, @@ -2436,7 +2704,17 @@ { "name": "dragon_claw", "level": 48 }, { "name": "thrash", "level": 50 } ], - "eggMoves": ["bite", "steel_wing", "knock_off", "dragon_pulse", "earth_power", "switcheroo", "defog", "head_smash", "ally_switch"], + "eggMoves": [ + "bite", + "steel_wing", + "knock_off", + "dragon_pulse", + "earth_power", + "switcheroo", + "defog", + "head_smash", + "ally_switch" + ], "tutorMoves": [], "machine": [ "roar", @@ -2494,7 +2772,14 @@ "default": { "abilities": ["defeatist"], "hiddenAbilities": [], - "baseStats": { "attack": 140, "defense": 65, "hp": 75, "specialAttack": 112, "specialDefense": 65, "speed": 110 }, + "baseStats": { + "attack": 140, + "defense": 65, + "hp": 75, + "specialAttack": 112, + "specialDefense": 65, + "speed": 110 + }, "evReward": { "attack": 2 }, "types": ["rock", "flying"], "height": 1.4, @@ -2585,7 +2870,14 @@ "default": { "abilities": ["swarm", "insomnia"], "hiddenAbilities": ["sniper"], - "baseStats": { "attack": 90, "defense": 70, "hp": 70, "specialAttack": 60, "specialDefense": 70, "speed": 40 }, + "baseStats": { + "attack": 90, + "defense": 70, + "hp": 70, + "specialAttack": 60, + "specialDefense": 70, + "speed": 40 + }, "evReward": { "attack": 2 }, "types": ["bug", "poison"], "height": 1.1, @@ -2673,7 +2965,14 @@ "default": { "abilities": ["battle_armor"], "hiddenAbilities": ["swift_swim"], - "baseStats": { "attack": 125, "defense": 100, "hp": 75, "specialAttack": 70, "specialDefense": 80, "speed": 45 }, + "baseStats": { + "attack": 125, + "defense": 100, + "hp": 75, + "specialAttack": 70, + "specialDefense": 80, + "speed": 45 + }, "evReward": { "attack": 2 }, "types": ["rock", "bug"], "height": 1.5, @@ -2757,7 +3056,14 @@ "default": { "abilities": ["healer"], "hiddenAbilities": ["aroma_veil"], - "baseStats": { "attack": 72, "defense": 72, "hp": 101, "specialAttack": 99, "specialDefense": 89, "speed": 29 }, + "baseStats": { + "attack": 72, + "defense": 72, + "hp": 101, + "specialAttack": 99, + "specialDefense": 89, + "speed": 29 + }, "evReward": { "hp": 2 }, "types": ["fairy"], "height": 0.8, @@ -2831,7 +3137,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "aron": { "species": "aron", @@ -2849,7 +3155,14 @@ "default": { "abilities": ["sturdy", "rock_head"], "hiddenAbilities": ["heavy_metal"], - "baseStats": { "attack": 70, "defense": 100, "hp": 50, "specialAttack": 40, "specialDefense": 40, "speed": 30 }, + "baseStats": { + "attack": 70, + "defense": 100, + "hp": 50, + "specialAttack": 40, + "specialDefense": 40, + "speed": 30 + }, "evReward": { "defense": 1 }, "types": ["steel", "rock"], "height": 0.4, @@ -2876,7 +3189,20 @@ { "name": "heavy_slam", "level": 46 }, { "name": "metal_burst", "level": 49 } ], - "eggMoves": ["stomp", "body_slam", "screech", "curse", "reversal", "smelling_salts", "superpower", "endeavor", "dragon_rush", "iron_head", "stealth_rock", "head_smash"], + "eggMoves": [ + "stomp", + "body_slam", + "screech", + "curse", + "reversal", + "smelling_salts", + "superpower", + "endeavor", + "dragon_rush", + "iron_head", + "stealth_rock", + "head_smash" + ], "tutorMoves": [], "machine": [ "roar", @@ -2927,7 +3253,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": ["snow_cloak"], - "baseStats": { "attack": 85, "defense": 100, "hp": 90, "specialAttack": 95, "specialDefense": 125, "speed": 85 }, + "baseStats": { + "attack": 85, + "defense": 100, + "hp": 90, + "specialAttack": 95, + "specialDefense": 125, + "speed": 85 + }, "evReward": { "specialDefense": 3 }, "types": ["ice", "flying"], "height": 1.7, @@ -3009,7 +3342,14 @@ "default": { "abilities": ["healer", "regenerator"], "hiddenAbilities": ["klutz"], - "baseStats": { "attack": 60, "defense": 86, "hp": 103, "specialAttack": 60, "specialDefense": 86, "speed": 50 }, + "baseStats": { + "attack": 60, + "defense": 86, + "hp": 103, + "specialAttack": 60, + "specialDefense": 86, + "speed": 50 + }, "evReward": { "hp": 2 }, "types": ["normal"], "height": 1.1, @@ -3039,7 +3379,19 @@ { "name": "hyper_voice", "level": 53 }, { "name": "last_resort", "level": 57 } ], - "eggMoves": ["amnesia", "sweet_kiss", "sleep_talk", "heal_bell", "encore", "wish", "yawn", "healing_wish", "lucky_chant", "bestow", "draining_kiss"], + "eggMoves": [ + "amnesia", + "sweet_kiss", + "sleep_talk", + "heal_bell", + "encore", + "wish", + "yawn", + "healing_wish", + "lucky_chant", + "bestow", + "draining_kiss" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -3093,7 +3445,14 @@ "isMega": true, "abilities": ["healer"], "hiddenAbilities": [], - "baseStats": { "attack": 60, "defense": 126, "hp": 103, "specialAttack": 80, "specialDefense": 126, "speed": 50 }, + "baseStats": { + "attack": 60, + "defense": 126, + "hp": 103, + "specialAttack": 80, + "specialDefense": 126, + "speed": 50 + }, "evReward": { "hp": 2 }, "types": ["normal", "fairy"], "height": 1.5, @@ -3192,7 +3551,14 @@ "default": { "abilities": ["refrigerate"], "hiddenAbilities": ["snow_warning"], - "baseStats": { "attack": 77, "defense": 72, "hp": 123, "specialAttack": 99, "specialDefense": 92, "speed": 58 }, + "baseStats": { + "attack": 77, + "defense": 72, + "hp": 123, + "specialAttack": 99, + "specialDefense": 92, + "speed": 58 + }, "evReward": { "hp": 2 }, "types": ["rock", "ice"], "height": 2.7, @@ -3276,7 +3642,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "avalugg": { "species": "avalugg", @@ -3294,7 +3660,14 @@ "default": { "abilities": ["own_tempo", "ice_body"], "hiddenAbilities": ["sturdy"], - "baseStats": { "attack": 117, "defense": 184, "hp": 95, "specialAttack": 44, "specialDefense": 46, "speed": 28 }, + "baseStats": { + "attack": 117, + "defense": 184, + "hp": 95, + "specialAttack": 44, + "specialDefense": 46, + "speed": 28 + }, "evReward": { "defense": 2 }, "types": ["ice"], "height": 2, @@ -3366,7 +3739,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "axew": { "species": "axew", @@ -3384,7 +3757,14 @@ "default": { "abilities": ["rivalry", "mold_breaker"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 87, "defense": 60, "hp": 46, "specialAttack": 30, "specialDefense": 40, "speed": 57 }, + "baseStats": { + "attack": 87, + "defense": 60, + "hp": 46, + "specialAttack": 30, + "specialDefense": 40, + "speed": 57 + }, "evReward": { "attack": 1 }, "types": ["dragon"], "height": 0.6, @@ -3409,7 +3789,18 @@ { "name": "outrage", "level": 56 }, { "name": "giga_impact", "level": 61 } ], - "eggMoves": ["razor_wind", "counter", "harden", "focus_energy", "reversal", "endure", "iron_tail", "endeavor", "night_slash", "dragon_pulse"], + "eggMoves": [ + "razor_wind", + "counter", + "harden", + "focus_energy", + "reversal", + "endure", + "iron_tail", + "endeavor", + "night_slash", + "dragon_pulse" + ], "tutorMoves": ["draco_meteor"], "machine": [ "swords_dance", @@ -3463,7 +3854,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 125, "defense": 70, "hp": 75, "specialAttack": 125, "specialDefense": 70, "speed": 115 }, + "baseStats": { + "attack": 125, + "defense": 70, + "hp": 75, + "specialAttack": 125, + "specialDefense": 70, + "speed": 115 + }, "evReward": { "attack": 2, "specialAttack": 1 }, "types": ["psychic"], "height": 0.3, @@ -3556,7 +3954,14 @@ "default": { "abilities": ["thick_fat", "huge_power"], "hiddenAbilities": ["sap_sipper"], - "baseStats": { "attack": 50, "defense": 80, "hp": 100, "specialAttack": 60, "specialDefense": 80, "speed": 50 }, + "baseStats": { + "attack": 50, + "defense": 80, + "hp": 100, + "specialAttack": 60, + "specialDefense": 80, + "speed": 50 + }, "evReward": { "hp": 3 }, "types": ["water", "fairy"], "height": 0.8, @@ -3639,7 +4044,14 @@ "default": { "abilities": ["thick_fat", "huge_power"], "hiddenAbilities": ["sap_sipper"], - "baseStats": { "attack": 20, "defense": 40, "hp": 50, "specialAttack": 20, "specialDefense": 40, "speed": 20 }, + "baseStats": { + "attack": 20, + "defense": 40, + "hp": 50, + "specialAttack": 20, + "specialDefense": 40, + "speed": 20 + }, "evReward": { "hp": 1 }, "types": ["normal", "fairy"], "height": 0.2, @@ -3658,7 +4070,20 @@ { "name": "slam", "level": 20 }, { "name": "bounce", "level": 23 } ], - "eggMoves": ["slam", "body_slam", "sing", "encore", "refresh", "camouflage", "fake_tears", "tickle", "muddy_water", "water_sport", "copycat", "soak"], + "eggMoves": [ + "slam", + "body_slam", + "sing", + "encore", + "refresh", + "camouflage", + "fake_tears", + "tickle", + "muddy_water", + "water_sport", + "copycat", + "soak" + ], "tutorMoves": [], "machine": [ "surf", @@ -3707,7 +4132,14 @@ "default": { "abilities": ["rock_head"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 75, "defense": 60, "hp": 45, "specialAttack": 40, "specialDefense": 30, "speed": 50 }, + "baseStats": { + "attack": 75, + "defense": 60, + "hp": 45, + "specialAttack": 40, + "specialDefense": 30, + "speed": 50 + }, "evReward": { "attack": 1 }, "types": ["dragon"], "height": 0.6, @@ -3729,7 +4161,18 @@ { "name": "flamethrower", "level": 44 }, { "name": "double_edge", "level": 49 } ], - "eggMoves": ["thrash", "hydro_pump", "dragon_rage", "defense_curl", "endure", "twister", "dragon_dance", "dragon_pulse", "dragon_rush", "fire_fang"], + "eggMoves": [ + "thrash", + "hydro_pump", + "dragon_rage", + "defense_curl", + "endure", + "twister", + "dragon_dance", + "dragon_pulse", + "dragon_rush", + "fire_fang" + ], "tutorMoves": ["draco_meteor"], "machine": [ "roar", @@ -3780,7 +4223,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 40, "defense": 55, "hp": 40, "specialAttack": 40, "specialDefense": 70, "speed": 55 }, + "baseStats": { + "attack": 40, + "defense": 55, + "hp": 40, + "specialAttack": 40, + "specialDefense": 70, + "speed": 55 + }, "evReward": { "specialDefense": 1 }, "types": ["ground", "psychic"], "height": 0.5, @@ -3865,14 +4315,21 @@ "catchRate": 45, "color": "black", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["insomnia", "frisk"], "hiddenAbilities": ["cursed_body"], - "baseStats": { "attack": 115, "defense": 65, "hp": 64, "specialAttack": 83, "specialDefense": 63, "speed": 65 }, + "baseStats": { + "attack": 115, + "defense": 65, + "hp": 64, + "specialAttack": 83, + "specialDefense": 63, + "speed": 65 + }, "evReward": { "attack": 2 }, "types": ["ghost"], "height": 1.1, @@ -3951,7 +4408,14 @@ "isMega": true, "abilities": ["prankster"], "hiddenAbilities": [], - "baseStats": { "attack": 165, "defense": 75, "hp": 64, "specialAttack": 93, "specialDefense": 83, "speed": 75 }, + "baseStats": { + "attack": 165, + "defense": 75, + "hp": 64, + "specialAttack": 93, + "specialDefense": 83, + "speed": 75 + }, "evReward": { "attack": 2 }, "types": ["ghost"], "height": 1.2, @@ -4045,7 +4509,14 @@ "default": { "abilities": ["tough_claws", "sniper"], "hiddenAbilities": ["pickpocket"], - "baseStats": { "attack": 105, "defense": 115, "hp": 72, "specialAttack": 54, "specialDefense": 86, "speed": 68 }, + "baseStats": { + "attack": 105, + "defense": 115, + "hp": 72, + "specialAttack": 54, + "specialDefense": 86, + "speed": 68 + }, "evReward": { "attack": 2 }, "types": ["rock", "water"], "height": 1.3, @@ -4135,7 +4606,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "barboach": { "species": "barboach", @@ -4153,7 +4624,14 @@ "default": { "abilities": ["oblivious", "anticipation"], "hiddenAbilities": ["hydration"], - "baseStats": { "attack": 48, "defense": 43, "hp": 50, "specialAttack": 46, "specialDefense": 41, "speed": 60 }, + "baseStats": { + "attack": 48, + "defense": 43, + "hp": 50, + "specialAttack": 46, + "specialDefense": 41, + "speed": 60 + }, "evReward": { "hp": 1 }, "types": ["water", "ground"], "height": 0.4, @@ -4177,7 +4655,18 @@ { "name": "future_sight", "level": 39 }, { "name": "fissure", "level": 44 } ], - "eggMoves": ["take_down", "thrash", "hydro_pump", "flail", "spark", "whirlpool", "muddy_water", "mud_shot", "dragon_dance", "earth_power"], + "eggMoves": [ + "take_down", + "thrash", + "hydro_pump", + "flail", + "spark", + "whirlpool", + "muddy_water", + "mud_shot", + "dragon_dance", + "earth_power" + ], "tutorMoves": [], "machine": [ "surf", @@ -4228,7 +4717,14 @@ "blue-striped": { "abilities": ["rock_head", "adaptability"], "hiddenAbilities": ["mold_breaker"], - "baseStats": { "attack": 92, "defense": 65, "hp": 70, "specialAttack": 80, "specialDefense": 55, "speed": 98 }, + "baseStats": { + "attack": 92, + "defense": 65, + "hp": 70, + "specialAttack": 80, + "specialDefense": 55, + "speed": 98 + }, "evReward": { "speed": 2 }, "types": ["water"], "height": 1, @@ -4286,7 +4782,14 @@ "default": { "abilities": ["reckless", "adaptability"], "hiddenAbilities": ["mold_breaker"], - "baseStats": { "attack": 92, "defense": 65, "hp": 70, "specialAttack": 80, "specialDefense": 55, "speed": 98 }, + "baseStats": { + "attack": 92, + "defense": 65, + "hp": 70, + "specialAttack": 80, + "specialDefense": 55, + "speed": 98 + }, "evReward": { "speed": 2 }, "types": ["water"], "height": 1, @@ -4313,7 +4816,17 @@ { "name": "thrash", "level": 42 }, { "name": "head_smash", "level": 46 } ], - "eggMoves": ["bubble_beam", "agility", "rage", "swift", "whirlpool", "revenge", "muddy_water", "mud_shot", "brine"], + "eggMoves": [ + "bubble_beam", + "agility", + "rage", + "swift", + "whirlpool", + "revenge", + "muddy_water", + "mud_shot", + "brine" + ], "tutorMoves": [], "machine": [ "surf", @@ -4360,7 +4873,14 @@ "default": { "abilities": ["sturdy"], "hiddenAbilities": ["soundproof"], - "baseStats": { "attack": 52, "defense": 168, "hp": 60, "specialAttack": 47, "specialDefense": 138, "speed": 30 }, + "baseStats": { + "attack": 52, + "defense": 168, + "hp": 60, + "specialAttack": 47, + "specialDefense": 138, + "speed": 30 + }, "evReward": { "defense": 2 }, "types": ["rock", "steel"], "height": 1.3, @@ -4440,14 +4960,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["monster", "plant"], + "eggGroups": ["monster", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["leaf_guard"], - "baseStats": { "attack": 62, "defense": 80, "hp": 60, "specialAttack": 63, "specialDefense": 80, "speed": 60 }, + "baseStats": { + "attack": 62, + "defense": 80, + "hp": 60, + "specialAttack": 63, + "specialDefense": 80, + "speed": 60 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["grass"], "height": 1.2, @@ -4516,14 +5043,21 @@ "catchRate": 60, "color": "white", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["snow_cloak", "slush_rush"], "hiddenAbilities": ["swift_swim"], - "baseStats": { "attack": 130, "defense": 80, "hp": 95, "specialAttack": 70, "specialDefense": 80, "speed": 50 }, + "baseStats": { + "attack": 130, + "defense": 80, + "hp": 95, + "specialAttack": 70, + "specialDefense": 80, + "speed": 50 + }, "evReward": { "attack": 2 }, "types": ["ice"], "height": 2.6, @@ -4620,7 +5154,14 @@ "default": { "abilities": ["swarm"], "hiddenAbilities": ["rivalry"], - "baseStats": { "attack": 70, "defense": 50, "hp": 60, "specialAttack": 100, "specialDefense": 50, "speed": 65 }, + "baseStats": { + "attack": 70, + "defense": 50, + "hp": 60, + "specialAttack": 100, + "specialDefense": 50, + "speed": 65 + }, "evReward": { "specialAttack": 3 }, "types": ["bug", "flying"], "height": 1, @@ -4698,7 +5239,14 @@ "default": { "abilities": ["swarm"], "hiddenAbilities": ["sniper"], - "baseStats": { "attack": 90, "defense": 40, "hp": 65, "specialAttack": 45, "specialDefense": 80, "speed": 75 }, + "baseStats": { + "attack": 90, + "defense": 40, + "hp": 65, + "specialAttack": 45, + "specialDefense": 80, + "speed": 75 + }, "evReward": { "attack": 2, "specialDefense": 1 }, "types": ["bug", "poison"], "height": 1, @@ -4766,7 +5314,14 @@ "isMega": true, "abilities": ["adaptability"], "hiddenAbilities": [], - "baseStats": { "attack": 150, "defense": 40, "hp": 65, "specialAttack": 15, "specialDefense": 80, "speed": 145 }, + "baseStats": { + "attack": 150, + "defense": 40, + "hp": 65, + "specialAttack": 15, + "specialDefense": 80, + "speed": 145 + }, "evReward": { "attack": 2, "specialDefense": 1 }, "types": ["bug", "poison"], "height": 1.4, @@ -4842,14 +5397,21 @@ "catchRate": 90, "color": "brown", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["telepathy", "synchronize"], "hiddenAbilities": ["analytic"], - "baseStats": { "attack": 75, "defense": 75, "hp": 75, "specialAttack": 125, "specialDefense": 95, "speed": 40 }, + "baseStats": { + "attack": 75, + "defense": 75, + "hp": 75, + "specialAttack": 125, + "specialDefense": 95, + "speed": 40 + }, "evReward": { "specialAttack": 2 }, "types": ["psychic"], "height": 1, @@ -4946,13 +5508,26 @@ "default": { "abilities": ["clear_body"], "hiddenAbilities": ["light_metal"], - "baseStats": { "attack": 55, "defense": 80, "hp": 40, "specialAttack": 35, "specialDefense": 60, "speed": 30 }, + "baseStats": { + "attack": 55, + "defense": 80, + "hp": 40, + "specialAttack": 35, + "specialDefense": 60, + "speed": 30 + }, "evReward": { "defense": 1 }, "types": ["steel", "psychic"], "height": 0.6, "weight": 95.2, "baseExp": 60, - "moves": { "levelMoves": [{ "name": "take_down", "level": 1 }], "eggMoves": [], "tutorMoves": [], "machine": [], "formeChange": [] } + "moves": { + "levelMoves": [{ "name": "take_down", "level": 1 }], + "eggMoves": [], + "tutorMoves": [], + "machine": [], + "formeChange": [] + } } }, "evolutions": [{ "species": "metang", "method": "level", "data": "20" }] @@ -4966,14 +5541,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll"], "hiddenAbilities": ["healer"], - "baseStats": { "attack": 80, "defense": 95, "hp": 75, "specialAttack": 90, "specialDefense": 100, "speed": 50 }, + "baseStats": { + "attack": 80, + "defense": 95, + "hp": 75, + "specialAttack": 90, + "specialDefense": 100, + "speed": 50 + }, "evReward": { "specialDefense": 3 }, "types": ["grass"], "height": 0.4, @@ -5041,14 +5623,21 @@ "catchRate": 255, "color": "green", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll"], "hiddenAbilities": ["gluttony"], - "baseStats": { "attack": 75, "defense": 35, "hp": 50, "specialAttack": 70, "specialDefense": 30, "speed": 40 }, + "baseStats": { + "attack": 75, + "defense": 35, + "hp": 50, + "specialAttack": 70, + "specialDefense": 30, + "speed": 40 + }, "evReward": { "attack": 1 }, "types": ["grass", "poison"], "height": 0.7, @@ -5139,7 +5728,14 @@ "default": { "abilities": ["own_tempo", "ice_body"], "hiddenAbilities": ["sturdy"], - "baseStats": { "attack": 69, "defense": 85, "hp": 55, "specialAttack": 32, "specialDefense": 35, "speed": 28 }, + "baseStats": { + "attack": 69, + "defense": 85, + "hp": 55, + "specialAttack": 32, + "specialDefense": 35, + "speed": 28 + }, "evReward": { "defense": 1 }, "types": ["ice"], "height": 1, @@ -5198,7 +5794,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "bewear": { "species": "bewear", @@ -5209,14 +5805,21 @@ "catchRate": 70, "color": "pink", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["fluffy", "klutz"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 125, "defense": 80, "hp": 120, "specialAttack": 55, "specialDefense": 60, "speed": 60 }, + "baseStats": { + "attack": 125, + "defense": 80, + "hp": 120, + "specialAttack": 55, + "specialDefense": 60, + "speed": 60 + }, "evReward": { "attack": 2 }, "types": ["normal", "fighting"], "height": 2.1, @@ -5281,7 +5884,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "bibarel": { "species": "bibarel", @@ -5292,14 +5895,21 @@ "catchRate": 127, "color": "brown", "genderDifference": true, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["simple", "unaware"], "hiddenAbilities": ["moody"], - "baseStats": { "attack": 85, "defense": 60, "hp": 79, "specialAttack": 55, "specialDefense": 60, "speed": 71 }, + "baseStats": { + "attack": 85, + "defense": 60, + "hp": 79, + "specialAttack": 55, + "specialDefense": 60, + "speed": 71 + }, "evReward": { "attack": 2 }, "types": ["normal", "water"], "height": 1, @@ -5381,14 +5991,21 @@ "catchRate": 255, "color": "brown", "genderDifference": true, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["simple", "unaware"], "hiddenAbilities": ["moody"], - "baseStats": { "attack": 45, "defense": 40, "hp": 59, "specialAttack": 35, "specialDefense": 40, "speed": 31 }, + "baseStats": { + "attack": 45, + "defense": 40, + "hp": 59, + "specialAttack": 35, + "specialDefense": 40, + "speed": 31 + }, "evReward": { "hp": 1 }, "types": ["normal"], "height": 0.5, @@ -5411,7 +6028,20 @@ { "name": "superpower", "level": 45 }, { "name": "curse", "level": 49 } ], - "eggMoves": ["double_edge", "quick_attack", "defense_curl", "skull_bash", "fury_swipes", "endure", "rollout", "sleep_talk", "odor_sleuth", "water_sport", "aqua_tail", "rock_climb"], + "eggMoves": [ + "double_edge", + "quick_attack", + "defense_curl", + "skull_bash", + "fury_swipes", + "endure", + "rollout", + "sleep_talk", + "odor_sleuth", + "water_sport", + "aqua_tail", + "rock_climb" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -5466,7 +6096,14 @@ "default": { "abilities": ["tough_claws", "sniper"], "hiddenAbilities": ["pickpocket"], - "baseStats": { "attack": 52, "defense": 67, "hp": 42, "specialAttack": 39, "specialDefense": 56, "speed": 50 }, + "baseStats": { + "attack": 52, + "defense": 67, + "hp": 42, + "specialAttack": 39, + "specialDefense": 56, + "speed": 50 + }, "evReward": { "attack": 1 }, "types": ["rock", "water"], "height": 0.5, @@ -5545,7 +6182,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "bisharp": { "species": "bisharp", @@ -5556,14 +6193,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["defiant", "inner_focus"], "hiddenAbilities": ["pressure"], - "baseStats": { "attack": 125, "defense": 100, "hp": 65, "specialAttack": 60, "specialDefense": 70, "speed": 70 }, + "baseStats": { + "attack": 125, + "defense": 100, + "hp": 65, + "specialAttack": 60, + "specialDefense": 70, + "speed": 70 + }, "evReward": { "attack": 2 }, "types": ["dark", "steel"], "height": 1.6, @@ -5660,7 +6304,14 @@ "default": { "abilities": ["torrent"], "hiddenAbilities": ["rain_dish"], - "baseStats": { "attack": 83, "defense": 100, "hp": 79, "specialAttack": 85, "specialDefense": 105, "speed": 78 }, + "baseStats": { + "attack": 83, + "defense": 100, + "hp": 79, + "specialAttack": 85, + "specialDefense": 105, + "speed": 78 + }, "evReward": { "specialDefense": 3 }, "types": ["water"], "height": 1.6, @@ -5735,7 +6386,14 @@ "isMega": true, "abilities": ["mega_launcher"], "hiddenAbilities": [], - "baseStats": { "attack": 103, "defense": 120, "hp": 79, "specialAttack": 135, "specialDefense": 115, "speed": 78 }, + "baseStats": { + "attack": 103, + "defense": 120, + "hp": 79, + "specialAttack": 135, + "specialDefense": 115, + "speed": 78 + }, "evReward": { "specialDefense": 3 }, "types": ["water"], "height": 1.6, @@ -5818,14 +6476,21 @@ "catchRate": 45, "color": "red", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["speed_boost"], - "baseStats": { "attack": 120, "defense": 70, "hp": 80, "specialAttack": 110, "specialDefense": 70, "speed": 80 }, + "baseStats": { + "attack": 120, + "defense": 70, + "hp": 80, + "specialAttack": 110, + "specialDefense": 70, + "speed": 80 + }, "evReward": { "attack": 3 }, "types": ["fire", "fighting"], "height": 1.9, @@ -5907,7 +6572,14 @@ "isMega": true, "abilities": ["speed_boost"], "hiddenAbilities": [], - "baseStats": { "attack": 160, "defense": 80, "hp": 80, "specialAttack": 130, "specialDefense": 80, "speed": 100 }, + "baseStats": { + "attack": 160, + "defense": 80, + "hp": 80, + "specialAttack": 130, + "specialDefense": 80, + "speed": 100 + }, "evReward": { "attack": 3 }, "types": ["fire", "fighting"], "height": 1.9, @@ -6004,7 +6676,14 @@ "default": { "abilities": ["natural_cure", "serene_grace"], "hiddenAbilities": ["healer"], - "baseStats": { "attack": 10, "defense": 10, "hp": 255, "specialAttack": 75, "specialDefense": 135, "speed": 55 }, + "baseStats": { + "attack": 10, + "defense": 10, + "hp": 255, + "specialAttack": 75, + "specialDefense": 135, + "speed": 55 + }, "evReward": { "hp": 3 }, "types": ["normal"], "height": 1.5, @@ -6098,14 +6777,21 @@ "catchRate": 190, "color": "black", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["lightning_rod", "motor_drive"], "hiddenAbilities": ["sap_sipper"], - "baseStats": { "attack": 60, "defense": 32, "hp": 45, "specialAttack": 50, "specialDefense": 32, "speed": 76 }, + "baseStats": { + "attack": 60, + "defense": 32, + "hp": 45, + "specialAttack": 50, + "specialDefense": 32, + "speed": 76 + }, "evReward": { "speed": 1 }, "types": ["electric"], "height": 0.8, @@ -6127,7 +6813,18 @@ { "name": "wild_charge", "level": 39 }, { "name": "thrash", "level": 43 } ], - "eggMoves": ["double_kick", "sand_attack", "take_down", "double_edge", "rage", "screech", "endure", "snatch", "shock_wave", "me_first"], + "eggMoves": [ + "double_kick", + "sand_attack", + "take_down", + "double_edge", + "rage", + "screech", + "endure", + "snatch", + "shock_wave", + "me_first" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -6176,7 +6873,14 @@ "default": { "abilities": ["sturdy", "weak_armor"], "hiddenAbilities": ["sand_force"], - "baseStats": { "attack": 105, "defense": 105, "hp": 70, "specialAttack": 50, "specialDefense": 40, "speed": 20 }, + "baseStats": { + "attack": 105, + "defense": 105, + "hp": 70, + "specialAttack": 50, + "specialDefense": 40, + "speed": 20 + }, "evReward": { "attack": 1, "defense": 1 }, "types": ["rock"], "height": 0.9, @@ -6254,7 +6958,14 @@ "default": { "abilities": ["sturdy", "rock_head"], "hiddenAbilities": ["rattled"], - "baseStats": { "attack": 80, "defense": 95, "hp": 50, "specialAttack": 10, "specialDefense": 45, "speed": 10 }, + "baseStats": { + "attack": 80, + "defense": 95, + "hp": 50, + "specialAttack": 10, + "specialDefense": 45, + "speed": 10 + }, "evReward": { "defense": 1 }, "types": ["rock"], "height": 0.5, @@ -6277,7 +6988,17 @@ { "name": "sucker_punch", "level": 40 }, { "name": "double_edge", "level": 43 } ], - "eggMoves": ["headbutt", "harden", "defense_curl", "self_destruct", "curse", "endure", "rollout", "sand_tomb", "stealth_rock"], + "eggMoves": [ + "headbutt", + "harden", + "defense_curl", + "self_destruct", + "curse", + "endure", + "rollout", + "sand_tomb", + "stealth_rock" + ], "tutorMoves": [], "machine": [ "toxic", @@ -6311,7 +7032,9 @@ } } }, - "evolutions": [{ "species": "sudowoodo", "method": "hasmove", "data": "mimic" }] + "evolutions": [ + { "species": "sudowoodo", "method": "hasmove", "data": "mimic" } + ] }, "bouffalant": { "species": "bouffalant", @@ -6322,14 +7045,21 @@ "catchRate": 45, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["reckless", "sap_sipper"], "hiddenAbilities": ["soundproof"], - "baseStats": { "attack": 110, "defense": 95, "hp": 95, "specialAttack": 40, "specialDefense": 95, "speed": 55 }, + "baseStats": { + "attack": 110, + "defense": 95, + "hp": 95, + "specialAttack": 40, + "specialDefense": 95, + "speed": 55 + }, "evReward": { "attack": 2 }, "types": ["normal"], "height": 1.6, @@ -6352,7 +7082,17 @@ { "name": "swords_dance", "level": 56 }, { "name": "giga_impact", "level": 61 } ], - "eggMoves": ["stomp", "headbutt", "skull_bash", "amnesia", "mud_slap", "mud_shot", "rock_climb", "iron_head", "belch"], + "eggMoves": [ + "stomp", + "headbutt", + "skull_bash", + "amnesia", + "mud_slap", + "mud_shot", + "rock_climb", + "iron_head", + "belch" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -6402,14 +7142,21 @@ "catchRate": 235, "color": "purple", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["leaf_guard", "oblivious"], "hiddenAbilities": ["sweet_veil"], - "baseStats": { "attack": 30, "defense": 38, "hp": 42, "specialAttack": 30, "specialDefense": 38, "speed": 32 }, + "baseStats": { + "attack": 30, + "defense": 38, + "hp": 42, + "specialAttack": 30, + "specialDefense": 38, + "speed": 32 + }, "evReward": { "hp": 1 }, "types": ["grass"], "height": 0.3, @@ -6427,7 +7174,14 @@ { "name": "flail", "level": 29 }, { "name": "aromatic_mist", "level": 33 } ], - "eggMoves": ["charm", "synthesis", "grass_whistle", "feint", "acupressure", "play_rough"], + "eggMoves": [ + "charm", + "synthesis", + "grass_whistle", + "feint", + "acupressure", + "play_rough" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -6458,7 +7212,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "braixen": { "species": "braixen", @@ -6469,14 +7223,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["magician"], - "baseStats": { "attack": 59, "defense": 58, "hp": 59, "specialAttack": 90, "specialDefense": 70, "speed": 73 }, + "baseStats": { + "attack": 59, + "defense": 58, + "hp": 59, + "specialAttack": 90, + "specialDefense": 70, + "speed": 73 + }, "evReward": { "specialAttack": 2 }, "types": ["fire"], "height": 1, @@ -6543,7 +7304,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "braviary": { "species": "braviary", @@ -6561,7 +7322,14 @@ "default": { "abilities": ["keen_eye", "sheer_force"], "hiddenAbilities": ["defiant"], - "baseStats": { "attack": 123, "defense": 75, "hp": 100, "specialAttack": 57, "specialDefense": 75, "speed": 80 }, + "baseStats": { + "attack": 123, + "defense": 75, + "hp": 100, + "specialAttack": 57, + "specialDefense": 75, + "speed": 80 + }, "evReward": { "attack": 2 }, "types": ["normal", "flying"], "height": 1.5, @@ -6641,14 +7409,21 @@ "catchRate": 90, "color": "green", "genderDifference": false, - "eggGroups": ["fairy", "plant"], + "eggGroups": ["fairy", "grass"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["effect_spore", "poison_heal"], "hiddenAbilities": ["technician"], - "baseStats": { "attack": 130, "defense": 80, "hp": 60, "specialAttack": 60, "specialDefense": 60, "speed": 70 }, + "baseStats": { + "attack": 130, + "defense": 80, + "hp": 60, + "specialAttack": 60, + "specialDefense": 60, + "speed": 70 + }, "evReward": { "attack": 2 }, "types": ["grass", "fighting"], "height": 1.2, @@ -6727,14 +7502,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["torrent"], "hiddenAbilities": ["liquid_voice"], - "baseStats": { "attack": 69, "defense": 69, "hp": 60, "specialAttack": 91, "specialDefense": 81, "speed": 50 }, + "baseStats": { + "attack": 69, + "defense": 69, + "hp": 60, + "specialAttack": 91, + "specialDefense": 81, + "speed": 50 + }, "evReward": { "specialAttack": 2 }, "types": ["water"], "height": 0.6, @@ -6792,7 +7574,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "bronzong": { "species": "bronzong", @@ -6810,7 +7592,14 @@ "default": { "abilities": ["levitate", "heatproof"], "hiddenAbilities": ["heavy_metal"], - "baseStats": { "attack": 89, "defense": 116, "hp": 67, "specialAttack": 79, "specialDefense": 116, "speed": 33 }, + "baseStats": { + "attack": 89, + "defense": 116, + "hp": 67, + "specialAttack": 79, + "specialDefense": 116, + "speed": 33 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["steel", "psychic"], "height": 1.3, @@ -6907,7 +7696,14 @@ "default": { "abilities": ["levitate", "heatproof"], "hiddenAbilities": ["heavy_metal"], - "baseStats": { "attack": 24, "defense": 86, "hp": 57, "specialAttack": 24, "specialDefense": 86, "speed": 23 }, + "baseStats": { + "attack": 24, + "defense": 86, + "hp": 57, + "specialAttack": 24, + "specialDefense": 86, + "speed": 23 + }, "evReward": { "defense": 1 }, "types": ["steel", "psychic"], "height": 0.5, @@ -6995,7 +7791,14 @@ "default": { "abilities": ["dazzling", "strong_jaw"], "hiddenAbilities": ["wonder_skin"], - "baseStats": { "attack": 105, "defense": 70, "hp": 68, "specialAttack": 70, "specialDefense": 70, "speed": 92 }, + "baseStats": { + "attack": 105, + "defense": 70, + "hp": 68, + "specialAttack": 70, + "specialDefense": 70, + "speed": 92 + }, "evReward": { "attack": 2 }, "types": ["water", "psychic"], "height": 0.9, @@ -7062,7 +7865,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "budew": { "species": "budew", @@ -7080,7 +7883,14 @@ "default": { "abilities": ["natural_cure", "poison_point"], "hiddenAbilities": ["leaf_guard"], - "baseStats": { "attack": 30, "defense": 35, "hp": 40, "specialAttack": 50, "specialDefense": 70, "speed": 55 }, + "baseStats": { + "attack": 30, + "defense": 35, + "hp": 40, + "specialAttack": 50, + "specialDefense": 70, + "speed": 55 + }, "evReward": { "specialAttack": 1 }, "types": ["grass", "poison"], "height": 0.2, @@ -7143,7 +7953,9 @@ } } }, - "evolutions": [{ "species": "roselia", "method": "happinessday", "data": "" }] + "evolutions": [ + { "species": "roselia", "method": "happinessday", "data": "" } + ] }, "buizel": { "species": "buizel", @@ -7154,14 +7966,21 @@ "catchRate": 190, "color": "brown", "genderDifference": true, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["swift_swim"], "hiddenAbilities": ["water_veil"], - "baseStats": { "attack": 65, "defense": 35, "hp": 55, "specialAttack": 60, "specialDefense": 30, "speed": 85 }, + "baseStats": { + "attack": 65, + "defense": 35, + "hp": 55, + "specialAttack": 60, + "specialDefense": 30, + "speed": 85 + }, "evReward": { "speed": 1 }, "types": ["water"], "height": 0.7, @@ -7243,14 +8062,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["monster", "plant"], + "eggGroups": ["monster", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["chlorophyll"], - "baseStats": { "attack": 49, "defense": 49, "hp": 45, "specialAttack": 65, "specialDefense": 65, "speed": 45 }, + "baseStats": { + "attack": 49, + "defense": 49, + "hp": 45, + "specialAttack": 65, + "specialDefense": 65, + "speed": 45 + }, "evReward": { "specialAttack": 1 }, "types": ["grass", "poison"], "height": 0.7, @@ -7334,14 +8160,21 @@ "catchRate": 190, "color": "brown", "genderDifference": false, - "eggGroups": ["ground", "humanshape"], + "eggGroups": ["field", "humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["run_away", "klutz"], "hiddenAbilities": ["limber"], - "baseStats": { "attack": 66, "defense": 44, "hp": 55, "specialAttack": 44, "specialDefense": 56, "speed": 85 }, + "baseStats": { + "attack": 66, + "defense": 44, + "hp": 55, + "specialAttack": 44, + "specialDefense": 56, + "speed": 85 + }, "evReward": { "speed": 1 }, "types": ["normal"], "height": 0.4, @@ -7430,14 +8263,21 @@ "catchRate": 255, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["pickup", "cheek_pouch"], "hiddenAbilities": ["huge_power"], - "baseStats": { "attack": 36, "defense": 38, "hp": 38, "specialAttack": 32, "specialDefense": 36, "speed": 57 }, + "baseStats": { + "attack": 36, + "defense": 38, + "hp": 38, + "specialAttack": 32, + "specialDefense": 36, + "speed": 57 + }, "evReward": { "speed": 1 }, "types": ["normal"], "height": 0.4, @@ -7504,7 +8344,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "burmy": { "species": "burmy", @@ -7522,14 +8362,26 @@ "default": { "abilities": ["shed_skin"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 29, "defense": 45, "hp": 40, "specialAttack": 29, "specialDefense": 45, "speed": 36 }, + "baseStats": { + "attack": 29, + "defense": 45, + "hp": 40, + "specialAttack": 29, + "specialDefense": 45, + "speed": 36 + }, "evReward": { "specialDefense": 1 }, "types": ["bug"], "height": 0.2, "weight": 3.4, "baseExp": 45, "moves": { - "levelMoves": [{ "name": "protect", "level": 1 }, { "name": "tackle", "level": 10 }, { "name": "bug_bite", "level": 15 }, { "name": "hidden_power", "level": 20 }], + "levelMoves": [ + { "name": "protect", "level": 1 }, + { "name": "tackle", "level": 10 }, + { "name": "bug_bite", "level": 15 }, + { "name": "hidden_power", "level": 20 } + ], "eggMoves": [], "tutorMoves": [], "machine": ["protect", "hidden_power"], @@ -7537,7 +8389,10 @@ } } }, - "evolutions": [{ "species": "wormadam", "method": "levelfemale", "data": "20" }, { "species": "mothim", "method": "levelmale", "data": "20" }] + "evolutions": [ + { "species": "wormadam", "method": "levelfemale", "data": "20" }, + { "species": "mothim", "method": "levelmale", "data": "20" } + ] }, "butterfree": { "species": "butterfree", @@ -7555,7 +8410,14 @@ "default": { "abilities": ["compound_eyes"], "hiddenAbilities": ["tinted_lens"], - "baseStats": { "attack": 45, "defense": 50, "hp": 60, "specialAttack": 90, "specialDefense": 80, "speed": 70 }, + "baseStats": { + "attack": 45, + "defense": 50, + "hp": 60, + "specialAttack": 90, + "specialDefense": 80, + "speed": 70 + }, "evReward": { "specialAttack": 2, "specialDefense": 1 }, "types": ["bug", "flying"], "height": 1.1, @@ -7640,7 +8502,14 @@ "default": { "abilities": ["beast_boost"], "hiddenAbilities": [], - "baseStats": { "attack": 139, "defense": 139, "hp": 107, "specialAttack": 53, "specialDefense": 53, "speed": 79 }, + "baseStats": { + "attack": 139, + "defense": 139, + "hp": 107, + "specialAttack": 53, + "specialDefense": 53, + "speed": 79 + }, "evReward": { "attack": 1, "defense": 2 }, "types": ["bug", "fighting"], "height": 2.4, @@ -7709,7 +8578,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "cacnea": { "species": "cacnea", @@ -7720,14 +8589,21 @@ "catchRate": 190, "color": "green", "genderDifference": false, - "eggGroups": ["plant", "humanshape"], + "eggGroups": ["grass", "humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["sand_veil"], "hiddenAbilities": ["water_absorb"], - "baseStats": { "attack": 85, "defense": 40, "hp": 50, "specialAttack": 85, "specialDefense": 40, "speed": 35 }, + "baseStats": { + "attack": 85, + "defense": 40, + "hp": 50, + "specialAttack": 85, + "specialDefense": 40, + "speed": 35 + }, "evReward": { "specialAttack": 1 }, "types": ["grass"], "height": 0.4, @@ -7817,14 +8693,21 @@ "catchRate": 60, "color": "green", "genderDifference": true, - "eggGroups": ["plant", "humanshape"], + "eggGroups": ["grass", "humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["sand_veil"], "hiddenAbilities": ["water_absorb"], - "baseStats": { "attack": 115, "defense": 60, "hp": 70, "specialAttack": 115, "specialDefense": 60, "speed": 55 }, + "baseStats": { + "attack": 115, + "defense": 60, + "hp": 70, + "specialAttack": 115, + "specialDefense": 60, + "speed": 55 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["grass", "dark"], "height": 1.3, @@ -7906,14 +8789,21 @@ "catchRate": 150, "color": "red", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["magma_armor", "solid_rock"], "hiddenAbilities": ["anger_point"], - "baseStats": { "attack": 100, "defense": 70, "hp": 70, "specialAttack": 105, "specialDefense": 75, "speed": 40 }, + "baseStats": { + "attack": 100, + "defense": 70, + "hp": 70, + "specialAttack": 105, + "specialDefense": 75, + "speed": 40 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["fire", "ground"], "height": 1.9, @@ -7989,7 +8879,14 @@ "isMega": true, "abilities": ["sheer_force"], "hiddenAbilities": [], - "baseStats": { "attack": 120, "defense": 100, "hp": 70, "specialAttack": 145, "specialDefense": 105, "speed": 20 }, + "baseStats": { + "attack": 120, + "defense": 100, + "hp": 70, + "specialAttack": 145, + "specialDefense": 105, + "speed": 20 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["fire", "ground"], "height": 2.5, @@ -8080,7 +8977,14 @@ "default": { "abilities": ["clear_body"], "hiddenAbilities": ["sturdy"], - "baseStats": { "attack": 50, "defense": 150, "hp": 50, "specialAttack": 50, "specialDefense": 150, "speed": 50 }, + "baseStats": { + "attack": 50, + "defense": 150, + "hp": 50, + "specialAttack": 50, + "specialDefense": 150, + "speed": 50 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["rock", "fairy"], "height": 0.3, @@ -8145,7 +9049,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "carnivine": { "species": "carnivine", @@ -8156,14 +9060,21 @@ "catchRate": 200, "color": "green", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 72, "hp": 74, "specialAttack": 90, "specialDefense": 72, "speed": 46 }, + "baseStats": { + "attack": 100, + "defense": 72, + "hp": 74, + "specialAttack": 90, + "specialDefense": 72, + "speed": 46 + }, "evReward": { "attack": 2 }, "types": ["grass"], "height": 1.4, @@ -8186,7 +9097,19 @@ { "name": "wring_out", "level": 47 }, { "name": "power_whip", "level": 50 } ], - "eggMoves": ["slam", "leech_seed", "razor_leaf", "stun_spore", "sleep_powder", "giga_drain", "synthesis", "grass_whistle", "magical_leaf", "worry_seed", "rage_powder"], + "eggMoves": [ + "slam", + "leech_seed", + "razor_leaf", + "stun_spore", + "sleep_powder", + "giga_drain", + "synthesis", + "grass_whistle", + "magical_leaf", + "worry_seed", + "rage_powder" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -8239,7 +9162,14 @@ "default": { "abilities": ["solid_rock", "sturdy"], "hiddenAbilities": ["swift_swim"], - "baseStats": { "attack": 108, "defense": 133, "hp": 74, "specialAttack": 83, "specialDefense": 65, "speed": 32 }, + "baseStats": { + "attack": 108, + "defense": 133, + "hp": 74, + "specialAttack": 83, + "specialDefense": 65, + "speed": 32 + }, "evReward": { "defense": 2 }, "types": ["water", "rock"], "height": 1.2, @@ -8324,7 +9254,14 @@ "default": { "abilities": ["rough_skin"], "hiddenAbilities": ["speed_boost"], - "baseStats": { "attack": 90, "defense": 20, "hp": 45, "specialAttack": 65, "specialDefense": 20, "speed": 65 }, + "baseStats": { + "attack": 90, + "defense": 20, + "hp": 45, + "specialAttack": 65, + "specialDefense": 20, + "speed": 65 + }, "evReward": { "attack": 1 }, "types": ["water", "dark"], "height": 0.8, @@ -8347,7 +9284,16 @@ { "name": "agility", "level": 39 }, { "name": "take_down", "level": 43 } ], - "eggMoves": ["thrash", "double_edge", "hydro_pump", "swift", "destiny_bond", "ancient_power", "brine", "psychic_fangs"], + "eggMoves": [ + "thrash", + "double_edge", + "hydro_pump", + "swift", + "destiny_bond", + "ancient_power", + "brine", + "psychic_fangs" + ], "tutorMoves": [], "machine": [ "surf", @@ -8400,13 +9346,29 @@ "default": { "abilities": ["shed_skin"], "hiddenAbilities": [], - "baseStats": { "attack": 35, "defense": 55, "hp": 50, "specialAttack": 25, "specialDefense": 25, "speed": 15 }, + "baseStats": { + "attack": 35, + "defense": 55, + "hp": 50, + "specialAttack": 25, + "specialDefense": 25, + "speed": 15 + }, "evReward": { "defense": 2 }, "types": ["bug"], "height": 0.7, "weight": 11.5, "baseExp": 72, - "moves": { "levelMoves": [{ "name": "harden", "level": 0 }, { "name": "harden", "level": 1 }], "eggMoves": [], "tutorMoves": [], "machine": [], "formeChange": [] } + "moves": { + "levelMoves": [ + { "name": "harden", "level": 0 }, + { "name": "harden", "level": 1 } + ], + "eggMoves": [], + "tutorMoves": [], + "machine": [], + "formeChange": [] + } } }, "evolutions": [{ "species": "dustox", "method": "level", "data": "10" }] @@ -8420,14 +9382,21 @@ "catchRate": 45, "color": "gray", "genderDifference": false, - "eggGroups": ["fairy", "indeterminate"], + "eggGroups": ["fairy", "amorphous"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["forecast"], "hiddenAbilities": [], - "baseStats": { "attack": 70, "defense": 70, "hp": 70, "specialAttack": 70, "specialDefense": 70, "speed": 70 }, + "baseStats": { + "attack": 70, + "defense": 70, + "hp": 70, + "specialAttack": 70, + "specialDefense": 70, + "speed": 70 + }, "evReward": { "hp": 1 }, "types": ["normal"], "height": 0.3, @@ -8449,7 +9418,18 @@ { "name": "hydro_pump", "level": 35 }, { "name": "hurricane", "level": 45 } ], - "eggMoves": ["disable", "amnesia", "future_sight", "cosmic_power", "lucky_chant", "guard_swap", "ominous_wind", "clear_smog", "hex", "reflect_type"], + "eggMoves": [ + "disable", + "amnesia", + "future_sight", + "cosmic_power", + "lucky_chant", + "guard_swap", + "ominous_wind", + "clear_smog", + "hex", + "reflect_type" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -8491,7 +9471,14 @@ "rainy": { "abilities": ["forecast"], "hiddenAbilities": [], - "baseStats": { "attack": 70, "defense": 70, "hp": 70, "specialAttack": 70, "specialDefense": 70, "speed": 70 }, + "baseStats": { + "attack": 70, + "defense": 70, + "hp": 70, + "specialAttack": 70, + "specialDefense": 70, + "speed": 70 + }, "evReward": { "hp": 1 }, "types": ["water"], "height": 0.3, @@ -8554,7 +9541,14 @@ "snowy": { "abilities": ["forecast"], "hiddenAbilities": [], - "baseStats": { "attack": 70, "defense": 70, "hp": 70, "specialAttack": 70, "specialDefense": 70, "speed": 70 }, + "baseStats": { + "attack": 70, + "defense": 70, + "hp": 70, + "specialAttack": 70, + "specialDefense": 70, + "speed": 70 + }, "evReward": { "hp": 1 }, "types": ["ice"], "height": 0.3, @@ -8617,7 +9611,14 @@ "sunny": { "abilities": ["forecast"], "hiddenAbilities": [], - "baseStats": { "attack": 70, "defense": 70, "hp": 70, "specialAttack": 70, "specialDefense": 70, "speed": 70 }, + "baseStats": { + "attack": 70, + "defense": 70, + "hp": 70, + "specialAttack": 70, + "specialDefense": 70, + "speed": 70 + }, "evReward": { "hp": 1 }, "types": ["fire"], "height": 0.3, @@ -8696,14 +9697,25 @@ "default": { "abilities": ["shield_dust"], "hiddenAbilities": ["run_away"], - "baseStats": { "attack": 30, "defense": 35, "hp": 45, "specialAttack": 20, "specialDefense": 20, "speed": 45 }, + "baseStats": { + "attack": 30, + "defense": 35, + "hp": 45, + "specialAttack": 20, + "specialDefense": 20, + "speed": 45 + }, "evReward": { "hp": 1 }, "types": ["bug"], "height": 0.3, "weight": 2.9, "baseExp": 39, "moves": { - "levelMoves": [{ "name": "tackle", "level": 1 }, { "name": "string_shot", "level": 1 }, { "name": "bug_bite", "level": 9 }], + "levelMoves": [ + { "name": "tackle", "level": 1 }, + { "name": "string_shot", "level": 1 }, + { "name": "bug_bite", "level": 9 } + ], "eggMoves": [], "tutorMoves": [], "machine": [], @@ -8729,7 +9741,14 @@ "default": { "abilities": ["natural_cure"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 100, "hp": 100, "specialAttack": 100, "specialDefense": 100, "speed": 100 }, + "baseStats": { + "attack": 100, + "defense": 100, + "hp": 100, + "specialAttack": 100, + "specialDefense": 100, + "speed": 100 + }, "evReward": { "hp": 3 }, "types": ["psychic", "grass"], "height": 0.6, @@ -8817,7 +9836,14 @@ "default": { "abilities": ["beast_boost"], "hiddenAbilities": [], - "baseStats": { "attack": 101, "defense": 103, "hp": 97, "specialAttack": 107, "specialDefense": 101, "speed": 61 }, + "baseStats": { + "attack": 101, + "defense": 103, + "hp": 97, + "specialAttack": 107, + "specialDefense": 101, + "speed": 61 + }, "evReward": { "attack": 1, "defense": 1, "specialAttack": 1 }, "types": ["steel", "flying"], "height": 9.2, @@ -8886,7 +9912,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "chandelure": { "species": "chandelure", @@ -8897,14 +9923,21 @@ "catchRate": 45, "color": "black", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["flash_fire", "flame_body"], "hiddenAbilities": ["infiltrator"], - "baseStats": { "attack": 55, "defense": 90, "hp": 60, "specialAttack": 145, "specialDefense": 90, "speed": 80 }, + "baseStats": { + "attack": 55, + "defense": 90, + "hp": 60, + "specialAttack": 145, + "specialDefense": 90, + "speed": 80 + }, "evReward": { "specialAttack": 3 }, "types": ["ghost", "fire"], "height": 1, @@ -8980,7 +10013,14 @@ "default": { "abilities": ["natural_cure", "serene_grace"], "hiddenAbilities": ["healer"], - "baseStats": { "attack": 5, "defense": 5, "hp": 250, "specialAttack": 35, "specialDefense": 105, "speed": 50 }, + "baseStats": { + "attack": 5, + "defense": 5, + "hp": 250, + "specialAttack": 35, + "specialDefense": 105, + "speed": 50 + }, "evReward": { "hp": 2 }, "types": ["normal"], "height": 1.1, @@ -9007,7 +10047,19 @@ { "name": "healing_wish", "level": 50 }, { "name": "double_edge", "level": 54 } ], - "eggMoves": ["counter", "seismic_toss", "metronome", "endure", "heal_bell", "present", "helping_hand", "aromatherapy", "gravity", "natural_gift", "mud_bomb"], + "eggMoves": [ + "counter", + "seismic_toss", + "metronome", + "endure", + "heal_bell", + "present", + "helping_hand", + "aromatherapy", + "gravity", + "natural_gift", + "mud_bomb" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -9080,7 +10132,14 @@ "default": { "abilities": ["blaze"], "hiddenAbilities": ["solar_power"], - "baseStats": { "attack": 84, "defense": 78, "hp": 78, "specialAttack": 109, "specialDefense": 85, "speed": 100 }, + "baseStats": { + "attack": 84, + "defense": 78, + "hp": 78, + "specialAttack": 109, + "specialDefense": 85, + "speed": 100 + }, "evReward": { "specialAttack": 3 }, "types": ["fire", "flying"], "height": 1.7, @@ -9165,7 +10224,14 @@ "isMega": true, "abilities": ["tough_claws"], "hiddenAbilities": [], - "baseStats": { "attack": 130, "defense": 111, "hp": 78, "specialAttack": 130, "specialDefense": 85, "speed": 100 }, + "baseStats": { + "attack": 130, + "defense": 111, + "hp": 78, + "specialAttack": 130, + "specialDefense": 85, + "speed": 100 + }, "evReward": { "specialAttack": 3 }, "types": ["fire", "dragon"], "height": 1.7, @@ -9250,7 +10316,14 @@ "isMega": true, "abilities": ["drought"], "hiddenAbilities": [], - "baseStats": { "attack": 104, "defense": 78, "hp": 78, "specialAttack": 159, "specialDefense": 115, "speed": 100 }, + "baseStats": { + "attack": 104, + "defense": 78, + "hp": 78, + "specialAttack": 159, + "specialDefense": 115, + "speed": 100 + }, "evReward": { "specialAttack": 3 }, "types": ["fire", "flying"], "height": 1.7, @@ -9350,7 +10423,14 @@ "default": { "abilities": ["battery"], "hiddenAbilities": [], - "baseStats": { "attack": 82, "defense": 95, "hp": 57, "specialAttack": 55, "specialDefense": 75, "speed": 36 }, + "baseStats": { + "attack": 82, + "defense": 95, + "hp": 57, + "specialAttack": 55, + "specialDefense": 75, + "speed": 36 + }, "evReward": { "defense": 2 }, "types": ["bug", "electric"], "height": 0.5, @@ -9408,7 +10488,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "charmander": { "species": "charmander", @@ -9426,7 +10506,14 @@ "default": { "abilities": ["blaze"], "hiddenAbilities": ["solar_power"], - "baseStats": { "attack": 52, "defense": 43, "hp": 39, "specialAttack": 60, "specialDefense": 50, "speed": 65 }, + "baseStats": { + "attack": 52, + "defense": 43, + "hp": 39, + "specialAttack": 60, + "specialDefense": 50, + "speed": 65 + }, "evReward": { "speed": 1 }, "types": ["fire"], "height": 0.6, @@ -9518,7 +10605,14 @@ "default": { "abilities": ["blaze"], "hiddenAbilities": ["solar_power"], - "baseStats": { "attack": 64, "defense": 58, "hp": 58, "specialAttack": 80, "specialDefense": 65, "speed": 80 }, + "baseStats": { + "attack": 64, + "defense": 58, + "hp": 58, + "specialAttack": 80, + "specialDefense": 65, + "speed": 80 + }, "evReward": { "specialAttack": 1, "speed": 1 }, "types": ["fire"], "height": 1.1, @@ -9596,7 +10690,14 @@ "default": { "abilities": ["keen_eye", "tangled_feet"], "hiddenAbilities": ["big_pecks"], - "baseStats": { "attack": 65, "defense": 45, "hp": 76, "specialAttack": 92, "specialDefense": 42, "speed": 91 }, + "baseStats": { + "attack": 65, + "defense": 45, + "hp": 76, + "specialAttack": 92, + "specialDefense": 42, + "speed": 91 + }, "evReward": { "attack": 1 }, "types": ["normal", "flying"], "height": 0.5, @@ -9624,7 +10725,18 @@ { "name": "feather_dance", "level": 50 }, { "name": "hyper_voice", "level": 57 } ], - "eggMoves": ["supersonic", "agility", "night_shade", "steel_wing", "sleep_talk", "encore", "air_cutter", "nasty_plot", "defog", "boomburst"], + "eggMoves": [ + "supersonic", + "agility", + "night_shade", + "steel_wing", + "sleep_talk", + "encore", + "air_cutter", + "nasty_plot", + "defog", + "boomburst" + ], "tutorMoves": [], "machine": [ "fly", @@ -9669,14 +10781,21 @@ "catchRate": 75, "color": "purple", "genderDifference": false, - "eggGroups": ["fairy", "plant"], + "eggGroups": ["fairy", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["flower_gift"], "hiddenAbilities": [], - "baseStats": { "attack": 60, "defense": 70, "hp": 70, "specialAttack": 87, "specialDefense": 78, "speed": 85 }, + "baseStats": { + "attack": 60, + "defense": 70, + "hp": 70, + "specialAttack": 87, + "specialDefense": 78, + "speed": 85 + }, "evReward": { "specialAttack": 2 }, "types": ["grass"], "height": 0.5, @@ -9744,14 +10863,21 @@ "catchRate": 190, "color": "pink", "genderDifference": false, - "eggGroups": ["fairy", "plant"], + "eggGroups": ["fairy", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll"], "hiddenAbilities": [], - "baseStats": { "attack": 35, "defense": 45, "hp": 45, "specialAttack": 62, "specialDefense": 53, "speed": 35 }, + "baseStats": { + "attack": 35, + "defense": 45, + "hp": 45, + "specialAttack": 62, + "specialDefense": 53, + "speed": 35 + }, "evReward": { "specialAttack": 1 }, "types": ["grass"], "height": 0.4, @@ -9828,14 +10954,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["bulletproof"], - "baseStats": { "attack": 107, "defense": 122, "hp": 88, "specialAttack": 74, "specialDefense": 75, "speed": 64 }, + "baseStats": { + "attack": 107, + "defense": 122, + "hp": 88, + "specialAttack": 74, + "specialDefense": 75, + "speed": 64 + }, "evReward": { "defense": 3 }, "types": ["grass", "fighting"], "height": 1.6, @@ -9869,7 +11002,7 @@ { "name": "giga_impact", "level": 78 } ], "eggMoves": [], - "tutorMoves": ["frenzy_plant", "grass_pledge"], + "tutorMoves": ["frenzy_grass", "grass_pledge"], "machine": [ "swords_dance", "roar", @@ -9920,7 +11053,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "chespin": { "species": "chespin", @@ -9931,14 +11064,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["bulletproof"], - "baseStats": { "attack": 61, "defense": 65, "hp": 56, "specialAttack": 48, "specialDefense": 45, "speed": 38 }, + "baseStats": { + "attack": 61, + "defense": 65, + "hp": 56, + "specialAttack": 48, + "specialDefense": 45, + "speed": 38 + }, "evReward": { "defense": 1 }, "types": ["grass"], "height": 0.4, @@ -9961,7 +11101,15 @@ { "name": "pain_split", "level": 45 }, { "name": "wood_hammer", "level": 48 } ], - "eggMoves": ["defense_curl", "curse", "belly_drum", "spikes", "rollout", "synthesis", "quick_guard"], + "eggMoves": [ + "defense_curl", + "curse", + "belly_drum", + "spikes", + "rollout", + "synthesis", + "quick_guard" + ], "tutorMoves": ["grass_pledge"], "machine": [ "swords_dance", @@ -10008,7 +11156,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "chikorita": { "species": "chikorita", @@ -10019,14 +11167,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["monster", "plant"], + "eggGroups": ["monster", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["leaf_guard"], - "baseStats": { "attack": 49, "defense": 65, "hp": 45, "specialAttack": 49, "specialDefense": 65, "speed": 45 }, + "baseStats": { + "attack": 49, + "defense": 65, + "hp": 45, + "specialAttack": 49, + "specialDefense": 65, + "speed": 45 + }, "evReward": { "specialDefense": 1 }, "types": ["grass"], "height": 0.9, @@ -10109,14 +11264,21 @@ "catchRate": 45, "color": "brown", "genderDifference": false, - "eggGroups": ["ground", "humanshape"], + "eggGroups": ["field", "humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["iron_fist"], - "baseStats": { "attack": 58, "defense": 44, "hp": 44, "specialAttack": 58, "specialDefense": 44, "speed": 61 }, + "baseStats": { + "attack": 58, + "defense": 44, + "hp": 44, + "specialAttack": 58, + "specialDefense": 44, + "speed": 61 + }, "evReward": { "speed": 1 }, "types": ["fire"], "height": 0.5, @@ -10205,14 +11367,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 50, "defense": 80, "hp": 75, "specialAttack": 95, "specialDefense": 90, "speed": 65 }, + "baseStats": { + "attack": 50, + "defense": 80, + "hp": 75, + "specialAttack": 95, + "specialDefense": 90, + "speed": 65 + }, "evReward": { "specialAttack": 1, "specialDefense": 1 }, "types": ["psychic"], "height": 0.6, @@ -10241,7 +11410,17 @@ { "name": "synchronoise", "level": 52 }, { "name": "healing_wish", "level": 57 } ], - "eggMoves": ["disable", "hypnosis", "recover", "curse", "future_sight", "wish", "skill_swap", "cosmic_power", "stored_power"], + "eggMoves": [ + "disable", + "hypnosis", + "recover", + "curse", + "future_sight", + "wish", + "skill_swap", + "cosmic_power", + "stored_power" + ], "tutorMoves": [], "machine": [ "thunder_wave", @@ -10301,7 +11480,14 @@ "default": { "abilities": ["volt_absorb", "illuminate"], "hiddenAbilities": ["water_absorb"], - "baseStats": { "attack": 38, "defense": 38, "hp": 75, "specialAttack": 56, "specialDefense": 56, "speed": 67 }, + "baseStats": { + "attack": 38, + "defense": 38, + "hp": 75, + "specialAttack": 56, + "specialDefense": 56, + "speed": 67 + }, "evReward": { "hp": 1 }, "types": ["water", "electric"], "height": 0.5, @@ -10326,7 +11512,19 @@ { "name": "ion_deluge", "level": 47 }, { "name": "charge", "level": 50 } ], - "eggMoves": ["mist", "psybeam", "agility", "screech", "amnesia", "flail", "whirlpool", "shock_wave", "water_pulse", "brine", "soak"], + "eggMoves": [ + "mist", + "psybeam", + "agility", + "screech", + "amnesia", + "flail", + "whirlpool", + "shock_wave", + "water_pulse", + "brine", + "soak" + ], "tutorMoves": [], "machine": [ "surf", @@ -10380,7 +11578,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 30, "defense": 50, "hp": 45, "specialAttack": 65, "specialDefense": 50, "speed": 45 }, + "baseStats": { + "attack": 30, + "defense": 50, + "hp": 45, + "specialAttack": 65, + "specialDefense": 50, + "speed": 45 + }, "evReward": { "specialAttack": 1 }, "types": ["psychic"], "height": 0.2, @@ -10397,7 +11602,17 @@ { "name": "entrainment", "level": 19 }, { "name": "uproar", "level": 32 } ], - "eggMoves": ["disable", "hypnosis", "recover", "curse", "future_sight", "wish", "skill_swap", "cosmic_power", "stored_power"], + "eggMoves": [ + "disable", + "hypnosis", + "recover", + "curse", + "future_sight", + "wish", + "skill_swap", + "cosmic_power", + "stored_power" + ], "tutorMoves": [], "machine": [ "thunder_wave", @@ -10438,7 +11653,9 @@ } } }, - "evolutions": [{ "species": "chimecho", "method": "happinessnight", "data": "" }] + "evolutions": [ + { "species": "chimecho", "method": "happinessnight", "data": "" } + ] }, "cinccino": { "species": "cinccino", @@ -10449,14 +11666,21 @@ "catchRate": 60, "color": "gray", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["cute_charm", "technician"], "hiddenAbilities": ["skill_link"], - "baseStats": { "attack": 95, "defense": 60, "hp": 75, "specialAttack": 65, "specialDefense": 60, "speed": 115 }, + "baseStats": { + "attack": 95, + "defense": 60, + "hp": 75, + "specialAttack": 65, + "specialDefense": 60, + "speed": 115 + }, "evReward": { "speed": 2 }, "types": ["normal"], "height": 0.5, @@ -10529,7 +11753,14 @@ "default": { "abilities": ["shell_armor"], "hiddenAbilities": ["rattled"], - "baseStats": { "attack": 64, "defense": 85, "hp": 35, "specialAttack": 74, "specialDefense": 55, "speed": 32 }, + "baseStats": { + "attack": 64, + "defense": 85, + "hp": 35, + "specialAttack": 74, + "specialDefense": 55, + "speed": 32 + }, "evReward": { "defense": 1 }, "types": ["water"], "height": 0.4, @@ -10543,7 +11774,19 @@ { "name": "iron_defense", "level": 1 }, { "name": "shell_smash", "level": 50 } ], - "eggMoves": ["body_slam", "supersonic", "confuse_ray", "barrier", "endure", "refresh", "mud_sport", "muddy_water", "water_pulse", "brine", "aqua_ring"], + "eggMoves": [ + "body_slam", + "supersonic", + "confuse_ray", + "barrier", + "endure", + "refresh", + "mud_sport", + "muddy_water", + "water_pulse", + "brine", + "aqua_ring" + ], "tutorMoves": [], "machine": [ "surf", @@ -10572,7 +11815,10 @@ } } }, - "evolutions": [{ "species": "huntail", "method": "tradeitem", "data": "deepseatooth" }, { "species": "gorebyss", "method": "tradeitem", "data": "deepseascale" }] + "evolutions": [ + { "species": "huntail", "method": "tradeitem", "data": "deepseatooth" }, + { "species": "gorebyss", "method": "tradeitem", "data": "deepseascale" } + ] }, "clauncher": { "species": "clauncher", @@ -10590,7 +11836,14 @@ "default": { "abilities": ["mega_launcher"], "hiddenAbilities": [], - "baseStats": { "attack": 53, "defense": 62, "hp": 50, "specialAttack": 58, "specialDefense": 63, "speed": 44 }, + "baseStats": { + "attack": 53, + "defense": 62, + "hp": 50, + "specialAttack": 58, + "specialDefense": 63, + "speed": 44 + }, "evReward": { "specialAttack": 1 }, "types": ["water"], "height": 0.5, @@ -10612,7 +11865,13 @@ { "name": "aqua_jet", "level": 43 }, { "name": "muddy_water", "level": 48 } ], - "eggMoves": ["crabhammer", "endure", "helping_hand", "aqua_jet", "entrainment"], + "eggMoves": [ + "crabhammer", + "endure", + "helping_hand", + "aqua_jet", + "entrainment" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -10647,7 +11906,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "clawitzer": { "species": "clawitzer", @@ -10665,7 +11924,14 @@ "default": { "abilities": ["mega_launcher"], "hiddenAbilities": [], - "baseStats": { "attack": 73, "defense": 88, "hp": 71, "specialAttack": 120, "specialDefense": 89, "speed": 59 }, + "baseStats": { + "attack": 73, + "defense": 88, + "hp": 71, + "specialAttack": 120, + "specialDefense": 89, + "speed": 59 + }, "evReward": { "specialAttack": 2 }, "types": ["water"], "height": 1.3, @@ -10734,7 +12000,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "claydol": { "species": "claydol", @@ -10752,7 +12018,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 70, "defense": 105, "hp": 60, "specialAttack": 70, "specialDefense": 120, "speed": 75 }, + "baseStats": { + "attack": 70, + "defense": 105, + "hp": 60, + "specialAttack": 70, + "specialDefense": 120, + "speed": 75 + }, "evReward": { "specialDefense": 2 }, "types": ["ground", "psychic"], "height": 1.5, @@ -10851,7 +12124,14 @@ "default": { "abilities": ["cute_charm", "magic_guard"], "hiddenAbilities": ["unaware"], - "baseStats": { "attack": 70, "defense": 73, "hp": 95, "specialAttack": 95, "specialDefense": 90, "speed": 60 }, + "baseStats": { + "attack": 70, + "defense": 73, + "hp": 95, + "specialAttack": 95, + "specialDefense": 90, + "speed": 60 + }, "evReward": { "hp": 3 }, "types": ["fairy"], "height": 1.3, @@ -10935,7 +12215,14 @@ "default": { "abilities": ["cute_charm", "magic_guard"], "hiddenAbilities": ["friend_guard"], - "baseStats": { "attack": 45, "defense": 48, "hp": 70, "specialAttack": 60, "specialDefense": 65, "speed": 35 }, + "baseStats": { + "attack": 45, + "defense": 48, + "hp": 70, + "specialAttack": 60, + "specialDefense": 65, + "speed": 35 + }, "evReward": { "hp": 2 }, "types": ["fairy"], "height": 0.6, @@ -11015,7 +12302,9 @@ } } }, - "evolutions": [{ "species": "clefable", "method": "item", "data": "moonstone" }] + "evolutions": [ + { "species": "clefable", "method": "item", "data": "moonstone" } + ] }, "cleffa": { "species": "cleffa", @@ -11033,7 +12322,14 @@ "default": { "abilities": ["cute_charm", "magic_guard"], "hiddenAbilities": ["friend_guard"], - "baseStats": { "attack": 25, "defense": 28, "hp": 50, "specialAttack": 45, "specialDefense": 55, "speed": 15 }, + "baseStats": { + "attack": 25, + "defense": 28, + "hp": 50, + "specialAttack": 45, + "specialDefense": 55, + "speed": 15 + }, "evReward": { "specialDefense": 1 }, "types": ["fairy"], "height": 0.3, @@ -11049,7 +12345,22 @@ { "name": "copycat", "level": 13 }, { "name": "magical_leaf", "level": 16 } ], - "eggMoves": ["mimic", "metronome", "amnesia", "splash", "belly_drum", "present", "wish", "aromatherapy", "fake_tears", "tickle", "covet", "stored_power", "heal_pulse", "misty_terrain"], + "eggMoves": [ + "mimic", + "metronome", + "amnesia", + "splash", + "belly_drum", + "present", + "wish", + "aromatherapy", + "fake_tears", + "tickle", + "covet", + "stored_power", + "heal_pulse", + "misty_terrain" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -11107,7 +12418,14 @@ "default": { "abilities": ["shell_armor", "skill_link"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 95, "defense": 180, "hp": 50, "specialAttack": 85, "specialDefense": 45, "speed": 70 }, + "baseStats": { + "attack": 95, + "defense": 180, + "hp": 50, + "specialAttack": 85, + "specialDefense": 45, + "speed": 70 + }, "evReward": { "defense": 2 }, "types": ["water", "ice"], "height": 1.5, @@ -11179,7 +12497,14 @@ "default": { "abilities": ["justified"], "hiddenAbilities": [], - "baseStats": { "attack": 90, "defense": 129, "hp": 91, "specialAttack": 90, "specialDefense": 72, "speed": 108 }, + "baseStats": { + "attack": 90, + "defense": 129, + "hp": 91, + "specialAttack": 90, + "specialDefense": 72, + "speed": 108 + }, "evReward": { "defense": 3 }, "types": ["steel", "fighting"], "height": 2.1, @@ -11257,14 +12582,21 @@ "catchRate": 90, "color": "yellow", "genderDifference": false, - "eggGroups": ["mineral", "indeterminate"], + "eggGroups": ["mineral", "amorphous"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["mummy"], "hiddenAbilities": [], - "baseStats": { "attack": 50, "defense": 145, "hp": 58, "specialAttack": 95, "specialDefense": 105, "speed": 30 }, + "baseStats": { + "attack": 50, + "defense": 145, + "hp": 58, + "specialAttack": 95, + "specialDefense": 105, + "speed": 30 + }, "evReward": { "defense": 2 }, "types": ["ghost"], "height": 1.7, @@ -11350,14 +12682,26 @@ "default": { "abilities": ["honey_gather"], "hiddenAbilities": ["hustle"], - "baseStats": { "attack": 30, "defense": 42, "hp": 30, "specialAttack": 30, "specialDefense": 42, "speed": 70 }, + "baseStats": { + "attack": 30, + "defense": 42, + "hp": 30, + "specialAttack": 30, + "specialDefense": 42, + "speed": 70 + }, "evReward": { "speed": 1 }, "types": ["bug", "flying"], "height": 0.3, "weight": 5.5, "baseExp": 49, "moves": { - "levelMoves": [{ "name": "gust", "level": 1 }, { "name": "sweet_scent", "level": 1 }, { "name": "bug_bite", "level": 13 }, { "name": "bug_buzz", "level": 29 }], + "levelMoves": [ + { "name": "gust", "level": 1 }, + { "name": "sweet_scent", "level": 1 }, + { "name": "bug_bite", "level": 13 }, + { "name": "bug_buzz", "level": 29 } + ], "eggMoves": [], "tutorMoves": [], "machine": [], @@ -11365,7 +12709,9 @@ } } }, - "evolutions": [{ "species": "vespiquen", "method": "levelfemale", "data": "21" }] + "evolutions": [ + { "species": "vespiquen", "method": "levelfemale", "data": "21" } + ] }, "combusken": { "species": "combusken", @@ -11376,14 +12722,21 @@ "catchRate": 45, "color": "red", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["speed_boost"], - "baseStats": { "attack": 85, "defense": 60, "hp": 60, "specialAttack": 85, "specialDefense": 60, "speed": 55 }, + "baseStats": { + "attack": 85, + "defense": 60, + "hp": 60, + "specialAttack": 85, + "specialDefense": 60, + "speed": 55 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["fire", "fighting"], "height": 0.9, @@ -11461,14 +12814,21 @@ "catchRate": 60, "color": "green", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["flower_veil", "triage"], "hiddenAbilities": ["natural_cure"], - "baseStats": { "attack": 52, "defense": 90, "hp": 51, "specialAttack": 82, "specialDefense": 110, "speed": 100 }, + "baseStats": { + "attack": 52, + "defense": 90, + "hp": 51, + "specialAttack": 82, + "specialDefense": 110, + "speed": 100 + }, "evReward": { "specialDefense": 2 }, "types": ["fairy"], "height": 0.1, @@ -11536,7 +12896,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "conkeldurr": { "species": "conkeldurr", @@ -11547,14 +12907,21 @@ "catchRate": 45, "color": "brown", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["guts", "sheer_force"], "hiddenAbilities": ["iron_fist"], - "baseStats": { "attack": 140, "defense": 95, "hp": 105, "specialAttack": 55, "specialDefense": 65, "speed": 45 }, + "baseStats": { + "attack": 140, + "defense": 95, + "hp": 105, + "specialAttack": 55, + "specialDefense": 65, + "speed": 45 + }, "evReward": { "attack": 3 }, "types": ["fighting"], "height": 1.4, @@ -11642,7 +13009,14 @@ "default": { "abilities": ["hyper_cutter", "shell_armor"], "hiddenAbilities": ["adaptability"], - "baseStats": { "attack": 80, "defense": 65, "hp": 43, "specialAttack": 50, "specialDefense": 35, "speed": 35 }, + "baseStats": { + "attack": 80, + "defense": 65, + "hp": 43, + "specialAttack": 50, + "specialDefense": 35, + "speed": 35 + }, "evReward": { "attack": 1 }, "types": ["water"], "height": 0.6, @@ -11738,7 +13112,14 @@ "default": { "abilities": ["hustle", "natural_cure"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 55, "defense": 95, "hp": 65, "specialAttack": 65, "specialDefense": 95, "speed": 35 }, + "baseStats": { + "attack": 55, + "defense": 95, + "hp": 65, + "specialAttack": 65, + "specialDefense": 95, + "speed": 35 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["water", "rock"], "height": 0.6, @@ -11843,14 +13224,25 @@ "default": { "abilities": ["sturdy"], "hiddenAbilities": [], - "baseStats": { "attack": 29, "defense": 131, "hp": 43, "specialAttack": 29, "specialDefense": 131, "speed": 37 }, + "baseStats": { + "attack": 29, + "defense": 131, + "hp": 43, + "specialAttack": 29, + "specialDefense": 131, + "speed": 37 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["psychic"], "height": 0.1, "weight": 999.9, "baseExp": 80, "moves": { - "levelMoves": [{ "name": "cosmic_power", "level": 0 }, { "name": "teleport", "level": 1 }, { "name": "cosmic_power", "level": 1 }], + "levelMoves": [ + { "name": "cosmic_power", "level": 0 }, + { "name": "teleport", "level": 1 }, + { "name": "cosmic_power", "level": 1 } + ], "eggMoves": [], "tutorMoves": [], "machine": [], @@ -11858,7 +13250,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "cosmog": { "species": "cosmog", @@ -11876,16 +13268,32 @@ "default": { "abilities": ["unaware"], "hiddenAbilities": [], - "baseStats": { "attack": 29, "defense": 31, "hp": 43, "specialAttack": 29, "specialDefense": 31, "speed": 37 }, + "baseStats": { + "attack": 29, + "defense": 31, + "hp": 43, + "specialAttack": 29, + "specialDefense": 31, + "speed": 37 + }, "evReward": { "hp": 1 }, "types": ["psychic"], "height": 0.2, "weight": 0.1, "baseExp": 40, - "moves": { "levelMoves": [{ "name": "splash", "level": 1 }, { "name": "teleport", "level": 23 }], "eggMoves": [], "tutorMoves": [], "machine": [], "formeChange": [] } + "moves": { + "levelMoves": [ + { "name": "splash", "level": 1 }, + { "name": "teleport", "level": 23 } + ], + "eggMoves": [], + "tutorMoves": [], + "machine": [], + "formeChange": [] + } } }, - "evolutions": null + "evolutions": [] }, "cottonee": { "species": "cottonee", @@ -11896,14 +13304,21 @@ "catchRate": 190, "color": "green", "genderDifference": false, - "eggGroups": ["fairy", "plant"], + "eggGroups": ["fairy", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["prankster", "infiltrator"], "hiddenAbilities": ["chlorophyll"], - "baseStats": { "attack": 27, "defense": 60, "hp": 40, "specialAttack": 37, "specialDefense": 50, "speed": 66 }, + "baseStats": { + "attack": 27, + "defense": 60, + "hp": 40, + "specialAttack": 37, + "specialDefense": 50, + "speed": 66 + }, "evReward": { "speed": 1 }, "types": ["grass", "fairy"], "height": 0.3, @@ -11929,7 +13344,18 @@ { "name": "endeavor", "level": 44 }, { "name": "solar_beam", "level": 46 } ], - "eggMoves": ["encore", "beat_up", "memento", "fake_tears", "grass_whistle", "tickle", "natural_gift", "worry_seed", "switcheroo", "captivate"], + "eggMoves": [ + "encore", + "beat_up", + "memento", + "fake_tears", + "grass_whistle", + "tickle", + "natural_gift", + "worry_seed", + "switcheroo", + "captivate" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -11960,7 +13386,9 @@ } } }, - "evolutions": [{ "species": "whimsicott", "method": "item", "data": "sunstone" }] + "evolutions": [ + { "species": "whimsicott", "method": "item", "data": "sunstone" } + ] }, "crabominable": { "species": "crabominable", @@ -11978,7 +13406,14 @@ "default": { "abilities": ["hyper_cutter", "iron_fist"], "hiddenAbilities": ["anger_point"], - "baseStats": { "attack": 132, "defense": 77, "hp": 97, "specialAttack": 62, "specialDefense": 67, "speed": 43 }, + "baseStats": { + "attack": 132, + "defense": 77, + "hp": 97, + "specialAttack": 62, + "specialDefense": 67, + "speed": 43 + }, "evReward": { "attack": 2 }, "types": ["fighting", "ice"], "height": 1.7, @@ -12048,7 +13483,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "crabrawler": { "species": "crabrawler", @@ -12066,7 +13501,14 @@ "default": { "abilities": ["hyper_cutter", "iron_fist"], "hiddenAbilities": ["anger_point"], - "baseStats": { "attack": 82, "defense": 57, "hp": 47, "specialAttack": 42, "specialDefense": 47, "speed": 63 }, + "baseStats": { + "attack": 82, + "defense": 57, + "hp": 47, + "specialAttack": 42, + "specialDefense": 47, + "speed": 63 + }, "evReward": { "attack": 1 }, "types": ["fighting"], "height": 0.6, @@ -12127,7 +13569,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "cradily": { "species": "cradily", @@ -12145,7 +13587,14 @@ "default": { "abilities": ["suction_cups"], "hiddenAbilities": ["storm_drain"], - "baseStats": { "attack": 81, "defense": 97, "hp": 86, "specialAttack": 81, "specialDefense": 107, "speed": 43 }, + "baseStats": { + "attack": 81, + "defense": 97, + "hp": 86, + "specialAttack": 81, + "specialDefense": 107, + "speed": 43 + }, "evReward": { "specialDefense": 2 }, "types": ["rock", "grass"], "height": 1.5, @@ -12230,7 +13679,14 @@ "default": { "abilities": ["mold_breaker"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 125, "defense": 40, "hp": 67, "specialAttack": 30, "specialDefense": 30, "speed": 58 }, + "baseStats": { + "attack": 125, + "defense": 40, + "hp": 67, + "specialAttack": 30, + "specialDefense": 30, + "speed": 58 + }, "evReward": { "attack": 1 }, "types": ["rock"], "height": 0.9, @@ -12251,7 +13707,19 @@ { "name": "screech", "level": 42 }, { "name": "head_smash", "level": 46 } ], - "eggMoves": ["whirlwind", "slam", "stomp", "thrash", "double_edge", "leer", "curse", "iron_tail", "crunch", "hammer_arm", "iron_head"], + "eggMoves": [ + "whirlwind", + "slam", + "stomp", + "thrash", + "double_edge", + "leer", + "curse", + "iron_tail", + "crunch", + "hammer_arm", + "iron_head" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -12312,7 +13780,14 @@ "default": { "abilities": ["hyper_cutter", "shell_armor"], "hiddenAbilities": ["adaptability"], - "baseStats": { "attack": 120, "defense": 85, "hp": 63, "specialAttack": 90, "specialDefense": 55, "speed": 55 }, + "baseStats": { + "attack": 120, + "defense": 85, + "hp": 63, + "specialAttack": 90, + "specialDefense": 55, + "speed": 55 + }, "evReward": { "attack": 2 }, "types": ["water", "dark"], "height": 1.1, @@ -12405,7 +13880,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 70, "defense": 120, "hp": 120, "specialAttack": 75, "specialDefense": 130, "speed": 85 }, + "baseStats": { + "attack": 70, + "defense": 120, + "hp": 120, + "specialAttack": 75, + "specialDefense": 130, + "speed": 85 + }, "evReward": { "specialDefense": 3 }, "types": ["psychic"], "height": 1.5, @@ -12484,14 +13966,21 @@ "catchRate": 140, "color": "blue", "genderDifference": true, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 10, "tags": [], "formes": { "default": { "abilities": ["anticipation", "dry_skin"], "hiddenAbilities": ["poison_touch"], - "baseStats": { "attack": 61, "defense": 40, "hp": 48, "specialAttack": 61, "specialDefense": 40, "speed": 50 }, + "baseStats": { + "attack": 61, + "defense": 40, + "hp": 48, + "specialAttack": 61, + "specialDefense": 40, + "speed": 50 + }, "evReward": { "attack": 1 }, "types": ["poison", "fighting"], "height": 0.7, @@ -12596,7 +14085,14 @@ "default": { "abilities": ["inner_focus"], "hiddenAbilities": ["infiltrator"], - "baseStats": { "attack": 90, "defense": 80, "hp": 85, "specialAttack": 70, "specialDefense": 80, "speed": 130 }, + "baseStats": { + "attack": 90, + "defense": 80, + "hp": 85, + "specialAttack": 70, + "specialDefense": 80, + "speed": 130 + }, "evReward": { "speed": 3 }, "types": ["poison", "flying"], "height": 1.8, @@ -12686,7 +14182,14 @@ "default": { "abilities": ["torrent"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 80, "defense": 80, "hp": 65, "specialAttack": 59, "specialDefense": 63, "speed": 58 }, + "baseStats": { + "attack": 80, + "defense": 80, + "hp": 65, + "specialAttack": 59, + "specialDefense": 63, + "speed": 58 + }, "evReward": { "attack": 1, "defense": 1 }, "types": ["water"], "height": 1.1, @@ -12769,7 +14272,14 @@ "default": { "abilities": ["sturdy", "shell_armor"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 105, "defense": 125, "hp": 70, "specialAttack": 65, "specialDefense": 75, "speed": 45 }, + "baseStats": { + "attack": 105, + "defense": 125, + "hp": 70, + "specialAttack": 65, + "specialDefense": 75, + "speed": 45 + }, "evReward": { "defense": 2 }, "types": ["bug", "rock"], "height": 1.4, @@ -12853,7 +14363,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 50, "defense": 50, "hp": 80, "specialAttack": 95, "specialDefense": 135, "speed": 105 }, + "baseStats": { + "attack": 50, + "defense": 50, + "hp": 80, + "specialAttack": 95, + "specialDefense": 135, + "speed": 105 + }, "evReward": { "specialDefense": 2 }, "types": ["ice"], "height": 1.1, @@ -12931,14 +14448,21 @@ "catchRate": 120, "color": "white", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["snow_cloak", "slush_rush"], "hiddenAbilities": ["rattled"], - "baseStats": { "attack": 70, "defense": 40, "hp": 55, "specialAttack": 60, "specialDefense": 40, "speed": 40 }, + "baseStats": { + "attack": 70, + "defense": 40, + "hp": 55, + "specialAttack": 60, + "specialDefense": 40, + "speed": 40 + }, "evReward": { "attack": 1 }, "types": ["ice"], "height": 0.5, @@ -12963,7 +14487,17 @@ { "name": "thrash", "level": 53 }, { "name": "sheer_cold", "level": 57 } ], - "eggMoves": ["ice_punch", "sleep_talk", "encore", "focus_punch", "yawn", "assurance", "night_slash", "avalanche", "play_rough"], + "eggMoves": [ + "ice_punch", + "sleep_talk", + "encore", + "focus_punch", + "yawn", + "assurance", + "night_slash", + "avalanche", + "play_rough" + ], "tutorMoves": [], "machine": [ "surf", @@ -13015,7 +14549,14 @@ "default": { "abilities": ["rock_head", "lightning_rod"], "hiddenAbilities": ["battle_armor"], - "baseStats": { "attack": 50, "defense": 95, "hp": 50, "specialAttack": 40, "specialDefense": 50, "speed": 35 }, + "baseStats": { + "attack": 50, + "defense": 95, + "hp": 50, + "specialAttack": 40, + "specialDefense": 50, + "speed": 35 + }, "evReward": { "defense": 1 }, "types": ["ground"], "height": 0.4, @@ -13040,7 +14581,18 @@ { "name": "retaliate", "level": 47 }, { "name": "bone_rush", "level": 51 } ], - "eggMoves": ["double_kick", "screech", "skull_bash", "belly_drum", "perish_song", "detect", "endure", "ancient_power", "iron_head", "chip_away"], + "eggMoves": [ + "double_kick", + "screech", + "skull_bash", + "belly_drum", + "perish_song", + "detect", + "endure", + "ancient_power", + "iron_head", + "chip_away" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -13099,7 +14651,14 @@ "default": { "abilities": ["honey_gather", "shield_dust"], "hiddenAbilities": ["sweet_veil"], - "baseStats": { "attack": 45, "defense": 40, "hp": 40, "specialAttack": 55, "specialDefense": 40, "speed": 84 }, + "baseStats": { + "attack": 45, + "defense": 40, + "hp": 40, + "specialAttack": 55, + "specialDefense": 40, + "speed": 84 + }, "evReward": { "speed": 1 }, "types": ["bug", "fairy"], "height": 0.1, @@ -13119,7 +14678,13 @@ { "name": "aromatherapy", "level": 36 }, { "name": "quiver_dance", "level": 41 } ], - "eggMoves": ["baton_pass", "skill_swap", "bestow", "moonblast", "speed_swap"], + "eggMoves": [ + "baton_pass", + "skill_swap", + "bestow", + "moonblast", + "speed_swap" + ], "tutorMoves": [], "machine": [ "toxic", @@ -13158,7 +14723,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "cyndaquil": { "species": "cyndaquil", @@ -13169,14 +14734,21 @@ "catchRate": 45, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["flash_fire"], - "baseStats": { "attack": 52, "defense": 43, "hp": 39, "specialAttack": 60, "specialDefense": 50, "speed": 65 }, + "baseStats": { + "attack": 52, + "defense": 43, + "hp": 39, + "specialAttack": 60, + "specialDefense": 50, + "speed": 65 + }, "evReward": { "speed": 1 }, "types": ["fire"], "height": 0.5, @@ -13266,7 +14838,14 @@ "default": { "abilities": ["bad_dreams"], "hiddenAbilities": [], - "baseStats": { "attack": 90, "defense": 90, "hp": 70, "specialAttack": 135, "specialDefense": 90, "speed": 125 }, + "baseStats": { + "attack": 90, + "defense": 90, + "hp": 70, + "specialAttack": 135, + "specialDefense": 90, + "speed": 125 + }, "evReward": { "specialAttack": 2, "speed": 1 }, "types": ["dark"], "height": 1.5, @@ -13353,14 +14932,21 @@ "catchRate": 60, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["sheer_force"], "hiddenAbilities": ["zen_mode"], - "baseStats": { "attack": 140, "defense": 55, "hp": 105, "specialAttack": 30, "specialDefense": 55, "speed": 95 }, + "baseStats": { + "attack": 140, + "defense": 55, + "hp": 105, + "specialAttack": 30, + "specialDefense": 55, + "speed": 95 + }, "evReward": { "attack": 2 }, "types": ["fire"], "height": 1.3, @@ -13443,7 +15029,14 @@ "zen": { "abilities": ["sheer_force"], "hiddenAbilities": ["zen_mode"], - "baseStats": { "attack": 30, "defense": 105, "hp": 105, "specialAttack": 140, "specialDefense": 105, "speed": 55 }, + "baseStats": { + "attack": 30, + "defense": 105, + "hp": 105, + "specialAttack": 140, + "specialDefense": 105, + "speed": 55 + }, "evReward": { "specialAttack": 2 }, "types": ["fire", "psychic"], "height": 1.3, @@ -13542,7 +15135,14 @@ "default": { "abilities": ["overgrow"], "hiddenAbilities": ["long_reach"], - "baseStats": { "attack": 75, "defense": 75, "hp": 78, "specialAttack": 70, "specialDefense": 70, "speed": 52 }, + "baseStats": { + "attack": 75, + "defense": 75, + "hp": 78, + "specialAttack": 70, + "specialDefense": 70, + "speed": 52 + }, "evReward": { "hp": 2 }, "types": ["grass", "flying"], "height": 0.7, @@ -13604,7 +15204,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "darumaka": { "species": "darumaka", @@ -13615,14 +15215,21 @@ "catchRate": 120, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["hustle"], "hiddenAbilities": ["inner_focus"], - "baseStats": { "attack": 90, "defense": 45, "hp": 70, "specialAttack": 15, "specialDefense": 45, "speed": 50 }, + "baseStats": { + "attack": 90, + "defense": 45, + "hp": 70, + "specialAttack": 15, + "specialDefense": 45, + "speed": 50 + }, "evReward": { "attack": 1 }, "types": ["fire"], "height": 0.6, @@ -13647,7 +15254,18 @@ { "name": "superpower", "level": 39 }, { "name": "overheat", "level": 42 } ], - "eggMoves": ["take_down", "focus_energy", "flame_wheel", "endure", "sleep_talk", "encore", "focus_punch", "yawn", "snatch", "hammer_arm"], + "eggMoves": [ + "take_down", + "focus_energy", + "flame_wheel", + "endure", + "sleep_talk", + "encore", + "focus_punch", + "yawn", + "snatch", + "hammer_arm" + ], "tutorMoves": [], "machine": [ "roar", @@ -13705,7 +15323,14 @@ "default": { "abilities": ["overgrow"], "hiddenAbilities": ["long_reach"], - "baseStats": { "attack": 107, "defense": 75, "hp": 78, "specialAttack": 100, "specialDefense": 100, "speed": 70 }, + "baseStats": { + "attack": 107, + "defense": 75, + "hp": 78, + "specialAttack": 100, + "specialDefense": 100, + "speed": 70 + }, "evReward": { "attack": 3 }, "types": ["grass", "ghost"], "height": 1.6, @@ -13735,7 +15360,7 @@ { "name": "nasty_plot", "level": 60 } ], "eggMoves": [], - "tutorMoves": ["frenzy_plant", "grass_pledge"], + "tutorMoves": ["frenzy_grass", "grass_pledge"], "machine": [ "swords_dance", "solar_beam", @@ -13776,7 +15401,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "dedenne": { "species": "dedenne", @@ -13787,14 +15412,21 @@ "catchRate": 180, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground", "fairy"], + "eggGroups": ["field", "fairy"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["cheek_pouch", "pickup"], "hiddenAbilities": ["plus"], - "baseStats": { "attack": 58, "defense": 57, "hp": 67, "specialAttack": 81, "specialDefense": 67, "speed": 101 }, + "baseStats": { + "attack": 58, + "defense": 57, + "hp": 67, + "specialAttack": 81, + "specialDefense": 67, + "speed": 101 + }, "evReward": { "speed": 2 }, "types": ["electric", "fairy"], "height": 0.2, @@ -13819,7 +15451,12 @@ { "name": "thunder", "level": 45 }, { "name": "discharge", "level": 50 } ], - "eggMoves": ["helping_hand", "covet", "natural_gift", "eerie_impulse"], + "eggMoves": [ + "helping_hand", + "covet", + "natural_gift", + "eerie_impulse" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -13855,7 +15492,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "deerling": { "species": "deerling", @@ -13866,14 +15503,21 @@ "catchRate": 190, "color": "pink", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "sap_sipper"], "hiddenAbilities": ["serene_grace"], - "baseStats": { "attack": 60, "defense": 50, "hp": 60, "specialAttack": 40, "specialDefense": 50, "speed": 75 }, + "baseStats": { + "attack": 60, + "defense": 50, + "hp": 60, + "specialAttack": 40, + "specialDefense": 50, + "speed": 75 + }, "evReward": { "speed": 1 }, "types": ["normal", "grass"], "height": 0.6, @@ -13897,7 +15541,17 @@ { "name": "double_edge", "level": 46 }, { "name": "solar_beam", "level": 51 } ], - "eggMoves": ["agility", "sleep_talk", "baton_pass", "synthesis", "fake_tears", "odor_sleuth", "grass_whistle", "natural_gift", "worry_seed"], + "eggMoves": [ + "agility", + "sleep_talk", + "baton_pass", + "synthesis", + "fake_tears", + "odor_sleuth", + "grass_whistle", + "natural_gift", + "worry_seed" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -13950,7 +15604,14 @@ "default": { "abilities": ["hustle"], "hiddenAbilities": [], - "baseStats": { "attack": 65, "defense": 50, "hp": 52, "specialAttack": 45, "specialDefense": 50, "speed": 38 }, + "baseStats": { + "attack": 65, + "defense": 50, + "hp": 52, + "specialAttack": 45, + "specialDefense": 50, + "speed": 38 + }, "evReward": { "attack": 1 }, "types": ["dark", "dragon"], "height": 0.8, @@ -13975,7 +15636,18 @@ { "name": "hyper_voice", "level": 58 }, { "name": "outrage", "level": 62 } ], - "eggMoves": ["screech", "astonish", "assurance", "dark_pulse", "earth_power", "thunder_fang", "ice_fang", "fire_fang", "head_smash", "double_hit"], + "eggMoves": [ + "screech", + "astonish", + "assurance", + "dark_pulse", + "earth_power", + "thunder_fang", + "ice_fang", + "fire_fang", + "head_smash", + "double_hit" + ], "tutorMoves": ["draco_meteor"], "machine": [ "roar", @@ -14019,21 +15691,33 @@ "catchRate": 60, "color": "purple", "genderDifference": false, - "eggGroups": ["ground", "fairy"], + "eggGroups": ["field", "fairy"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["cute_charm", "normalize"], "hiddenAbilities": ["wonder_skin"], - "baseStats": { "attack": 65, "defense": 65, "hp": 70, "specialAttack": 55, "specialDefense": 55, "speed": 90 }, + "baseStats": { + "attack": 65, + "defense": 65, + "hp": 70, + "specialAttack": 55, + "specialDefense": 55, + "speed": 90 + }, "evReward": { "hp": 1, "speed": 1 }, "types": ["normal"], "height": 1.1, "weight": 32.6, "baseExp": 140, "moves": { - "levelMoves": [{ "name": "double_slap", "level": 1 }, { "name": "sing", "level": 1 }, { "name": "attract", "level": 1 }, { "name": "fake_out", "level": 1 }], + "levelMoves": [ + { "name": "double_slap", "level": 1 }, + { "name": "sing", "level": 1 }, + { "name": "attract", "level": 1 }, + { "name": "fake_out", "level": 1 } + ], "eggMoves": [], "tutorMoves": [], "machine": [ @@ -14088,21 +15772,31 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["vital_spirit", "hustle"], "hiddenAbilities": ["insomnia"], - "baseStats": { "attack": 55, "defense": 45, "hp": 45, "specialAttack": 65, "specialDefense": 45, "speed": 75 }, + "baseStats": { + "attack": 55, + "defense": 45, + "hp": 45, + "specialAttack": 65, + "specialDefense": 45, + "speed": 75 + }, "evReward": { "speed": 1 }, "types": ["ice", "flying"], "height": 0.9, "weight": 16, "baseExp": 116, "moves": { - "levelMoves": [{ "name": "present", "level": 1 }, { "name": "drill_peck", "level": 25 }], + "levelMoves": [ + { "name": "present", "level": 1 }, + { "name": "drill_peck", "level": 25 } + ], "eggMoves": [ "ice_punch", "aurora_beam", @@ -14163,14 +15857,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["magician"], - "baseStats": { "attack": 69, "defense": 72, "hp": 75, "specialAttack": 114, "specialDefense": 100, "speed": 104 }, + "baseStats": { + "attack": 69, + "defense": 72, + "hp": 75, + "specialAttack": 114, + "specialDefense": 100, + "speed": 104 + }, "evReward": { "specialAttack": 3 }, "types": ["fire", "psychic"], "height": 1.5, @@ -14251,7 +15952,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "deoxys": { "species": "deoxys", @@ -14269,7 +15970,14 @@ "attack": { "abilities": ["pressure"], "hiddenAbilities": [], - "baseStats": { "attack": 180, "defense": 20, "hp": 50, "specialAttack": 180, "specialDefense": 20, "speed": 150 }, + "baseStats": { + "attack": 180, + "defense": 20, + "hp": 50, + "specialAttack": 180, + "specialDefense": 20, + "speed": 150 + }, "evReward": { "attack": 2, "specialAttack": 1 }, "types": ["psychic"], "height": 1.7, @@ -14350,7 +16058,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": [], - "baseStats": { "attack": 150, "defense": 50, "hp": 50, "specialAttack": 150, "specialDefense": 50, "speed": 150 }, + "baseStats": { + "attack": 150, + "defense": 50, + "hp": 50, + "specialAttack": 150, + "specialDefense": 50, + "speed": 150 + }, "evReward": { "attack": 1, "specialAttack": 1, "speed": 1 }, "types": ["psychic"], "height": 1.7, @@ -14431,7 +16146,14 @@ "defense": { "abilities": ["pressure"], "hiddenAbilities": [], - "baseStats": { "attack": 70, "defense": 160, "hp": 50, "specialAttack": 70, "specialDefense": 160, "speed": 90 }, + "baseStats": { + "attack": 70, + "defense": 160, + "hp": 50, + "specialAttack": 70, + "specialDefense": 160, + "speed": 90 + }, "evReward": { "defense": 2, "specialDefense": 1 }, "types": ["psychic"], "height": 1.7, @@ -14514,7 +16236,14 @@ "speed": { "abilities": ["pressure"], "hiddenAbilities": [], - "baseStats": { "attack": 95, "defense": 90, "hp": 50, "specialAttack": 95, "specialDefense": 90, "speed": 180 }, + "baseStats": { + "attack": 95, + "defense": 90, + "hp": 50, + "specialAttack": 95, + "specialDefense": 90, + "speed": 180 + }, "evReward": { "speed": 3 }, "types": ["psychic"], "height": 1.7, @@ -14604,14 +16333,21 @@ "catchRate": 75, "color": "white", "genderDifference": false, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["thick_fat", "hydration"], "hiddenAbilities": ["ice_body"], - "baseStats": { "attack": 70, "defense": 80, "hp": 90, "specialAttack": 70, "specialDefense": 95, "speed": 70 }, + "baseStats": { + "attack": 70, + "defense": 80, + "hp": 90, + "specialAttack": 70, + "specialDefense": 95, + "speed": 70 + }, "evReward": { "specialDefense": 2 }, "types": ["water", "ice"], "height": 1.7, @@ -14689,14 +16425,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["torrent"], "hiddenAbilities": ["shell_armor"], - "baseStats": { "attack": 75, "defense": 60, "hp": 75, "specialAttack": 83, "specialDefense": 60, "speed": 60 }, + "baseStats": { + "attack": 75, + "defense": 60, + "hp": 75, + "specialAttack": 83, + "specialDefense": 60, + "speed": 60 + }, "evReward": { "specialAttack": 2 }, "types": ["water"], "height": 0.8, @@ -14778,7 +16521,14 @@ "default": { "abilities": ["water_bubble"], "hiddenAbilities": ["water_absorb"], - "baseStats": { "attack": 40, "defense": 52, "hp": 38, "specialAttack": 40, "specialDefense": 72, "speed": 27 }, + "baseStats": { + "attack": 40, + "defense": 52, + "hp": 38, + "specialAttack": 40, + "specialDefense": 72, + "speed": 27 + }, "evReward": { "specialDefense": 1 }, "types": ["water", "bug"], "height": 0.3, @@ -14834,7 +16584,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "dhelmise": { "species": "dhelmise", @@ -14852,7 +16602,14 @@ "default": { "abilities": ["steelworker"], "hiddenAbilities": [], - "baseStats": { "attack": 131, "defense": 100, "hp": 70, "specialAttack": 86, "specialDefense": 90, "speed": 40 }, + "baseStats": { + "attack": 131, + "defense": 100, + "hp": 70, + "specialAttack": 86, + "specialDefense": 90, + "speed": 40 + }, "evReward": { "attack": 2 }, "types": ["ghost", "grass"], "height": 3.9, @@ -14924,7 +16681,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "dialga": { "species": "dialga", @@ -14942,7 +16699,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 120, "defense": 120, "hp": 100, "specialAttack": 150, "specialDefense": 100, "speed": 90 }, + "baseStats": { + "attack": 120, + "defense": 120, + "hp": 100, + "specialAttack": 150, + "specialDefense": 100, + "speed": 90 + }, "evReward": { "specialAttack": 3 }, "types": ["steel", "dragon"], "height": 5.4, @@ -15033,7 +16797,14 @@ "default": { "abilities": ["clear_body"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 150, "hp": 50, "specialAttack": 100, "specialDefense": 150, "speed": 50 }, + "baseStats": { + "attack": 100, + "defense": 150, + "hp": 50, + "specialAttack": 100, + "specialDefense": 150, + "speed": 50 + }, "evReward": { "defense": 1, "specialDefense": 2 }, "types": ["rock", "fairy"], "height": 0.7, @@ -15106,7 +16877,14 @@ "isMega": true, "abilities": ["magic_bounce"], "hiddenAbilities": [], - "baseStats": { "attack": 160, "defense": 110, "hp": 50, "specialAttack": 160, "specialDefense": 110, "speed": 110 }, + "baseStats": { + "attack": 160, + "defense": 110, + "hp": 50, + "specialAttack": 160, + "specialDefense": 110, + "speed": 110 + }, "evReward": { "defense": 1, "specialDefense": 2 }, "types": ["rock", "fairy"], "height": 1.1, @@ -15176,7 +16954,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "diggersby": { "species": "diggersby", @@ -15187,14 +16965,21 @@ "catchRate": 127, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["pickup", "cheek_pouch"], "hiddenAbilities": ["huge_power"], - "baseStats": { "attack": 56, "defense": 77, "hp": 85, "specialAttack": 50, "specialDefense": 77, "speed": 78 }, + "baseStats": { + "attack": 56, + "defense": 77, + "hp": 85, + "specialAttack": 50, + "specialDefense": 77, + "speed": 78 + }, "evReward": { "hp": 2 }, "types": ["normal", "ground"], "height": 1, @@ -15270,7 +17055,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "diglett": { "species": "diglett", @@ -15281,14 +17066,21 @@ "catchRate": 255, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "alola": { "abilities": ["sand_veil", "tangling_hair"], "hiddenAbilities": ["sand_force"], - "baseStats": { "attack": 55, "defense": 30, "hp": 10, "specialAttack": 35, "specialDefense": 45, "speed": 90 }, + "baseStats": { + "attack": 55, + "defense": 30, + "hp": 10, + "specialAttack": 35, + "specialDefense": 45, + "speed": 90 + }, "evReward": { "speed": 1 }, "types": ["ground", "steel"], "height": 0.2, @@ -15348,7 +17140,14 @@ "default": { "abilities": ["sand_veil", "arena_trap"], "hiddenAbilities": ["sand_force"], - "baseStats": { "attack": 55, "defense": 25, "hp": 10, "specialAttack": 35, "specialDefense": 45, "speed": 95 }, + "baseStats": { + "attack": 55, + "defense": 25, + "hp": 10, + "specialAttack": 35, + "specialDefense": 45, + "speed": 95 + }, "evReward": { "speed": 1 }, "types": ["ground"], "height": 0.2, @@ -15371,7 +17170,21 @@ { "name": "earthquake", "level": 39 }, { "name": "fissure", "level": 43 } ], - "eggMoves": ["headbutt", "screech", "reversal", "feint_attack", "endure", "pursuit", "ancient_power", "beat_up", "uproar", "memento", "astonish", "mud_bomb", "final_gambit"], + "eggMoves": [ + "headbutt", + "screech", + "reversal", + "feint_attack", + "endure", + "pursuit", + "ancient_power", + "beat_up", + "uproar", + "memento", + "astonish", + "mud_bomb", + "final_gambit" + ], "tutorMoves": [], "machine": [ "earthquake", @@ -15422,13 +17235,26 @@ "default": { "abilities": ["limber"], "hiddenAbilities": ["imposter"], - "baseStats": { "attack": 48, "defense": 48, "hp": 48, "specialAttack": 48, "specialDefense": 48, "speed": 48 }, + "baseStats": { + "attack": 48, + "defense": 48, + "hp": 48, + "specialAttack": 48, + "specialDefense": 48, + "speed": 48 + }, "evReward": { "hp": 1 }, "types": ["normal"], "height": 0.3, "weight": 4, "baseExp": 101, - "moves": { "levelMoves": [{ "name": "transform", "level": 1 }], "eggMoves": [], "tutorMoves": [], "machine": [], "formeChange": [] } + "moves": { + "levelMoves": [{ "name": "transform", "level": 1 }], + "eggMoves": [], + "tutorMoves": [], + "machine": [], + "formeChange": [] + } } }, "evolutions": [] @@ -15449,7 +17275,14 @@ "default": { "abilities": ["run_away", "early_bird"], "hiddenAbilities": ["tangled_feet"], - "baseStats": { "attack": 110, "defense": 70, "hp": 60, "specialAttack": 60, "specialDefense": 60, "speed": 110 }, + "baseStats": { + "attack": 110, + "defense": 70, + "hp": 60, + "specialAttack": 60, + "specialDefense": 60, + "speed": 110 + }, "evReward": { "attack": 2 }, "types": ["normal", "flying"], "height": 1.8, @@ -15532,7 +17365,14 @@ "default": { "abilities": ["run_away", "early_bird"], "hiddenAbilities": ["tangled_feet"], - "baseStats": { "attack": 85, "defense": 45, "hp": 35, "specialAttack": 35, "specialDefense": 35, "speed": 75 }, + "baseStats": { + "attack": 85, + "defense": 45, + "hp": 35, + "specialAttack": 35, + "specialDefense": 35, + "speed": 75 + }, "evReward": { "attack": 1 }, "types": ["normal", "flying"], "height": 1.4, @@ -15557,7 +17397,18 @@ { "name": "endeavor", "level": 47 }, { "name": "thrash", "level": 50 } ], - "eggMoves": ["supersonic", "quick_attack", "haze", "mirror_move", "flail", "feint_attack", "endeavor", "natural_gift", "assurance", "brave_bird"], + "eggMoves": [ + "supersonic", + "quick_attack", + "haze", + "mirror_move", + "flail", + "feint_attack", + "endeavor", + "natural_gift", + "assurance", + "brave_bird" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -15599,14 +17450,21 @@ "catchRate": 60, "color": "gray", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["sturdy"], "hiddenAbilities": ["sand_veil"], - "baseStats": { "attack": 120, "defense": 120, "hp": 90, "specialAttack": 60, "specialDefense": 60, "speed": 50 }, + "baseStats": { + "attack": 120, + "defense": 120, + "hp": 90, + "specialAttack": 60, + "specialDefense": 60, + "speed": 50 + }, "evReward": { "attack": 1, "defense": 1 }, "types": ["ground"], "height": 1.1, @@ -15687,7 +17545,14 @@ "default": { "abilities": ["no_guard"], "hiddenAbilities": [], - "baseStats": { "attack": 110, "defense": 150, "hp": 59, "specialAttack": 45, "specialDefense": 49, "speed": 35 }, + "baseStats": { + "attack": 110, + "defense": 150, + "hp": 59, + "specialAttack": 45, + "specialDefense": 49, + "speed": 35 + }, "evReward": { "defense": 2 }, "types": ["steel", "ghost"], "height": 0.8, @@ -15744,7 +17609,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "dragalge": { "species": "dragalge", @@ -15762,7 +17627,14 @@ "default": { "abilities": ["poison_point", "poison_touch"], "hiddenAbilities": ["adaptability"], - "baseStats": { "attack": 75, "defense": 90, "hp": 65, "specialAttack": 97, "specialDefense": 123, "speed": 44 }, + "baseStats": { + "attack": 75, + "defense": 90, + "hp": 65, + "specialAttack": 97, + "specialDefense": 123, + "speed": 44 + }, "evReward": { "specialDefense": 2 }, "types": ["poison", "dragon"], "height": 1.8, @@ -15829,7 +17701,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "dragonair": { "species": "dragonair", @@ -15847,7 +17719,14 @@ "default": { "abilities": ["shed_skin"], "hiddenAbilities": ["marvel_scale"], - "baseStats": { "attack": 84, "defense": 65, "hp": 61, "specialAttack": 70, "specialDefense": 70, "speed": 70 }, + "baseStats": { + "attack": 84, + "defense": 65, + "hp": 61, + "specialAttack": 70, + "specialDefense": 70, + "speed": 70 + }, "evReward": { "attack": 2 }, "types": ["dragon"], "height": 4, @@ -15929,7 +17808,14 @@ "default": { "abilities": ["inner_focus"], "hiddenAbilities": ["multiscale"], - "baseStats": { "attack": 134, "defense": 95, "hp": 91, "specialAttack": 100, "specialDefense": 100, "speed": 80 }, + "baseStats": { + "attack": 134, + "defense": 95, + "hp": 91, + "specialAttack": 100, + "specialDefense": 100, + "speed": 80 + }, "evReward": { "attack": 3 }, "types": ["dragon", "flying"], "height": 2.2, @@ -16035,7 +17921,14 @@ "default": { "abilities": ["berserk", "sap_sipper"], "hiddenAbilities": ["cloud_nine"], - "baseStats": { "attack": 60, "defense": 85, "hp": 78, "specialAttack": 135, "specialDefense": 91, "speed": 36 }, + "baseStats": { + "attack": 60, + "defense": 85, + "hp": 78, + "specialAttack": 135, + "specialDefense": 91, + "speed": 36 + }, "evReward": { "specialAttack": 2 }, "types": ["normal", "dragon"], "height": 3, @@ -16059,7 +17952,13 @@ { "name": "hyper_voice", "level": 49 }, { "name": "outrage", "level": 53 } ], - "eggMoves": ["razor_wind", "mist", "dragon_rush", "hurricane", "play_rough"], + "eggMoves": [ + "razor_wind", + "mist", + "dragon_rush", + "hurricane", + "play_rough" + ], "tutorMoves": ["draco_meteor"], "machine": [ "fly", @@ -16116,7 +18015,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "drapion": { "species": "drapion", @@ -16134,7 +18033,14 @@ "default": { "abilities": ["battle_armor", "sniper"], "hiddenAbilities": ["keen_eye"], - "baseStats": { "attack": 90, "defense": 110, "hp": 70, "specialAttack": 60, "specialDefense": 75, "speed": 95 }, + "baseStats": { + "attack": 90, + "defense": 110, + "hp": 70, + "specialAttack": 60, + "specialDefense": 75, + "speed": 95 + }, "evReward": { "defense": 2 }, "types": ["poison", "dark"], "height": 1.3, @@ -16231,7 +18137,14 @@ "default": { "abilities": ["shed_skin"], "hiddenAbilities": ["marvel_scale"], - "baseStats": { "attack": 64, "defense": 45, "hp": 41, "specialAttack": 50, "specialDefense": 50, "speed": 50 }, + "baseStats": { + "attack": 64, + "defense": 45, + "hp": 41, + "specialAttack": 50, + "specialDefense": 50, + "speed": 50 + }, "evReward": { "attack": 1 }, "types": ["dragon"], "height": 1.8, @@ -16254,7 +18167,19 @@ { "name": "outrage", "level": 55 }, { "name": "hyper_beam", "level": 61 } ], - "eggMoves": ["supersonic", "mist", "haze", "dragon_breath", "iron_tail", "extreme_speed", "dragon_dance", "water_pulse", "dragon_pulse", "dragon_rush", "aqua_jet"], + "eggMoves": [ + "supersonic", + "mist", + "haze", + "dragon_breath", + "iron_tail", + "extreme_speed", + "dragon_dance", + "water_pulse", + "dragon_pulse", + "dragon_rush", + "aqua_jet" + ], "tutorMoves": ["draco_meteor"], "machine": [ "flamethrower", @@ -16304,14 +18229,21 @@ "catchRate": 60, "color": "purple", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 30, "tags": [], "formes": { "default": { "abilities": ["aftermath", "unburden"], "hiddenAbilities": ["flare_boost"], - "baseStats": { "attack": 80, "defense": 44, "hp": 150, "specialAttack": 90, "specialDefense": 54, "speed": 80 }, + "baseStats": { + "attack": 80, + "defense": 44, + "hp": 150, + "specialAttack": 90, + "specialDefense": 54, + "speed": 80 + }, "evReward": { "hp": 2 }, "types": ["ghost", "flying"], "height": 1.2, @@ -16393,14 +18325,21 @@ "catchRate": 125, "color": "purple", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 30, "tags": [], "formes": { "default": { "abilities": ["aftermath", "unburden"], "hiddenAbilities": ["flare_boost"], - "baseStats": { "attack": 50, "defense": 34, "hp": 90, "specialAttack": 60, "specialDefense": 44, "speed": 70 }, + "baseStats": { + "attack": 50, + "defense": 34, + "hp": 90, + "specialAttack": 60, + "specialDefense": 44, + "speed": 70 + }, "evReward": { "hp": 1 }, "types": ["ghost", "flying"], "height": 0.4, @@ -16424,7 +18363,18 @@ { "name": "baton_pass", "level": 44 }, { "name": "explosion", "level": 50 } ], - "eggMoves": ["body_slam", "disable", "hypnosis", "haze", "destiny_bond", "memento", "weather_ball", "tailwind", "defog", "clear_smog"], + "eggMoves": [ + "body_slam", + "disable", + "hypnosis", + "haze", + "destiny_bond", + "memento", + "weather_ball", + "tailwind", + "defog", + "clear_smog" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -16475,14 +18425,21 @@ "catchRate": 120, "color": "gray", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["sand_rush", "sand_force"], "hiddenAbilities": ["mold_breaker"], - "baseStats": { "attack": 85, "defense": 40, "hp": 60, "specialAttack": 30, "specialDefense": 45, "speed": 68 }, + "baseStats": { + "attack": 85, + "defense": 40, + "hp": 60, + "specialAttack": 30, + "specialDefense": 45, + "speed": 68 + }, "evReward": { "attack": 1 }, "types": ["ground"], "height": 0.3, @@ -16506,7 +18463,16 @@ { "name": "drill_run", "level": 43 }, { "name": "fissure", "level": 47 } ], - "eggMoves": ["submission", "skull_bash", "rapid_spin", "crush_claw", "metal_sound", "iron_defense", "earth_power", "rock_climb"], + "eggMoves": [ + "submission", + "skull_bash", + "rapid_spin", + "crush_claw", + "metal_sound", + "iron_defense", + "earth_power", + "rock_climb" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -16552,14 +18518,21 @@ "catchRate": 190, "color": "yellow", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["insomnia", "forewarn"], "hiddenAbilities": ["inner_focus"], - "baseStats": { "attack": 48, "defense": 45, "hp": 60, "specialAttack": 43, "specialDefense": 90, "speed": 42 }, + "baseStats": { + "attack": 48, + "defense": 45, + "hp": 60, + "specialAttack": 43, + "specialDefense": 90, + "speed": 42 + }, "evReward": { "specialDefense": 1 }, "types": ["psychic"], "height": 1, @@ -16585,7 +18558,20 @@ { "name": "psyshock", "level": 57 }, { "name": "future_sight", "level": 61 } ], - "eggMoves": ["fire_punch", "ice_punch", "thunder_punch", "barrier", "flatter", "role_play", "assist", "skill_swap", "secret_power", "guard_swap", "nasty_plot", "psycho_cut"], + "eggMoves": [ + "fire_punch", + "ice_punch", + "thunder_punch", + "barrier", + "flatter", + "role_play", + "assist", + "skill_swap", + "secret_power", + "guard_swap", + "nasty_plot", + "psycho_cut" + ], "tutorMoves": [], "machine": [ "thunder_wave", @@ -16646,7 +18632,14 @@ "default": { "abilities": ["rough_skin", "sheer_force"], "hiddenAbilities": ["mold_breaker"], - "baseStats": { "attack": 120, "defense": 90, "hp": 77, "specialAttack": 60, "specialDefense": 90, "speed": 48 }, + "baseStats": { + "attack": 120, + "defense": 90, + "hp": 77, + "specialAttack": 60, + "specialDefense": 90, + "speed": 48 + }, "evReward": { "attack": 2 }, "types": ["dragon"], "height": 1.6, @@ -16671,7 +18664,19 @@ { "name": "superpower", "level": 55 }, { "name": "outrage", "level": 62 } ], - "eggMoves": ["glare", "feint_attack", "pursuit", "iron_tail", "metal_claw", "snatch", "crush_claw", "poison_tail", "sucker_punch", "thunder_fang", "fire_fang"], + "eggMoves": [ + "glare", + "feint_attack", + "pursuit", + "iron_tail", + "metal_claw", + "snatch", + "crush_claw", + "poison_tail", + "sucker_punch", + "thunder_fang", + "fire_fang" + ], "tutorMoves": ["draco_meteor"], "machine": [ "roar", @@ -16737,7 +18742,14 @@ "default": { "abilities": ["keen_eye", "big_pecks"], "hiddenAbilities": ["hydration"], - "baseStats": { "attack": 44, "defense": 50, "hp": 62, "specialAttack": 44, "specialDefense": 50, "speed": 55 }, + "baseStats": { + "attack": 44, + "defense": 50, + "hp": 62, + "specialAttack": 44, + "specialDefense": 50, + "speed": 55 + }, "evReward": { "hp": 1 }, "types": ["water", "flying"], "height": 0.5, @@ -16761,7 +18773,16 @@ { "name": "brave_bird", "level": 41 }, { "name": "hurricane", "level": 46 } ], - "eggMoves": ["gust", "mirror_move", "steel_wing", "mud_sport", "air_cutter", "brine", "lucky_chant", "me_first"], + "eggMoves": [ + "gust", + "mirror_move", + "steel_wing", + "mud_sport", + "air_cutter", + "brine", + "lucky_chant", + "me_first" + ], "tutorMoves": [], "machine": [ "fly", @@ -16803,14 +18824,21 @@ "catchRate": 50, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "alola": { "abilities": ["sand_veil", "tangling_hair"], "hiddenAbilities": ["sand_force"], - "baseStats": { "attack": 100, "defense": 60, "hp": 35, "specialAttack": 50, "specialDefense": 70, "speed": 110 }, + "baseStats": { + "attack": 100, + "defense": 60, + "hp": 35, + "specialAttack": 50, + "specialDefense": 70, + "speed": 110 + }, "evReward": { "attack": 2 }, "types": ["ground", "steel"], "height": 0.7, @@ -16880,7 +18908,14 @@ "default": { "abilities": ["sand_veil", "arena_trap"], "hiddenAbilities": ["sand_force"], - "baseStats": { "attack": 100, "defense": 50, "hp": 35, "specialAttack": 50, "specialDefense": 70, "speed": 120 }, + "baseStats": { + "attack": 100, + "defense": 50, + "hp": 35, + "specialAttack": 50, + "specialDefense": 70, + "speed": 120 + }, "evReward": { "speed": 2 }, "types": ["ground"], "height": 0.7, @@ -16957,14 +18992,21 @@ "catchRate": 190, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["serene_grace", "run_away"], "hiddenAbilities": ["rattled"], - "baseStats": { "attack": 70, "defense": 70, "hp": 100, "specialAttack": 65, "specialDefense": 65, "speed": 45 }, + "baseStats": { + "attack": 70, + "defense": 70, + "hp": 100, + "specialAttack": 65, + "specialDefense": 65, + "speed": 45 + }, "evReward": { "hp": 1 }, "types": ["normal"], "height": 1.5, @@ -16994,7 +19036,21 @@ { "name": "endure", "level": 46 }, { "name": "flail", "level": 48 } ], - "eggMoves": ["headbutt", "bite", "agility", "bide", "snore", "curse", "sleep_talk", "ancient_power", "magic_coat", "secret_power", "astonish", "trump_card", "hex"], + "eggMoves": [ + "headbutt", + "bite", + "agility", + "bide", + "snore", + "curse", + "sleep_talk", + "ancient_power", + "magic_coat", + "secret_power", + "astonish", + "trump_card", + "hex" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -17051,14 +19107,21 @@ "catchRate": 100, "color": "green", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overcoat", "magic_guard"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 40, "defense": 50, "hp": 65, "specialAttack": 125, "specialDefense": 60, "speed": 30 }, + "baseStats": { + "attack": 40, + "defense": 50, + "hp": 65, + "specialAttack": 125, + "specialDefense": 60, + "speed": 30 + }, "evReward": { "specialAttack": 2 }, "types": ["psychic"], "height": 0.6, @@ -17147,7 +19210,14 @@ "default": { "abilities": ["swarm", "hustle"], "hiddenAbilities": ["truant"], - "baseStats": { "attack": 109, "defense": 112, "hp": 58, "specialAttack": 48, "specialDefense": 48, "speed": 109 }, + "baseStats": { + "attack": 109, + "defense": 112, + "hp": 58, + "specialAttack": 48, + "specialDefense": 48, + "speed": 109 + }, "evReward": { "defense": 2 }, "types": ["bug", "steel"], "height": 0.3, @@ -17173,7 +19243,14 @@ { "name": "guillotine", "level": 51 }, { "name": "metal_sound", "level": 56 } ], - "eggMoves": ["screech", "feint_attack", "endure", "baton_pass", "thunder_fang", "rock_climb"], + "eggMoves": [ + "screech", + "feint_attack", + "endure", + "baton_pass", + "thunder_fang", + "rock_climb" + ], "tutorMoves": [], "machine": [ "thunder_wave", @@ -17218,14 +19295,21 @@ "catchRate": 90, "color": "black", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["pressure"], "hiddenAbilities": ["frisk"], - "baseStats": { "attack": 70, "defense": 130, "hp": 40, "specialAttack": 60, "specialDefense": 130, "speed": 25 }, + "baseStats": { + "attack": 70, + "defense": 130, + "hp": 40, + "specialAttack": 60, + "specialDefense": 130, + "speed": 25 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["ghost"], "height": 1.6, @@ -17308,7 +19392,9 @@ } } }, - "evolutions": [{ "species": "dusknoir", "method": "tradeitem", "data": "reapercloth" }] + "evolutions": [ + { "species": "dusknoir", "method": "tradeitem", "data": "reapercloth" } + ] }, "dusknoir": { "species": "dusknoir", @@ -17319,14 +19405,21 @@ "catchRate": 45, "color": "black", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["pressure"], "hiddenAbilities": ["frisk"], - "baseStats": { "attack": 100, "defense": 135, "hp": 45, "specialAttack": 65, "specialDefense": 135, "speed": 45 }, + "baseStats": { + "attack": 100, + "defense": 135, + "hp": 45, + "specialAttack": 65, + "specialDefense": 135, + "speed": 45 + }, "evReward": { "defense": 1, "specialDefense": 2 }, "types": ["ghost"], "height": 2.2, @@ -17420,14 +19513,21 @@ "catchRate": 190, "color": "black", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["levitate"], "hiddenAbilities": ["frisk"], - "baseStats": { "attack": 40, "defense": 90, "hp": 20, "specialAttack": 30, "specialDefense": 90, "speed": 25 }, + "baseStats": { + "attack": 40, + "defense": 90, + "hp": 20, + "specialAttack": 30, + "specialDefense": 90, + "speed": 25 + }, "evReward": { "specialDefense": 1 }, "types": ["ghost"], "height": 0.8, @@ -17451,7 +19551,18 @@ { "name": "payback", "level": 49 }, { "name": "future_sight", "level": 54 } ], - "eggMoves": ["haze", "feint_attack", "destiny_bond", "pain_split", "memento", "skill_swap", "imprison", "grudge", "dark_pulse", "ominous_wind"], + "eggMoves": [ + "haze", + "feint_attack", + "destiny_bond", + "pain_split", + "memento", + "skill_swap", + "imprison", + "grudge", + "dark_pulse", + "ominous_wind" + ], "tutorMoves": [], "machine": [ "ice_beam", @@ -17511,7 +19622,14 @@ "default": { "abilities": ["shield_dust"], "hiddenAbilities": ["compound_eyes"], - "baseStats": { "attack": 50, "defense": 70, "hp": 60, "specialAttack": 50, "specialDefense": 90, "speed": 65 }, + "baseStats": { + "attack": 50, + "defense": 70, + "hp": 60, + "specialAttack": 50, + "specialDefense": 90, + "speed": 65 + }, "evReward": { "specialDefense": 3 }, "types": ["bug", "poison"], "height": 1.2, @@ -17590,7 +19708,14 @@ "default": { "abilities": ["sturdy", "shell_armor"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 65, "defense": 85, "hp": 50, "specialAttack": 35, "specialDefense": 35, "speed": 55 }, + "baseStats": { + "attack": 65, + "defense": 85, + "hp": 50, + "specialAttack": 35, + "specialDefense": 35, + "speed": 55 + }, "evReward": { "defense": 1 }, "types": ["bug", "rock"], "height": 0.3, @@ -17614,7 +19739,18 @@ { "name": "flail", "level": 41 }, { "name": "rock_wrecker", "level": 43 } ], - "eggMoves": ["counter", "curse", "spikes", "endure", "sand_tomb", "iron_defense", "block", "night_slash", "wide_guard", "rototiller"], + "eggMoves": [ + "counter", + "curse", + "spikes", + "endure", + "sand_tomb", + "iron_defense", + "block", + "night_slash", + "wide_guard", + "rototiller" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -17662,14 +19798,21 @@ "catchRate": 60, "color": "blue", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 85, "defense": 70, "hp": 65, "specialAttack": 75, "specialDefense": 70, "speed": 40 }, + "baseStats": { + "attack": 85, + "defense": 70, + "hp": 65, + "specialAttack": 75, + "specialDefense": 70, + "speed": 40 + }, "evReward": { "attack": 2 }, "types": ["electric"], "height": 1.2, @@ -17727,7 +19870,9 @@ } } }, - "evolutions": [{ "species": "eelektross", "method": "item", "data": "thunderstone" }] + "evolutions": [ + { "species": "eelektross", "method": "item", "data": "thunderstone" } + ] }, "eelektross": { "species": "eelektross", @@ -17738,14 +19883,21 @@ "catchRate": 30, "color": "blue", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 115, "defense": 80, "hp": 85, "specialAttack": 105, "specialDefense": 80, "speed": 50 }, + "baseStats": { + "attack": 115, + "defense": 80, + "hp": 85, + "specialAttack": 105, + "specialDefense": 80, + "speed": 50 + }, "evReward": { "attack": 3 }, "types": ["electric"], "height": 2.1, @@ -17818,14 +19970,21 @@ "catchRate": 45, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 35, "tags": [], "formes": { "default": { "abilities": ["run_away", "adaptability"], "hiddenAbilities": ["anticipation"], - "baseStats": { "attack": 55, "defense": 50, "hp": 55, "specialAttack": 45, "specialDefense": 65, "speed": 55 }, + "baseStats": { + "attack": 55, + "defense": 50, + "hp": 55, + "specialAttack": 45, + "specialDefense": 65, + "speed": 55 + }, "evReward": { "specialDefense": 1 }, "types": ["normal"], "height": 0.3, @@ -17851,7 +20010,22 @@ { "name": "last_resort", "level": 41 }, { "name": "trump_card", "level": 45 } ], - "eggMoves": ["curse", "flail", "detect", "endure", "charm", "wish", "yawn", "fake_tears", "tickle", "covet", "natural_gift", "captivate", "synchronoise", "stored_power"], + "eggMoves": [ + "curse", + "flail", + "detect", + "endure", + "charm", + "wish", + "yawn", + "fake_tears", + "tickle", + "covet", + "natural_gift", + "captivate", + "synchronoise", + "stored_power" + ], "tutorMoves": [], "machine": [ "toxic", @@ -17897,14 +20071,21 @@ "catchRate": 255, "color": "purple", "genderDifference": false, - "eggGroups": ["ground", "dragon"], + "eggGroups": ["field", "dragon"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["intimidate", "shed_skin"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 60, "defense": 44, "hp": 35, "specialAttack": 40, "specialDefense": 54, "speed": 55 }, + "baseStats": { + "attack": 60, + "defense": 44, + "hp": 35, + "specialAttack": 40, + "specialDefense": 54, + "speed": 55 + }, "evReward": { "attack": 1 }, "types": ["poison"], "height": 2, @@ -17930,7 +20111,20 @@ { "name": "coil", "level": 44 }, { "name": "gunk_shot", "level": 49 } ], - "eggMoves": ["slam", "disable", "spite", "scary_face", "pursuit", "iron_tail", "beat_up", "snatch", "poison_fang", "poison_tail", "sucker_punch", "switcheroo"], + "eggMoves": [ + "slam", + "disable", + "spite", + "scary_face", + "pursuit", + "iron_tail", + "beat_up", + "snatch", + "poison_fang", + "poison_tail", + "sucker_punch", + "switcheroo" + ], "tutorMoves": [], "machine": [ "earthquake", @@ -17979,14 +20173,21 @@ "catchRate": 45, "color": "yellow", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["static"], "hiddenAbilities": ["vital_spirit"], - "baseStats": { "attack": 83, "defense": 57, "hp": 65, "specialAttack": 95, "specialDefense": 85, "speed": 105 }, + "baseStats": { + "attack": 83, + "defense": 57, + "hp": 65, + "specialAttack": 95, + "specialDefense": 85, + "speed": 105 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 1.1, @@ -18048,7 +20249,9 @@ } } }, - "evolutions": [{ "species": "electivire", "method": "tradeitem", "data": "electirizer" }] + "evolutions": [ + { "species": "electivire", "method": "tradeitem", "data": "electirizer" } + ] }, "electivire": { "species": "electivire", @@ -18059,14 +20262,21 @@ "catchRate": 30, "color": "yellow", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["motor_drive"], "hiddenAbilities": ["vital_spirit"], - "baseStats": { "attack": 123, "defense": 67, "hp": 75, "specialAttack": 95, "specialDefense": 85, "speed": 95 }, + "baseStats": { + "attack": 123, + "defense": 67, + "hp": 75, + "specialAttack": 95, + "specialDefense": 85, + "speed": 95 + }, "evReward": { "attack": 3 }, "types": ["electric"], "height": 1.8, @@ -18152,14 +20362,21 @@ "catchRate": 120, "color": "green", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["static", "lightning_rod"], "hiddenAbilities": ["minus"], - "baseStats": { "attack": 45, "defense": 40, "hp": 40, "specialAttack": 65, "specialDefense": 40, "speed": 65 }, + "baseStats": { + "attack": 45, + "defense": 40, + "hp": 40, + "specialAttack": 65, + "specialDefense": 40, + "speed": 65 + }, "evReward": { "speed": 1 }, "types": ["electric"], "height": 0.6, @@ -18249,7 +20466,14 @@ "default": { "abilities": ["soundproof", "static"], "hiddenAbilities": ["aftermath"], - "baseStats": { "attack": 50, "defense": 70, "hp": 60, "specialAttack": 80, "specialDefense": 80, "speed": 150 }, + "baseStats": { + "attack": 50, + "defense": 70, + "hp": 60, + "specialAttack": 80, + "specialDefense": 80, + "speed": 150 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 1.2, @@ -18332,7 +20556,14 @@ "default": { "abilities": ["static"], "hiddenAbilities": ["vital_spirit"], - "baseStats": { "attack": 63, "defense": 37, "hp": 45, "specialAttack": 65, "specialDefense": 55, "speed": 95 }, + "baseStats": { + "attack": 63, + "defense": 37, + "hp": 45, + "specialAttack": 65, + "specialDefense": 55, + "speed": 95 + }, "evReward": { "speed": 1 }, "types": ["electric"], "height": 0.6, @@ -18355,7 +20586,19 @@ { "name": "thunderbolt", "level": 40 }, { "name": "thunder", "level": 43 } ], - "eggMoves": ["karate_chop", "fire_punch", "ice_punch", "rolling_kick", "meditate", "barrier", "dynamic_punch", "cross_chop", "focus_punch", "hammer_arm", "feint"], + "eggMoves": [ + "karate_chop", + "fire_punch", + "ice_punch", + "rolling_kick", + "meditate", + "barrier", + "dynamic_punch", + "cross_chop", + "focus_punch", + "hammer_arm", + "feint" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -18400,14 +20643,21 @@ "catchRate": 255, "color": "blue", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["telepathy", "synchronize"], "hiddenAbilities": ["analytic"], - "baseStats": { "attack": 55, "defense": 55, "hp": 55, "specialAttack": 85, "specialDefense": 55, "speed": 30 }, + "baseStats": { + "attack": 55, + "defense": 55, + "hp": 55, + "specialAttack": 85, + "specialDefense": 55, + "speed": 30 + }, "evReward": { "specialAttack": 1 }, "types": ["psychic"], "height": 0.5, @@ -18434,7 +20684,18 @@ { "name": "synchronoise", "level": 53 }, { "name": "wonder_room", "level": 56 } ], - "eggMoves": ["disable", "teleport", "barrier", "skill_swap", "astonish", "cosmic_power", "power_swap", "guard_swap", "nasty_plot", "ally_switch"], + "eggMoves": [ + "disable", + "teleport", + "barrier", + "skill_swap", + "astonish", + "cosmic_power", + "power_swap", + "guard_swap", + "nasty_plot", + "ally_switch" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -18489,14 +20750,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["reckless"], - "baseStats": { "attack": 123, "defense": 65, "hp": 110, "specialAttack": 100, "specialDefense": 65, "speed": 65 }, + "baseStats": { + "attack": 123, + "defense": 65, + "hp": 110, + "specialAttack": 100, + "specialDefense": 65, + "speed": 65 + }, "evReward": { "attack": 3 }, "types": ["fire", "fighting"], "height": 1.6, @@ -18587,14 +20855,21 @@ "catchRate": 200, "color": "white", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["static"], "hiddenAbilities": ["motor_drive"], - "baseStats": { "attack": 75, "defense": 60, "hp": 55, "specialAttack": 75, "specialDefense": 60, "speed": 103 }, + "baseStats": { + "attack": 75, + "defense": 60, + "hp": 55, + "specialAttack": 75, + "specialDefense": 60, + "speed": 103 + }, "evReward": { "speed": 2 }, "types": ["electric", "flying"], "height": 0.4, @@ -18619,7 +20894,19 @@ { "name": "agility", "level": 46 }, { "name": "discharge", "level": 50 } ], - "eggMoves": ["charm", "baton_pass", "iron_tail", "astonish", "tickle", "covet", "shock_wave", "roost", "air_slash", "ion_deluge", "speed_swap"], + "eggMoves": [ + "charm", + "baton_pass", + "iron_tail", + "astonish", + "tickle", + "covet", + "shock_wave", + "roost", + "air_slash", + "ion_deluge", + "speed_swap" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -18666,14 +20953,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["torrent"], "hiddenAbilities": ["defiant"], - "baseStats": { "attack": 86, "defense": 88, "hp": 84, "specialAttack": 111, "specialDefense": 101, "speed": 60 }, + "baseStats": { + "attack": 86, + "defense": 88, + "hp": 84, + "specialAttack": 111, + "specialDefense": 101, + "speed": 60 + }, "evReward": { "specialAttack": 3 }, "types": ["water", "steel"], "height": 1.7, @@ -18765,7 +21059,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": ["inner_focus"], - "baseStats": { "attack": 115, "defense": 85, "hp": 115, "specialAttack": 90, "specialDefense": 75, "speed": 100 }, + "baseStats": { + "attack": 115, + "defense": 85, + "hp": 115, + "specialAttack": 90, + "specialDefense": 75, + "speed": 100 + }, "evReward": { "attack": 2, "hp": 1 }, "types": ["fire"], "height": 2.1, @@ -18851,7 +21152,14 @@ "default": { "abilities": ["swarm", "shell_armor"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 135, "defense": 105, "hp": 70, "specialAttack": 60, "specialDefense": 105, "speed": 20 }, + "baseStats": { + "attack": 135, + "defense": 105, + "hp": 70, + "specialAttack": 60, + "specialDefense": 105, + "speed": 20 + }, "evReward": { "attack": 2 }, "types": ["bug", "steel"], "height": 1, @@ -18927,14 +21235,21 @@ "catchRate": 45, "color": "purple", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 35, "tags": [], "formes": { "default": { "abilities": ["synchronize"], "hiddenAbilities": ["magic_bounce"], - "baseStats": { "attack": 65, "defense": 60, "hp": 65, "specialAttack": 130, "specialDefense": 95, "speed": 110 }, + "baseStats": { + "attack": 65, + "defense": 60, + "hp": 65, + "specialAttack": 130, + "specialDefense": 95, + "speed": 110 + }, "evReward": { "specialAttack": 2 }, "types": ["psychic"], "height": 0.9, @@ -19009,14 +21324,21 @@ "catchRate": 190, "color": "gray", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["keen_eye", "infiltrator"], "hiddenAbilities": ["own_tempo"], - "baseStats": { "attack": 48, "defense": 54, "hp": 62, "specialAttack": 63, "specialDefense": 60, "speed": 68 }, + "baseStats": { + "attack": 48, + "defense": 54, + "hp": 62, + "specialAttack": 63, + "specialDefense": 60, + "speed": 68 + }, "evReward": { "speed": 1 }, "types": ["psychic"], "height": 0.3, @@ -19076,7 +21398,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "excadrill": { "species": "excadrill", @@ -19087,14 +21409,21 @@ "catchRate": 60, "color": "gray", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["sand_rush", "sand_force"], "hiddenAbilities": ["mold_breaker"], - "baseStats": { "attack": 135, "defense": 60, "hp": 110, "specialAttack": 50, "specialDefense": 65, "speed": 88 }, + "baseStats": { + "attack": 135, + "defense": 60, + "hp": 110, + "specialAttack": 50, + "specialDefense": 65, + "speed": 88 + }, "evReward": { "attack": 2 }, "types": ["ground", "steel"], "height": 0.7, @@ -19174,14 +21503,21 @@ "catchRate": 90, "color": "pink", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll"], "hiddenAbilities": ["harvest"], - "baseStats": { "attack": 40, "defense": 80, "hp": 60, "specialAttack": 60, "specialDefense": 45, "speed": 40 }, + "baseStats": { + "attack": 40, + "defense": 80, + "hp": 60, + "specialAttack": 60, + "specialDefense": 45, + "speed": 40 + }, "evReward": { "defense": 1 }, "types": ["grass", "psychic"], "height": 0.4, @@ -19258,7 +21594,9 @@ } } }, - "evolutions": [{ "species": "exeggutor", "method": "item", "data": "leafstone" }] + "evolutions": [ + { "species": "exeggutor", "method": "item", "data": "leafstone" } + ] }, "exeggutor": { "species": "exeggutor", @@ -19269,14 +21607,21 @@ "catchRate": 45, "color": "yellow", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "alola": { "abilities": ["frisk"], "hiddenAbilities": ["harvest"], - "baseStats": { "attack": 105, "defense": 85, "hp": 95, "specialAttack": 125, "specialDefense": 75, "speed": 45 }, + "baseStats": { + "attack": 105, + "defense": 85, + "hp": 95, + "specialAttack": 125, + "specialDefense": 75, + "speed": 45 + }, "evReward": { "specialAttack": 2 }, "types": ["grass", "dragon"], "height": 10.9, @@ -19344,7 +21689,14 @@ "default": { "abilities": ["chlorophyll"], "hiddenAbilities": ["harvest"], - "baseStats": { "attack": 95, "defense": 85, "hp": 95, "specialAttack": 125, "specialDefense": 75, "speed": 55 }, + "baseStats": { + "attack": 95, + "defense": 85, + "hp": 95, + "specialAttack": 125, + "specialDefense": 75, + "speed": 55 + }, "evReward": { "specialAttack": 2 }, "types": ["grass", "psychic"], "height": 2, @@ -19415,14 +21767,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["monster", "ground"], + "eggGroups": ["monster", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["soundproof"], "hiddenAbilities": ["scrappy"], - "baseStats": { "attack": 91, "defense": 63, "hp": 104, "specialAttack": 91, "specialDefense": 73, "speed": 68 }, + "baseStats": { + "attack": 91, + "defense": 63, + "hp": 104, + "specialAttack": 91, + "specialDefense": 73, + "speed": 68 + }, "evReward": { "hp": 3 }, "types": ["normal"], "height": 1.5, @@ -19514,14 +21873,21 @@ "catchRate": 45, "color": "brown", "genderDifference": false, - "eggGroups": ["flying", "ground"], + "eggGroups": ["flying", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["keen_eye", "inner_focus"], "hiddenAbilities": ["defiant"], - "baseStats": { "attack": 90, "defense": 55, "hp": 52, "specialAttack": 58, "specialDefense": 62, "speed": 60 }, + "baseStats": { + "attack": 90, + "defense": 55, + "hp": 52, + "specialAttack": 58, + "specialDefense": 62, + "speed": 60 + }, "evReward": { "attack": 1 }, "types": ["normal", "flying"], "height": 0.8, @@ -19620,7 +21986,14 @@ "default": { "abilities": ["keen_eye"], "hiddenAbilities": ["sniper"], - "baseStats": { "attack": 90, "defense": 65, "hp": 65, "specialAttack": 61, "specialDefense": 61, "speed": 100 }, + "baseStats": { + "attack": 90, + "defense": 65, + "hp": 65, + "specialAttack": 61, + "specialDefense": 61, + "speed": 100 + }, "evReward": { "speed": 2 }, "types": ["normal", "flying"], "height": 1.2, @@ -19699,15 +22072,39 @@ "default": { "abilities": ["swift_swim", "oblivious"], "hiddenAbilities": ["adaptability"], - "baseStats": { "attack": 15, "defense": 20, "hp": 20, "specialAttack": 10, "specialDefense": 55, "speed": 80 }, + "baseStats": { + "attack": 15, + "defense": 20, + "hp": 20, + "specialAttack": 10, + "specialDefense": 55, + "speed": 80 + }, "evReward": { "speed": 1 }, "types": ["water"], "height": 0.6, "weight": 7.4, "baseExp": 40, "moves": { - "levelMoves": [{ "name": "splash", "level": 1 }, { "name": "tackle", "level": 15 }, { "name": "flail", "level": 30 }], - "eggMoves": ["mist", "hypnosis", "confuse_ray", "haze", "dragon_breath", "iron_tail", "mirror_coat", "mud_sport", "tickle", "brine", "dragon_pulse", "captivate"], + "levelMoves": [ + { "name": "splash", "level": 1 }, + { "name": "tackle", "level": 15 }, + { "name": "flail", "level": 30 } + ], + "eggMoves": [ + "mist", + "hypnosis", + "confuse_ray", + "haze", + "dragon_breath", + "iron_tail", + "mirror_coat", + "mud_sport", + "tickle", + "brine", + "dragon_pulse", + "captivate" + ], "tutorMoves": [], "machine": [ "surf", @@ -19737,7 +22134,10 @@ } } }, - "evolutions": [{ "species": "milotic", "method": "conteststat", "data": "beauty,170" }, { "species": "milotic", "method": "tradeitem", "data": "prismscale" }] + "evolutions": [ + { "species": "milotic", "method": "conteststat", "data": "beauty,170" }, + { "species": "milotic", "method": "tradeitem", "data": "prismscale" } + ] }, "fennekin": { "species": "fennekin", @@ -19748,14 +22148,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["magician"], - "baseStats": { "attack": 45, "defense": 40, "hp": 40, "specialAttack": 62, "specialDefense": 60, "speed": 60 }, + "baseStats": { + "attack": 45, + "defense": 40, + "hp": 40, + "specialAttack": 62, + "specialDefense": 60, + "speed": 60 + }, "evReward": { "specialAttack": 1 }, "types": ["fire"], "height": 0.4, @@ -19821,7 +22228,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "feraligatr": { "species": "feraligatr", @@ -19839,7 +22246,14 @@ "default": { "abilities": ["torrent"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 105, "defense": 100, "hp": 85, "specialAttack": 79, "specialDefense": 83, "speed": 78 }, + "baseStats": { + "attack": 105, + "defense": 100, + "hp": 85, + "specialAttack": 79, + "specialDefense": 83, + "speed": 78 + }, "evReward": { "attack": 2, "defense": 1 }, "types": ["water"], "height": 2.3, @@ -19923,14 +22337,21 @@ "catchRate": 255, "color": "gray", "genderDifference": false, - "eggGroups": ["plant", "mineral"], + "eggGroups": ["grass", "mineral"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["iron_barbs"], "hiddenAbilities": [], - "baseStats": { "attack": 50, "defense": 91, "hp": 44, "specialAttack": 24, "specialDefense": 86, "speed": 10 }, + "baseStats": { + "attack": 50, + "defense": 91, + "hp": 44, + "specialAttack": 24, + "specialDefense": 86, + "speed": 10 + }, "evReward": { "defense": 1 }, "types": ["grass", "steel"], "height": 0.6, @@ -19954,7 +22375,17 @@ { "name": "flash_cannon", "level": 52 }, { "name": "explosion", "level": 55 } ], - "eggMoves": ["leech_seed", "spikes", "bullet_seed", "gravity", "worry_seed", "seed_bomb", "rock_climb", "stealth_rock", "acid_spray"], + "eggMoves": [ + "leech_seed", + "spikes", + "bullet_seed", + "gravity", + "worry_seed", + "seed_bomb", + "rock_climb", + "stealth_rock", + "acid_spray" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -19998,14 +22429,21 @@ "catchRate": 90, "color": "gray", "genderDifference": false, - "eggGroups": ["plant", "mineral"], + "eggGroups": ["grass", "mineral"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["iron_barbs"], "hiddenAbilities": ["anticipation"], - "baseStats": { "attack": 94, "defense": 131, "hp": 74, "specialAttack": 54, "specialDefense": 116, "speed": 20 }, + "baseStats": { + "attack": 94, + "defense": 131, + "hp": 74, + "specialAttack": 54, + "specialDefense": 116, + "speed": 20 + }, "evReward": { "defense": 2 }, "types": ["grass", "steel"], "height": 1, @@ -20094,7 +22532,14 @@ "default": { "abilities": ["swift_swim", "storm_drain"], "hiddenAbilities": ["water_veil"], - "baseStats": { "attack": 49, "defense": 56, "hp": 49, "specialAttack": 49, "specialDefense": 61, "speed": 66 }, + "baseStats": { + "attack": 49, + "defense": 56, + "hp": 49, + "specialAttack": 49, + "specialDefense": 61, + "speed": 66 + }, "evReward": { "speed": 1 }, "types": ["water"], "height": 0.4, @@ -20117,7 +22562,19 @@ { "name": "silver_wind", "level": 49 }, { "name": "soak", "level": 54 } ], - "eggMoves": ["psybeam", "aurora_beam", "agility", "splash", "flail", "sweet_kiss", "charm", "tickle", "signal_beam", "brine", "aqua_tail"], + "eggMoves": [ + "psybeam", + "aurora_beam", + "agility", + "splash", + "flail", + "sweet_kiss", + "charm", + "tickle", + "signal_beam", + "brine", + "aqua_tail" + ], "tutorMoves": [], "machine": [ "surf", @@ -20162,14 +22619,21 @@ "catchRate": 120, "color": "pink", "genderDifference": false, - "eggGroups": ["monster", "ground"], + "eggGroups": ["monster", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["static"], "hiddenAbilities": ["plus"], - "baseStats": { "attack": 55, "defense": 55, "hp": 70, "specialAttack": 80, "specialDefense": 60, "speed": 45 }, + "baseStats": { + "attack": 55, + "defense": 55, + "hp": 70, + "specialAttack": 80, + "specialDefense": 60, + "speed": 45 + }, "evReward": { "specialAttack": 2 }, "types": ["electric"], "height": 0.8, @@ -20247,7 +22711,14 @@ "default": { "abilities": ["flower_veil"], "hiddenAbilities": ["symbiosis"], - "baseStats": { "attack": 38, "defense": 39, "hp": 44, "specialAttack": 61, "specialDefense": 79, "speed": 42 }, + "baseStats": { + "attack": 38, + "defense": 39, + "hp": 44, + "specialAttack": 61, + "specialDefense": 79, + "speed": 42 + }, "evReward": { "specialDefense": 1 }, "types": ["fairy"], "height": 0.1, @@ -20303,7 +22774,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "flareon": { "species": "flareon", @@ -20314,14 +22785,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 35, "tags": [], "formes": { "default": { "abilities": ["flash_fire"], "hiddenAbilities": ["guts"], - "baseStats": { "attack": 130, "defense": 60, "hp": 65, "specialAttack": 95, "specialDefense": 110, "speed": 65 }, + "baseStats": { + "attack": 130, + "defense": 60, + "hp": 65, + "specialAttack": 95, + "specialDefense": 110, + "speed": 65 + }, "evReward": { "attack": 2 }, "types": ["fire"], "height": 0.9, @@ -20399,7 +22877,14 @@ "default": { "abilities": ["flame_body"], "hiddenAbilities": ["gale_wings"], - "baseStats": { "attack": 73, "defense": 55, "hp": 62, "specialAttack": 56, "specialDefense": 52, "speed": 84 }, + "baseStats": { + "attack": 73, + "defense": 55, + "hp": 62, + "specialAttack": 56, + "specialDefense": 52, + "speed": 84 + }, "evReward": { "speed": 2 }, "types": ["fire", "flying"], "height": 0.7, @@ -20463,7 +22948,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "fletchling": { "species": "fletchling", @@ -20481,7 +22966,14 @@ "default": { "abilities": ["big_pecks"], "hiddenAbilities": ["gale_wings"], - "baseStats": { "attack": 50, "defense": 43, "hp": 45, "specialAttack": 40, "specialDefense": 38, "speed": 62 }, + "baseStats": { + "attack": 50, + "defense": 43, + "hp": 45, + "specialAttack": 40, + "specialDefense": 38, + "speed": 62 + }, "evReward": { "speed": 1 }, "types": ["normal", "flying"], "height": 0.3, @@ -20539,7 +23031,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "floatzel": { "species": "floatzel", @@ -20550,14 +23042,21 @@ "catchRate": 75, "color": "brown", "genderDifference": true, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["swift_swim"], "hiddenAbilities": ["water_veil"], - "baseStats": { "attack": 105, "defense": 55, "hp": 85, "specialAttack": 85, "specialDefense": 50, "speed": 115 }, + "baseStats": { + "attack": 105, + "defense": 55, + "hp": 85, + "specialAttack": 85, + "specialDefense": 50, + "speed": 115 + }, "evReward": { "speed": 2 }, "types": ["water"], "height": 1.1, @@ -20643,7 +23142,14 @@ "default": { "abilities": ["flower_veil"], "hiddenAbilities": ["symbiosis"], - "baseStats": { "attack": 45, "defense": 47, "hp": 54, "specialAttack": 75, "specialDefense": 98, "speed": 52 }, + "baseStats": { + "attack": 45, + "defense": 47, + "hp": 54, + "specialAttack": 75, + "specialDefense": 98, + "speed": 52 + }, "evReward": { "specialDefense": 2 }, "types": ["fairy"], "height": 0.2, @@ -20702,7 +23208,14 @@ "eternal": { "abilities": ["flower_veil"], "hiddenAbilities": ["symbiosis"], - "baseStats": { "attack": 65, "defense": 67, "hp": 74, "specialAttack": 125, "specialDefense": 128, "speed": 92 }, + "baseStats": { + "attack": 65, + "defense": 67, + "hp": 74, + "specialAttack": 125, + "specialDefense": 128, + "speed": 92 + }, "evReward": { "specialDefense": 2 }, "types": ["fairy"], "height": 0.2, @@ -20760,7 +23273,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "florges": { "species": "florges", @@ -20778,7 +23291,14 @@ "default": { "abilities": ["flower_veil"], "hiddenAbilities": ["symbiosis"], - "baseStats": { "attack": 65, "defense": 68, "hp": 78, "specialAttack": 112, "specialDefense": 154, "speed": 75 }, + "baseStats": { + "attack": 65, + "defense": 68, + "hp": 78, + "specialAttack": 112, + "specialDefense": 154, + "speed": 75 + }, "evReward": { "specialDefense": 3 }, "types": ["fairy"], "height": 1.1, @@ -20835,7 +23355,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "flygon": { "species": "flygon", @@ -20853,7 +23373,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 80, "hp": 80, "specialAttack": 80, "specialDefense": 80, "speed": 100 }, + "baseStats": { + "attack": 100, + "defense": 80, + "hp": 80, + "specialAttack": 80, + "specialDefense": 80, + "speed": 100 + }, "evReward": { "attack": 1, "speed": 2 }, "types": ["ground", "dragon"], "height": 2, @@ -20936,14 +23463,21 @@ "catchRate": 190, "color": "pink", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["leaf_guard"], "hiddenAbilities": ["contrary"], - "baseStats": { "attack": 55, "defense": 35, "hp": 40, "specialAttack": 50, "specialDefense": 35, "speed": 35 }, + "baseStats": { + "attack": 55, + "defense": 35, + "hp": 40, + "specialAttack": 50, + "specialDefense": 35, + "speed": 35 + }, "evReward": { "attack": 1 }, "types": ["grass"], "height": 0.3, @@ -20963,7 +23497,13 @@ { "name": "solar_beam", "level": 41 }, { "name": "sunny_day", "level": 46 } ], - "eggMoves": ["giga_drain", "weather_ball", "aromatherapy", "defog", "leaf_storm"], + "eggMoves": [ + "giga_drain", + "weather_ball", + "aromatherapy", + "defog", + "leaf_storm" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -20998,7 +23538,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "foongus": { "species": "foongus", @@ -21009,14 +23549,21 @@ "catchRate": 190, "color": "white", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["effect_spore"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 55, "defense": 45, "hp": 69, "specialAttack": 55, "specialDefense": 55, "speed": 15 }, + "baseStats": { + "attack": 55, + "defense": 45, + "hp": 69, + "specialAttack": 55, + "specialDefense": 55, + "speed": 15 + }, "evReward": { "hp": 1 }, "types": ["grass", "poison"], "height": 0.2, @@ -21040,7 +23587,16 @@ { "name": "rage_powder", "level": 45 }, { "name": "spore", "level": 50 } ], - "eggMoves": ["body_slam", "growth", "poison_powder", "stun_spore", "defense_curl", "endure", "rollout", "gastro_acid"], + "eggMoves": [ + "body_slam", + "growth", + "poison_powder", + "stun_spore", + "defense_curl", + "endure", + "rollout", + "gastro_acid" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -21089,7 +23645,14 @@ "default": { "abilities": ["sturdy"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 90, "defense": 140, "hp": 75, "specialAttack": 60, "specialDefense": 60, "speed": 40 }, + "baseStats": { + "attack": 90, + "defense": 140, + "hp": 75, + "specialAttack": 60, + "specialDefense": 60, + "speed": 40 + }, "evReward": { "defense": 2 }, "types": ["bug", "steel"], "height": 1.2, @@ -21183,7 +23746,14 @@ "default": { "abilities": ["rivalry", "mold_breaker"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 117, "defense": 70, "hp": 66, "specialAttack": 40, "specialDefense": 50, "speed": 67 }, + "baseStats": { + "attack": 117, + "defense": 70, + "hp": 66, + "specialAttack": 40, + "specialDefense": 50, + "speed": 67 + }, "evReward": { "attack": 2 }, "types": ["dragon"], "height": 1, @@ -21260,14 +23830,21 @@ "catchRate": 190, "color": "white", "genderDifference": true, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["water_absorb", "cursed_body"], "hiddenAbilities": ["damp"], - "baseStats": { "attack": 40, "defense": 50, "hp": 55, "specialAttack": 65, "specialDefense": 85, "speed": 40 }, + "baseStats": { + "attack": 40, + "defense": 50, + "hp": 55, + "specialAttack": 65, + "specialDefense": 85, + "speed": 40 + }, "evReward": { "specialDefense": 1 }, "types": ["water", "ghost"], "height": 1.2, @@ -21290,7 +23867,14 @@ { "name": "wring_out", "level": 55 }, { "name": "water_spout", "level": 61 } ], - "eggMoves": ["mist", "recover", "confuse_ray", "constrict", "acid_armor", "pain_split"], + "eggMoves": [ + "mist", + "recover", + "confuse_ray", + "constrict", + "acid_armor", + "pain_split" + ], "tutorMoves": [], "machine": [ "surf", @@ -21350,7 +23934,14 @@ "default": { "abilities": ["torrent"], "hiddenAbilities": ["protean"], - "baseStats": { "attack": 56, "defense": 40, "hp": 41, "specialAttack": 62, "specialDefense": 44, "speed": 71 }, + "baseStats": { + "attack": 56, + "defense": 40, + "hp": 41, + "specialAttack": 62, + "specialDefense": 44, + "speed": 71 + }, "evReward": { "speed": 1 }, "types": ["water"], "height": 0.3, @@ -21373,7 +23964,14 @@ { "name": "double_team", "level": 43 }, { "name": "hydro_pump", "level": 48 } ], - "eggMoves": ["mind_reader", "camouflage", "mud_sport", "water_sport", "toxic_spikes", "bestow"], + "eggMoves": [ + "mind_reader", + "camouflage", + "mud_sport", + "water_sport", + "toxic_spikes", + "bestow" + ], "tutorMoves": ["water_pledge"], "machine": [ "surf", @@ -21413,7 +24011,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "frogadier": { "species": "frogadier", @@ -21431,7 +24029,14 @@ "default": { "abilities": ["torrent"], "hiddenAbilities": ["protean"], - "baseStats": { "attack": 63, "defense": 52, "hp": 54, "specialAttack": 83, "specialDefense": 56, "speed": 97 }, + "baseStats": { + "attack": 63, + "defense": 52, + "hp": 54, + "specialAttack": 83, + "specialDefense": 56, + "speed": 97 + }, "evReward": { "speed": 2 }, "types": ["water"], "height": 0.6, @@ -21496,7 +24101,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "froslass": { "species": "froslass", @@ -21514,7 +24119,14 @@ "default": { "abilities": ["snow_cloak"], "hiddenAbilities": ["cursed_body"], - "baseStats": { "attack": 80, "defense": 70, "hp": 70, "specialAttack": 80, "specialDefense": 70, "speed": 110 }, + "baseStats": { + "attack": 80, + "defense": 70, + "hp": 70, + "specialAttack": 80, + "specialDefense": 70, + "speed": 110 + }, "evReward": { "speed": 2 }, "types": ["ice", "ghost"], "height": 1.3, @@ -21599,14 +24211,21 @@ "catchRate": 160, "color": "white", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["fur_coat"], "hiddenAbilities": [], - "baseStats": { "attack": 80, "defense": 60, "hp": 75, "specialAttack": 65, "specialDefense": 90, "speed": 102 }, + "baseStats": { + "attack": 80, + "defense": 60, + "hp": 75, + "specialAttack": 65, + "specialDefense": 90, + "speed": 102 + }, "evReward": { "speed": 1 }, "types": ["normal"], "height": 1.2, @@ -21664,7 +24283,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "furret": { "species": "furret", @@ -21675,14 +24294,21 @@ "catchRate": 90, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["run_away", "keen_eye"], "hiddenAbilities": ["frisk"], - "baseStats": { "attack": 76, "defense": 64, "hp": 85, "specialAttack": 45, "specialDefense": 55, "speed": 90 }, + "baseStats": { + "attack": 76, + "defense": 64, + "hp": 85, + "specialAttack": 45, + "specialDefense": 55, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["normal"], "height": 1.8, @@ -21773,7 +24399,14 @@ "default": { "abilities": ["sand_veil"], "hiddenAbilities": ["rough_skin"], - "baseStats": { "attack": 90, "defense": 65, "hp": 68, "specialAttack": 50, "specialDefense": 55, "speed": 82 }, + "baseStats": { + "attack": 90, + "defense": 65, + "hp": 68, + "specialAttack": 50, + "specialDefense": 55, + "speed": 82 + }, "evReward": { "attack": 2 }, "types": ["dragon", "ground"], "height": 1.4, @@ -21843,14 +24476,21 @@ "catchRate": 45, "color": "white", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["steadfast"], "hiddenAbilities": ["justified"], - "baseStats": { "attack": 125, "defense": 65, "hp": 68, "specialAttack": 65, "specialDefense": 115, "speed": 80 }, + "baseStats": { + "attack": 125, + "defense": 65, + "hp": 68, + "specialAttack": 65, + "specialDefense": 115, + "speed": 80 + }, "evReward": { "attack": 3 }, "types": ["psychic", "fighting"], "height": 1.6, @@ -21950,7 +24590,14 @@ "isMega": true, "abilities": ["inner_focus"], "hiddenAbilities": [], - "baseStats": { "attack": 165, "defense": 95, "hp": 68, "specialAttack": 65, "specialDefense": 115, "speed": 110 }, + "baseStats": { + "attack": 165, + "defense": 95, + "hp": 68, + "specialAttack": 65, + "specialDefense": 115, + "speed": 110 + }, "evReward": { "attack": 3 }, "types": ["psychic", "fighting"], "height": 1.6, @@ -22065,7 +24712,14 @@ "default": { "abilities": ["compound_eyes", "unnerve"], "hiddenAbilities": ["swarm"], - "baseStats": { "attack": 77, "defense": 60, "hp": 70, "specialAttack": 97, "specialDefense": 60, "speed": 108 }, + "baseStats": { + "attack": 77, + "defense": 60, + "hp": 70, + "specialAttack": 97, + "specialDefense": 60, + "speed": 108 + }, "evReward": { "speed": 2 }, "types": ["bug", "electric"], "height": 0.8, @@ -22149,7 +24803,14 @@ "default": { "abilities": ["stench", "weak_armor"], "hiddenAbilities": ["aftermath"], - "baseStats": { "attack": 95, "defense": 82, "hp": 80, "specialAttack": 60, "specialDefense": 82, "speed": 75 }, + "baseStats": { + "attack": 95, + "defense": 82, + "hp": 80, + "specialAttack": 60, + "specialDefense": 82, + "speed": 75 + }, "evReward": { "attack": 2 }, "types": ["poison"], "height": 1.9, @@ -22236,7 +24897,14 @@ "default": { "abilities": ["sand_veil"], "hiddenAbilities": ["rough_skin"], - "baseStats": { "attack": 130, "defense": 95, "hp": 108, "specialAttack": 80, "specialDefense": 85, "speed": 102 }, + "baseStats": { + "attack": 130, + "defense": 95, + "hp": 108, + "specialAttack": 80, + "specialDefense": 85, + "speed": 102 + }, "evReward": { "attack": 3 }, "types": ["dragon", "ground"], "height": 1.9, @@ -22311,7 +24979,14 @@ "isMega": true, "abilities": ["sand_force"], "hiddenAbilities": [], - "baseStats": { "attack": 170, "defense": 115, "hp": 108, "specialAttack": 120, "specialDefense": 95, "speed": 92 }, + "baseStats": { + "attack": 170, + "defense": 115, + "hp": 108, + "specialAttack": 120, + "specialDefense": 95, + "speed": 92 + }, "evReward": { "attack": 3 }, "types": ["dragon", "ground"], "height": 1.9, @@ -22394,14 +25069,21 @@ "catchRate": 45, "color": "white", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["synchronize", "trace"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 65, "defense": 65, "hp": 68, "specialAttack": 125, "specialDefense": 115, "speed": 80 }, + "baseStats": { + "attack": 65, + "defense": 65, + "hp": 68, + "specialAttack": 125, + "specialDefense": 115, + "speed": 80 + }, "evReward": { "specialAttack": 3 }, "types": ["psychic", "fairy"], "height": 1.6, @@ -22487,7 +25169,14 @@ "isMega": true, "abilities": ["pixilate"], "hiddenAbilities": [], - "baseStats": { "attack": 85, "defense": 65, "hp": 68, "specialAttack": 165, "specialDefense": 135, "speed": 100 }, + "baseStats": { + "attack": 85, + "defense": 65, + "hp": 68, + "specialAttack": 165, + "specialDefense": 135, + "speed": 100 + }, "evReward": { "specialAttack": 3 }, "types": ["psychic", "fairy"], "height": 1.6, @@ -22581,14 +25270,21 @@ "catchRate": 190, "color": "purple", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 35, "defense": 30, "hp": 30, "specialAttack": 100, "specialDefense": 35, "speed": 80 }, + "baseStats": { + "attack": 35, + "defense": 30, + "hp": 30, + "specialAttack": 100, + "specialDefense": 35, + "speed": 80 + }, "evReward": { "specialAttack": 1 }, "types": ["ghost", "poison"], "height": 1.3, @@ -22612,7 +25308,21 @@ { "name": "hex", "level": 43 }, { "name": "nightmare", "level": 47 } ], - "eggMoves": ["fire_punch", "ice_punch", "thunder_punch", "disable", "haze", "smog", "psywave", "scary_face", "perish_song", "grudge", "astonish", "clear_smog", "reflect_type"], + "eggMoves": [ + "fire_punch", + "ice_punch", + "thunder_punch", + "disable", + "haze", + "smog", + "psywave", + "scary_face", + "perish_song", + "grudge", + "astonish", + "clear_smog", + "reflect_type" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -22666,14 +25376,21 @@ "catchRate": 75, "color": "purple", "genderDifference": false, - "eggGroups": ["water1", "indeterminate"], + "eggGroups": ["water1", "amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["sticky_hold", "storm_drain"], "hiddenAbilities": ["sand_force"], - "baseStats": { "attack": 83, "defense": 68, "hp": 111, "specialAttack": 92, "specialDefense": 82, "speed": 39 }, + "baseStats": { + "attack": 83, + "defense": 68, + "hp": 111, + "specialAttack": 92, + "specialDefense": 82, + "speed": 39 + }, "evReward": { "hp": 2 }, "types": ["water", "ground"], "height": 0.9, @@ -22753,7 +25470,14 @@ "default": { "abilities": ["download"], "hiddenAbilities": [], - "baseStats": { "attack": 120, "defense": 95, "hp": 71, "specialAttack": 120, "specialDefense": 95, "speed": 99 }, + "baseStats": { + "attack": 120, + "defense": 95, + "hp": 71, + "specialAttack": 120, + "specialDefense": 95, + "speed": 99 + }, "evReward": { "attack": 1, "specialAttack": 1, "speed": 1 }, "types": ["bug", "steel"], "height": 1.5, @@ -22839,14 +25563,21 @@ "catchRate": 45, "color": "purple", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["cursed_body"], "hiddenAbilities": [], - "baseStats": { "attack": 65, "defense": 60, "hp": 60, "specialAttack": 130, "specialDefense": 75, "speed": 110 }, + "baseStats": { + "attack": 65, + "defense": 60, + "hp": 60, + "specialAttack": 130, + "specialDefense": 75, + "speed": 110 + }, "evReward": { "specialAttack": 3 }, "types": ["ghost", "poison"], "height": 1.5, @@ -22927,7 +25658,14 @@ "isMega": true, "abilities": ["shadow_tag"], "hiddenAbilities": [], - "baseStats": { "attack": 65, "defense": 80, "hp": 60, "specialAttack": 170, "specialDefense": 95, "speed": 130 }, + "baseStats": { + "attack": 65, + "defense": 80, + "hp": 60, + "specialAttack": 170, + "specialDefense": 95, + "speed": 130 + }, "evReward": { "specialAttack": 3 }, "types": ["ghost", "poison"], "height": 1.4, @@ -23023,7 +25761,14 @@ "alola": { "abilities": ["magnet_pull", "sturdy"], "hiddenAbilities": ["galvanize"], - "baseStats": { "attack": 80, "defense": 100, "hp": 40, "specialAttack": 30, "specialDefense": 30, "speed": 20 }, + "baseStats": { + "attack": 80, + "defense": 100, + "hp": 40, + "specialAttack": 30, + "specialDefense": 30, + "speed": 20 + }, "evReward": { "defense": 1 }, "types": ["rock", "electric"], "height": 0.4, @@ -23093,7 +25838,14 @@ "default": { "abilities": ["rock_head", "sturdy"], "hiddenAbilities": ["sand_veil"], - "baseStats": { "attack": 80, "defense": 100, "hp": 40, "specialAttack": 30, "specialDefense": 30, "speed": 20 }, + "baseStats": { + "attack": 80, + "defense": 100, + "hp": 40, + "specialAttack": 30, + "specialDefense": 30, + "speed": 20 + }, "evReward": { "defense": 1 }, "types": ["rock", "ground"], "height": 0.4, @@ -23118,7 +25870,18 @@ { "name": "double_edge", "level": 40 }, { "name": "stone_edge", "level": 42 } ], - "eggMoves": ["mega_punch", "curse", "flail", "endure", "focus_punch", "block", "hammer_arm", "rock_climb", "wide_guard", "autotomize"], + "eggMoves": [ + "mega_punch", + "curse", + "flail", + "endure", + "focus_punch", + "block", + "hammer_arm", + "rock_climb", + "wide_guard", + "autotomize" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -23174,7 +25937,14 @@ "default": { "abilities": ["sand_veil"], "hiddenAbilities": ["rough_skin"], - "baseStats": { "attack": 70, "defense": 45, "hp": 58, "specialAttack": 40, "specialDefense": 45, "speed": 42 }, + "baseStats": { + "attack": 70, + "defense": 45, + "hp": 58, + "specialAttack": 40, + "specialDefense": 45, + "speed": 42 + }, "evReward": { "attack": 1 }, "types": ["dragon", "ground"], "height": 0.7, @@ -23193,7 +25963,21 @@ { "name": "dig", "level": 31 }, { "name": "dragon_rush", "level": 37 } ], - "eggMoves": ["body_slam", "thrash", "double_edge", "scary_face", "outrage", "dragon_breath", "iron_tail", "metal_claw", "twister", "sand_tomb", "mud_shot", "rock_climb", "iron_head"], + "eggMoves": [ + "body_slam", + "thrash", + "double_edge", + "scary_face", + "outrage", + "dragon_breath", + "iron_tail", + "metal_claw", + "twister", + "sand_tomb", + "mud_shot", + "rock_climb", + "iron_head" + ], "tutorMoves": ["draco_meteor"], "machine": [ "roar", @@ -23247,7 +26031,14 @@ "default": { "abilities": ["sturdy", "sand_stream"], "hiddenAbilities": ["sand_force"], - "baseStats": { "attack": 135, "defense": 130, "hp": 85, "specialAttack": 60, "specialDefense": 80, "speed": 25 }, + "baseStats": { + "attack": 135, + "defense": 130, + "hp": 85, + "specialAttack": 60, + "specialDefense": 80, + "speed": 25 + }, "evReward": { "attack": 3 }, "types": ["rock"], "height": 1.7, @@ -23320,14 +26111,21 @@ "catchRate": 60, "color": "yellow", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["inner_focus", "early_bird"], "hiddenAbilities": ["sap_sipper"], - "baseStats": { "attack": 80, "defense": 65, "hp": 70, "specialAttack": 90, "specialDefense": 65, "speed": 85 }, + "baseStats": { + "attack": 80, + "defense": 65, + "hp": 70, + "specialAttack": 90, + "specialDefense": 65, + "speed": 85 + }, "evReward": { "specialAttack": 2 }, "types": ["normal", "psychic"], "height": 1.5, @@ -23353,7 +26151,21 @@ { "name": "nasty_plot", "level": 46 }, { "name": "psychic", "level": 50 } ], - "eggMoves": ["razor_wind", "double_kick", "take_down", "amnesia", "foresight", "mean_look", "mirror_coat", "future_sight", "beat_up", "wish", "magic_coat", "skill_swap", "secret_power"], + "eggMoves": [ + "razor_wind", + "double_kick", + "take_down", + "amnesia", + "foresight", + "mean_look", + "mirror_coat", + "future_sight", + "beat_up", + "wish", + "magic_coat", + "skill_swap", + "secret_power" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -23416,7 +26228,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 100, "defense": 120, "hp": 150, "specialAttack": 100, "specialDefense": 120, "speed": 90 }, + "baseStats": { + "attack": 100, + "defense": 120, + "hp": 150, + "specialAttack": 100, + "specialDefense": 120, + "speed": 90 + }, "evReward": { "hp": 3 }, "types": ["ghost", "dragon"], "height": 4.5, @@ -23491,7 +26310,14 @@ "origin": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 120, "defense": 100, "hp": 150, "specialAttack": 120, "specialDefense": 100, "speed": 90 }, + "baseStats": { + "attack": 120, + "defense": 100, + "hp": 150, + "specialAttack": 120, + "specialDefense": 100, + "speed": 90 + }, "evReward": { "hp": 3 }, "types": ["ghost", "dragon"], "height": 6.9, @@ -23575,14 +26401,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 35, "tags": [], "formes": { "default": { "abilities": ["snow_cloak"], "hiddenAbilities": ["ice_body"], - "baseStats": { "attack": 60, "defense": 110, "hp": 65, "specialAttack": 130, "specialDefense": 95, "speed": 65 }, + "baseStats": { + "attack": 60, + "defense": 110, + "hp": 65, + "specialAttack": 130, + "specialDefense": 95, + "speed": 65 + }, "evReward": { "specialAttack": 2 }, "types": ["ice"], "height": 0.8, @@ -23660,7 +26493,14 @@ "default": { "abilities": ["inner_focus", "ice_body"], "hiddenAbilities": ["moody"], - "baseStats": { "attack": 80, "defense": 80, "hp": 80, "specialAttack": 80, "specialDefense": 80, "speed": 80 }, + "baseStats": { + "attack": 80, + "defense": 80, + "hp": 80, + "specialAttack": 80, + "specialDefense": 80, + "speed": 80 + }, "evReward": { "hp": 2 }, "types": ["ice"], "height": 1.5, @@ -23731,7 +26571,14 @@ "isMega": true, "abilities": ["refrigerate"], "hiddenAbilities": [], - "baseStats": { "attack": 120, "defense": 80, "hp": 80, "specialAttack": 120, "specialDefense": 80, "speed": 100 }, + "baseStats": { + "attack": 120, + "defense": 80, + "hp": 80, + "specialAttack": 120, + "specialDefense": 80, + "speed": 100 + }, "evReward": { "hp": 2 }, "types": ["ice"], "height": 2.1, @@ -23810,14 +26657,21 @@ "catchRate": 190, "color": "gray", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["limber", "own_tempo"], "hiddenAbilities": ["keen_eye"], - "baseStats": { "attack": 55, "defense": 42, "hp": 49, "specialAttack": 42, "specialDefense": 37, "speed": 85 }, + "baseStats": { + "attack": 55, + "defense": 42, + "hp": 49, + "specialAttack": 42, + "specialDefense": 37, + "speed": 85 + }, "evReward": { "speed": 1 }, "types": ["normal"], "height": 0.5, @@ -23840,7 +26694,18 @@ { "name": "hone_claws", "level": 48 }, { "name": "play_rough", "level": 50 } ], - "eggMoves": ["sand_attack", "tail_whip", "bite", "quick_attack", "flail", "snatch", "fake_tears", "wake_up_slap", "assurance", "last_resort"], + "eggMoves": [ + "sand_attack", + "tail_whip", + "bite", + "quick_attack", + "flail", + "snatch", + "fake_tears", + "wake_up_slap", + "assurance", + "last_resort" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -23896,7 +26761,14 @@ "default": { "abilities": ["hyper_cutter", "sand_veil"], "hiddenAbilities": ["immunity"], - "baseStats": { "attack": 75, "defense": 105, "hp": 65, "specialAttack": 35, "specialDefense": 65, "speed": 85 }, + "baseStats": { + "attack": 75, + "defense": 105, + "hp": 65, + "specialAttack": 35, + "specialDefense": 65, + "speed": 85 + }, "evReward": { "defense": 1 }, "types": ["ground", "flying"], "height": 1.1, @@ -23984,7 +26856,9 @@ } } }, - "evolutions": [{ "species": "gliscor", "method": "nightholditem", "data": "razorfang" }] + "evolutions": [ + { "species": "gliscor", "method": "nightholditem", "data": "razorfang" } + ] }, "gliscor": { "species": "gliscor", @@ -24002,7 +26876,14 @@ "default": { "abilities": ["hyper_cutter", "sand_veil"], "hiddenAbilities": ["poison_heal"], - "baseStats": { "attack": 95, "defense": 125, "hp": 75, "specialAttack": 45, "specialDefense": 75, "speed": 95 }, + "baseStats": { + "attack": 95, + "defense": 125, + "hp": 75, + "specialAttack": 45, + "specialDefense": 75, + "speed": 95 + }, "evReward": { "defense": 2 }, "types": ["ground", "flying"], "height": 2, @@ -24096,14 +26977,21 @@ "catchRate": 120, "color": "blue", "genderDifference": true, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll"], "hiddenAbilities": ["stench"], - "baseStats": { "attack": 65, "defense": 70, "hp": 60, "specialAttack": 85, "specialDefense": 75, "speed": 40 }, + "baseStats": { + "attack": 65, + "defense": 70, + "hp": 60, + "specialAttack": 85, + "specialDefense": 75, + "speed": 40 + }, "evReward": { "specialAttack": 2 }, "types": ["grass", "poison"], "height": 0.8, @@ -24163,7 +27051,10 @@ } } }, - "evolutions": [{ "species": "vileplume", "method": "item", "data": "leafstone" }, { "species": "bellossom", "method": "item", "data": "sunstone" }] + "evolutions": [ + { "species": "vileplume", "method": "item", "data": "leafstone" }, + { "species": "bellossom", "method": "item", "data": "sunstone" } + ] }, "gogoat": { "species": "gogoat", @@ -24174,14 +27065,21 @@ "catchRate": 45, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["sap_sipper"], "hiddenAbilities": ["grass_pelt"], - "baseStats": { "attack": 100, "defense": 62, "hp": 123, "specialAttack": 97, "specialDefense": 81, "speed": 68 }, + "baseStats": { + "attack": 100, + "defense": 62, + "hp": 123, + "specialAttack": 97, + "specialDefense": 81, + "speed": 68 + }, "evReward": { "hp": 2 }, "types": ["grass"], "height": 1.7, @@ -24252,7 +27150,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "golbat": { "species": "golbat", @@ -24270,7 +27168,14 @@ "default": { "abilities": ["inner_focus"], "hiddenAbilities": ["infiltrator"], - "baseStats": { "attack": 80, "defense": 70, "hp": 75, "specialAttack": 65, "specialDefense": 75, "speed": 90 }, + "baseStats": { + "attack": 80, + "defense": 70, + "hp": 75, + "specialAttack": 65, + "specialDefense": 75, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["poison", "flying"], "height": 1.6, @@ -24356,7 +27261,14 @@ "default": { "abilities": ["swift_swim", "water_veil"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 67, "defense": 60, "hp": 45, "specialAttack": 35, "specialDefense": 50, "speed": 63 }, + "baseStats": { + "attack": 67, + "defense": 60, + "hp": 45, + "specialAttack": 35, + "specialDefense": 50, + "speed": 63 + }, "evReward": { "attack": 1 }, "types": ["water"], "height": 0.6, @@ -24379,7 +27291,19 @@ { "name": "soak", "level": 40 }, { "name": "megahorn", "level": 45 } ], - "eggMoves": ["body_slam", "hydro_pump", "psybeam", "haze", "skull_bash", "mud_slap", "sleep_talk", "mud_sport", "signal_beam", "mud_shot", "aqua_tail"], + "eggMoves": [ + "body_slam", + "hydro_pump", + "psybeam", + "haze", + "skull_bash", + "mud_slap", + "sleep_talk", + "mud_sport", + "signal_beam", + "mud_shot", + "aqua_tail" + ], "tutorMoves": [], "machine": [ "surf", @@ -24421,14 +27345,21 @@ "catchRate": 75, "color": "blue", "genderDifference": false, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["damp", "cloud_nine"], "hiddenAbilities": ["swift_swim"], - "baseStats": { "attack": 82, "defense": 78, "hp": 80, "specialAttack": 95, "specialDefense": 80, "speed": 85 }, + "baseStats": { + "attack": 82, + "defense": 78, + "hp": 80, + "specialAttack": 95, + "specialDefense": 80, + "speed": 85 + }, "evReward": { "specialAttack": 2 }, "types": ["water"], "height": 1.7, @@ -24517,7 +27448,14 @@ "alola": { "abilities": ["magnet_pull", "sturdy"], "hiddenAbilities": ["galvanize"], - "baseStats": { "attack": 120, "defense": 130, "hp": 80, "specialAttack": 55, "specialDefense": 65, "speed": 45 }, + "baseStats": { + "attack": 120, + "defense": 130, + "hp": 80, + "specialAttack": 55, + "specialDefense": 65, + "speed": 45 + }, "evReward": { "defense": 3 }, "types": ["rock", "electric"], "height": 1.7, @@ -24597,7 +27535,14 @@ "default": { "abilities": ["rock_head", "sturdy"], "hiddenAbilities": ["sand_veil"], - "baseStats": { "attack": 120, "defense": 130, "hp": 80, "specialAttack": 55, "specialDefense": 65, "speed": 45 }, + "baseStats": { + "attack": 120, + "defense": 130, + "hp": 80, + "specialAttack": 55, + "specialDefense": 65, + "speed": 45 + }, "evReward": { "defense": 3 }, "types": ["rock", "ground"], "height": 1.4, @@ -24686,7 +27631,14 @@ "default": { "abilities": ["iron_fist", "klutz"], "hiddenAbilities": ["no_guard"], - "baseStats": { "attack": 74, "defense": 50, "hp": 59, "specialAttack": 35, "specialDefense": 50, "speed": 35 }, + "baseStats": { + "attack": 74, + "defense": 50, + "hp": 59, + "specialAttack": 35, + "specialDefense": 50, + "speed": 35 + }, "evReward": { "attack": 1 }, "types": ["ground", "ghost"], "height": 1, @@ -24767,7 +27719,14 @@ "default": { "abilities": ["emergency_exit"], "hiddenAbilities": [], - "baseStats": { "attack": 125, "defense": 140, "hp": 75, "specialAttack": 60, "specialDefense": 90, "speed": 40 }, + "baseStats": { + "attack": 125, + "defense": 140, + "hp": 75, + "specialAttack": 60, + "specialDefense": 90, + "speed": 40 + }, "evReward": { "defense": 2 }, "types": ["bug", "water"], "height": 2, @@ -24845,7 +27804,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "golurk": { "species": "golurk", @@ -24863,7 +27822,14 @@ "default": { "abilities": ["iron_fist", "klutz"], "hiddenAbilities": ["no_guard"], - "baseStats": { "attack": 124, "defense": 80, "hp": 89, "specialAttack": 55, "specialDefense": 80, "speed": 55 }, + "baseStats": { + "attack": 124, + "defense": 80, + "hp": 89, + "specialAttack": 55, + "specialDefense": 80, + "speed": 55 + }, "evReward": { "attack": 2 }, "types": ["ground", "ghost"], "height": 2.8, @@ -24957,7 +27923,14 @@ "default": { "abilities": ["sap_sipper", "hydration"], "hiddenAbilities": ["gooey"], - "baseStats": { "attack": 100, "defense": 70, "hp": 90, "specialAttack": 110, "specialDefense": 150, "speed": 80 }, + "baseStats": { + "attack": 100, + "defense": 70, + "hp": 90, + "specialAttack": 110, + "specialDefense": 150, + "speed": 80 + }, "evReward": { "specialDefense": 3 }, "types": ["dragon"], "height": 2, @@ -25027,7 +28000,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "goomy": { "species": "goomy", @@ -25045,7 +28018,14 @@ "default": { "abilities": ["sap_sipper", "hydration"], "hiddenAbilities": ["gooey"], - "baseStats": { "attack": 50, "defense": 35, "hp": 45, "specialAttack": 55, "specialDefense": 75, "speed": 40 }, + "baseStats": { + "attack": 50, + "defense": 35, + "hp": 45, + "specialAttack": 55, + "specialDefense": 75, + "speed": 40 + }, "evReward": { "specialDefense": 1 }, "types": ["dragon"], "height": 0.3, @@ -25065,7 +28045,14 @@ { "name": "muddy_water", "level": 38 }, { "name": "dragon_pulse", "level": 42 } ], - "eggMoves": ["counter", "acid_armor", "curse", "endure", "iron_tail", "poison_tail"], + "eggMoves": [ + "counter", + "acid_armor", + "curse", + "endure", + "iron_tail", + "poison_tail" + ], "tutorMoves": ["draco_meteor"], "machine": [ "thunderbolt", @@ -25094,7 +28081,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "gorebyss": { "species": "gorebyss", @@ -25112,7 +28099,14 @@ "default": { "abilities": ["swift_swim"], "hiddenAbilities": ["hydration"], - "baseStats": { "attack": 84, "defense": 105, "hp": 55, "specialAttack": 114, "specialDefense": 75, "speed": 52 }, + "baseStats": { + "attack": 84, + "defense": 105, + "hp": 55, + "specialAttack": 114, + "specialDefense": 75, + "speed": 52 + }, "evReward": { "specialAttack": 2 }, "types": ["water"], "height": 1.8, @@ -25183,14 +28177,21 @@ "catchRate": 200, "color": "purple", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["frisk", "competitive"], "hiddenAbilities": ["shadow_tag"], - "baseStats": { "attack": 30, "defense": 50, "hp": 45, "specialAttack": 55, "specialDefense": 65, "speed": 45 }, + "baseStats": { + "attack": 30, + "defense": 50, + "hp": 45, + "specialAttack": 55, + "specialDefense": 65, + "speed": 45 + }, "evReward": { "specialDefense": 1 }, "types": ["psychic"], "height": 0.4, @@ -25216,7 +28217,15 @@ { "name": "charm", "level": 46 }, { "name": "magic_room", "level": 48 } ], - "eggMoves": ["mean_look", "mirror_coat", "uproar", "miracle_eye", "dark_pulse", "captivate", "heal_pulse"], + "eggMoves": [ + "mean_look", + "mirror_coat", + "uproar", + "miracle_eye", + "dark_pulse", + "captivate", + "heal_pulse" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -25274,14 +28283,21 @@ "catchRate": 50, "color": "purple", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["frisk", "competitive"], "hiddenAbilities": ["shadow_tag"], - "baseStats": { "attack": 55, "defense": 95, "hp": 70, "specialAttack": 95, "specialDefense": 110, "speed": 65 }, + "baseStats": { + "attack": 55, + "defense": 95, + "hp": 70, + "specialAttack": 95, + "specialDefense": 110, + "speed": 65 + }, "evReward": { "specialDefense": 3 }, "types": ["psychic"], "height": 1.5, @@ -25371,14 +28387,21 @@ "catchRate": 100, "color": "purple", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["frisk", "competitive"], "hiddenAbilities": ["shadow_tag"], - "baseStats": { "attack": 45, "defense": 70, "hp": 60, "specialAttack": 75, "specialDefense": 85, "speed": 55 }, + "baseStats": { + "attack": 45, + "defense": 70, + "hp": 60, + "specialAttack": 75, + "specialDefense": 85, + "speed": 55 + }, "evReward": { "specialDefense": 2 }, "types": ["psychic"], "height": 0.7, @@ -25464,14 +28487,21 @@ "catchRate": 60, "color": "brown", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["pickup", "frisk"], "hiddenAbilities": ["insomnia"], - "baseStats": { "attack": 90, "defense": 122, "hp": 65, "specialAttack": 58, "specialDefense": 75, "speed": 84 }, + "baseStats": { + "attack": 90, + "defense": 122, + "hp": 65, + "specialAttack": 58, + "specialDefense": 75, + "speed": 84 + }, "evReward": { "defense": 2 }, "types": ["ghost", "grass"], "height": 0.9, @@ -25550,7 +28580,14 @@ "large": { "abilities": ["pickup", "frisk"], "hiddenAbilities": ["insomnia"], - "baseStats": { "attack": 95, "defense": 122, "hp": 75, "specialAttack": 58, "specialDefense": 75, "speed": 69 }, + "baseStats": { + "attack": 95, + "defense": 122, + "hp": 75, + "specialAttack": 58, + "specialDefense": 75, + "speed": 69 + }, "evReward": { "defense": 2 }, "types": ["ghost", "grass"], "height": 1.1, @@ -25629,7 +28666,14 @@ "small": { "abilities": ["pickup", "frisk"], "hiddenAbilities": ["insomnia"], - "baseStats": { "attack": 85, "defense": 122, "hp": 55, "specialAttack": 58, "specialDefense": 75, "speed": 99 }, + "baseStats": { + "attack": 85, + "defense": 122, + "hp": 55, + "specialAttack": 58, + "specialDefense": 75, + "speed": 99 + }, "evReward": { "defense": 2 }, "types": ["ghost", "grass"], "height": 0.7, @@ -25708,7 +28752,14 @@ "super": { "abilities": ["pickup", "frisk"], "hiddenAbilities": ["insomnia"], - "baseStats": { "attack": 100, "defense": 122, "hp": 85, "specialAttack": 58, "specialDefense": 75, "speed": 54 }, + "baseStats": { + "attack": 100, + "defense": 122, + "hp": 85, + "specialAttack": 58, + "specialDefense": 75, + "speed": 54 + }, "evReward": { "defense": 2 }, "types": ["ghost", "grass"], "height": 1.7, @@ -25785,7 +28836,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "granbull": { "species": "granbull", @@ -25796,14 +28847,21 @@ "catchRate": 75, "color": "purple", "genderDifference": false, - "eggGroups": ["ground", "fairy"], + "eggGroups": ["field", "fairy"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["intimidate", "quick_feet"], "hiddenAbilities": ["rattled"], - "baseStats": { "attack": 120, "defense": 75, "hp": 90, "specialAttack": 60, "specialDefense": 60, "speed": 45 }, + "baseStats": { + "attack": 120, + "defense": 75, + "hp": 90, + "specialAttack": 60, + "specialDefense": 60, + "speed": 45 + }, "evReward": { "attack": 2 }, "types": ["fairy"], "height": 1.4, @@ -25901,7 +28959,14 @@ "alola": { "abilities": ["magnet_pull", "sturdy"], "hiddenAbilities": ["galvanize"], - "baseStats": { "attack": 95, "defense": 115, "hp": 55, "specialAttack": 45, "specialDefense": 45, "speed": 35 }, + "baseStats": { + "attack": 95, + "defense": 115, + "hp": 55, + "specialAttack": 45, + "specialDefense": 45, + "speed": 35 + }, "evReward": { "defense": 2 }, "types": ["rock", "electric"], "height": 1, @@ -25973,7 +29038,14 @@ "default": { "abilities": ["rock_head", "sturdy"], "hiddenAbilities": ["sand_veil"], - "baseStats": { "attack": 95, "defense": 115, "hp": 55, "specialAttack": 45, "specialDefense": 45, "speed": 35 }, + "baseStats": { + "attack": 95, + "defense": 115, + "hp": 55, + "specialAttack": 45, + "specialDefense": 45, + "speed": 35 + }, "evReward": { "defense": 2 }, "types": ["rock", "ground"], "height": 1, @@ -26056,7 +29128,14 @@ "ash": { "abilities": ["battle_bond"], "hiddenAbilities": [], - "baseStats": { "attack": 145, "defense": 67, "hp": 72, "specialAttack": 153, "specialDefense": 71, "speed": 132 }, + "baseStats": { + "attack": 145, + "defense": 67, + "hp": 72, + "specialAttack": 153, + "specialDefense": 71, + "speed": 132 + }, "evReward": { "speed": 3 }, "types": ["water", "dark"], "height": 1.5, @@ -26135,7 +29214,14 @@ "battle-bond": { "abilities": ["battle_bond"], "hiddenAbilities": [], - "baseStats": { "attack": 95, "defense": 67, "hp": 72, "specialAttack": 103, "specialDefense": 71, "speed": 122 }, + "baseStats": { + "attack": 95, + "defense": 67, + "hp": 72, + "specialAttack": 103, + "specialDefense": 71, + "speed": 122 + }, "evReward": { "speed": 3 }, "types": ["water", "dark"], "height": 1.5, @@ -26214,7 +29300,14 @@ "default": { "abilities": ["torrent"], "hiddenAbilities": ["protean"], - "baseStats": { "attack": 95, "defense": 67, "hp": 72, "specialAttack": 103, "specialDefense": 71, "speed": 122 }, + "baseStats": { + "attack": 95, + "defense": 67, + "hp": 72, + "specialAttack": 103, + "specialDefense": 71, + "speed": 122 + }, "evReward": { "speed": 3 }, "types": ["water", "dark"], "height": 1.5, @@ -26291,7 +29384,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "grimer": { "species": "grimer", @@ -26302,14 +29395,21 @@ "catchRate": 190, "color": "purple", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "alola": { "abilities": ["poison_touch", "gluttony"], "hiddenAbilities": ["power_of_alchemy"], - "baseStats": { "attack": 80, "defense": 50, "hp": 80, "specialAttack": 40, "specialDefense": 50, "speed": 25 }, + "baseStats": { + "attack": 80, + "defense": 50, + "hp": 80, + "specialAttack": 40, + "specialDefense": 50, + "speed": 25 + }, "evReward": { "hp": 1 }, "types": ["poison", "dark"], "height": 0.7, @@ -26382,7 +29482,14 @@ "default": { "abilities": ["stench", "sticky_hold"], "hiddenAbilities": ["poison_touch"], - "baseStats": { "attack": 80, "defense": 50, "hp": 80, "specialAttack": 40, "specialDefense": 50, "speed": 25 }, + "baseStats": { + "attack": 80, + "defense": 50, + "hp": 80, + "specialAttack": 40, + "specialDefense": 50, + "speed": 25 + }, "evReward": { "hp": 1 }, "types": ["poison"], "height": 0.9, @@ -26407,7 +29514,20 @@ { "name": "belch", "level": 46 }, { "name": "memento", "level": 48 } ], - "eggMoves": ["haze", "lick", "curse", "scary_face", "mean_look", "stockpile", "spit_up", "swallow", "imprison", "shadow_punch", "shadow_sneak", "acid_spray"], + "eggMoves": [ + "haze", + "lick", + "curse", + "scary_face", + "mean_look", + "stockpile", + "spit_up", + "swallow", + "imprison", + "shadow_punch", + "shadow_sneak", + "acid_spray" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -26460,14 +29580,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["monster", "plant"], + "eggGroups": ["monster", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["shell_armor"], - "baseStats": { "attack": 89, "defense": 85, "hp": 75, "specialAttack": 55, "specialDefense": 65, "speed": 36 }, + "baseStats": { + "attack": 89, + "defense": 85, + "hp": 75, + "specialAttack": 55, + "specialDefense": 65, + "speed": 36 + }, "evReward": { "attack": 1, "defense": 1 }, "types": ["grass"], "height": 1.1, @@ -26540,7 +29667,14 @@ "default": { "abilities": ["drought"], "hiddenAbilities": [], - "baseStats": { "attack": 150, "defense": 140, "hp": 100, "specialAttack": 100, "specialDefense": 90, "speed": 90 }, + "baseStats": { + "attack": 150, + "defense": 140, + "hp": 100, + "specialAttack": 100, + "specialDefense": 90, + "speed": 90 + }, "evReward": { "attack": 3 }, "types": ["ground"], "height": 3.5, @@ -26617,7 +29751,14 @@ "primal": { "abilities": ["desolate_land"], "hiddenAbilities": [], - "baseStats": { "attack": 180, "defense": 160, "hp": 100, "specialAttack": 150, "specialDefense": 90, "speed": 90 }, + "baseStats": { + "attack": 180, + "defense": 160, + "hp": 100, + "specialAttack": 150, + "specialDefense": 90, + "speed": 90 + }, "evReward": { "attack": 3 }, "types": ["ground", "fire"], "height": 5, @@ -26710,7 +29851,14 @@ "default": { "abilities": ["overgrow"], "hiddenAbilities": ["unburden"], - "baseStats": { "attack": 65, "defense": 45, "hp": 50, "specialAttack": 85, "specialDefense": 65, "speed": 95 }, + "baseStats": { + "attack": 65, + "defense": 45, + "hp": 50, + "specialAttack": 85, + "specialDefense": 65, + "speed": 95 + }, "evReward": { "speed": 2 }, "types": ["grass"], "height": 0.9, @@ -26788,14 +29936,21 @@ "catchRate": 190, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["intimidate", "flash_fire"], "hiddenAbilities": ["justified"], - "baseStats": { "attack": 70, "defense": 45, "hp": 55, "specialAttack": 70, "specialDefense": 50, "speed": 60 }, + "baseStats": { + "attack": 70, + "defense": 45, + "hp": 55, + "specialAttack": 70, + "specialDefense": 50, + "speed": 60 + }, "evReward": { "attack": 1 }, "types": ["fire"], "height": 0.7, @@ -26822,7 +29977,22 @@ { "name": "outrage", "level": 43 }, { "name": "flare_blitz", "level": 45 } ], - "eggMoves": ["double_kick", "body_slam", "thrash", "double_edge", "fire_spin", "iron_tail", "morning_sun", "crunch", "heat_wave", "howl", "covet", "close_combat", "flare_blitz", "burn_up"], + "eggMoves": [ + "double_kick", + "body_slam", + "thrash", + "double_edge", + "fire_spin", + "iron_tail", + "morning_sun", + "crunch", + "heat_wave", + "howl", + "covet", + "close_combat", + "flare_blitz", + "burn_up" + ], "tutorMoves": [], "machine": [ "roar", @@ -26856,7 +30026,9 @@ } } }, - "evolutions": [{ "species": "arcanine", "method": "item", "data": "firestone" }] + "evolutions": [ + { "species": "arcanine", "method": "item", "data": "firestone" } + ] }, "grubbin": { "species": "grubbin", @@ -26874,7 +30046,14 @@ "default": { "abilities": ["swarm"], "hiddenAbilities": [], - "baseStats": { "attack": 62, "defense": 45, "hp": 47, "specialAttack": 55, "specialDefense": 45, "speed": 46 }, + "baseStats": { + "attack": 62, + "defense": 45, + "hp": 47, + "specialAttack": 55, + "specialDefense": 45, + "speed": 46 + }, "evReward": { "attack": 1 }, "types": ["bug"], "height": 0.4, @@ -26925,7 +30104,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "grumpig": { "species": "grumpig", @@ -26936,14 +30115,21 @@ "catchRate": 60, "color": "purple", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["thick_fat", "own_tempo"], "hiddenAbilities": ["gluttony"], - "baseStats": { "attack": 45, "defense": 65, "hp": 80, "specialAttack": 90, "specialDefense": 110, "speed": 80 }, + "baseStats": { + "attack": 45, + "defense": 65, + "hp": 80, + "specialAttack": 90, + "specialDefense": 110, + "speed": 80 + }, "evReward": { "specialDefense": 2 }, "types": ["psychic"], "height": 0.9, @@ -27031,14 +30217,21 @@ "catchRate": 225, "color": "green", "genderDifference": true, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["liquid_ooze", "sticky_hold"], "hiddenAbilities": ["gluttony"], - "baseStats": { "attack": 43, "defense": 53, "hp": 70, "specialAttack": 43, "specialDefense": 53, "speed": 40 }, + "baseStats": { + "attack": 43, + "defense": 53, + "hp": 70, + "specialAttack": 43, + "specialDefense": 53, + "speed": 40 + }, "evReward": { "hp": 1 }, "types": ["poison"], "height": 0.4, @@ -27063,7 +30256,16 @@ { "name": "wring_out", "level": 44 }, { "name": "gunk_shot", "level": 49 } ], - "eggMoves": ["smog", "acid_armor", "curse", "mud_slap", "destiny_bond", "pain_split", "gunk_shot", "venom_drench"], + "eggMoves": [ + "smog", + "acid_armor", + "curse", + "mud_slap", + "destiny_bond", + "pain_split", + "gunk_shot", + "venom_drench" + ], "tutorMoves": [], "machine": [ "ice_beam", @@ -27107,14 +30309,21 @@ "catchRate": 127, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["stakeout", "strong_jaw"], "hiddenAbilities": ["adaptability"], - "baseStats": { "attack": 110, "defense": 60, "hp": 88, "specialAttack": 55, "specialDefense": 60, "speed": 45 }, + "baseStats": { + "attack": 110, + "defense": 60, + "hp": 88, + "specialAttack": 55, + "specialDefense": 60, + "speed": 45 + }, "evReward": { "attack": 2 }, "types": ["normal"], "height": 0.7, @@ -27179,7 +30388,14 @@ "totem": { "abilities": ["stakeout", "strong_jaw"], "hiddenAbilities": ["adaptability"], - "baseStats": { "attack": 110, "defense": 60, "hp": 88, "specialAttack": 55, "specialDefense": 60, "speed": 45 }, + "baseStats": { + "attack": 110, + "defense": 60, + "hp": 88, + "specialAttack": 55, + "specialDefense": 60, + "speed": 45 + }, "evReward": { "attack": 2 }, "types": ["normal"], "height": 1.4, @@ -27242,7 +30458,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "gurdurr": { "species": "gurdurr", @@ -27253,14 +30469,21 @@ "catchRate": 90, "color": "gray", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["guts", "sheer_force"], "hiddenAbilities": ["iron_fist"], - "baseStats": { "attack": 105, "defense": 85, "hp": 85, "specialAttack": 40, "specialDefense": 50, "speed": 40 }, + "baseStats": { + "attack": 105, + "defense": 85, + "hp": 85, + "specialAttack": 40, + "specialDefense": 50, + "speed": 40 + }, "evReward": { "attack": 2 }, "types": ["fighting"], "height": 1.2, @@ -27344,7 +30567,14 @@ "default": { "abilities": ["beast_boost"], "hiddenAbilities": [], - "baseStats": { "attack": 101, "defense": 53, "hp": 223, "specialAttack": 97, "specialDefense": 53, "speed": 43 }, + "baseStats": { + "attack": 101, + "defense": 53, + "hp": 223, + "specialAttack": 97, + "specialDefense": 53, + "speed": 43 + }, "evReward": { "hp": 3 }, "types": ["dark", "dragon"], "height": 5.5, @@ -27415,7 +30645,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "gyarados": { "species": "gyarados", @@ -27433,7 +30663,14 @@ "default": { "abilities": ["intimidate"], "hiddenAbilities": ["moxie"], - "baseStats": { "attack": 125, "defense": 79, "hp": 95, "specialAttack": 60, "specialDefense": 100, "speed": 81 }, + "baseStats": { + "attack": 125, + "defense": 79, + "hp": 95, + "specialAttack": 60, + "specialDefense": 100, + "speed": 81 + }, "evReward": { "attack": 2 }, "types": ["water", "flying"], "height": 6.5, @@ -27507,7 +30744,14 @@ "isMega": true, "abilities": ["mold_breaker"], "hiddenAbilities": [], - "baseStats": { "attack": 155, "defense": 109, "hp": 95, "specialAttack": 70, "specialDefense": 130, "speed": 81 }, + "baseStats": { + "attack": 155, + "defense": 109, + "hp": 95, + "specialAttack": 70, + "specialDefense": 130, + "speed": 81 + }, "evReward": { "attack": 2 }, "types": ["water", "dark"], "height": 6.5, @@ -27596,7 +30840,14 @@ "default": { "abilities": ["bulletproof", "soundproof"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 75, "defense": 90, "hp": 55, "specialAttack": 65, "specialDefense": 70, "speed": 65 }, + "baseStats": { + "attack": 75, + "defense": 90, + "hp": 55, + "specialAttack": 65, + "specialDefense": 70, + "speed": 65 + }, "evReward": { "defense": 2 }, "types": ["dragon", "fighting"], "height": 1.2, @@ -27670,7 +30921,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "happiny": { "species": "happiny", @@ -27688,15 +30939,40 @@ "default": { "abilities": ["natural_cure", "serene_grace"], "hiddenAbilities": ["friend_guard"], - "baseStats": { "attack": 5, "defense": 5, "hp": 100, "specialAttack": 15, "specialDefense": 65, "speed": 30 }, + "baseStats": { + "attack": 5, + "defense": 5, + "hp": 100, + "specialAttack": 15, + "specialDefense": 65, + "speed": 30 + }, "evReward": { "hp": 1 }, "types": ["normal"], "height": 0.6, "weight": 24.4, "baseExp": 110, "moves": { - "levelMoves": [{ "name": "pound", "level": 1 }, { "name": "charm", "level": 1 }, { "name": "copycat", "level": 5 }, { "name": "refresh", "level": 9 }, { "name": "sweet_kiss", "level": 12 }], - "eggMoves": ["counter", "metronome", "endure", "heal_bell", "present", "helping_hand", "aromatherapy", "gravity", "natural_gift", "last_resort", "mud_bomb"], + "levelMoves": [ + { "name": "pound", "level": 1 }, + { "name": "charm", "level": 1 }, + { "name": "copycat", "level": 5 }, + { "name": "refresh", "level": 9 }, + { "name": "sweet_kiss", "level": 12 } + ], + "eggMoves": [ + "counter", + "metronome", + "endure", + "heal_bell", + "present", + "helping_hand", + "aromatherapy", + "gravity", + "natural_gift", + "last_resort", + "mud_bomb" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -27735,7 +31011,9 @@ } } }, - "evolutions": [{ "species": "chansey", "method": "dayholditem", "data": "ovalstone" }] + "evolutions": [ + { "species": "chansey", "method": "dayholditem", "data": "ovalstone" } + ] }, "hariyama": { "species": "hariyama", @@ -27746,14 +31024,21 @@ "catchRate": 200, "color": "brown", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["thick_fat", "guts"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 120, "defense": 60, "hp": 144, "specialAttack": 40, "specialDefense": 60, "speed": 50 }, + "baseStats": { + "attack": 120, + "defense": 60, + "hp": 144, + "specialAttack": 40, + "specialDefense": 60, + "speed": 50 + }, "evReward": { "hp": 2 }, "types": ["fighting"], "height": 2.3, @@ -27834,14 +31119,21 @@ "catchRate": 90, "color": "purple", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 50, "defense": 45, "hp": 45, "specialAttack": 115, "specialDefense": 55, "speed": 95 }, + "baseStats": { + "attack": 50, + "defense": 45, + "hp": 45, + "specialAttack": 115, + "specialDefense": 55, + "speed": 95 + }, "evReward": { "specialAttack": 2 }, "types": ["ghost", "poison"], "height": 1.6, @@ -27925,14 +31217,21 @@ "catchRate": 100, "color": "green", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["limber", "unburden"], "hiddenAbilities": ["mold_breaker"], - "baseStats": { "attack": 92, "defense": 75, "hp": 78, "specialAttack": 74, "specialDefense": 63, "speed": 118 }, + "baseStats": { + "attack": 92, + "defense": 75, + "hp": 78, + "specialAttack": 74, + "specialDefense": 63, + "speed": 118 + }, "evReward": { "attack": 2 }, "types": ["fighting", "flying"], "height": 0.8, @@ -27958,7 +31257,15 @@ { "name": "sky_drop", "level": 55 }, { "name": "swords_dance", "level": 60 } ], - "eggMoves": ["agility", "baton_pass", "mud_sport", "me_first", "entrainment", "quick_guard", "ally_switch"], + "eggMoves": [ + "agility", + "baton_pass", + "mud_sport", + "me_first", + "entrainment", + "quick_guard", + "ally_switch" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -28007,7 +31314,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "haxorus": { "species": "haxorus", @@ -28025,7 +31332,14 @@ "default": { "abilities": ["rivalry", "mold_breaker"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 147, "defense": 90, "hp": 76, "specialAttack": 60, "specialDefense": 70, "speed": 97 }, + "baseStats": { + "attack": 147, + "defense": 90, + "hp": 76, + "specialAttack": 60, + "specialDefense": 70, + "speed": 97 + }, "evReward": { "attack": 3 }, "types": ["dragon"], "height": 1.8, @@ -28112,14 +31426,21 @@ "catchRate": 90, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["gluttony", "flash_fire"], "hiddenAbilities": ["white_smoke"], - "baseStats": { "attack": 97, "defense": 66, "hp": 85, "specialAttack": 105, "specialDefense": 66, "speed": 65 }, + "baseStats": { + "attack": 97, + "defense": 66, + "hp": 85, + "specialAttack": 105, + "specialDefense": 66, + "speed": 65 + }, "evReward": { "specialAttack": 2 }, "types": ["fire"], "height": 1.4, @@ -28148,7 +31469,19 @@ { "name": "flare_blitz", "level": 61 }, { "name": "inferno", "level": 66 } ], - "eggMoves": ["body_slam", "wrap", "curse", "feint_attack", "sleep_talk", "pursuit", "heat_wave", "tickle", "sucker_punch", "night_slash", "belch"], + "eggMoves": [ + "body_slam", + "wrap", + "curse", + "feint_attack", + "sleep_talk", + "pursuit", + "heat_wave", + "tickle", + "sucker_punch", + "night_slash", + "belch" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -28203,7 +31536,14 @@ "default": { "abilities": ["flash_fire"], "hiddenAbilities": ["flame_body"], - "baseStats": { "attack": 90, "defense": 106, "hp": 91, "specialAttack": 130, "specialDefense": 106, "speed": 77 }, + "baseStats": { + "attack": 90, + "defense": 106, + "hp": 91, + "specialAttack": 130, + "specialDefense": 106, + "speed": 77 + }, "evReward": { "specialAttack": 3 }, "types": ["fire", "steel"], "height": 1.7, @@ -28292,7 +31632,14 @@ "default": { "abilities": ["dry_skin", "sand_veil"], "hiddenAbilities": ["solar_power"], - "baseStats": { "attack": 55, "defense": 52, "hp": 62, "specialAttack": 109, "specialDefense": 94, "speed": 109 }, + "baseStats": { + "attack": 55, + "defense": 52, + "hp": 62, + "specialAttack": 109, + "specialDefense": 94, + "speed": 109 + }, "evReward": { "specialAttack": 1, "speed": 1 }, "types": ["electric", "normal"], "height": 1, @@ -28353,7 +31700,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "helioptile": { "species": "helioptile", @@ -28371,7 +31718,14 @@ "default": { "abilities": ["dry_skin", "sand_veil"], "hiddenAbilities": ["solar_power"], - "baseStats": { "attack": 38, "defense": 33, "hp": 44, "specialAttack": 61, "specialDefense": 43, "speed": 70 }, + "baseStats": { + "attack": 38, + "defense": 33, + "hp": 44, + "specialAttack": 61, + "specialDefense": 43, + "speed": 70 + }, "evReward": { "speed": 1 }, "types": ["electric", "normal"], "height": 0.5, @@ -28434,7 +31788,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "heracross": { "species": "heracross", @@ -28452,7 +31806,14 @@ "default": { "abilities": ["swarm", "guts"], "hiddenAbilities": ["moxie"], - "baseStats": { "attack": 125, "defense": 75, "hp": 80, "specialAttack": 40, "specialDefense": 95, "speed": 85 }, + "baseStats": { + "attack": 125, + "defense": 75, + "hp": 80, + "specialAttack": 40, + "specialDefense": 95, + "speed": 85 + }, "evReward": { "attack": 2 }, "types": ["bug", "fighting"], "height": 1.5, @@ -28479,7 +31840,18 @@ { "name": "close_combat", "level": 43 }, { "name": "reversal", "level": 46 } ], - "eggMoves": ["double_edge", "seismic_toss", "harden", "bide", "flail", "megahorn", "pursuit", "focus_punch", "revenge", "rock_blast"], + "eggMoves": [ + "double_edge", + "seismic_toss", + "harden", + "bide", + "flail", + "megahorn", + "pursuit", + "focus_punch", + "revenge", + "rock_blast" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -28526,7 +31898,14 @@ "isMega": true, "abilities": ["skill_link"], "hiddenAbilities": [], - "baseStats": { "attack": 185, "defense": 115, "hp": 80, "specialAttack": 40, "specialDefense": 105, "speed": 75 }, + "baseStats": { + "attack": 185, + "defense": 115, + "hp": 80, + "specialAttack": 40, + "specialDefense": 105, + "speed": 75 + }, "evReward": { "attack": 2 }, "types": ["bug", "fighting"], "height": 1.7, @@ -28608,14 +31987,21 @@ "catchRate": 120, "color": "gray", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["intimidate", "sand_rush"], "hiddenAbilities": ["scrappy"], - "baseStats": { "attack": 80, "defense": 65, "hp": 65, "specialAttack": 35, "specialDefense": 65, "speed": 60 }, + "baseStats": { + "attack": 80, + "defense": 65, + "hp": 65, + "specialAttack": 35, + "specialDefense": 65, + "speed": 60 + }, "evReward": { "attack": 2 }, "types": ["normal"], "height": 0.9, @@ -28687,14 +32073,21 @@ "catchRate": 140, "color": "brown", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 30, "tags": [], "formes": { "default": { "abilities": ["sand_stream"], "hiddenAbilities": ["sand_force"], - "baseStats": { "attack": 72, "defense": 78, "hp": 68, "specialAttack": 38, "specialDefense": 42, "speed": 32 }, + "baseStats": { + "attack": 72, + "defense": 78, + "hp": 68, + "specialAttack": 38, + "specialDefense": 42, + "speed": 32 + }, "evReward": { "defense": 1 }, "types": ["ground"], "height": 0.8, @@ -28714,7 +32107,18 @@ { "name": "double_edge", "level": 44 }, { "name": "fissure", "level": 50 } ], - "eggMoves": ["whirlwind", "body_slam", "curse", "sleep_talk", "stockpile", "spit_up", "swallow", "revenge", "slack_off", "sand_tomb"], + "eggMoves": [ + "whirlwind", + "body_slam", + "curse", + "sleep_talk", + "stockpile", + "spit_up", + "swallow", + "revenge", + "slack_off", + "sand_tomb" + ], "tutorMoves": [], "machine": [ "roar", @@ -28754,14 +32158,21 @@ "catchRate": 60, "color": "brown", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 30, "tags": [], "formes": { "default": { "abilities": ["sand_stream"], "hiddenAbilities": ["sand_force"], - "baseStats": { "attack": 112, "defense": 118, "hp": 108, "specialAttack": 68, "specialDefense": 72, "speed": 47 }, + "baseStats": { + "attack": 112, + "defense": 118, + "hp": 108, + "specialAttack": 68, + "specialDefense": 72, + "speed": 47 + }, "evReward": { "defense": 2 }, "types": ["ground"], "height": 2, @@ -28829,14 +32240,21 @@ "catchRate": 45, "color": "brown", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["keen_eye", "iron_fist"], "hiddenAbilities": ["inner_focus"], - "baseStats": { "attack": 105, "defense": 79, "hp": 50, "specialAttack": 35, "specialDefense": 110, "speed": 76 }, + "baseStats": { + "attack": 105, + "defense": 79, + "hp": 50, + "specialAttack": 35, + "specialDefense": 110, + "speed": 76 + }, "evReward": { "specialDefense": 2 }, "types": ["fighting"], "height": 1.4, @@ -28917,14 +32335,21 @@ "catchRate": 45, "color": "brown", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["limber", "reckless"], "hiddenAbilities": ["unburden"], - "baseStats": { "attack": 120, "defense": 53, "hp": 50, "specialAttack": 35, "specialDefense": 110, "speed": 87 }, + "baseStats": { + "attack": 120, + "defense": 53, + "hp": 50, + "specialAttack": 35, + "specialDefense": 110, + "speed": 87 + }, "evReward": { "attack": 2 }, "types": ["fighting"], "height": 1.5, @@ -29005,14 +32430,21 @@ "catchRate": 45, "color": "brown", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["intimidate", "technician"], "hiddenAbilities": ["steadfast"], - "baseStats": { "attack": 95, "defense": 95, "hp": 50, "specialAttack": 35, "specialDefense": 110, "speed": 70 }, + "baseStats": { + "attack": 95, + "defense": 95, + "hp": 50, + "specialAttack": 35, + "specialDefense": 110, + "speed": 70 + }, "evReward": { "specialDefense": 2 }, "types": ["fighting"], "height": 1.4, @@ -29098,7 +32530,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 130, "defense": 90, "hp": 106, "specialAttack": 110, "specialDefense": 154, "speed": 90 }, + "baseStats": { + "attack": 130, + "defense": 90, + "hp": 106, + "specialAttack": 110, + "specialDefense": 154, + "speed": 90 + }, "evReward": { "specialDefense": 3 }, "types": ["fire", "flying"], "height": 3.8, @@ -29194,7 +32633,14 @@ "default": { "abilities": ["insomnia", "super_luck"], "hiddenAbilities": ["moxie"], - "baseStats": { "attack": 125, "defense": 52, "hp": 100, "specialAttack": 105, "specialDefense": 52, "speed": 71 }, + "baseStats": { + "attack": 125, + "defense": 52, + "hp": 100, + "specialAttack": 105, + "specialDefense": 52, + "speed": 71 + }, "evReward": { "attack": 2 }, "types": ["dark", "flying"], "height": 0.9, @@ -29277,7 +32723,14 @@ "default": { "abilities": ["no_guard"], "hiddenAbilities": [], - "baseStats": { "attack": 80, "defense": 100, "hp": 45, "specialAttack": 35, "specialDefense": 37, "speed": 28 }, + "baseStats": { + "attack": 80, + "defense": 100, + "hp": 45, + "specialAttack": 35, + "specialDefense": 37, + "speed": 28 + }, "evReward": { "defense": 1 }, "types": ["steel", "ghost"], "height": 0.8, @@ -29301,7 +32754,12 @@ { "name": "iron_head", "level": 42 }, { "name": "sacred_sword", "level": 47 } ], - "eggMoves": ["destiny_bond", "metal_sound", "shadow_sneak", "wide_guard"], + "eggMoves": [ + "destiny_bond", + "metal_sound", + "shadow_sneak", + "wide_guard" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -29333,7 +32791,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "hoopa": { "species": "hoopa", @@ -29351,7 +32809,14 @@ "default": { "abilities": ["magician"], "hiddenAbilities": [], - "baseStats": { "attack": 110, "defense": 60, "hp": 80, "specialAttack": 150, "specialDefense": 130, "speed": 70 }, + "baseStats": { + "attack": 110, + "defense": 60, + "hp": 80, + "specialAttack": 150, + "specialDefense": 130, + "speed": 70 + }, "evReward": { "specialAttack": 3 }, "types": ["psychic", "ghost"], "height": 0.5, @@ -29431,7 +32896,14 @@ "unbound": { "abilities": ["magician"], "hiddenAbilities": [], - "baseStats": { "attack": 160, "defense": 60, "hp": 80, "specialAttack": 170, "specialDefense": 130, "speed": 80 }, + "baseStats": { + "attack": 160, + "defense": 60, + "hp": 80, + "specialAttack": 170, + "specialDefense": 130, + "speed": 80 + }, "evReward": { "specialAttack": 3 }, "types": ["psychic", "dark"], "height": 6.5, @@ -29507,7 +32979,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "hoothoot": { "species": "hoothoot", @@ -29525,7 +32997,14 @@ "default": { "abilities": ["insomnia", "keen_eye"], "hiddenAbilities": ["tinted_lens"], - "baseStats": { "attack": 30, "defense": 30, "hp": 60, "specialAttack": 36, "specialDefense": 56, "speed": 50 }, + "baseStats": { + "attack": 30, + "defense": 30, + "hp": 60, + "specialAttack": 36, + "specialDefense": 56, + "speed": 50 + }, "evReward": { "hp": 1 }, "types": ["normal", "flying"], "height": 0.7, @@ -29552,7 +33031,18 @@ { "name": "synchronoise", "level": 43 }, { "name": "dream_eater", "level": 46 } ], - "eggMoves": ["wing_attack", "whirlwind", "supersonic", "agility", "night_shade", "mirror_move", "sky_attack", "feint_attack", "feather_dance", "defog"], + "eggMoves": [ + "wing_attack", + "whirlwind", + "supersonic", + "agility", + "night_shade", + "mirror_move", + "sky_attack", + "feint_attack", + "feather_dance", + "defog" + ], "tutorMoves": [], "machine": [ "fly", @@ -29599,14 +33089,21 @@ "catchRate": 255, "color": "pink", "genderDifference": false, - "eggGroups": ["fairy", "plant"], + "eggGroups": ["fairy", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "leaf_guard"], "hiddenAbilities": ["infiltrator"], - "baseStats": { "attack": 35, "defense": 40, "hp": 35, "specialAttack": 35, "specialDefense": 55, "speed": 50 }, + "baseStats": { + "attack": 35, + "defense": 40, + "hp": 35, + "specialAttack": 35, + "specialDefense": 55, + "speed": 50 + }, "evReward": { "specialDefense": 1 }, "types": ["grass", "flying"], "height": 0.4, @@ -29634,7 +33131,19 @@ { "name": "bounce", "level": 46 }, { "name": "memento", "level": 49 } ], - "eggMoves": ["double_edge", "confusion", "amnesia", "endure", "encore", "helping_hand", "aromatherapy", "worry_seed", "seed_bomb", "cotton_guard", "grassy_terrain"], + "eggMoves": [ + "double_edge", + "confusion", + "amnesia", + "endure", + "encore", + "helping_hand", + "aromatherapy", + "worry_seed", + "seed_bomb", + "cotton_guard", + "grassy_terrain" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -29686,7 +33195,14 @@ "default": { "abilities": ["swift_swim", "sniper"], "hiddenAbilities": ["damp"], - "baseStats": { "attack": 40, "defense": 70, "hp": 30, "specialAttack": 70, "specialDefense": 25, "speed": 60 }, + "baseStats": { + "attack": 40, + "defense": 70, + "hp": 30, + "specialAttack": 70, + "specialDefense": 25, + "speed": 60 + }, "evReward": { "specialAttack": 1 }, "types": ["water"], "height": 0.4, @@ -29707,7 +33223,21 @@ { "name": "dragon_dance", "level": 46 }, { "name": "hydro_pump", "level": 52 } ], - "eggMoves": ["razor_wind", "disable", "aurora_beam", "dragon_rage", "splash", "flail", "octazooka", "outrage", "dragon_breath", "signal_beam", "muddy_water", "water_pulse", "clear_smog"], + "eggMoves": [ + "razor_wind", + "disable", + "aurora_beam", + "dragon_rage", + "splash", + "flail", + "octazooka", + "outrage", + "dragon_breath", + "signal_beam", + "muddy_water", + "water_pulse", + "clear_smog" + ], "tutorMoves": [], "machine": [ "surf", @@ -29748,14 +33278,21 @@ "catchRate": 45, "color": "black", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["early_bird", "flash_fire"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 90, "defense": 50, "hp": 75, "specialAttack": 110, "specialDefense": 80, "speed": 95 }, + "baseStats": { + "attack": 90, + "defense": 50, + "hp": 75, + "specialAttack": 110, + "specialDefense": 80, + "speed": 95 + }, "evReward": { "specialAttack": 2 }, "types": ["dark", "fire"], "height": 1.4, @@ -29830,7 +33367,14 @@ "isMega": true, "abilities": ["solar_power"], "hiddenAbilities": [], - "baseStats": { "attack": 90, "defense": 90, "hp": 75, "specialAttack": 140, "specialDefense": 90, "speed": 115 }, + "baseStats": { + "attack": 90, + "defense": 90, + "hp": 75, + "specialAttack": 140, + "specialDefense": 90, + "speed": 115 + }, "evReward": { "specialAttack": 2 }, "types": ["dark", "fire"], "height": 1.9, @@ -29913,14 +33457,21 @@ "catchRate": 120, "color": "black", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["early_bird", "flash_fire"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 60, "defense": 30, "hp": 45, "specialAttack": 80, "specialDefense": 50, "speed": 65 }, + "baseStats": { + "attack": 60, + "defense": 30, + "hp": 45, + "specialAttack": 80, + "specialDefense": 50, + "speed": 65 + }, "evReward": { "specialAttack": 1 }, "types": ["dark", "fire"], "height": 0.6, @@ -29945,7 +33496,22 @@ { "name": "nasty_plot", "level": 52 }, { "name": "inferno", "level": 56 } ], - "eggMoves": ["counter", "fire_spin", "rage", "reversal", "spite", "destiny_bond", "pursuit", "beat_up", "feint", "punishment", "sucker_punch", "nasty_plot", "thunder_fang", "fire_fang"], + "eggMoves": [ + "counter", + "fire_spin", + "rage", + "reversal", + "spite", + "destiny_bond", + "pursuit", + "beat_up", + "feint", + "punishment", + "sucker_punch", + "nasty_plot", + "thunder_fang", + "fire_fang" + ], "tutorMoves": [], "machine": [ "roar", @@ -30003,7 +33569,14 @@ "default": { "abilities": ["swift_swim"], "hiddenAbilities": ["water_veil"], - "baseStats": { "attack": 104, "defense": 105, "hp": 55, "specialAttack": 94, "specialDefense": 75, "speed": 52 }, + "baseStats": { + "attack": 104, + "defense": 105, + "hp": 55, + "specialAttack": 94, + "specialDefense": 75, + "speed": 52 + }, "evReward": { "attack": 1, "defense": 1 }, "types": ["water"], "height": 1.7, @@ -30078,7 +33651,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 105, "defense": 90, "hp": 92, "specialAttack": 125, "specialDefense": 90, "speed": 98 }, + "baseStats": { + "attack": 105, + "defense": 90, + "hp": 92, + "specialAttack": 125, + "specialDefense": 90, + "speed": 98 + }, "evReward": { "specialAttack": 3 }, "types": ["dark", "dragon"], "height": 1.8, @@ -30173,14 +33753,21 @@ "catchRate": 75, "color": "yellow", "genderDifference": true, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["insomnia", "forewarn"], "hiddenAbilities": ["inner_focus"], - "baseStats": { "attack": 73, "defense": 70, "hp": 85, "specialAttack": 73, "specialDefense": 115, "speed": 67 }, + "baseStats": { + "attack": 73, + "defense": 70, + "hp": 85, + "specialAttack": 73, + "specialDefense": 115, + "speed": 67 + }, "evReward": { "specialDefense": 2 }, "types": ["psychic"], "height": 1.6, @@ -30276,7 +33863,14 @@ "default": { "abilities": ["cute_charm", "competitive"], "hiddenAbilities": ["friend_guard"], - "baseStats": { "attack": 30, "defense": 15, "hp": 90, "specialAttack": 40, "specialDefense": 20, "speed": 15 }, + "baseStats": { + "attack": 30, + "defense": 15, + "hp": 90, + "specialAttack": 40, + "specialDefense": 20, + "speed": 15 + }, "evReward": { "hp": 1 }, "types": ["normal", "fairy"], "height": 0.3, @@ -30291,7 +33885,21 @@ { "name": "sweet_kiss", "level": 9 }, { "name": "copycat", "level": 11 } ], - "eggMoves": ["feint_attack", "perish_song", "sleep_talk", "present", "wish", "fake_tears", "covet", "gravity", "punishment", "last_resort", "captivate", "heal_pulse", "misty_terrain"], + "eggMoves": [ + "feint_attack", + "perish_song", + "sleep_talk", + "present", + "wish", + "fake_tears", + "covet", + "gravity", + "punishment", + "last_resort", + "captivate", + "heal_pulse", + "misty_terrain" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -30331,7 +33939,9 @@ } } }, - "evolutions": [{ "species": "jigglypuff", "method": "happiness", "data": "" }] + "evolutions": [ + { "species": "jigglypuff", "method": "happiness", "data": "" } + ] }, "illumise": { "species": "illumise", @@ -30342,14 +33952,21 @@ "catchRate": 150, "color": "purple", "genderDifference": false, - "eggGroups": ["bug", "humanshape"], + "eggGroups": ["bug", "humanlike"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["oblivious", "tinted_lens"], "hiddenAbilities": ["prankster"], - "baseStats": { "attack": 47, "defense": 75, "hp": 65, "specialAttack": 73, "specialDefense": 85, "speed": 85 }, + "baseStats": { + "attack": 47, + "defense": 75, + "hp": 65, + "specialAttack": 73, + "specialDefense": 85, + "speed": 85 + }, "evReward": { "speed": 1 }, "types": ["bug"], "height": 0.6, @@ -30374,7 +33991,16 @@ { "name": "covet", "level": 47 }, { "name": "infestation", "level": 50 } ], - "eggMoves": ["growth", "confuse_ray", "baton_pass", "encore", "fake_tears", "silver_wind", "bug_buzz", "captivate"], + "eggMoves": [ + "growth", + "confuse_ray", + "baton_pass", + "encore", + "fake_tears", + "silver_wind", + "bug_buzz", + "captivate" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -30426,14 +34052,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["intimidate"], - "baseStats": { "attack": 115, "defense": 90, "hp": 95, "specialAttack": 80, "specialDefense": 90, "speed": 60 }, + "baseStats": { + "attack": 115, + "defense": 90, + "hp": 95, + "specialAttack": 80, + "specialDefense": 90, + "speed": 60 + }, "evReward": { "attack": 3 }, "types": ["fire", "dark"], "height": 1.8, @@ -30515,7 +34148,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "infernape": { "species": "infernape", @@ -30526,14 +34159,21 @@ "catchRate": 45, "color": "brown", "genderDifference": false, - "eggGroups": ["ground", "humanshape"], + "eggGroups": ["field", "humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["iron_fist"], - "baseStats": { "attack": 104, "defense": 71, "hp": 76, "specialAttack": 104, "specialDefense": 71, "speed": 108 }, + "baseStats": { + "attack": 104, + "defense": 71, + "hp": 76, + "specialAttack": 104, + "specialDefense": 71, + "speed": 108 + }, "evReward": { "attack": 1, "specialAttack": 1, "speed": 1 }, "types": ["fire", "fighting"], "height": 1.2, @@ -30631,7 +34271,14 @@ "default": { "abilities": ["contrary", "suction_cups"], "hiddenAbilities": ["infiltrator"], - "baseStats": { "attack": 54, "defense": 53, "hp": 53, "specialAttack": 37, "specialDefense": 46, "speed": 45 }, + "baseStats": { + "attack": 54, + "defense": 53, + "hp": 53, + "specialAttack": 37, + "specialDefense": 46, + "speed": 45 + }, "evReward": { "attack": 1 }, "types": ["dark", "psychic"], "height": 0.4, @@ -30658,7 +34305,13 @@ { "name": "night_slash", "level": 46 }, { "name": "superpower", "level": 48 } ], - "eggMoves": ["destiny_bond", "flatter", "camouflage", "power_split", "simple_beam"], + "eggMoves": [ + "destiny_bond", + "flatter", + "camouflage", + "power_split", + "simple_beam" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -30699,7 +34352,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "ivysaur": { "species": "ivysaur", @@ -30710,14 +34363,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["monster", "plant"], + "eggGroups": ["monster", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["chlorophyll"], - "baseStats": { "attack": 62, "defense": 63, "hp": 60, "specialAttack": 80, "specialDefense": 80, "speed": 60 }, + "baseStats": { + "attack": 62, + "defense": 63, + "hp": 60, + "specialAttack": 80, + "specialDefense": 80, + "speed": 60 + }, "evReward": { "specialAttack": 1, "specialDefense": 1 }, "types": ["grass", "poison"], "height": 1, @@ -30794,7 +34454,14 @@ "default": { "abilities": ["bulletproof", "soundproof"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 55, "defense": 65, "hp": 45, "specialAttack": 45, "specialDefense": 45, "speed": 45 }, + "baseStats": { + "attack": 55, + "defense": 65, + "hp": 45, + "specialAttack": 45, + "specialDefense": 45, + "speed": 45 + }, "evReward": { "defense": 1 }, "types": ["dragon"], "height": 0.6, @@ -30860,7 +34527,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "jellicent": { "species": "jellicent", @@ -30871,14 +34538,21 @@ "catchRate": 60, "color": "white", "genderDifference": true, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["water_absorb", "cursed_body"], "hiddenAbilities": ["damp"], - "baseStats": { "attack": 60, "defense": 70, "hp": 100, "specialAttack": 85, "specialDefense": 105, "speed": 60 }, + "baseStats": { + "attack": 60, + "defense": 70, + "hp": 100, + "specialAttack": 85, + "specialDefense": 105, + "speed": 60 + }, "evReward": { "specialDefense": 2 }, "types": ["water", "ghost"], "height": 2.2, @@ -30967,7 +34641,14 @@ "default": { "abilities": ["cute_charm", "competitive"], "hiddenAbilities": ["friend_guard"], - "baseStats": { "attack": 45, "defense": 20, "hp": 115, "specialAttack": 45, "specialDefense": 25, "speed": 20 }, + "baseStats": { + "attack": 45, + "defense": 20, + "hp": 115, + "specialAttack": 45, + "specialDefense": 25, + "speed": 20 + }, "evReward": { "hp": 2 }, "types": ["normal", "fairy"], "height": 0.5, @@ -31043,7 +34724,9 @@ } } }, - "evolutions": [{ "species": "wigglytuff", "method": "item", "data": "moonstone" }] + "evolutions": [ + { "species": "wigglytuff", "method": "item", "data": "moonstone" } + ] }, "jirachi": { "species": "jirachi", @@ -31061,7 +34744,14 @@ "default": { "abilities": ["serene_grace"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 100, "hp": 100, "specialAttack": 100, "specialDefense": 100, "speed": 100 }, + "baseStats": { + "attack": 100, + "defense": 100, + "hp": 100, + "specialAttack": 100, + "specialDefense": 100, + "speed": 100 + }, "evReward": { "hp": 3 }, "types": ["steel", "psychic"], "height": 0.3, @@ -31144,14 +34834,21 @@ "catchRate": 45, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 35, "tags": [], "formes": { "default": { "abilities": ["volt_absorb"], "hiddenAbilities": ["quick_feet"], - "baseStats": { "attack": 65, "defense": 60, "hp": 65, "specialAttack": 110, "specialDefense": 95, "speed": 130 }, + "baseStats": { + "attack": 65, + "defense": 60, + "hp": 65, + "specialAttack": 110, + "specialDefense": 95, + "speed": 130 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 0.8, @@ -31231,7 +34928,14 @@ "default": { "abilities": ["compound_eyes", "unnerve"], "hiddenAbilities": ["swarm"], - "baseStats": { "attack": 47, "defense": 50, "hp": 50, "specialAttack": 57, "specialDefense": 50, "speed": 65 }, + "baseStats": { + "attack": 47, + "defense": 50, + "hp": 50, + "specialAttack": 57, + "specialDefense": 50, + "speed": 65 + }, "evReward": { "speed": 1 }, "types": ["bug", "electric"], "height": 0.1, @@ -31256,7 +34960,16 @@ { "name": "discharge", "level": 45 }, { "name": "bug_buzz", "level": 48 } ], - "eggMoves": ["poison_sting", "pin_missile", "disable", "feint_attack", "pursuit", "camouflage", "rock_climb", "cross_poison"], + "eggMoves": [ + "poison_sting", + "pin_missile", + "disable", + "feint_attack", + "pursuit", + "camouflage", + "rock_climb", + "cross_poison" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -31302,14 +35015,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["fairy", "plant"], + "eggGroups": ["fairy", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "leaf_guard"], "hiddenAbilities": ["infiltrator"], - "baseStats": { "attack": 55, "defense": 70, "hp": 75, "specialAttack": 55, "specialDefense": 95, "speed": 110 }, + "baseStats": { + "attack": 55, + "defense": 70, + "hp": 75, + "specialAttack": 55, + "specialDefense": 95, + "speed": 110 + }, "evReward": { "speed": 3 }, "types": ["grass", "flying"], "height": 0.8, @@ -31387,14 +35107,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["oblivious", "forewarn"], "hiddenAbilities": ["dry_skin"], - "baseStats": { "attack": 50, "defense": 35, "hp": 65, "specialAttack": 115, "specialDefense": 95, "speed": 95 }, + "baseStats": { + "attack": 50, + "defense": 35, + "hp": 65, + "specialAttack": 115, + "specialDefense": 95, + "speed": 95 + }, "evReward": { "specialAttack": 2 }, "types": ["ice", "psychic"], "height": 1.4, @@ -31490,7 +35217,14 @@ "default": { "abilities": ["swift_swim", "battle_armor"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 80, "defense": 90, "hp": 30, "specialAttack": 55, "specialDefense": 45, "speed": 55 }, + "baseStats": { + "attack": 80, + "defense": 90, + "hp": 30, + "specialAttack": 55, + "specialDefense": 45, + "speed": 55 + }, "evReward": { "defense": 1 }, "types": ["rock", "water"], "height": 0.5, @@ -31511,7 +35245,20 @@ { "name": "ancient_power", "level": 46 }, { "name": "wring_out", "level": 50 } ], - "eggMoves": ["take_down", "bubble_beam", "aurora_beam", "screech", "confuse_ray", "flail", "foresight", "icy_wind", "giga_drain", "rapid_spin", "knock_off", "mud_shot"], + "eggMoves": [ + "take_down", + "bubble_beam", + "aurora_beam", + "screech", + "confuse_ray", + "flail", + "foresight", + "icy_wind", + "giga_drain", + "rapid_spin", + "knock_off", + "mud_shot" + ], "tutorMoves": [], "machine": [ "surf", @@ -31565,7 +35312,14 @@ "default": { "abilities": ["swift_swim", "battle_armor"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 115, "defense": 105, "hp": 60, "specialAttack": 65, "specialDefense": 70, "speed": 80 }, + "baseStats": { + "attack": 115, + "defense": 105, + "hp": 60, + "specialAttack": 65, + "specialDefense": 70, + "speed": 80 + }, "evReward": { "attack": 2 }, "types": ["rock", "water"], "height": 1.3, @@ -31647,14 +35401,21 @@ "catchRate": 100, "color": "brown", "genderDifference": true, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["synchronize", "inner_focus"], "hiddenAbilities": ["magic_guard"], - "baseStats": { "attack": 35, "defense": 30, "hp": 40, "specialAttack": 120, "specialDefense": 70, "speed": 105 }, + "baseStats": { + "attack": 35, + "defense": 30, + "hp": 40, + "specialAttack": 120, + "specialDefense": 70, + "speed": 105 + }, "evReward": { "specialAttack": 2 }, "types": ["psychic"], "height": 1.3, @@ -31742,13 +35503,29 @@ "default": { "abilities": ["shed_skin"], "hiddenAbilities": [], - "baseStats": { "attack": 25, "defense": 50, "hp": 45, "specialAttack": 25, "specialDefense": 25, "speed": 35 }, + "baseStats": { + "attack": 25, + "defense": 50, + "hp": 45, + "specialAttack": 25, + "specialDefense": 25, + "speed": 35 + }, "evReward": { "defense": 2 }, "types": ["bug", "poison"], "height": 0.6, "weight": 10, "baseExp": 72, - "moves": { "levelMoves": [{ "name": "harden", "level": 0 }, { "name": "harden", "level": 1 }], "eggMoves": [], "tutorMoves": [], "machine": [], "formeChange": [] } + "moves": { + "levelMoves": [ + { "name": "harden", "level": 0 }, + { "name": "harden", "level": 1 } + ], + "eggMoves": [], + "tutorMoves": [], + "machine": [], + "formeChange": [] + } } }, "evolutions": [{ "species": "beedrill", "method": "level", "data": "10" }] @@ -31769,7 +35546,14 @@ "default": { "abilities": ["early_bird", "scrappy"], "hiddenAbilities": ["inner_focus"], - "baseStats": { "attack": 95, "defense": 80, "hp": 105, "specialAttack": 40, "specialDefense": 80, "speed": 90 }, + "baseStats": { + "attack": 95, + "defense": 80, + "hp": 105, + "specialAttack": 40, + "specialDefense": 80, + "speed": 90 + }, "evReward": { "hp": 2 }, "types": ["normal"], "height": 2.2, @@ -31793,7 +35577,21 @@ { "name": "sucker_punch", "level": 49 }, { "name": "reversal", "level": 50 } ], - "eggMoves": ["stomp", "double_edge", "disable", "counter", "focus_energy", "foresight", "uproar", "focus_punch", "endeavor", "crush_claw", "hammer_arm", "trump_card", "circle_throw"], + "eggMoves": [ + "stomp", + "double_edge", + "disable", + "counter", + "focus_energy", + "foresight", + "uproar", + "focus_punch", + "endeavor", + "crush_claw", + "hammer_arm", + "trump_card", + "circle_throw" + ], "tutorMoves": [], "machine": [ "roar", @@ -31846,7 +35644,14 @@ "isMega": true, "abilities": ["parental_bond"], "hiddenAbilities": [], - "baseStats": { "attack": 125, "defense": 100, "hp": 105, "specialAttack": 60, "specialDefense": 100, "speed": 100 }, + "baseStats": { + "attack": 125, + "defense": 100, + "hp": 105, + "specialAttack": 60, + "specialDefense": 100, + "speed": 100 + }, "evReward": { "hp": 2 }, "types": ["normal"], "height": 2.2, @@ -31938,7 +35743,14 @@ "default": { "abilities": ["swarm", "shed_skin"], "hiddenAbilities": ["no_guard"], - "baseStats": { "attack": 75, "defense": 45, "hp": 50, "specialAttack": 40, "specialDefense": 45, "speed": 60 }, + "baseStats": { + "attack": 75, + "defense": 45, + "hp": 50, + "specialAttack": 40, + "specialDefense": 45, + "speed": 60 + }, "evReward": { "attack": 1 }, "types": ["bug"], "height": 0.5, @@ -31962,7 +35774,17 @@ { "name": "swords_dance", "level": 52 }, { "name": "double_edge", "level": 56 } ], - "eggMoves": ["horn_attack", "counter", "screech", "feint_attack", "megahorn", "pursuit", "knock_off", "bug_bite", "drill_run"], + "eggMoves": [ + "horn_attack", + "counter", + "screech", + "feint_attack", + "megahorn", + "pursuit", + "knock_off", + "bug_bite", + "drill_run" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -32010,7 +35832,14 @@ "default": { "abilities": ["beast_boost"], "hiddenAbilities": [], - "baseStats": { "attack": 181, "defense": 131, "hp": 59, "specialAttack": 59, "specialDefense": 31, "speed": 109 }, + "baseStats": { + "attack": 181, + "defense": 131, + "hp": 59, + "specialAttack": 59, + "specialDefense": 31, + "speed": 109 + }, "evReward": { "attack": 3 }, "types": ["grass", "steel"], "height": 0.3, @@ -32066,7 +35895,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "kecleon": { "species": "kecleon", @@ -32077,14 +35906,21 @@ "catchRate": 200, "color": "green", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["color_change"], "hiddenAbilities": ["protean"], - "baseStats": { "attack": 90, "defense": 70, "hp": 60, "specialAttack": 60, "specialDefense": 120, "speed": 40 }, + "baseStats": { + "attack": 90, + "defense": 70, + "hp": 60, + "specialAttack": 60, + "specialDefense": 120, + "speed": 40 + }, "evReward": { "specialDefense": 1 }, "types": ["normal"], "height": 1, @@ -32112,7 +35948,19 @@ { "name": "sucker_punch", "level": 46 }, { "name": "synchronoise", "level": 50 } ], - "eggMoves": ["disable", "recover", "dizzy_punch", "fake_out", "trick", "magic_coat", "skill_swap", "snatch", "camouflage", "nasty_plot", "foul_play"], + "eggMoves": [ + "disable", + "recover", + "dizzy_punch", + "fake_out", + "trick", + "magic_coat", + "skill_swap", + "snatch", + "camouflage", + "nasty_plot", + "foul_play" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -32175,7 +36023,14 @@ "default": { "abilities": ["justified"], "hiddenAbilities": [], - "baseStats": { "attack": 72, "defense": 90, "hp": 91, "specialAttack": 129, "specialDefense": 90, "speed": 108 }, + "baseStats": { + "attack": 72, + "defense": 90, + "hp": 91, + "specialAttack": 129, + "specialDefense": 90, + "speed": 108 + }, "evReward": { "specialAttack": 3 }, "types": ["water", "fighting"], "height": 1.4, @@ -32243,7 +36098,14 @@ "resolute": { "abilities": ["justified"], "hiddenAbilities": [], - "baseStats": { "attack": 72, "defense": 90, "hp": 91, "specialAttack": 129, "specialDefense": 90, "speed": 108 }, + "baseStats": { + "attack": 72, + "defense": 90, + "hp": 91, + "specialAttack": 129, + "specialDefense": 90, + "speed": 108 + }, "evReward": { "specialAttack": 3 }, "types": ["water", "fighting"], "height": 1.4, @@ -32327,7 +36189,14 @@ "default": { "abilities": ["swift_swim", "sniper"], "hiddenAbilities": ["damp"], - "baseStats": { "attack": 95, "defense": 95, "hp": 75, "specialAttack": 95, "specialDefense": 95, "speed": 85 }, + "baseStats": { + "attack": 95, + "defense": 95, + "hp": 75, + "specialAttack": 95, + "specialDefense": 95, + "speed": 85 + }, "evReward": { "attack": 1, "specialAttack": 1, "specialDefense": 1 }, "types": ["water", "dragon"], "height": 1.8, @@ -32404,7 +36273,14 @@ "default": { "abilities": ["hyper_cutter", "shell_armor"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 130, "defense": 115, "hp": 55, "specialAttack": 50, "specialDefense": 50, "speed": 75 }, + "baseStats": { + "attack": 130, + "defense": 115, + "hp": 55, + "specialAttack": 50, + "specialDefense": 50, + "speed": 75 + }, "evReward": { "attack": 2 }, "types": ["water"], "height": 1.3, @@ -32481,14 +36357,21 @@ "catchRate": 120, "color": "white", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["synchronize", "trace"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 35, "defense": 35, "hp": 38, "specialAttack": 65, "specialDefense": 55, "speed": 50 }, + "baseStats": { + "attack": 35, + "defense": 35, + "hp": 38, + "specialAttack": 65, + "specialDefense": 55, + "speed": 50 + }, "evReward": { "specialAttack": 2 }, "types": ["psychic", "fairy"], "height": 0.8, @@ -32562,7 +36445,10 @@ } } }, - "evolutions": [{ "species": "gardevoir", "method": "level", "data": "30" }, { "species": "gallade", "method": "itemmale", "data": "dawnstone" }] + "evolutions": [ + { "species": "gardevoir", "method": "level", "data": "30" }, + { "species": "gallade", "method": "itemmale", "data": "dawnstone" } + ] }, "klang": { "species": "klang", @@ -32580,7 +36466,14 @@ "default": { "abilities": ["plus", "minus"], "hiddenAbilities": ["clear_body"], - "baseStats": { "attack": 80, "defense": 95, "hp": 60, "specialAttack": 70, "specialDefense": 85, "speed": 50 }, + "baseStats": { + "attack": 80, + "defense": 95, + "hp": 60, + "specialAttack": 70, + "specialDefense": 85, + "speed": 50 + }, "evReward": { "defense": 2 }, "types": ["steel"], "height": 0.6, @@ -32655,7 +36548,14 @@ "default": { "abilities": ["prankster"], "hiddenAbilities": ["magician"], - "baseStats": { "attack": 80, "defense": 91, "hp": 57, "specialAttack": 80, "specialDefense": 87, "speed": 75 }, + "baseStats": { + "attack": 80, + "defense": 91, + "hp": 57, + "specialAttack": 80, + "specialDefense": 87, + "speed": 75 + }, "evReward": { "defense": 1 }, "types": ["steel", "fairy"], "height": 0.2, @@ -32718,7 +36618,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "klink": { "species": "klink", @@ -32736,7 +36636,14 @@ "default": { "abilities": ["plus", "minus"], "hiddenAbilities": ["clear_body"], - "baseStats": { "attack": 55, "defense": 70, "hp": 40, "specialAttack": 45, "specialDefense": 60, "speed": 30 }, + "baseStats": { + "attack": 55, + "defense": 70, + "hp": 40, + "specialAttack": 45, + "specialDefense": 60, + "speed": 30 + }, "evReward": { "defense": 1 }, "types": ["steel"], "height": 0.3, @@ -32808,7 +36715,14 @@ "default": { "abilities": ["plus", "minus"], "hiddenAbilities": ["clear_body"], - "baseStats": { "attack": 100, "defense": 115, "hp": 60, "specialAttack": 70, "specialDefense": 85, "speed": 90 }, + "baseStats": { + "attack": 100, + "defense": 115, + "hp": 60, + "specialAttack": 70, + "specialDefense": 85, + "speed": 90 + }, "evReward": { "defense": 3 }, "types": ["steel"], "height": 0.6, @@ -32882,14 +36796,21 @@ "catchRate": 190, "color": "purple", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 65, "defense": 95, "hp": 40, "specialAttack": 60, "specialDefense": 45, "speed": 35 }, + "baseStats": { + "attack": 65, + "defense": 95, + "hp": 40, + "specialAttack": 60, + "specialDefense": 45, + "speed": 35 + }, "evReward": { "defense": 1 }, "types": ["poison"], "height": 0.6, @@ -32913,7 +36834,20 @@ { "name": "belch", "level": 42 }, { "name": "memento", "level": 45 } ], - "eggMoves": ["psybeam", "screech", "psywave", "curse", "spite", "destiny_bond", "pain_split", "stockpile", "spit_up", "swallow", "grudge", "toxic_spikes"], + "eggMoves": [ + "psybeam", + "screech", + "psywave", + "curse", + "spite", + "destiny_bond", + "pain_split", + "stockpile", + "spit_up", + "swallow", + "grudge", + "toxic_spikes" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -32964,14 +36898,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["comatose"], "hiddenAbilities": [], - "baseStats": { "attack": 115, "defense": 65, "hp": 65, "specialAttack": 75, "specialDefense": 95, "speed": 65 }, + "baseStats": { + "attack": 115, + "defense": 65, + "hp": 65, + "specialAttack": 75, + "specialDefense": 95, + "speed": 65 + }, "evReward": { "attack": 2 }, "types": ["normal"], "height": 0.4, @@ -33030,7 +36971,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "kommo_o": { "species": "kommo_o", @@ -33048,7 +36989,14 @@ "default": { "abilities": ["bulletproof", "soundproof"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 110, "defense": 125, "hp": 75, "specialAttack": 100, "specialDefense": 105, "speed": 85 }, + "baseStats": { + "attack": 110, + "defense": 125, + "hp": 75, + "specialAttack": 100, + "specialDefense": 105, + "speed": 85 + }, "evReward": { "defense": 3 }, "types": ["dragon", "fighting"], "height": 1.6, @@ -33132,7 +37080,14 @@ "kommo-o-totem": { "abilities": ["bulletproof", "soundproof"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 110, "defense": 125, "hp": 75, "specialAttack": 100, "specialDefense": 105, "speed": 85 }, + "baseStats": { + "attack": 110, + "defense": 125, + "hp": 75, + "specialAttack": 100, + "specialDefense": 105, + "speed": 85 + }, "evReward": { "defense": 3 }, "types": ["dragon", "fighting"], "height": 2.4, @@ -33214,7 +37169,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "krabby": { "species": "krabby", @@ -33232,7 +37187,14 @@ "default": { "abilities": ["hyper_cutter", "shell_armor"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 105, "defense": 90, "hp": 30, "specialAttack": 25, "specialDefense": 25, "speed": 50 }, + "baseStats": { + "attack": 105, + "defense": 90, + "hp": 30, + "specialAttack": 25, + "specialDefense": 25, + "speed": 50 + }, "evReward": { "attack": 1 }, "types": ["water"], "height": 0.4, @@ -33256,7 +37218,20 @@ { "name": "crabhammer", "level": 41 }, { "name": "flail", "level": 45 } ], - "eggMoves": ["slam", "agility", "haze", "bide", "amnesia", "flail", "endure", "ancient_power", "knock_off", "tickle", "chip_away", "ally_switch"], + "eggMoves": [ + "slam", + "agility", + "haze", + "bide", + "amnesia", + "flail", + "endure", + "ancient_power", + "knock_off", + "tickle", + "chip_away", + "ally_switch" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -33310,14 +37285,26 @@ "default": { "abilities": ["shed_skin"], "hiddenAbilities": ["run_away"], - "baseStats": { "attack": 25, "defense": 41, "hp": 37, "specialAttack": 25, "specialDefense": 41, "speed": 25 }, + "baseStats": { + "attack": 25, + "defense": 41, + "hp": 37, + "specialAttack": 25, + "specialDefense": 41, + "speed": 25 + }, "evReward": { "defense": 1 }, "types": ["bug"], "height": 0.3, "weight": 2.2, "baseExp": 39, "moves": { - "levelMoves": [{ "name": "growl", "level": 1 }, { "name": "bide", "level": 1 }, { "name": "struggle_bug", "level": 6 }, { "name": "bug_bite", "level": 16 }], + "levelMoves": [ + { "name": "growl", "level": 1 }, + { "name": "bide", "level": 1 }, + { "name": "struggle_bug", "level": 6 }, + { "name": "bug_bite", "level": 16 } + ], "eggMoves": [], "tutorMoves": [], "machine": [], @@ -33343,7 +37330,14 @@ "default": { "abilities": ["swarm"], "hiddenAbilities": ["technician"], - "baseStats": { "attack": 85, "defense": 51, "hp": 77, "specialAttack": 55, "specialDefense": 51, "speed": 65 }, + "baseStats": { + "attack": 85, + "defense": 51, + "hp": 77, + "specialAttack": 55, + "specialDefense": 51, + "speed": 65 + }, "evReward": { "attack": 2 }, "types": ["bug"], "height": 1, @@ -33414,14 +37408,21 @@ "catchRate": 90, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["intimidate", "moxie"], "hiddenAbilities": ["anger_point"], - "baseStats": { "attack": 82, "defense": 45, "hp": 60, "specialAttack": 45, "specialDefense": 45, "speed": 74 }, + "baseStats": { + "attack": 82, + "defense": 45, + "hp": 60, + "specialAttack": 45, + "specialDefense": 45, + "speed": 74 + }, "evReward": { "attack": 2 }, "types": ["ground", "dark"], "height": 1, @@ -33503,14 +37504,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["intimidate", "moxie"], "hiddenAbilities": ["anger_point"], - "baseStats": { "attack": 117, "defense": 80, "hp": 95, "specialAttack": 65, "specialDefense": 70, "speed": 92 }, + "baseStats": { + "attack": 117, + "defense": 80, + "hp": 95, + "specialAttack": 65, + "specialDefense": 70, + "speed": 92 + }, "evReward": { "attack": 3 }, "types": ["ground", "dark"], "height": 1.5, @@ -33608,7 +37616,14 @@ "default": { "abilities": ["drizzle"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 90, "hp": 100, "specialAttack": 150, "specialDefense": 140, "speed": 90 }, + "baseStats": { + "attack": 100, + "defense": 90, + "hp": 100, + "specialAttack": 150, + "specialDefense": 140, + "speed": 90 + }, "evReward": { "specialAttack": 3 }, "types": ["water"], "height": 4.5, @@ -33675,7 +37690,14 @@ "primal": { "abilities": ["primordial_sea"], "hiddenAbilities": [], - "baseStats": { "attack": 150, "defense": 90, "hp": 100, "specialAttack": 180, "specialDefense": 160, "speed": 90 }, + "baseStats": { + "attack": 150, + "defense": 90, + "hp": 100, + "specialAttack": 180, + "specialDefense": 160, + "speed": 90 + }, "evReward": { "specialAttack": 3 }, "types": ["water"], "height": 9.8, @@ -33758,7 +37780,14 @@ "black": { "abilities": ["teravolt"], "hiddenAbilities": [], - "baseStats": { "attack": 170, "defense": 100, "hp": 125, "specialAttack": 120, "specialDefense": 90, "speed": 95 }, + "baseStats": { + "attack": 170, + "defense": 100, + "hp": 125, + "specialAttack": 120, + "specialDefense": 90, + "speed": 95 + }, "evReward": { "attack": 3 }, "types": ["dragon", "ice"], "height": 3.3, @@ -33832,7 +37861,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": [], - "baseStats": { "attack": 130, "defense": 90, "hp": 125, "specialAttack": 130, "specialDefense": 90, "speed": 95 }, + "baseStats": { + "attack": 130, + "defense": 90, + "hp": 125, + "specialAttack": 130, + "specialDefense": 90, + "speed": 95 + }, "evReward": { "attack": 1, "hp": 1, "specialAttack": 1 }, "types": ["dragon", "ice"], "height": 3, @@ -33906,7 +37942,14 @@ "white": { "abilities": ["turboblaze"], "hiddenAbilities": [], - "baseStats": { "attack": 120, "defense": 90, "hp": 125, "specialAttack": 170, "specialDefense": 100, "speed": 95 }, + "baseStats": { + "attack": 120, + "defense": 90, + "hp": 125, + "specialAttack": 170, + "specialDefense": 100, + "speed": 95 + }, "evReward": { "specialAttack": 3 }, "types": ["dragon", "ice"], "height": 3.6, @@ -33996,7 +38039,14 @@ "default": { "abilities": ["sturdy", "rock_head"], "hiddenAbilities": ["heavy_metal"], - "baseStats": { "attack": 90, "defense": 140, "hp": 60, "specialAttack": 50, "specialDefense": 50, "speed": 40 }, + "baseStats": { + "attack": 90, + "defense": 140, + "hp": 60, + "specialAttack": 50, + "specialDefense": 50, + "speed": 40 + }, "evReward": { "defense": 2 }, "types": ["steel", "rock"], "height": 0.9, @@ -34070,14 +38120,21 @@ "catchRate": 90, "color": "black", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["flash_fire", "flame_body"], "hiddenAbilities": ["infiltrator"], - "baseStats": { "attack": 40, "defense": 60, "hp": 60, "specialAttack": 95, "specialDefense": 60, "speed": 55 }, + "baseStats": { + "attack": 40, + "defense": 60, + "hp": 60, + "specialAttack": 95, + "specialDefense": 60, + "speed": 55 + }, "evReward": { "specialAttack": 2 }, "types": ["ghost", "fire"], "height": 0.6, @@ -34147,7 +38204,9 @@ } } }, - "evolutions": [{ "species": "chandelure", "method": "item", "data": "duskstone" }] + "evolutions": [ + { "species": "chandelure", "method": "item", "data": "duskstone" } + ] }, "landorus": { "species": "landorus", @@ -34165,7 +38224,14 @@ "default": { "abilities": ["sand_force"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 125, "defense": 90, "hp": 89, "specialAttack": 115, "specialDefense": 80, "speed": 101 }, + "baseStats": { + "attack": 125, + "defense": 90, + "hp": 89, + "specialAttack": 115, + "specialDefense": 80, + "speed": 101 + }, "evReward": { "specialAttack": 3 }, "types": ["ground", "flying"], "height": 1.5, @@ -34243,7 +38309,14 @@ "therian": { "abilities": ["intimidate"], "hiddenAbilities": [], - "baseStats": { "attack": 145, "defense": 90, "hp": 89, "specialAttack": 105, "specialDefense": 80, "speed": 91 }, + "baseStats": { + "attack": 145, + "defense": 90, + "hp": 89, + "specialAttack": 105, + "specialDefense": 80, + "speed": 91 + }, "evReward": { "attack": 3 }, "types": ["ground", "flying"], "height": 1.3, @@ -34337,7 +38410,14 @@ "default": { "abilities": ["volt_absorb", "illuminate"], "hiddenAbilities": ["water_absorb"], - "baseStats": { "attack": 58, "defense": 58, "hp": 125, "specialAttack": 76, "specialDefense": 76, "speed": 67 }, + "baseStats": { + "attack": 58, + "defense": 58, + "hp": 125, + "specialAttack": 76, + "specialDefense": 76, + "speed": 67 + }, "evReward": { "hp": 2 }, "types": ["water", "electric"], "height": 1.2, @@ -34427,7 +38507,14 @@ "default": { "abilities": ["water_absorb", "shell_armor"], "hiddenAbilities": ["hydration"], - "baseStats": { "attack": 85, "defense": 80, "hp": 130, "specialAttack": 85, "specialDefense": 95, "speed": 60 }, + "baseStats": { + "attack": 85, + "defense": 80, + "hp": 130, + "specialAttack": 85, + "specialDefense": 95, + "speed": 60 + }, "evReward": { "hp": 2 }, "types": ["water", "ice"], "height": 2.5, @@ -34524,7 +38611,14 @@ "default": { "abilities": ["flame_body"], "hiddenAbilities": ["swarm"], - "baseStats": { "attack": 85, "defense": 55, "hp": 55, "specialAttack": 50, "specialDefense": 55, "speed": 60 }, + "baseStats": { + "attack": 85, + "defense": 55, + "hp": 55, + "specialAttack": 50, + "specialDefense": 55, + "speed": 60 + }, "evReward": { "attack": 1 }, "types": ["bug", "fire"], "height": 1.1, @@ -34545,7 +38639,15 @@ { "name": "thrash", "level": 90 }, { "name": "flare_blitz", "level": 100 } ], - "eggMoves": ["string_shot", "harden", "foresight", "endure", "morning_sun", "magnet_rise", "zen_headbutt"], + "eggMoves": [ + "string_shot", + "harden", + "foresight", + "endure", + "morning_sun", + "magnet_rise", + "zen_headbutt" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -34599,7 +38701,14 @@ "default": { "abilities": ["guts"], "hiddenAbilities": ["sand_veil"], - "baseStats": { "attack": 64, "defense": 50, "hp": 50, "specialAttack": 45, "specialDefense": 50, "speed": 41 }, + "baseStats": { + "attack": 64, + "defense": 50, + "hp": 50, + "specialAttack": 45, + "specialDefense": 50, + "speed": 41 + }, "evReward": { "attack": 1 }, "types": ["rock", "ground"], "height": 0.6, @@ -34622,7 +38731,20 @@ { "name": "stone_edge", "level": 50 }, { "name": "hyper_beam", "level": 55 } ], - "eggMoves": ["stomp", "focus_energy", "curse", "outrage", "pursuit", "iron_tail", "ancient_power", "iron_defense", "dragon_dance", "assurance", "iron_head", "stealth_rock"], + "eggMoves": [ + "stomp", + "focus_energy", + "curse", + "outrage", + "pursuit", + "iron_tail", + "ancient_power", + "iron_defense", + "dragon_dance", + "assurance", + "iron_head", + "stealth_rock" + ], "tutorMoves": [], "machine": [ "hyper_beam", @@ -34679,7 +38801,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 80, "defense": 90, "hp": 80, "specialAttack": 110, "specialDefense": 130, "speed": 110 }, + "baseStats": { + "attack": 80, + "defense": 90, + "hp": 80, + "specialAttack": 110, + "specialDefense": 130, + "speed": 110 + }, "evReward": { "specialDefense": 3 }, "types": ["dragon", "psychic"], "height": 1.4, @@ -34766,7 +38895,14 @@ "isMega": true, "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 120, "hp": 80, "specialAttack": 140, "specialDefense": 150, "speed": 110 }, + "baseStats": { + "attack": 100, + "defense": 120, + "hp": 80, + "specialAttack": 140, + "specialDefense": 150, + "speed": 110 + }, "evReward": { "specialDefense": 3 }, "types": ["dragon", "psychic"], "height": 1.8, @@ -34868,7 +39004,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 90, "defense": 80, "hp": 80, "specialAttack": 130, "specialDefense": 110, "speed": 110 }, + "baseStats": { + "attack": 90, + "defense": 80, + "hp": 80, + "specialAttack": 130, + "specialDefense": 110, + "speed": 110 + }, "evReward": { "specialAttack": 3 }, "types": ["dragon", "psychic"], "height": 2, @@ -34955,7 +39098,14 @@ "isMega": true, "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 130, "defense": 100, "hp": 80, "specialAttack": 160, "specialDefense": 120, "speed": 110 }, + "baseStats": { + "attack": 130, + "defense": 100, + "hp": 80, + "specialAttack": 160, + "specialDefense": 120, + "speed": 110 + }, "evReward": { "specialAttack": 3 }, "types": ["dragon", "psychic"], "height": 2.3, @@ -35050,14 +39200,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 35, "tags": [], "formes": { "default": { "abilities": ["leaf_guard"], "hiddenAbilities": ["chlorophyll"], - "baseStats": { "attack": 110, "defense": 130, "hp": 65, "specialAttack": 60, "specialDefense": 65, "speed": 95 }, + "baseStats": { + "attack": 110, + "defense": 130, + "hp": 65, + "specialAttack": 60, + "specialDefense": 65, + "speed": 95 + }, "evReward": { "defense": 2 }, "types": ["grass"], "height": 1, @@ -35137,7 +39294,14 @@ "default": { "abilities": ["swarm", "chlorophyll"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 103, "defense": 80, "hp": 75, "specialAttack": 70, "specialDefense": 80, "speed": 92 }, + "baseStats": { + "attack": 103, + "defense": 80, + "hp": 75, + "specialAttack": 70, + "specialDefense": 80, + "speed": 92 + }, "evReward": { "attack": 3 }, "types": ["bug", "grass"], "height": 1.2, @@ -35223,7 +39387,14 @@ "default": { "abilities": ["swarm", "early_bird"], "hiddenAbilities": ["iron_fist"], - "baseStats": { "attack": 35, "defense": 50, "hp": 55, "specialAttack": 55, "specialDefense": 110, "speed": 85 }, + "baseStats": { + "attack": 35, + "defense": 50, + "hp": 55, + "specialAttack": 55, + "specialDefense": 110, + "speed": 85 + }, "evReward": { "specialDefense": 2 }, "types": ["bug", "flying"], "height": 1.4, @@ -35305,7 +39476,14 @@ "default": { "abilities": ["swarm", "early_bird"], "hiddenAbilities": ["rattled"], - "baseStats": { "attack": 20, "defense": 30, "hp": 40, "specialAttack": 40, "specialDefense": 80, "speed": 55 }, + "baseStats": { + "attack": 20, + "defense": 30, + "hp": 40, + "specialAttack": 40, + "specialDefense": 80, + "speed": 55 + }, "evReward": { "specialDefense": 1 }, "types": ["bug", "flying"], "height": 1, @@ -35328,7 +39506,20 @@ { "name": "air_slash", "level": 36 }, { "name": "double_edge", "level": 40 } ], - "eggMoves": ["psybeam", "screech", "bide", "dizzy_punch", "encore", "focus_punch", "knock_off", "silver_wind", "tailwind", "bug_buzz", "drain_punch", "bug_bite"], + "eggMoves": [ + "psybeam", + "screech", + "bide", + "dizzy_punch", + "encore", + "focus_punch", + "knock_off", + "silver_wind", + "tailwind", + "bug_buzz", + "drain_punch", + "bug_bite" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -35382,7 +39573,14 @@ "default": { "abilities": ["own_tempo", "oblivious"], "hiddenAbilities": ["cloud_nine"], - "baseStats": { "attack": 85, "defense": 95, "hp": 110, "specialAttack": 80, "specialDefense": 95, "speed": 50 }, + "baseStats": { + "attack": 85, + "defense": 95, + "hp": 110, + "specialAttack": 80, + "specialDefense": 95, + "speed": 50 + }, "evReward": { "hp": 3 }, "types": ["normal"], "height": 1.7, @@ -35479,7 +39677,14 @@ "default": { "abilities": ["own_tempo", "oblivious"], "hiddenAbilities": ["cloud_nine"], - "baseStats": { "attack": 55, "defense": 75, "hp": 90, "specialAttack": 60, "specialDefense": 75, "speed": 30 }, + "baseStats": { + "attack": 55, + "defense": 75, + "hp": 90, + "specialAttack": 60, + "specialDefense": 75, + "speed": 30 + }, "evReward": { "hp": 2 }, "types": ["normal"], "height": 1.2, @@ -35503,7 +39708,20 @@ { "name": "power_whip", "level": 53 }, { "name": "wring_out", "level": 57 } ], - "eggMoves": ["body_slam", "amnesia", "snore", "curse", "belly_drum", "sleep_talk", "magnitude", "smelling_salts", "muddy_water", "hammer_arm", "zen_headbutt", "belch"], + "eggMoves": [ + "body_slam", + "amnesia", + "snore", + "curse", + "belly_drum", + "sleep_talk", + "magnitude", + "smelling_salts", + "muddy_water", + "hammer_arm", + "zen_headbutt", + "belch" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -35552,7 +39770,9 @@ } } }, - "evolutions": [{ "species": "lickilicky", "method": "hasmove", "data": "rollout" }] + "evolutions": [ + { "species": "lickilicky", "method": "hasmove", "data": "rollout" } + ] }, "liepard": { "species": "liepard", @@ -35563,14 +39783,21 @@ "catchRate": 90, "color": "purple", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["limber", "unburden"], "hiddenAbilities": ["prankster"], - "baseStats": { "attack": 88, "defense": 50, "hp": 64, "specialAttack": 88, "specialDefense": 50, "speed": 106 }, + "baseStats": { + "attack": 88, + "defense": 50, + "hp": 64, + "specialAttack": 88, + "specialDefense": 50, + "speed": 106 + }, "evReward": { "speed": 2 }, "types": ["dark"], "height": 1.1, @@ -35659,7 +39886,14 @@ "default": { "abilities": ["suction_cups"], "hiddenAbilities": ["storm_drain"], - "baseStats": { "attack": 41, "defense": 77, "hp": 66, "specialAttack": 61, "specialDefense": 87, "speed": 23 }, + "baseStats": { + "attack": 41, + "defense": 77, + "hp": 66, + "specialAttack": 61, + "specialDefense": 87, + "speed": 23 + }, "evReward": { "specialDefense": 1 }, "types": ["rock", "grass"], "height": 1, @@ -35683,7 +39917,17 @@ { "name": "spit_up", "level": 46 }, { "name": "wring_out", "level": 52 } ], - "eggMoves": ["mega_drain", "recover", "barrier", "curse", "endure", "mirror_coat", "tickle", "wring_out", "stealth_rock"], + "eggMoves": [ + "mega_drain", + "recover", + "barrier", + "curse", + "endure", + "mirror_coat", + "tickle", + "wring_out", + "stealth_rock" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -35728,14 +39972,21 @@ "catchRate": 75, "color": "green", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "own_tempo"], "hiddenAbilities": ["leaf_guard"], - "baseStats": { "attack": 60, "defense": 75, "hp": 70, "specialAttack": 110, "specialDefense": 75, "speed": 90 }, + "baseStats": { + "attack": 60, + "defense": 75, + "hp": 70, + "specialAttack": 110, + "specialDefense": 75, + "speed": 90 + }, "evReward": { "specialAttack": 2 }, "types": ["grass"], "height": 1.1, @@ -35796,14 +40047,21 @@ "catchRate": 255, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["vital_spirit", "pickup"], "hiddenAbilities": ["run_away"], - "baseStats": { "attack": 60, "defense": 45, "hp": 45, "specialAttack": 25, "specialDefense": 45, "speed": 55 }, + "baseStats": { + "attack": 60, + "defense": 45, + "hp": 45, + "specialAttack": 25, + "specialDefense": 45, + "speed": 55 + }, "evReward": { "attack": 1 }, "types": ["normal"], "height": 0.4, @@ -35827,7 +40085,21 @@ { "name": "giga_impact", "level": 40 }, { "name": "play_rough", "level": 45 } ], - "eggMoves": ["sand_attack", "lick", "mud_slap", "endure", "charm", "pursuit", "yawn", "howl", "thunder_fang", "ice_fang", "fire_fang", "after_you", "psychic_fangs"], + "eggMoves": [ + "sand_attack", + "lick", + "mud_slap", + "endure", + "charm", + "pursuit", + "yawn", + "howl", + "thunder_fang", + "ice_fang", + "fire_fang", + "after_you", + "psychic_fangs" + ], "tutorMoves": [], "machine": [ "roar", @@ -35872,14 +40144,21 @@ "catchRate": 90, "color": "white", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["pickup", "gluttony"], "hiddenAbilities": ["quick_feet"], - "baseStats": { "attack": 70, "defense": 61, "hp": 78, "specialAttack": 50, "specialDefense": 61, "speed": 100 }, + "baseStats": { + "attack": 70, + "defense": 61, + "hp": 78, + "specialAttack": 50, + "specialDefense": 61, + "speed": 100 + }, "evReward": { "speed": 2 }, "types": ["normal"], "height": 0.5, @@ -35960,14 +40239,21 @@ "catchRate": 220, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["rivalry", "unnerve"], "hiddenAbilities": ["moxie"], - "baseStats": { "attack": 50, "defense": 58, "hp": 62, "specialAttack": 73, "specialDefense": 54, "speed": 72 }, + "baseStats": { + "attack": 50, + "defense": 58, + "hp": 62, + "specialAttack": 73, + "specialDefense": 54, + "speed": 72 + }, "evReward": { "specialAttack": 1 }, "types": ["fire", "normal"], "height": 0.6, @@ -35991,7 +40277,13 @@ { "name": "incinerate", "level": 46 }, { "name": "overheat", "level": 50 } ], - "eggMoves": ["fire_spin", "yawn", "snatch", "flare_blitz", "entrainment"], + "eggMoves": [ + "fire_spin", + "yawn", + "snatch", + "flare_blitz", + "entrainment" + ], "tutorMoves": [], "machine": [ "roar", @@ -36031,7 +40323,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "litten": { "species": "litten", @@ -36042,14 +40334,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["intimidate"], - "baseStats": { "attack": 65, "defense": 40, "hp": 45, "specialAttack": 60, "specialDefense": 40, "speed": 70 }, + "baseStats": { + "attack": 65, + "defense": 40, + "hp": 45, + "specialAttack": 60, + "specialDefense": 40, + "speed": 70 + }, "evReward": { "speed": 1 }, "types": ["fire"], "height": 0.4, @@ -36073,7 +40372,14 @@ { "name": "flare_blitz", "level": 43 }, { "name": "outrage", "level": 46 } ], - "eggMoves": ["body_slam", "crunch", "fake_out", "heat_wave", "revenge", "nasty_plot"], + "eggMoves": [ + "body_slam", + "crunch", + "fake_out", + "heat_wave", + "revenge", + "nasty_plot" + ], "tutorMoves": ["fire_pledge"], "machine": [ "swords_dance", @@ -36111,7 +40417,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "litwick": { "species": "litwick", @@ -36122,14 +40428,21 @@ "catchRate": 190, "color": "white", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["flash_fire", "flame_body"], "hiddenAbilities": ["infiltrator"], - "baseStats": { "attack": 30, "defense": 55, "hp": 50, "specialAttack": 65, "specialDefense": 55, "speed": 20 }, + "baseStats": { + "attack": 30, + "defense": 55, + "hp": 50, + "specialAttack": 65, + "specialDefense": 55, + "speed": 20 + }, "evReward": { "specialAttack": 1 }, "types": ["ghost", "fire"], "height": 0.3, @@ -36155,7 +40468,16 @@ { "name": "pain_split", "level": 55 }, { "name": "overheat", "level": 61 } ], - "eggMoves": ["acid", "haze", "acid_armor", "endure", "heat_wave", "captivate", "power_split", "clear_smog"], + "eggMoves": [ + "acid", + "haze", + "acid_armor", + "endure", + "heat_wave", + "captivate", + "power_split", + "clear_smog" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -36208,14 +40530,21 @@ "catchRate": 120, "color": "green", "genderDifference": false, - "eggGroups": ["water1", "plant"], + "eggGroups": ["water1", "grass"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["swift_swim", "rain_dish"], "hiddenAbilities": ["own_tempo"], - "baseStats": { "attack": 50, "defense": 50, "hp": 60, "specialAttack": 60, "specialDefense": 70, "speed": 50 }, + "baseStats": { + "attack": 50, + "defense": 50, + "hp": 60, + "specialAttack": 60, + "specialDefense": 70, + "speed": 50 + }, "evReward": { "specialDefense": 2 }, "types": ["water", "grass"], "height": 1.2, @@ -36276,7 +40605,9 @@ } } }, - "evolutions": [{ "species": "ludicolo", "method": "item", "data": "waterstone" }] + "evolutions": [ + { "species": "ludicolo", "method": "item", "data": "waterstone" } + ] }, "lopunny": { "species": "lopunny", @@ -36287,14 +40618,21 @@ "catchRate": 60, "color": "brown", "genderDifference": false, - "eggGroups": ["ground", "humanshape"], + "eggGroups": ["field", "humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["cute_charm", "klutz"], "hiddenAbilities": ["limber"], - "baseStats": { "attack": 76, "defense": 84, "hp": 65, "specialAttack": 54, "specialDefense": 96, "speed": 105 }, + "baseStats": { + "attack": 76, + "defense": 84, + "hp": 65, + "specialAttack": 54, + "specialDefense": 96, + "speed": 105 + }, "evReward": { "speed": 2 }, "types": ["normal"], "height": 1.2, @@ -36370,7 +40708,14 @@ "isMega": true, "abilities": ["scrappy"], "hiddenAbilities": [], - "baseStats": { "attack": 136, "defense": 94, "hp": 65, "specialAttack": 54, "specialDefense": 96, "speed": 135 }, + "baseStats": { + "attack": 136, + "defense": 94, + "hp": 65, + "specialAttack": 54, + "specialDefense": 96, + "speed": 135 + }, "evReward": { "speed": 2 }, "types": ["normal", "fighting"], "height": 1.3, @@ -36454,14 +40799,21 @@ "catchRate": 255, "color": "green", "genderDifference": false, - "eggGroups": ["water1", "plant"], + "eggGroups": ["water1", "grass"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["swift_swim", "rain_dish"], "hiddenAbilities": ["own_tempo"], - "baseStats": { "attack": 30, "defense": 30, "hp": 40, "specialAttack": 40, "specialDefense": 50, "speed": 30 }, + "baseStats": { + "attack": 30, + "defense": 30, + "hp": 40, + "specialAttack": 40, + "specialDefense": 50, + "speed": 30 + }, "evReward": { "specialDefense": 1 }, "types": ["water", "grass"], "height": 0.5, @@ -36483,7 +40835,18 @@ { "name": "zen_headbutt", "level": 33 }, { "name": "energy_ball", "level": 36 } ], - "eggMoves": ["water_gun", "counter", "leech_seed", "razor_leaf", "flail", "giga_drain", "sweet_scent", "synthesis", "teeter_dance", "tickle"], + "eggMoves": [ + "water_gun", + "counter", + "leech_seed", + "razor_leaf", + "flail", + "giga_drain", + "sweet_scent", + "synthesis", + "teeter_dance", + "tickle" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -36530,14 +40893,21 @@ "catchRate": 120, "color": "blue", "genderDifference": false, - "eggGroups": ["monster", "ground"], + "eggGroups": ["monster", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["soundproof"], "hiddenAbilities": ["scrappy"], - "baseStats": { "attack": 71, "defense": 43, "hp": 84, "specialAttack": 71, "specialDefense": 43, "speed": 48 }, + "baseStats": { + "attack": 71, + "defense": 43, + "hp": 84, + "specialAttack": 71, + "specialDefense": 43, + "speed": 48 + }, "evReward": { "hp": 2 }, "types": ["normal"], "height": 1, @@ -36618,14 +40988,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["ground", "humanshape"], + "eggGroups": ["field", "humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["steadfast", "inner_focus"], "hiddenAbilities": ["justified"], - "baseStats": { "attack": 110, "defense": 70, "hp": 70, "specialAttack": 115, "specialDefense": 70, "speed": 90 }, + "baseStats": { + "attack": 110, + "defense": 70, + "hp": 70, + "specialAttack": 115, + "specialDefense": 70, + "speed": 90 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["fighting", "steel"], "height": 1.2, @@ -36705,7 +41082,14 @@ "isMega": true, "abilities": ["adaptability"], "hiddenAbilities": [], - "baseStats": { "attack": 145, "defense": 88, "hp": 70, "specialAttack": 140, "specialDefense": 70, "speed": 112 }, + "baseStats": { + "attack": 145, + "defense": 88, + "hp": 70, + "specialAttack": 140, + "specialDefense": 70, + "speed": 112 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["fighting", "steel"], "height": 1.3, @@ -36793,21 +41177,33 @@ "catchRate": 45, "color": "green", "genderDifference": true, - "eggGroups": ["water1", "plant"], + "eggGroups": ["water1", "grass"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["swift_swim", "rain_dish"], "hiddenAbilities": ["own_tempo"], - "baseStats": { "attack": 70, "defense": 70, "hp": 80, "specialAttack": 90, "specialDefense": 100, "speed": 70 }, + "baseStats": { + "attack": 70, + "defense": 70, + "hp": 80, + "specialAttack": 90, + "specialDefense": 100, + "speed": 70 + }, "evReward": { "specialDefense": 3 }, "types": ["water", "grass"], "height": 1.5, "weight": 55, "baseExp": 216, "moves": { - "levelMoves": [{ "name": "growl", "level": 1 }, { "name": "mega_drain", "level": 1 }, { "name": "nature_power", "level": 1 }, { "name": "astonish", "level": 1 }], + "levelMoves": [ + { "name": "growl", "level": 1 }, + { "name": "mega_drain", "level": 1 }, + { "name": "nature_power", "level": 1 }, + { "name": "astonish", "level": 1 } + ], "eggMoves": [], "tutorMoves": [], "machine": [ @@ -36868,7 +41264,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": ["multiscale"], - "baseStats": { "attack": 90, "defense": 130, "hp": 106, "specialAttack": 90, "specialDefense": 154, "speed": 110 }, + "baseStats": { + "attack": 90, + "defense": 130, + "hp": 106, + "specialAttack": 90, + "specialDefense": 154, + "speed": 110 + }, "evReward": { "specialDefense": 3 }, "types": ["psychic", "flying"], "height": 5.2, @@ -36965,7 +41368,14 @@ "default": { "abilities": ["swift_swim", "storm_drain"], "hiddenAbilities": ["water_veil"], - "baseStats": { "attack": 69, "defense": 76, "hp": 69, "specialAttack": 69, "specialDefense": 86, "speed": 91 }, + "baseStats": { + "attack": 69, + "defense": 76, + "hp": 69, + "specialAttack": 69, + "specialDefense": 86, + "speed": 91 + }, "evReward": { "speed": 2 }, "types": ["water"], "height": 1.2, @@ -37045,7 +41455,14 @@ "default": { "abilities": ["shadow_shield"], "hiddenAbilities": [], - "baseStats": { "attack": 113, "defense": 89, "hp": 137, "specialAttack": 137, "specialDefense": 107, "speed": 97 }, + "baseStats": { + "attack": 113, + "defense": 89, + "hp": 137, + "specialAttack": 137, + "specialDefense": 107, + "speed": 97 + }, "evReward": { "specialAttack": 3 }, "types": ["psychic", "ghost"], "height": 4, @@ -37124,7 +41541,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "lunatone": { "species": "lunatone", @@ -37142,7 +41559,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 55, "defense": 65, "hp": 90, "specialAttack": 95, "specialDefense": 85, "speed": 70 }, + "baseStats": { + "attack": 55, + "defense": 65, + "hp": 90, + "specialAttack": 95, + "specialDefense": 85, + "speed": 70 + }, "evReward": { "specialAttack": 2 }, "types": ["rock", "psychic"], "height": 1, @@ -37231,14 +41655,21 @@ "catchRate": 75, "color": "pink", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["leaf_guard"], "hiddenAbilities": ["contrary"], - "baseStats": { "attack": 105, "defense": 90, "hp": 70, "specialAttack": 80, "specialDefense": 90, "speed": 45 }, + "baseStats": { + "attack": 105, + "defense": 90, + "hp": 70, + "specialAttack": 80, + "specialDefense": 90, + "speed": 45 + }, "evReward": { "attack": 2 }, "types": ["grass"], "height": 0.9, @@ -37306,7 +41737,14 @@ "totem": { "abilities": ["leaf_guard"], "hiddenAbilities": ["contrary"], - "baseStats": { "attack": 105, "defense": 90, "hp": 70, "specialAttack": 80, "specialDefense": 90, "speed": 45 }, + "baseStats": { + "attack": 105, + "defense": 90, + "hp": 70, + "specialAttack": 80, + "specialDefense": 90, + "speed": 45 + }, "evReward": { "attack": 2 }, "types": ["grass"], "height": 1.5, @@ -37372,7 +41810,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "luvdisc": { "species": "luvdisc", @@ -37390,7 +41828,14 @@ "default": { "abilities": ["swift_swim"], "hiddenAbilities": ["hydration"], - "baseStats": { "attack": 30, "defense": 55, "hp": 43, "specialAttack": 40, "specialDefense": 65, "speed": 97 }, + "baseStats": { + "attack": 30, + "defense": 55, + "hp": 43, + "specialAttack": 40, + "specialDefense": 65, + "speed": 97 + }, "evReward": { "speed": 1 }, "types": ["water"], "height": 0.6, @@ -37416,7 +41861,18 @@ { "name": "hydro_pump", "level": 46 }, { "name": "safeguard", "level": 49 } ], - "eggMoves": ["supersonic", "splash", "mud_sport", "water_sport", "brine", "aqua_ring", "captivate", "aqua_jet", "entrainment", "heal_pulse"], + "eggMoves": [ + "supersonic", + "splash", + "mud_sport", + "water_sport", + "brine", + "aqua_ring", + "captivate", + "aqua_jet", + "entrainment", + "heal_pulse" + ], "tutorMoves": [], "machine": [ "surf", @@ -37458,14 +41914,21 @@ "catchRate": 120, "color": "blue", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["rivalry", "intimidate"], "hiddenAbilities": ["guts"], - "baseStats": { "attack": 85, "defense": 49, "hp": 60, "specialAttack": 60, "specialDefense": 49, "speed": 60 }, + "baseStats": { + "attack": 85, + "defense": 49, + "hp": 60, + "specialAttack": 60, + "specialDefense": 49, + "speed": 60 + }, "evReward": { "attack": 2 }, "types": ["electric"], "height": 0.9, @@ -37531,14 +41994,21 @@ "catchRate": 45, "color": "blue", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["rivalry", "intimidate"], "hiddenAbilities": ["guts"], - "baseStats": { "attack": 120, "defense": 79, "hp": 80, "specialAttack": 95, "specialDefense": 79, "speed": 70 }, + "baseStats": { + "attack": 120, + "defense": 79, + "hp": 80, + "specialAttack": 95, + "specialDefense": 79, + "speed": 70 + }, "evReward": { "attack": 3 }, "types": ["electric"], "height": 1.4, @@ -37609,14 +42079,21 @@ "catchRate": 90, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["keen_eye", "sand_rush"], "hiddenAbilities": ["steadfast"], - "baseStats": { "attack": 115, "defense": 65, "hp": 75, "specialAttack": 55, "specialDefense": 65, "speed": 112 }, + "baseStats": { + "attack": 115, + "defense": 65, + "hp": 75, + "specialAttack": 55, + "specialDefense": 65, + "speed": 112 + }, "evReward": { "attack": 2 }, "types": ["rock"], "height": 0.8, @@ -37681,7 +42158,14 @@ "midnight": { "abilities": ["keen_eye", "vital_spirit"], "hiddenAbilities": ["no_guard"], - "baseStats": { "attack": 115, "defense": 75, "hp": 85, "specialAttack": 55, "specialDefense": 75, "speed": 82 }, + "baseStats": { + "attack": 115, + "defense": 75, + "hp": 85, + "specialAttack": 55, + "specialDefense": 75, + "speed": 82 + }, "evReward": { "attack": 2 }, "types": ["rock"], "height": 1.1, @@ -37744,7 +42228,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "machamp": { "species": "machamp", @@ -37755,14 +42239,21 @@ "catchRate": 45, "color": "gray", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["guts", "no_guard"], "hiddenAbilities": ["steadfast"], - "baseStats": { "attack": 130, "defense": 80, "hp": 90, "specialAttack": 65, "specialDefense": 85, "speed": 55 }, + "baseStats": { + "attack": 130, + "defense": 80, + "hp": 90, + "specialAttack": 65, + "specialDefense": 85, + "speed": 55 + }, "evReward": { "attack": 3 }, "types": ["fighting"], "height": 1.6, @@ -37848,14 +42339,21 @@ "catchRate": 90, "color": "gray", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["guts", "no_guard"], "hiddenAbilities": ["steadfast"], - "baseStats": { "attack": 100, "defense": 70, "hp": 80, "specialAttack": 50, "specialDefense": 60, "speed": 45 }, + "baseStats": { + "attack": 100, + "defense": 70, + "hp": 80, + "specialAttack": 50, + "specialDefense": 60, + "speed": 45 + }, "evReward": { "attack": 2 }, "types": ["fighting"], "height": 1.5, @@ -37935,14 +42433,21 @@ "catchRate": 180, "color": "gray", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["guts", "no_guard"], "hiddenAbilities": ["steadfast"], - "baseStats": { "attack": 80, "defense": 50, "hp": 70, "specialAttack": 35, "specialDefense": 35, "speed": 35 }, + "baseStats": { + "attack": 80, + "defense": 50, + "hp": 70, + "specialAttack": 35, + "specialDefense": 35, + "speed": 35 + }, "evReward": { "attack": 1 }, "types": ["fighting"], "height": 0.8, @@ -38043,7 +42548,14 @@ "default": { "abilities": ["flame_body"], "hiddenAbilities": ["vital_spirit"], - "baseStats": { "attack": 75, "defense": 37, "hp": 45, "specialAttack": 70, "specialDefense": 55, "speed": 83 }, + "baseStats": { + "attack": 75, + "defense": 37, + "hp": 45, + "specialAttack": 70, + "specialDefense": 55, + "speed": 83 + }, "evReward": { "speed": 1 }, "types": ["fire"], "height": 0.7, @@ -38124,14 +42636,21 @@ "catchRate": 75, "color": "red", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["magma_armor", "flame_body"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 50, "defense": 120, "hp": 60, "specialAttack": 90, "specialDefense": 80, "speed": 30 }, + "baseStats": { + "attack": 50, + "defense": 120, + "hp": 60, + "specialAttack": 90, + "specialDefense": 80, + "speed": 30 + }, "evReward": { "defense": 2 }, "types": ["fire", "rock"], "height": 0.8, @@ -38224,7 +42743,14 @@ "default": { "abilities": ["soul_heart"], "hiddenAbilities": [], - "baseStats": { "attack": 95, "defense": 115, "hp": 80, "specialAttack": 130, "specialDefense": 115, "speed": 65 }, + "baseStats": { + "attack": 95, + "defense": 115, + "hp": 80, + "specialAttack": 130, + "specialDefense": 115, + "speed": 65 + }, "evReward": { "specialAttack": 3 }, "types": ["steel", "fairy"], "height": 1, @@ -38296,7 +42822,14 @@ "original": { "abilities": ["soul_heart"], "hiddenAbilities": [], - "baseStats": { "attack": 95, "defense": 115, "hp": 80, "specialAttack": 130, "specialDefense": 115, "speed": 65 }, + "baseStats": { + "attack": 95, + "defense": 115, + "hp": 80, + "specialAttack": 130, + "specialDefense": 115, + "speed": 65 + }, "evReward": { "specialAttack": 3 }, "types": ["steel", "fairy"], "height": 1, @@ -38366,7 +42899,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "magikarp": { "species": "magikarp", @@ -38384,14 +42917,25 @@ "default": { "abilities": ["swift_swim"], "hiddenAbilities": ["rattled"], - "baseStats": { "attack": 10, "defense": 55, "hp": 20, "specialAttack": 15, "specialDefense": 20, "speed": 80 }, + "baseStats": { + "attack": 10, + "defense": 55, + "hp": 20, + "specialAttack": 15, + "specialDefense": 20, + "speed": 80 + }, "evReward": { "speed": 1 }, "types": ["water"], "height": 0.9, "weight": 10, "baseExp": 40, "moves": { - "levelMoves": [{ "name": "splash", "level": 1 }, { "name": "tackle", "level": 15 }, { "name": "flail", "level": 30 }], + "levelMoves": [ + { "name": "splash", "level": 1 }, + { "name": "tackle", "level": 15 }, + { "name": "flail", "level": 30 } + ], "eggMoves": [], "tutorMoves": [], "machine": [], @@ -38410,14 +42954,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["flame_body"], "hiddenAbilities": ["vital_spirit"], - "baseStats": { "attack": 95, "defense": 57, "hp": 65, "specialAttack": 100, "specialDefense": 85, "speed": 93 }, + "baseStats": { + "attack": 95, + "defense": 57, + "hp": 65, + "specialAttack": 100, + "specialDefense": 85, + "speed": 93 + }, "evReward": { "specialAttack": 2 }, "types": ["fire"], "height": 1.3, @@ -38477,7 +43028,9 @@ } } }, - "evolutions": [{ "species": "magmortar", "method": "tradeitem", "data": "magmarizer" }] + "evolutions": [ + { "species": "magmortar", "method": "tradeitem", "data": "magmarizer" } + ] }, "magmortar": { "species": "magmortar", @@ -38488,14 +43041,21 @@ "catchRate": 30, "color": "red", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["flame_body"], "hiddenAbilities": ["vital_spirit"], - "baseStats": { "attack": 95, "defense": 67, "hp": 75, "specialAttack": 125, "specialDefense": 95, "speed": 83 }, + "baseStats": { + "attack": 95, + "defense": 67, + "hp": 75, + "specialAttack": 125, + "specialDefense": 95, + "speed": 83 + }, "evReward": { "specialAttack": 3 }, "types": ["fire"], "height": 1.6, @@ -38584,7 +43144,14 @@ "default": { "abilities": ["magnet_pull", "sturdy"], "hiddenAbilities": ["analytic"], - "baseStats": { "attack": 35, "defense": 70, "hp": 25, "specialAttack": 95, "specialDefense": 55, "speed": 45 }, + "baseStats": { + "attack": 35, + "defense": 70, + "hp": 25, + "specialAttack": 95, + "specialDefense": 55, + "speed": 45 + }, "evReward": { "specialAttack": 1 }, "types": ["electric", "steel"], "height": 0.3, @@ -38664,7 +43231,14 @@ "default": { "abilities": ["magnet_pull", "sturdy"], "hiddenAbilities": ["analytic"], - "baseStats": { "attack": 60, "defense": 95, "hp": 50, "specialAttack": 120, "specialDefense": 70, "speed": 70 }, + "baseStats": { + "attack": 60, + "defense": 95, + "hp": 50, + "specialAttack": 120, + "specialDefense": 70, + "speed": 70 + }, "evReward": { "specialAttack": 2 }, "types": ["electric", "steel"], "height": 1, @@ -38756,7 +43330,14 @@ "default": { "abilities": ["magnet_pull", "sturdy"], "hiddenAbilities": ["analytic"], - "baseStats": { "attack": 70, "defense": 115, "hp": 70, "specialAttack": 130, "specialDefense": 90, "speed": 60 }, + "baseStats": { + "attack": 70, + "defense": 115, + "hp": 70, + "specialAttack": 130, + "specialDefense": 90, + "speed": 60 + }, "evReward": { "specialAttack": 3 }, "types": ["electric", "steel"], "height": 1.2, @@ -38839,14 +43420,21 @@ "catchRate": 180, "color": "yellow", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["thick_fat", "guts"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 60, "defense": 30, "hp": 72, "specialAttack": 20, "specialDefense": 30, "speed": 25 }, + "baseStats": { + "attack": 60, + "defense": 30, + "hp": 72, + "specialAttack": 20, + "specialDefense": 30, + "speed": 25 + }, "evReward": { "hp": 1 }, "types": ["fighting"], "height": 1, @@ -38942,7 +43530,14 @@ "default": { "abilities": ["contrary", "suction_cups"], "hiddenAbilities": ["infiltrator"], - "baseStats": { "attack": 92, "defense": 88, "hp": 86, "specialAttack": 68, "specialDefense": 75, "speed": 73 }, + "baseStats": { + "attack": 92, + "defense": 88, + "hp": 86, + "specialAttack": 68, + "specialDefense": 75, + "speed": 73 + }, "evReward": { "attack": 2 }, "types": ["dark", "psychic"], "height": 1.5, @@ -39016,7 +43611,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "mamoswine": { "species": "mamoswine", @@ -39027,14 +43622,21 @@ "catchRate": 50, "color": "brown", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["oblivious", "snow_cloak"], "hiddenAbilities": ["thick_fat"], - "baseStats": { "attack": 130, "defense": 80, "hp": 110, "specialAttack": 70, "specialDefense": 60, "speed": 80 }, + "baseStats": { + "attack": 130, + "defense": 80, + "hp": 110, + "specialAttack": 70, + "specialDefense": 60, + "speed": 80 + }, "evReward": { "attack": 3 }, "types": ["ice", "ground"], "height": 2.5, @@ -39119,7 +43721,14 @@ "default": { "abilities": ["hydration"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 100, "hp": 100, "specialAttack": 100, "specialDefense": 100, "speed": 100 }, + "baseStats": { + "attack": 100, + "defense": 100, + "hp": 100, + "specialAttack": 100, + "specialDefense": 100, + "speed": 100 + }, "evReward": { "hp": 3 }, "types": ["water"], "height": 0.3, @@ -39201,7 +43810,14 @@ "default": { "abilities": ["big_pecks", "overcoat"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 65, "defense": 105, "hp": 110, "specialAttack": 55, "specialDefense": 95, "speed": 80 }, + "baseStats": { + "attack": 65, + "defense": 105, + "hp": 110, + "specialAttack": 55, + "specialDefense": 95, + "speed": 80 + }, "evReward": { "specialAttack": 2 }, "types": ["dark", "flying"], "height": 1.2, @@ -39285,14 +43901,21 @@ "catchRate": 45, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["static", "lightning_rod"], "hiddenAbilities": ["minus"], - "baseStats": { "attack": 75, "defense": 60, "hp": 70, "specialAttack": 105, "specialDefense": 60, "speed": 105 }, + "baseStats": { + "attack": 75, + "defense": 60, + "hp": 70, + "specialAttack": 105, + "specialDefense": 60, + "speed": 105 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 1.5, @@ -39360,7 +43983,14 @@ "isMega": true, "abilities": ["intimidate"], "hiddenAbilities": [], - "baseStats": { "attack": 75, "defense": 80, "hp": 70, "specialAttack": 135, "specialDefense": 80, "speed": 135 }, + "baseStats": { + "attack": 75, + "defense": 80, + "hp": 70, + "specialAttack": 135, + "specialDefense": 80, + "speed": 135 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 1.8, @@ -39436,14 +44066,21 @@ "catchRate": 190, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["vital_spirit", "anger_point"], "hiddenAbilities": ["defiant"], - "baseStats": { "attack": 80, "defense": 35, "hp": 40, "specialAttack": 35, "specialDefense": 45, "speed": 70 }, + "baseStats": { + "attack": 80, + "defense": 35, + "hp": 40, + "specialAttack": 35, + "specialDefense": 45, + "speed": 70 + }, "evReward": { "attack": 1 }, "types": ["fighting"], "height": 0.5, @@ -39471,7 +44108,21 @@ { "name": "outrage", "level": 47 }, { "name": "final_gambit", "level": 50 } ], - "eggMoves": ["counter", "meditate", "reversal", "foresight", "sleep_talk", "encore", "beat_up", "focus_punch", "smelling_salts", "revenge", "close_combat", "night_slash", "power_trip"], + "eggMoves": [ + "counter", + "meditate", + "reversal", + "foresight", + "sleep_talk", + "encore", + "beat_up", + "focus_punch", + "smelling_salts", + "revenge", + "close_combat", + "night_slash", + "power_trip" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -39534,7 +44185,14 @@ "default": { "abilities": ["swift_swim", "water_absorb"], "hiddenAbilities": ["water_veil"], - "baseStats": { "attack": 40, "defense": 70, "hp": 85, "specialAttack": 80, "specialDefense": 140, "speed": 70 }, + "baseStats": { + "attack": 40, + "defense": 70, + "hp": 85, + "specialAttack": 80, + "specialDefense": 140, + "speed": 70 + }, "evReward": { "specialDefense": 2 }, "types": ["water", "flying"], "height": 2.1, @@ -39564,7 +44222,18 @@ { "name": "bounce", "level": 46 }, { "name": "hydro_pump", "level": 49 } ], - "eggMoves": ["slam", "hydro_pump", "haze", "amnesia", "splash", "twister", "mirror_coat", "mud_sport", "water_sport", "wide_guard"], + "eggMoves": [ + "slam", + "hydro_pump", + "haze", + "amnesia", + "splash", + "twister", + "mirror_coat", + "mud_sport", + "water_sport", + "wide_guard" + ], "tutorMoves": [], "machine": [ "surf", @@ -39620,7 +44289,14 @@ "default": { "abilities": ["swift_swim", "water_absorb"], "hiddenAbilities": ["water_veil"], - "baseStats": { "attack": 20, "defense": 50, "hp": 45, "specialAttack": 60, "specialDefense": 120, "speed": 50 }, + "baseStats": { + "attack": 20, + "defense": 50, + "hp": 45, + "specialAttack": 60, + "specialDefense": 120, + "speed": 50 + }, "evReward": { "specialDefense": 1 }, "types": ["water", "flying"], "height": 1, @@ -39644,7 +44320,20 @@ { "name": "bounce", "level": 46 }, { "name": "hydro_pump", "level": 49 } ], - "eggMoves": ["slam", "hydro_pump", "haze", "amnesia", "splash", "twister", "mirror_coat", "mud_sport", "signal_beam", "water_sport", "tailwind", "wide_guard"], + "eggMoves": [ + "slam", + "hydro_pump", + "haze", + "amnesia", + "splash", + "twister", + "mirror_coat", + "mud_sport", + "signal_beam", + "water_sport", + "tailwind", + "wide_guard" + ], "tutorMoves": [], "machine": [ "surf", @@ -39678,7 +44367,9 @@ } } }, - "evolutions": [{ "species": "mantine", "method": "hasinparty", "data": "remoraid" }] + "evolutions": [ + { "species": "mantine", "method": "hasinparty", "data": "remoraid" } + ] }, "maractus": { "species": "maractus", @@ -39689,14 +44380,21 @@ "catchRate": 255, "color": "green", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["water_absorb", "chlorophyll"], "hiddenAbilities": ["storm_drain"], - "baseStats": { "attack": 86, "defense": 67, "hp": 75, "specialAttack": 106, "specialDefense": 67, "speed": 60 }, + "baseStats": { + "attack": 86, + "defense": 67, + "hp": 75, + "specialAttack": 106, + "specialDefense": 67, + "speed": 60 + }, "evReward": { "specialAttack": 2 }, "types": ["grass"], "height": 1, @@ -39727,7 +44425,17 @@ { "name": "cotton_guard", "level": 55 }, { "name": "after_you", "level": 57 } ], - "eggMoves": ["leech_seed", "spikes", "grass_whistle", "bullet_seed", "bounce", "worry_seed", "seed_bomb", "wood_hammer", "grassy_terrain"], + "eggMoves": [ + "leech_seed", + "spikes", + "grass_whistle", + "bullet_seed", + "bounce", + "worry_seed", + "seed_bomb", + "wood_hammer", + "grassy_terrain" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -39775,7 +44483,14 @@ "default": { "abilities": ["merciless", "limber"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 53, "defense": 62, "hp": 50, "specialAttack": 43, "specialDefense": 52, "speed": 45 }, + "baseStats": { + "attack": 53, + "defense": 62, + "hp": 50, + "specialAttack": 43, + "specialDefense": 52, + "speed": 45 + }, "evReward": { "defense": 1 }, "types": ["poison", "water"], "height": 0.4, @@ -39833,7 +44548,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "mareep": { "species": "mareep", @@ -39844,14 +44559,21 @@ "catchRate": 235, "color": "white", "genderDifference": false, - "eggGroups": ["monster", "ground"], + "eggGroups": ["monster", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["static"], "hiddenAbilities": ["plus"], - "baseStats": { "attack": 40, "defense": 40, "hp": 55, "specialAttack": 65, "specialDefense": 45, "speed": 35 }, + "baseStats": { + "attack": 40, + "defense": 40, + "hp": 55, + "specialAttack": 65, + "specialDefense": 45, + "speed": 35 + }, "evReward": { "specialAttack": 1 }, "types": ["electric"], "height": 0.6, @@ -39875,7 +44597,20 @@ { "name": "light_screen", "level": 43 }, { "name": "thunder", "level": 46 } ], - "eggMoves": ["sand_attack", "body_slam", "take_down", "agility", "screech", "iron_tail", "flatter", "charge", "odor_sleuth", "after_you", "eerie_impulse", "electric_terrain"], + "eggMoves": [ + "sand_attack", + "body_slam", + "take_down", + "agility", + "screech", + "iron_tail", + "flatter", + "charge", + "odor_sleuth", + "after_you", + "eerie_impulse", + "electric_terrain" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -39924,7 +44659,14 @@ "default": { "abilities": ["thick_fat", "huge_power"], "hiddenAbilities": ["sap_sipper"], - "baseStats": { "attack": 20, "defense": 50, "hp": 70, "specialAttack": 20, "specialDefense": 50, "speed": 40 }, + "baseStats": { + "attack": 20, + "defense": 50, + "hp": 70, + "specialAttack": 20, + "specialDefense": 50, + "speed": 40 + }, "evReward": { "hp": 2 }, "types": ["water", "fairy"], "height": 0.4, @@ -39949,7 +44691,21 @@ { "name": "superpower", "level": 40 }, { "name": "hydro_pump", "level": 47 } ], - "eggMoves": ["body_slam", "supersonic", "amnesia", "belly_drum", "perish_song", "present", "future_sight", "superpower", "refresh", "camouflage", "muddy_water", "water_sport", "aqua_jet"], + "eggMoves": [ + "body_slam", + "supersonic", + "amnesia", + "belly_drum", + "perish_song", + "present", + "future_sight", + "superpower", + "refresh", + "camouflage", + "muddy_water", + "water_sport", + "aqua_jet" + ], "tutorMoves": [], "machine": [ "surf", @@ -40001,7 +44757,14 @@ "alola": { "abilities": ["cursed_body", "lightning_rod"], "hiddenAbilities": ["rock_head"], - "baseStats": { "attack": 80, "defense": 110, "hp": 60, "specialAttack": 50, "specialDefense": 80, "speed": 45 }, + "baseStats": { + "attack": 80, + "defense": 110, + "hp": 60, + "specialAttack": 50, + "specialDefense": 80, + "speed": 45 + }, "evReward": { "defense": 2 }, "types": ["fire", "ghost"], "height": 1, @@ -40084,7 +44847,14 @@ "default": { "abilities": ["rock_head", "lightning_rod"], "hiddenAbilities": ["battle_armor"], - "baseStats": { "attack": 80, "defense": 110, "hp": 60, "specialAttack": 50, "specialDefense": 80, "speed": 45 }, + "baseStats": { + "attack": 80, + "defense": 110, + "hp": 60, + "specialAttack": 50, + "specialDefense": 80, + "speed": 45 + }, "evReward": { "defense": 2 }, "types": ["ground"], "height": 1, @@ -40175,7 +44945,14 @@ "default": { "abilities": ["technician"], "hiddenAbilities": [], - "baseStats": { "attack": 125, "defense": 80, "hp": 90, "specialAttack": 90, "specialDefense": 90, "speed": 125 }, + "baseStats": { + "attack": 125, + "defense": 80, + "hp": 90, + "specialAttack": 90, + "specialDefense": 90, + "speed": 125 + }, "evReward": { "attack": 2, "speed": 1 }, "types": ["fighting", "ghost"], "height": 0.7, @@ -40249,7 +45026,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "marshtomp": { "species": "marshtomp", @@ -40267,7 +45044,14 @@ "default": { "abilities": ["torrent"], "hiddenAbilities": ["damp"], - "baseStats": { "attack": 85, "defense": 70, "hp": 70, "specialAttack": 60, "specialDefense": 70, "speed": 50 }, + "baseStats": { + "attack": 85, + "defense": 70, + "hp": 70, + "specialAttack": 60, + "specialDefense": 70, + "speed": 50 + }, "evReward": { "attack": 2 }, "types": ["water", "ground"], "height": 0.7, @@ -40349,7 +45133,14 @@ "default": { "abilities": ["intimidate"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 60, "defense": 62, "hp": 70, "specialAttack": 100, "specialDefense": 82, "speed": 80 }, + "baseStats": { + "attack": 60, + "defense": 62, + "hp": 70, + "specialAttack": 100, + "specialDefense": 82, + "speed": 80 + }, "evReward": { "specialAttack": 1, "specialDefense": 1 }, "types": ["bug", "flying"], "height": 0.8, @@ -40427,14 +45218,21 @@ "catchRate": 45, "color": "black", "genderDifference": false, - "eggGroups": ["ground", "fairy"], + "eggGroups": ["field", "fairy"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["hyper_cutter", "intimidate"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 85, "defense": 85, "hp": 50, "specialAttack": 55, "specialDefense": 55, "speed": 50 }, + "baseStats": { + "attack": 85, + "defense": 85, + "hp": 50, + "specialAttack": 55, + "specialDefense": 55, + "speed": 50 + }, "evReward": { "attack": 1, "defense": 1 }, "types": ["steel", "fairy"], "height": 0.6, @@ -40531,7 +45329,14 @@ "isMega": true, "abilities": ["huge_power"], "hiddenAbilities": [], - "baseStats": { "attack": 105, "defense": 125, "hp": 50, "specialAttack": 55, "specialDefense": 95, "speed": 50 }, + "baseStats": { + "attack": 105, + "defense": 125, + "hp": 50, + "specialAttack": 55, + "specialDefense": 95, + "speed": 50 + }, "evReward": { "attack": 1, "defense": 1 }, "types": ["steel", "fairy"], "height": 1, @@ -40621,14 +45426,21 @@ "catchRate": 90, "color": "red", "genderDifference": true, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["pure_power"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 60, "defense": 75, "hp": 60, "specialAttack": 60, "specialDefense": 75, "speed": 80 }, + "baseStats": { + "attack": 60, + "defense": 75, + "hp": 60, + "specialAttack": 60, + "specialDefense": 75, + "speed": 80 + }, "evReward": { "speed": 2 }, "types": ["fighting", "psychic"], "height": 1.3, @@ -40709,7 +45521,14 @@ "isMega": true, "abilities": ["pure_power"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 85, "hp": 60, "specialAttack": 80, "specialDefense": 85, "speed": 100 }, + "baseStats": { + "attack": 100, + "defense": 85, + "hp": 60, + "specialAttack": 80, + "specialDefense": 85, + "speed": 100 + }, "evReward": { "speed": 2 }, "types": ["fighting", "psychic"], "height": 1.3, @@ -40798,14 +45617,21 @@ "catchRate": 180, "color": "blue", "genderDifference": true, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["pure_power"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 40, "defense": 55, "hp": 30, "specialAttack": 40, "specialDefense": 55, "speed": 60 }, + "baseStats": { + "attack": 40, + "defense": 55, + "hp": 30, + "specialAttack": 40, + "specialDefense": 55, + "speed": 60 + }, "evReward": { "speed": 1 }, "types": ["fighting", "psychic"], "height": 0.6, @@ -40899,14 +45725,21 @@ "catchRate": 45, "color": "green", "genderDifference": true, - "eggGroups": ["monster", "plant"], + "eggGroups": ["monster", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["leaf_guard"], - "baseStats": { "attack": 82, "defense": 100, "hp": 80, "specialAttack": 83, "specialDefense": 100, "speed": 80 }, + "baseStats": { + "attack": 82, + "defense": 100, + "hp": 80, + "specialAttack": 83, + "specialDefense": 100, + "speed": 80 + }, "evReward": { "defense": 1, "specialDefense": 2 }, "types": ["grass"], "height": 1.8, @@ -40936,7 +45769,7 @@ { "name": "petal_blizzard", "level": 70 } ], "eggMoves": [], - "tutorMoves": ["frenzy_plant", "grass_pledge"], + "tutorMoves": ["frenzy_grass", "grass_pledge"], "machine": [ "swords_dance", "hyper_beam", @@ -40991,7 +45824,14 @@ "default": { "abilities": ["serene_grace"], "hiddenAbilities": [], - "baseStats": { "attack": 77, "defense": 77, "hp": 100, "specialAttack": 128, "specialDefense": 128, "speed": 90 }, + "baseStats": { + "attack": 77, + "defense": 77, + "hp": 100, + "specialAttack": 128, + "specialDefense": 128, + "speed": 90 + }, "evReward": { "specialAttack": 1, "specialDefense": 1, "speed": 1 }, "types": ["normal", "psychic"], "height": 0.6, @@ -41073,7 +45913,14 @@ "pirouette": { "abilities": ["serene_grace"], "hiddenAbilities": [], - "baseStats": { "attack": 128, "defense": 90, "hp": 100, "specialAttack": 77, "specialDefense": 77, "speed": 128 }, + "baseStats": { + "attack": 128, + "defense": 90, + "hp": 100, + "specialAttack": 77, + "specialDefense": 77, + "speed": 128 + }, "evReward": { "attack": 1, "defense": 1, "speed": 1 }, "types": ["normal", "fighting"], "height": 0.6, @@ -41164,14 +46011,21 @@ "catchRate": 75, "color": "blue", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["keen_eye", "infiltrator"], "hiddenAbilities": ["prankster"], - "baseStats": { "attack": 48, "defense": 76, "hp": 74, "specialAttack": 83, "specialDefense": 81, "speed": 104 }, + "baseStats": { + "attack": 48, + "defense": 76, + "hp": 74, + "specialAttack": 83, + "specialDefense": 81, + "speed": 104 + }, "evReward": { "speed": 2 }, "types": ["psychic"], "height": 0.6, @@ -41250,7 +46104,14 @@ "female": { "abilities": ["keen_eye", "infiltrator"], "hiddenAbilities": ["competitive"], - "baseStats": { "attack": 48, "defense": 76, "hp": 74, "specialAttack": 83, "specialDefense": 81, "speed": 104 }, + "baseStats": { + "attack": 48, + "defense": 76, + "hp": 74, + "specialAttack": 83, + "specialDefense": 81, + "speed": 104 + }, "evReward": { "speed": 2 }, "types": ["psychic"], "height": 0.6, @@ -41327,7 +46188,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "meowth": { "species": "meowth", @@ -41338,14 +46199,21 @@ "catchRate": 255, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "alola": { "abilities": ["pickup", "technician"], "hiddenAbilities": ["rattled"], - "baseStats": { "attack": 35, "defense": 35, "hp": 40, "specialAttack": 50, "specialDefense": 40, "speed": 90 }, + "baseStats": { + "attack": 35, + "defense": 35, + "hp": 40, + "specialAttack": 50, + "specialDefense": 40, + "speed": 90 + }, "evReward": { "speed": 1 }, "types": ["dark"], "height": 0.4, @@ -41413,7 +46281,14 @@ "default": { "abilities": ["pickup", "technician"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 45, "defense": 35, "hp": 40, "specialAttack": 40, "specialDefense": 40, "speed": 90 }, + "baseStats": { + "attack": 45, + "defense": 35, + "hp": 40, + "specialAttack": 40, + "specialDefense": 40, + "speed": 90 + }, "evReward": { "speed": 1 }, "types": ["normal"], "height": 0.4, @@ -41437,7 +46312,21 @@ { "name": "night_slash", "level": 49 }, { "name": "feint", "level": 50 } ], - "eggMoves": ["tail_whip", "hypnosis", "amnesia", "flail", "spite", "charm", "iron_tail", "assist", "snatch", "odor_sleuth", "punishment", "last_resort", "foul_play"], + "eggMoves": [ + "tail_whip", + "hypnosis", + "amnesia", + "flail", + "spite", + "charm", + "iron_tail", + "assist", + "snatch", + "odor_sleuth", + "punishment", + "last_resort", + "foul_play" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -41494,7 +46383,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 105, "defense": 105, "hp": 80, "specialAttack": 105, "specialDefense": 105, "speed": 80 }, + "baseStats": { + "attack": 105, + "defense": 105, + "hp": 80, + "specialAttack": 105, + "specialDefense": 105, + "speed": 80 + }, "evReward": { "attack": 1, "specialAttack": 1, "specialDefense": 1 }, "types": ["psychic"], "height": 0.3, @@ -41584,7 +46480,14 @@ "default": { "abilities": ["clear_body"], "hiddenAbilities": ["light_metal"], - "baseStats": { "attack": 135, "defense": 130, "hp": 80, "specialAttack": 95, "specialDefense": 90, "speed": 70 }, + "baseStats": { + "attack": 135, + "defense": 130, + "hp": 80, + "specialAttack": 95, + "specialDefense": 90, + "speed": 70 + }, "evReward": { "defense": 3 }, "types": ["steel", "psychic"], "height": 1.6, @@ -41656,7 +46559,14 @@ "isMega": true, "abilities": ["tough_claws"], "hiddenAbilities": [], - "baseStats": { "attack": 145, "defense": 150, "hp": 80, "specialAttack": 105, "specialDefense": 110, "speed": 110 }, + "baseStats": { + "attack": 145, + "defense": 150, + "hp": 80, + "specialAttack": 105, + "specialDefense": 110, + "speed": 110 + }, "evReward": { "defense": 3 }, "types": ["steel", "psychic"], "height": 2.5, @@ -41743,7 +46653,14 @@ "default": { "abilities": ["clear_body"], "hiddenAbilities": ["light_metal"], - "baseStats": { "attack": 75, "defense": 100, "hp": 60, "specialAttack": 55, "specialDefense": 80, "speed": 50 }, + "baseStats": { + "attack": 75, + "defense": 100, + "hp": 60, + "specialAttack": 55, + "specialDefense": 80, + "speed": 50 + }, "evReward": { "defense": 2 }, "types": ["steel", "psychic"], "height": 1.2, @@ -41829,13 +46746,29 @@ "default": { "abilities": ["shed_skin"], "hiddenAbilities": [], - "baseStats": { "attack": 20, "defense": 55, "hp": 50, "specialAttack": 25, "specialDefense": 25, "speed": 30 }, + "baseStats": { + "attack": 20, + "defense": 55, + "hp": 50, + "specialAttack": 25, + "specialDefense": 25, + "speed": 30 + }, "evReward": { "defense": 2 }, "types": ["bug"], "height": 0.7, "weight": 9.9, "baseExp": 72, - "moves": { "levelMoves": [{ "name": "harden", "level": 0 }, { "name": "harden", "level": 1 }], "eggMoves": [], "tutorMoves": [], "machine": [], "formeChange": [] } + "moves": { + "levelMoves": [ + { "name": "harden", "level": 0 }, + { "name": "harden", "level": 1 } + ], + "eggMoves": [], + "tutorMoves": [], + "machine": [], + "formeChange": [] + } } }, "evolutions": [{ "species": "butterfree", "method": "level", "data": "10" }] @@ -41856,7 +46789,14 @@ "default": { "abilities": ["synchronize"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 100, "hp": 100, "specialAttack": 100, "specialDefense": 100, "speed": 100 }, + "baseStats": { + "attack": 100, + "defense": 100, + "hp": 100, + "specialAttack": 100, + "specialDefense": 100, + "speed": 100 + }, "evReward": { "hp": 3 }, "types": ["psychic"], "height": 0.4, @@ -42004,7 +46944,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 110, "defense": 90, "hp": 106, "specialAttack": 154, "specialDefense": 90, "speed": 130 }, + "baseStats": { + "attack": 110, + "defense": 90, + "hp": 106, + "specialAttack": 154, + "specialDefense": 90, + "speed": 130 + }, "evReward": { "specialAttack": 3 }, "types": ["psychic"], "height": 2, @@ -42101,7 +47048,14 @@ "isMega": true, "abilities": ["steadfast"], "hiddenAbilities": [], - "baseStats": { "attack": 190, "defense": 100, "hp": 106, "specialAttack": 154, "specialDefense": 100, "speed": 130 }, + "baseStats": { + "attack": 190, + "defense": 100, + "hp": 106, + "specialAttack": 154, + "specialDefense": 100, + "speed": 130 + }, "evReward": { "specialAttack": 3 }, "types": ["psychic", "fighting"], "height": 2.3, @@ -42198,7 +47152,14 @@ "isMega": true, "abilities": ["insomnia"], "hiddenAbilities": [], - "baseStats": { "attack": 150, "defense": 70, "hp": 106, "specialAttack": 194, "specialDefense": 120, "speed": 140 }, + "baseStats": { + "attack": 150, + "defense": 70, + "hp": 106, + "specialAttack": 194, + "specialDefense": 120, + "speed": 140 + }, "evReward": { "specialAttack": 3 }, "types": ["psychic"], "height": 1.5, @@ -42303,14 +47264,21 @@ "catchRate": 180, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground", "humanshape"], + "eggGroups": ["field", "humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["inner_focus", "regenerator"], "hiddenAbilities": ["reckless"], - "baseStats": { "attack": 85, "defense": 50, "hp": 45, "specialAttack": 55, "specialDefense": 50, "speed": 65 }, + "baseStats": { + "attack": 85, + "defense": 50, + "hp": 45, + "specialAttack": 55, + "specialDefense": 50, + "speed": 65 + }, "evReward": { "attack": 1 }, "types": ["fighting"], "height": 0.9, @@ -42335,7 +47303,17 @@ { "name": "reversal", "level": 57 }, { "name": "aura_sphere", "level": 61 } ], - "eggMoves": ["low_kick", "endure", "baton_pass", "vital_throw", "smelling_salts", "knock_off", "feint", "me_first", "ally_switch"], + "eggMoves": [ + "low_kick", + "endure", + "baton_pass", + "vital_throw", + "smelling_salts", + "knock_off", + "feint", + "me_first", + "ally_switch" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -42390,14 +47368,21 @@ "catchRate": 45, "color": "purple", "genderDifference": false, - "eggGroups": ["ground", "humanshape"], + "eggGroups": ["field", "humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["inner_focus", "regenerator"], "hiddenAbilities": ["reckless"], - "baseStats": { "attack": 125, "defense": 60, "hp": 65, "specialAttack": 95, "specialDefense": 60, "speed": 105 }, + "baseStats": { + "attack": 125, + "defense": 60, + "hp": 65, + "specialAttack": 95, + "specialDefense": 60, + "speed": 105 + }, "evReward": { "attack": 2 }, "types": ["fighting"], "height": 1.4, @@ -42484,14 +47469,21 @@ "catchRate": 127, "color": "gray", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["intimidate", "quick_feet"], "hiddenAbilities": ["moxie"], - "baseStats": { "attack": 90, "defense": 70, "hp": 70, "specialAttack": 60, "specialDefense": 60, "speed": 70 }, + "baseStats": { + "attack": 90, + "defense": 70, + "hp": 70, + "specialAttack": 60, + "specialDefense": 60, + "speed": 70 + }, "evReward": { "attack": 2 }, "types": ["dark"], "height": 1, @@ -42579,7 +47571,14 @@ "default": { "abilities": ["marvel_scale", "competitive"], "hiddenAbilities": ["cute_charm"], - "baseStats": { "attack": 60, "defense": 79, "hp": 95, "specialAttack": 100, "specialDefense": 125, "speed": 81 }, + "baseStats": { + "attack": 60, + "defense": 79, + "hp": 95, + "specialAttack": 100, + "specialDefense": 125, + "speed": 81 + }, "evReward": { "specialDefense": 2 }, "types": ["water"], "height": 6.2, @@ -42656,14 +47655,21 @@ "catchRate": 45, "color": "pink", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["thick_fat", "scrappy"], "hiddenAbilities": ["sap_sipper"], - "baseStats": { "attack": 80, "defense": 105, "hp": 95, "specialAttack": 40, "specialDefense": 70, "speed": 100 }, + "baseStats": { + "attack": 80, + "defense": 105, + "hp": 95, + "specialAttack": 40, + "specialDefense": 70, + "speed": 100 + }, "evReward": { "defense": 2 }, "types": ["normal"], "height": 1.2, @@ -42764,7 +47770,14 @@ "default": { "abilities": ["soundproof", "filter"], "hiddenAbilities": ["technician"], - "baseStats": { "attack": 25, "defense": 45, "hp": 20, "specialAttack": 70, "specialDefense": 90, "speed": 60 }, + "baseStats": { + "attack": 25, + "defense": 45, + "hp": 20, + "specialAttack": 70, + "specialDefense": 90, + "speed": 60 + }, "evReward": { "specialDefense": 1 }, "types": ["psychic", "fairy"], "height": 0.6, @@ -42852,7 +47865,9 @@ } } }, - "evolutions": [{ "species": "mrmime", "method": "hasmove", "data": "mimic" }] + "evolutions": [ + { "species": "mrmime", "method": "hasmove", "data": "mimic" } + ] }, "mimikyu": { "species": "mimikyu", @@ -42863,14 +47878,21 @@ "catchRate": 45, "color": "yellow", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "busted": { "abilities": ["disguise"], "hiddenAbilities": [], - "baseStats": { "attack": 90, "defense": 80, "hp": 55, "specialAttack": 50, "specialDefense": 105, "speed": 96 }, + "baseStats": { + "attack": 90, + "defense": 80, + "hp": 55, + "specialAttack": 50, + "specialDefense": 105, + "speed": 96 + }, "evReward": { "specialDefense": 2 }, "types": ["ghost", "fairy"], "height": 0.2, @@ -42947,7 +47969,14 @@ "default": { "abilities": ["disguise"], "hiddenAbilities": [], - "baseStats": { "attack": 90, "defense": 80, "hp": 55, "specialAttack": 50, "specialDefense": 105, "speed": 96 }, + "baseStats": { + "attack": 90, + "defense": 80, + "hp": 55, + "specialAttack": 50, + "specialDefense": 105, + "speed": 96 + }, "evReward": { "specialDefense": 2 }, "types": ["ghost", "fairy"], "height": 0.2, @@ -43023,7 +48052,14 @@ "totem-busted": { "abilities": ["disguise"], "hiddenAbilities": [], - "baseStats": { "attack": 90, "defense": 80, "hp": 55, "specialAttack": 50, "specialDefense": 105, "speed": 96 }, + "baseStats": { + "attack": 90, + "defense": 80, + "hp": 55, + "specialAttack": 50, + "specialDefense": 105, + "speed": 96 + }, "evReward": { "specialDefense": 2 }, "types": ["ghost", "fairy"], "height": 0.4, @@ -43100,7 +48136,14 @@ "totem-disguised": { "abilities": ["disguise"], "hiddenAbilities": [], - "baseStats": { "attack": 90, "defense": 80, "hp": 55, "specialAttack": 50, "specialDefense": 105, "speed": 96 }, + "baseStats": { + "attack": 90, + "defense": 80, + "hp": 55, + "specialAttack": 50, + "specialDefense": 105, + "speed": 96 + }, "evReward": { "specialDefense": 2 }, "types": ["ghost", "fairy"], "height": 0.4, @@ -43174,7 +48217,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "minccino": { "species": "minccino", @@ -43185,14 +48228,21 @@ "catchRate": 255, "color": "gray", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["cute_charm", "technician"], "hiddenAbilities": ["skill_link"], - "baseStats": { "attack": 50, "defense": 40, "hp": 55, "specialAttack": 40, "specialDefense": 40, "speed": 75 }, + "baseStats": { + "attack": 50, + "defense": 40, + "hp": 55, + "specialAttack": 40, + "specialDefense": 40, + "speed": 75 + }, "evReward": { "speed": 1 }, "types": ["normal"], "height": 0.4, @@ -43218,7 +48268,17 @@ { "name": "last_resort", "level": 45 }, { "name": "after_you", "level": 49 } ], - "eggMoves": ["tail_whip", "flail", "mud_slap", "endure", "sleep_talk", "iron_tail", "knock_off", "fake_tears", "aqua_tail"], + "eggMoves": [ + "tail_whip", + "flail", + "mud_slap", + "endure", + "sleep_talk", + "iron_tail", + "knock_off", + "fake_tears", + "aqua_tail" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -43253,7 +48313,9 @@ } } }, - "evolutions": [{ "species": "cinccino", "method": "item", "data": "shinystone" }] + "evolutions": [ + { "species": "cinccino", "method": "item", "data": "shinystone" } + ] }, "minior": { "species": "minior", @@ -43271,7 +48333,14 @@ "blue": { "abilities": ["shields_down"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 60, "hp": 60, "specialAttack": 100, "specialDefense": 60, "speed": 120 }, + "baseStats": { + "attack": 100, + "defense": 60, + "hp": 60, + "specialAttack": 100, + "specialDefense": 60, + "speed": 120 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["rock", "flying"], "height": 0.3, @@ -43341,7 +48410,14 @@ "blue-meteor": { "abilities": ["shields_down"], "hiddenAbilities": [], - "baseStats": { "attack": 60, "defense": 100, "hp": 60, "specialAttack": 60, "specialDefense": 100, "speed": 60 }, + "baseStats": { + "attack": 60, + "defense": 100, + "hp": 60, + "specialAttack": 60, + "specialDefense": 100, + "speed": 60 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["rock", "flying"], "height": 0.3, @@ -43411,7 +48487,14 @@ "default": { "abilities": ["shields_down"], "hiddenAbilities": [], - "baseStats": { "attack": 60, "defense": 100, "hp": 60, "specialAttack": 60, "specialDefense": 100, "speed": 60 }, + "baseStats": { + "attack": 60, + "defense": 100, + "hp": 60, + "specialAttack": 60, + "specialDefense": 100, + "speed": 60 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["rock", "flying"], "height": 0.3, @@ -43481,7 +48564,14 @@ "green": { "abilities": ["shields_down"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 60, "hp": 60, "specialAttack": 100, "specialDefense": 60, "speed": 120 }, + "baseStats": { + "attack": 100, + "defense": 60, + "hp": 60, + "specialAttack": 100, + "specialDefense": 60, + "speed": 120 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["rock", "flying"], "height": 0.3, @@ -43551,7 +48641,14 @@ "green-meteor": { "abilities": ["shields_down"], "hiddenAbilities": [], - "baseStats": { "attack": 60, "defense": 100, "hp": 60, "specialAttack": 60, "specialDefense": 100, "speed": 60 }, + "baseStats": { + "attack": 60, + "defense": 100, + "hp": 60, + "specialAttack": 60, + "specialDefense": 100, + "speed": 60 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["rock", "flying"], "height": 0.3, @@ -43621,7 +48718,14 @@ "indigo": { "abilities": ["shields_down"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 60, "hp": 60, "specialAttack": 100, "specialDefense": 60, "speed": 120 }, + "baseStats": { + "attack": 100, + "defense": 60, + "hp": 60, + "specialAttack": 100, + "specialDefense": 60, + "speed": 120 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["rock", "flying"], "height": 0.3, @@ -43691,7 +48795,14 @@ "indigo-meteor": { "abilities": ["shields_down"], "hiddenAbilities": [], - "baseStats": { "attack": 60, "defense": 100, "hp": 60, "specialAttack": 60, "specialDefense": 100, "speed": 60 }, + "baseStats": { + "attack": 60, + "defense": 100, + "hp": 60, + "specialAttack": 60, + "specialDefense": 100, + "speed": 60 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["rock", "flying"], "height": 0.3, @@ -43761,7 +48872,14 @@ "orange": { "abilities": ["shields_down"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 60, "hp": 60, "specialAttack": 100, "specialDefense": 60, "speed": 120 }, + "baseStats": { + "attack": 100, + "defense": 60, + "hp": 60, + "specialAttack": 100, + "specialDefense": 60, + "speed": 120 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["rock", "flying"], "height": 0.3, @@ -43831,7 +48949,14 @@ "orange-meteor": { "abilities": ["shields_down"], "hiddenAbilities": [], - "baseStats": { "attack": 60, "defense": 100, "hp": 60, "specialAttack": 60, "specialDefense": 100, "speed": 60 }, + "baseStats": { + "attack": 60, + "defense": 100, + "hp": 60, + "specialAttack": 60, + "specialDefense": 100, + "speed": 60 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["rock", "flying"], "height": 0.3, @@ -43901,7 +49026,14 @@ "red": { "abilities": ["shields_down"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 60, "hp": 60, "specialAttack": 100, "specialDefense": 60, "speed": 120 }, + "baseStats": { + "attack": 100, + "defense": 60, + "hp": 60, + "specialAttack": 100, + "specialDefense": 60, + "speed": 120 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["rock", "flying"], "height": 0.3, @@ -43971,7 +49103,14 @@ "violet": { "abilities": ["shields_down"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 60, "hp": 60, "specialAttack": 100, "specialDefense": 60, "speed": 120 }, + "baseStats": { + "attack": 100, + "defense": 60, + "hp": 60, + "specialAttack": 100, + "specialDefense": 60, + "speed": 120 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["rock", "flying"], "height": 0.3, @@ -44041,7 +49180,14 @@ "violet-meteor": { "abilities": ["shields_down"], "hiddenAbilities": [], - "baseStats": { "attack": 60, "defense": 100, "hp": 60, "specialAttack": 60, "specialDefense": 100, "speed": 60 }, + "baseStats": { + "attack": 60, + "defense": 100, + "hp": 60, + "specialAttack": 60, + "specialDefense": 100, + "speed": 60 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["rock", "flying"], "height": 0.3, @@ -44111,7 +49257,14 @@ "yellow": { "abilities": ["shields_down"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 60, "hp": 60, "specialAttack": 100, "specialDefense": 60, "speed": 120 }, + "baseStats": { + "attack": 100, + "defense": 60, + "hp": 60, + "specialAttack": 100, + "specialDefense": 60, + "speed": 120 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["rock", "flying"], "height": 0.3, @@ -44181,7 +49334,14 @@ "yellow-meteor": { "abilities": ["shields_down"], "hiddenAbilities": [], - "baseStats": { "attack": 60, "defense": 100, "hp": 60, "specialAttack": 60, "specialDefense": 100, "speed": 60 }, + "baseStats": { + "attack": 60, + "defense": 100, + "hp": 60, + "specialAttack": 60, + "specialDefense": 100, + "speed": 60 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["rock", "flying"], "height": 0.3, @@ -44249,7 +49409,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "minun": { "species": "minun", @@ -44267,7 +49427,14 @@ "default": { "abilities": ["minus"], "hiddenAbilities": ["volt_absorb"], - "baseStats": { "attack": 40, "defense": 50, "hp": 60, "specialAttack": 75, "specialDefense": 85, "speed": 95 }, + "baseStats": { + "attack": 40, + "defense": 50, + "hp": 60, + "specialAttack": 75, + "specialDefense": 85, + "speed": 95 + }, "evReward": { "speed": 1 }, "types": ["electric"], "height": 0.4, @@ -44297,7 +49464,15 @@ { "name": "nasty_plot", "level": 46 }, { "name": "entrainment", "level": 49 } ], - "eggMoves": ["sing", "sweet_kiss", "charm", "wish", "fake_tears", "lucky_chant", "discharge"], + "eggMoves": [ + "sing", + "sweet_kiss", + "charm", + "wish", + "fake_tears", + "lucky_chant", + "discharge" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -44341,14 +49516,21 @@ "catchRate": 45, "color": "gray", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 60, "defense": 60, "hp": 60, "specialAttack": 85, "specialDefense": 85, "speed": 85 }, + "baseStats": { + "attack": 60, + "defense": 60, + "hp": 60, + "specialAttack": 85, + "specialDefense": 85, + "speed": 85 + }, "evReward": { "specialDefense": 1 }, "types": ["ghost"], "height": 0.7, @@ -44371,7 +49553,21 @@ { "name": "grudge", "level": 50 }, { "name": "power_gem", "level": 55 } ], - "eggMoves": ["screech", "curse", "spite", "destiny_bond", "memento", "skill_swap", "imprison", "me_first", "sucker_punch", "nasty_plot", "shadow_sneak", "ominous_wind", "wonder_room"], + "eggMoves": [ + "screech", + "curse", + "spite", + "destiny_bond", + "memento", + "skill_swap", + "imprison", + "me_first", + "sucker_punch", + "nasty_plot", + "shadow_sneak", + "ominous_wind", + "wonder_room" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -44415,7 +49611,9 @@ } } }, - "evolutions": [{ "species": "mismagius", "method": "item", "data": "duskstone" }] + "evolutions": [ + { "species": "mismagius", "method": "item", "data": "duskstone" } + ] }, "mismagius": { "species": "mismagius", @@ -44426,14 +49624,21 @@ "catchRate": 45, "color": "purple", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 60, "defense": 60, "hp": 60, "specialAttack": 105, "specialDefense": 105, "speed": 105 }, + "baseStats": { + "attack": 60, + "defense": 60, + "hp": 60, + "specialAttack": 105, + "specialDefense": 105, + "speed": 105 + }, "evReward": { "specialAttack": 1, "specialDefense": 1 }, "types": ["ghost"], "height": 0.9, @@ -44516,7 +49721,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": ["flame_body"], - "baseStats": { "attack": 100, "defense": 90, "hp": 90, "specialAttack": 125, "specialDefense": 85, "speed": 90 }, + "baseStats": { + "attack": 100, + "defense": 90, + "hp": 90, + "specialAttack": 125, + "specialDefense": 85, + "speed": 90 + }, "evReward": { "specialAttack": 3 }, "types": ["fire", "flying"], "height": 2, @@ -44592,14 +49804,21 @@ "catchRate": 45, "color": "brown", "genderDifference": false, - "eggGroups": ["ground", "humanshape"], + "eggGroups": ["field", "humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["iron_fist"], - "baseStats": { "attack": 78, "defense": 52, "hp": 64, "specialAttack": 78, "specialDefense": 52, "speed": 81 }, + "baseStats": { + "attack": 78, + "defense": 52, + "hp": 64, + "specialAttack": 78, + "specialDefense": 52, + "speed": 81 + }, "evReward": { "specialAttack": 1, "speed": 1 }, "types": ["fire", "fighting"], "height": 0.9, @@ -44680,14 +49899,21 @@ "catchRate": 190, "color": "purple", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["illuminate", "effect_spore"], "hiddenAbilities": ["rain_dish"], - "baseStats": { "attack": 35, "defense": 55, "hp": 40, "specialAttack": 65, "specialDefense": 75, "speed": 15 }, + "baseStats": { + "attack": 35, + "defense": 55, + "hp": 40, + "specialAttack": 65, + "specialDefense": 75, + "speed": 15 + }, "evReward": { "specialDefense": 1 }, "types": ["grass", "fairy"], "height": 0.2, @@ -44710,7 +49936,13 @@ { "name": "dream_eater", "level": 43 }, { "name": "spotlight", "level": 46 } ], - "eggMoves": ["leech_seed", "growth", "poison_powder", "stun_spore", "amnesia"], + "eggMoves": [ + "leech_seed", + "growth", + "poison_powder", + "stun_spore", + "amnesia" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -44742,7 +49974,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "mothim": { "species": "mothim", @@ -44760,7 +49992,14 @@ "default": { "abilities": ["swarm"], "hiddenAbilities": ["tinted_lens"], - "baseStats": { "attack": 94, "defense": 50, "hp": 70, "specialAttack": 94, "specialDefense": 50, "speed": 66 }, + "baseStats": { + "attack": 94, + "defense": 50, + "hp": 70, + "specialAttack": 94, + "specialDefense": 50, + "speed": 66 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["bug", "flying"], "height": 0.9, @@ -44838,14 +50077,21 @@ "catchRate": 45, "color": "pink", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["soundproof", "filter"], "hiddenAbilities": ["technician"], - "baseStats": { "attack": 45, "defense": 65, "hp": 40, "specialAttack": 100, "specialDefense": 120, "speed": 90 }, + "baseStats": { + "attack": 45, + "defense": 65, + "hp": 40, + "specialAttack": 100, + "specialDefense": 120, + "speed": 90 + }, "evReward": { "specialDefense": 2 }, "types": ["psychic", "fairy"], "height": 1.3, @@ -44878,7 +50124,20 @@ { "name": "baton_pass", "level": 46 }, { "name": "safeguard", "level": 50 } ], - "eggMoves": ["hypnosis", "mimic", "confuse_ray", "icy_wind", "future_sight", "fake_out", "trick", "teeter_dance", "wake_up_slap", "nasty_plot", "power_split", "magic_room"], + "eggMoves": [ + "hypnosis", + "mimic", + "confuse_ray", + "icy_wind", + "future_sight", + "fake_out", + "trick", + "teeter_dance", + "wake_up_slap", + "nasty_plot", + "power_split", + "magic_room" + ], "tutorMoves": [], "machine": [ "hyper_beam", @@ -44942,14 +50201,21 @@ "catchRate": 190, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["own_tempo", "stamina"], "hiddenAbilities": ["inner_focus"], - "baseStats": { "attack": 100, "defense": 70, "hp": 70, "specialAttack": 45, "specialDefense": 55, "speed": 45 }, + "baseStats": { + "attack": 100, + "defense": 70, + "hp": 70, + "specialAttack": 45, + "specialDefense": 55, + "speed": 45 + }, "evReward": { "attack": 1 }, "types": ["ground"], "height": 1, @@ -44972,7 +50238,13 @@ { "name": "mega_kick", "level": 43 }, { "name": "superpower", "level": 45 } ], - "eggMoves": ["body_slam", "double_edge", "magnitude", "close_combat", "mud_bomb"], + "eggMoves": [ + "body_slam", + "double_edge", + "magnitude", + "close_combat", + "mud_bomb" + ], "tutorMoves": [], "machine": [ "roar", @@ -45002,7 +50274,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "mudkip": { "species": "mudkip", @@ -45020,7 +50292,14 @@ "default": { "abilities": ["torrent"], "hiddenAbilities": ["damp"], - "baseStats": { "attack": 70, "defense": 50, "hp": 50, "specialAttack": 50, "specialDefense": 50, "speed": 40 }, + "baseStats": { + "attack": 70, + "defense": 50, + "hp": 50, + "specialAttack": 50, + "specialDefense": 50, + "speed": 40 + }, "evReward": { "attack": 1 }, "types": ["water"], "height": 0.4, @@ -45105,14 +50384,21 @@ "catchRate": 60, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["own_tempo", "stamina"], "hiddenAbilities": ["inner_focus"], - "baseStats": { "attack": 125, "defense": 100, "hp": 100, "specialAttack": 55, "specialDefense": 85, "speed": 35 }, + "baseStats": { + "attack": 125, + "defense": 100, + "hp": 100, + "specialAttack": 55, + "specialDefense": 85, + "speed": 35 + }, "evReward": { "attack": 2 }, "types": ["ground"], "height": 2.5, @@ -45170,7 +50456,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "muk": { "species": "muk", @@ -45181,14 +50467,21 @@ "catchRate": 75, "color": "purple", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "alola": { "abilities": ["poison_touch", "gluttony"], "hiddenAbilities": ["power_of_alchemy"], - "baseStats": { "attack": 105, "defense": 75, "hp": 105, "specialAttack": 65, "specialDefense": 100, "speed": 50 }, + "baseStats": { + "attack": 105, + "defense": 75, + "hp": 105, + "specialAttack": 65, + "specialDefense": 100, + "speed": 50 + }, "evReward": { "attack": 1, "hp": 1 }, "types": ["poison", "dark"], "height": 1, @@ -45270,7 +50563,14 @@ "default": { "abilities": ["stench", "sticky_hold"], "hiddenAbilities": ["poison_touch"], - "baseStats": { "attack": 105, "defense": 75, "hp": 105, "specialAttack": 65, "specialDefense": 100, "speed": 50 }, + "baseStats": { + "attack": 105, + "defense": 75, + "hp": 105, + "specialAttack": 65, + "specialDefense": 100, + "speed": 50 + }, "evReward": { "attack": 1, "hp": 1 }, "types": ["poison"], "height": 1.2, @@ -45364,7 +50664,14 @@ "default": { "abilities": ["pickup", "thick_fat"], "hiddenAbilities": ["gluttony"], - "baseStats": { "attack": 85, "defense": 40, "hp": 135, "specialAttack": 40, "specialDefense": 85, "speed": 5 }, + "baseStats": { + "attack": 85, + "defense": 40, + "hp": 135, + "specialAttack": 40, + "specialDefense": 85, + "speed": 5 + }, "evReward": { "hp": 1 }, "types": ["normal"], "height": 0.6, @@ -45393,7 +50700,20 @@ { "name": "snatch", "level": 50 }, { "name": "last_resort", "level": 57 } ], - "eggMoves": ["whirlwind", "double_edge", "counter", "self_destruct", "lick", "curse", "charm", "pursuit", "natural_gift", "zen_headbutt", "after_you", "belch"], + "eggMoves": [ + "whirlwind", + "double_edge", + "counter", + "self_destruct", + "lick", + "curse", + "charm", + "pursuit", + "natural_gift", + "zen_headbutt", + "after_you", + "belch" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -45446,14 +50766,21 @@ "catchRate": 190, "color": "pink", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 10, "tags": [], "formes": { "default": { "abilities": ["forewarn", "synchronize"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 25, "defense": 45, "hp": 76, "specialAttack": 67, "specialDefense": 55, "speed": 24 }, + "baseStats": { + "attack": 25, + "defense": 45, + "hp": 76, + "specialAttack": 67, + "specialDefense": 55, + "speed": 24 + }, "evReward": { "hp": 1 }, "types": ["psychic"], "height": 0.6, @@ -45479,7 +50806,18 @@ { "name": "telekinesis", "level": 43 }, { "name": "stored_power", "level": 47 } ], - "eggMoves": ["sonic_boom", "barrier", "swift", "curse", "sleep_talk", "baton_pass", "helping_hand", "magic_coat", "secret_power", "healing_wish"], + "eggMoves": [ + "sonic_boom", + "barrier", + "swift", + "curse", + "sleep_talk", + "baton_pass", + "helping_hand", + "magic_coat", + "secret_power", + "healing_wish" + ], "tutorMoves": [], "machine": [ "thunder_wave", @@ -45520,7 +50858,9 @@ } } }, - "evolutions": [{ "species": "musharna", "method": "item", "data": "moonstone" }] + "evolutions": [ + { "species": "musharna", "method": "item", "data": "moonstone" } + ] }, "murkrow": { "species": "murkrow", @@ -45538,7 +50878,14 @@ "default": { "abilities": ["insomnia", "super_luck"], "hiddenAbilities": ["prankster"], - "baseStats": { "attack": 85, "defense": 42, "hp": 60, "specialAttack": 85, "specialDefense": 42, "speed": 91 }, + "baseStats": { + "attack": 85, + "defense": 42, + "hp": 60, + "specialAttack": 85, + "specialDefense": 42, + "speed": 91 + }, "evReward": { "speed": 1 }, "types": ["dark", "flying"], "height": 0.5, @@ -45620,7 +50967,9 @@ } } }, - "evolutions": [{ "species": "honchkrow", "method": "item", "data": "duskstone" }] + "evolutions": [ + { "species": "honchkrow", "method": "item", "data": "duskstone" } + ] }, "musharna": { "species": "musharna", @@ -45631,14 +50980,21 @@ "catchRate": 75, "color": "pink", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 10, "tags": [], "formes": { "default": { "abilities": ["forewarn", "synchronize"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 55, "defense": 85, "hp": 116, "specialAttack": 107, "specialDefense": 95, "speed": 29 }, + "baseStats": { + "attack": 55, + "defense": 85, + "hp": 116, + "specialAttack": 107, + "specialDefense": 95, + "speed": 29 + }, "evReward": { "hp": 2 }, "types": ["psychic"], "height": 1.1, @@ -45713,7 +51069,14 @@ "default": { "abilities": ["synchronize", "early_bird"], "hiddenAbilities": ["magic_bounce"], - "baseStats": { "attack": 50, "defense": 45, "hp": 40, "specialAttack": 70, "specialDefense": 45, "speed": 70 }, + "baseStats": { + "attack": 50, + "defense": 45, + "hp": 40, + "specialAttack": 70, + "specialDefense": 45, + "speed": 70 + }, "evReward": { "specialAttack": 1 }, "types": ["psychic", "flying"], "height": 0.2, @@ -45813,7 +51176,14 @@ "default": { "abilities": ["prism_armor"], "hiddenAbilities": [], - "baseStats": { "attack": 107, "defense": 101, "hp": 97, "specialAttack": 127, "specialDefense": 89, "speed": 79 }, + "baseStats": { + "attack": 107, + "defense": 101, + "hp": 97, + "specialAttack": 127, + "specialDefense": 89, + "speed": 79 + }, "evReward": { "attack": 1, "specialAttack": 2 }, "types": ["psychic"], "height": 2.4, @@ -45891,7 +51261,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "nidoking": { "species": "nidoking", @@ -45902,14 +51272,21 @@ "catchRate": 45, "color": "purple", "genderDifference": false, - "eggGroups": ["monster", "ground"], + "eggGroups": ["monster", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["poison_point", "rivalry"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 102, "defense": 77, "hp": 81, "specialAttack": 85, "specialDefense": 75, "speed": 85 }, + "baseStats": { + "attack": 102, + "defense": 77, + "hp": 81, + "specialAttack": 85, + "specialDefense": 75, + "speed": 85 + }, "evReward": { "attack": 3 }, "types": ["poison", "ground"], "height": 1.4, @@ -46002,7 +51379,14 @@ "default": { "abilities": ["poison_point", "rivalry"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 92, "defense": 87, "hp": 90, "specialAttack": 75, "specialDefense": 85, "speed": 76 }, + "baseStats": { + "attack": 92, + "defense": 87, + "hp": 90, + "specialAttack": 75, + "specialDefense": 85, + "speed": 76 + }, "evReward": { "hp": 3 }, "types": ["poison", "ground"], "height": 1.3, @@ -46088,14 +51472,21 @@ "catchRate": 235, "color": "blue", "genderDifference": false, - "eggGroups": ["monster", "ground"], + "eggGroups": ["monster", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["poison_point", "rivalry"], "hiddenAbilities": ["hustle"], - "baseStats": { "attack": 47, "defense": 52, "hp": 55, "specialAttack": 40, "specialDefense": 40, "speed": 41 }, + "baseStats": { + "attack": 47, + "defense": 52, + "hp": 55, + "specialAttack": 40, + "specialDefense": 40, + "speed": 41 + }, "evReward": { "hp": 1 }, "types": ["poison"], "height": 0.4, @@ -46117,7 +51508,22 @@ { "name": "captivate", "level": 43 }, { "name": "poison_fang", "level": 45 } ], - "eggMoves": ["take_down", "supersonic", "disable", "counter", "focus_energy", "skull_bash", "endure", "charm", "pursuit", "iron_tail", "beat_up", "poison_tail", "chip_away", "venom_drench"], + "eggMoves": [ + "take_down", + "supersonic", + "disable", + "counter", + "focus_energy", + "skull_bash", + "endure", + "charm", + "pursuit", + "iron_tail", + "beat_up", + "poison_tail", + "chip_away", + "venom_drench" + ], "tutorMoves": [], "machine": [ "ice_beam", @@ -46163,14 +51569,21 @@ "catchRate": 235, "color": "purple", "genderDifference": false, - "eggGroups": ["monster", "ground"], + "eggGroups": ["monster", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["poison_point", "rivalry"], "hiddenAbilities": ["hustle"], - "baseStats": { "attack": 57, "defense": 40, "hp": 46, "specialAttack": 40, "specialDefense": 40, "speed": 50 }, + "baseStats": { + "attack": 57, + "defense": 40, + "hp": 46, + "specialAttack": 40, + "specialDefense": 40, + "speed": 50 + }, "evReward": { "attack": 1 }, "types": ["poison"], "height": 0.5, @@ -46260,7 +51673,14 @@ "default": { "abilities": ["poison_point", "rivalry"], "hiddenAbilities": ["hustle"], - "baseStats": { "attack": 62, "defense": 67, "hp": 70, "specialAttack": 55, "specialDefense": 55, "speed": 56 }, + "baseStats": { + "attack": 62, + "defense": 67, + "hp": 70, + "specialAttack": 55, + "specialDefense": 55, + "speed": 56 + }, "evReward": { "hp": 2 }, "types": ["poison"], "height": 0.8, @@ -46317,7 +51737,9 @@ } } }, - "evolutions": [{ "species": "nidoqueen", "method": "item", "data": "moonstone" }] + "evolutions": [ + { "species": "nidoqueen", "method": "item", "data": "moonstone" } + ] }, "nidorino": { "species": "nidorino", @@ -46328,14 +51750,21 @@ "catchRate": 120, "color": "purple", "genderDifference": false, - "eggGroups": ["monster", "ground"], + "eggGroups": ["monster", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["poison_point", "rivalry"], "hiddenAbilities": ["hustle"], - "baseStats": { "attack": 72, "defense": 57, "hp": 61, "specialAttack": 55, "specialDefense": 55, "speed": 65 }, + "baseStats": { + "attack": 72, + "defense": 57, + "hp": 61, + "specialAttack": 55, + "specialDefense": 55, + "speed": 65 + }, "evReward": { "attack": 2 }, "types": ["poison"], "height": 0.9, @@ -46392,7 +51821,9 @@ } } }, - "evolutions": [{ "species": "nidoking", "method": "item", "data": "moonstone" }] + "evolutions": [ + { "species": "nidoking", "method": "item", "data": "moonstone" } + ] }, "nihilego": { "species": "nihilego", @@ -46410,7 +51841,14 @@ "default": { "abilities": ["beast_boost"], "hiddenAbilities": [], - "baseStats": { "attack": 53, "defense": 47, "hp": 109, "specialAttack": 127, "specialDefense": 131, "speed": 103 }, + "baseStats": { + "attack": 53, + "defense": 47, + "hp": 109, + "specialAttack": 127, + "specialDefense": 131, + "speed": 103 + }, "evReward": { "specialDefense": 3 }, "types": ["rock", "poison"], "height": 1.2, @@ -46478,7 +51916,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "nincada": { "species": "nincada", @@ -46496,7 +51934,14 @@ "default": { "abilities": ["compound_eyes"], "hiddenAbilities": ["run_away"], - "baseStats": { "attack": 45, "defense": 90, "hp": 31, "specialAttack": 30, "specialDefense": 30, "speed": 40 }, + "baseStats": { + "attack": 45, + "defense": 90, + "hp": 31, + "specialAttack": 30, + "specialDefense": 30, + "speed": 40 + }, "evReward": { "defense": 1 }, "types": ["bug", "ground"], "height": 0.5, @@ -46516,7 +51961,16 @@ { "name": "false_swipe", "level": 33 }, { "name": "dig", "level": 37 } ], - "eggMoves": ["gust", "feint_attack", "endure", "silver_wind", "night_slash", "bug_buzz", "bug_bite", "final_gambit"], + "eggMoves": [ + "gust", + "feint_attack", + "endure", + "silver_wind", + "night_slash", + "bug_buzz", + "bug_bite", + "final_gambit" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -46545,7 +51999,10 @@ } } }, - "evolutions": [{ "species": "ninjask", "method": "ninjask", "data": "20" }, { "species": "shedinja", "method": "shedinja", "data": "20" }] + "evolutions": [ + { "species": "ninjask", "method": "ninjask", "data": "20" }, + { "species": "shedinja", "method": "shedinja", "data": "20" } + ] }, "ninetales": { "species": "ninetales", @@ -46556,14 +52013,21 @@ "catchRate": 75, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "alola": { "abilities": ["snow_cloak"], "hiddenAbilities": ["snow_warning"], - "baseStats": { "attack": 67, "defense": 75, "hp": 73, "specialAttack": 81, "specialDefense": 100, "speed": 109 }, + "baseStats": { + "attack": 67, + "defense": 75, + "hp": 73, + "specialAttack": 81, + "specialDefense": 100, + "speed": 109 + }, "evReward": { "speed": 2 }, "types": ["ice", "fairy"], "height": 1.1, @@ -46621,7 +52085,14 @@ "default": { "abilities": ["flash_fire"], "hiddenAbilities": ["drought"], - "baseStats": { "attack": 76, "defense": 75, "hp": 73, "specialAttack": 81, "specialDefense": 100, "speed": 100 }, + "baseStats": { + "attack": 76, + "defense": 75, + "hp": 73, + "specialAttack": 81, + "specialDefense": 100, + "speed": 100 + }, "evReward": { "specialDefense": 1, "speed": 1 }, "types": ["fire"], "height": 1.1, @@ -46694,7 +52165,14 @@ "default": { "abilities": ["speed_boost"], "hiddenAbilities": ["infiltrator"], - "baseStats": { "attack": 90, "defense": 45, "hp": 61, "specialAttack": 50, "specialDefense": 50, "speed": 160 }, + "baseStats": { + "attack": 90, + "defense": 45, + "hp": 61, + "specialAttack": 50, + "specialDefense": 50, + "speed": 160 + }, "evReward": { "speed": 2 }, "types": ["bug", "flying"], "height": 0.8, @@ -46777,7 +52255,14 @@ "default": { "abilities": ["insomnia", "keen_eye"], "hiddenAbilities": ["tinted_lens"], - "baseStats": { "attack": 50, "defense": 50, "hp": 100, "specialAttack": 86, "specialDefense": 96, "speed": 70 }, + "baseStats": { + "attack": 50, + "defense": 50, + "hp": 100, + "specialAttack": 86, + "specialDefense": 96, + "speed": 70 + }, "evReward": { "hp": 2 }, "types": ["normal", "flying"], "height": 1.6, @@ -46863,7 +52348,14 @@ "default": { "abilities": ["frisk", "infiltrator"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 30, "defense": 35, "hp": 40, "specialAttack": 45, "specialDefense": 40, "speed": 55 }, + "baseStats": { + "attack": 30, + "defense": 35, + "hp": 40, + "specialAttack": 45, + "specialDefense": 40, + "speed": 55 + }, "evReward": { "speed": 1 }, "types": ["flying", "dragon"], "height": 0.5, @@ -46931,7 +52423,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "noivern": { "species": "noivern", @@ -46949,7 +52441,14 @@ "default": { "abilities": ["frisk", "infiltrator"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 70, "defense": 80, "hp": 85, "specialAttack": 97, "specialDefense": 80, "speed": 123 }, + "baseStats": { + "attack": 70, + "defense": 80, + "hp": 85, + "specialAttack": 97, + "specialDefense": 80, + "speed": 123 + }, "evReward": { "speed": 2 }, "types": ["flying", "dragon"], "height": 1.5, @@ -47029,7 +52528,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "nosepass": { "species": "nosepass", @@ -47047,7 +52546,14 @@ "default": { "abilities": ["sturdy", "magnet_pull"], "hiddenAbilities": ["sand_force"], - "baseStats": { "attack": 45, "defense": 135, "hp": 30, "specialAttack": 45, "specialDefense": 90, "speed": 30 }, + "baseStats": { + "attack": 45, + "defense": 135, + "hp": 30, + "specialAttack": 45, + "specialDefense": 90, + "speed": 30 + }, "evReward": { "defense": 1 }, "types": ["rock"], "height": 1, @@ -47072,7 +52578,15 @@ { "name": "lock_on", "level": 43 }, { "name": "zap_cannon", "level": 43 } ], - "eggMoves": ["double_edge", "endure", "rollout", "magnitude", "block", "stealth_rock", "wide_guard"], + "eggMoves": [ + "double_edge", + "endure", + "rollout", + "magnitude", + "block", + "stealth_rock", + "wide_guard" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -47126,14 +52640,21 @@ "catchRate": 255, "color": "yellow", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["oblivious", "simple"], "hiddenAbilities": ["own_tempo"], - "baseStats": { "attack": 60, "defense": 40, "hp": 60, "specialAttack": 65, "specialDefense": 45, "speed": 35 }, + "baseStats": { + "attack": 60, + "defense": 40, + "hp": 60, + "specialAttack": 65, + "specialDefense": 45, + "speed": 35 + }, "evReward": { "specialAttack": 1 }, "types": ["fire", "ground"], "height": 0.7, @@ -47220,14 +52741,21 @@ "catchRate": 120, "color": "brown", "genderDifference": true, - "eggGroups": ["ground", "plant"], + "eggGroups": ["field", "grass"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "early_bird"], "hiddenAbilities": ["pickpocket"], - "baseStats": { "attack": 70, "defense": 40, "hp": 70, "specialAttack": 60, "specialDefense": 40, "speed": 60 }, + "baseStats": { + "attack": 70, + "defense": 40, + "hp": 70, + "specialAttack": 60, + "specialDefense": 40, + "speed": 60 + }, "evReward": { "attack": 2 }, "types": ["grass", "dark"], "height": 1, @@ -47293,7 +52821,9 @@ } } }, - "evolutions": [{ "species": "shiftry", "method": "item", "data": "leafstone" }] + "evolutions": [ + { "species": "shiftry", "method": "item", "data": "leafstone" } + ] }, "octillery": { "species": "octillery", @@ -47311,7 +52841,14 @@ "default": { "abilities": ["suction_cups", "sniper"], "hiddenAbilities": ["moody"], - "baseStats": { "attack": 105, "defense": 75, "hp": 75, "specialAttack": 105, "specialDefense": 75, "speed": 45 }, + "baseStats": { + "attack": 105, + "defense": 75, + "hp": 75, + "specialAttack": 105, + "specialDefense": 75, + "speed": 45 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["water"], "height": 0.9, @@ -47394,14 +52931,21 @@ "catchRate": 255, "color": "blue", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll"], "hiddenAbilities": ["run_away"], - "baseStats": { "attack": 50, "defense": 55, "hp": 45, "specialAttack": 75, "specialDefense": 65, "speed": 30 }, + "baseStats": { + "attack": 50, + "defense": 55, + "hp": 45, + "specialAttack": 75, + "specialDefense": 65, + "speed": 30 + }, "evReward": { "specialAttack": 1 }, "types": ["grass", "poison"], "height": 0.5, @@ -47426,7 +52970,18 @@ { "name": "grassy_terrain", "level": 47 }, { "name": "petal_dance", "level": 51 } ], - "eggMoves": ["razor_leaf", "flail", "charm", "synthesis", "nature_power", "ingrain", "secret_power", "teeter_dance", "tickle", "after_you"], + "eggMoves": [ + "razor_leaf", + "flail", + "charm", + "synthesis", + "nature_power", + "ingrain", + "secret_power", + "teeter_dance", + "tickle", + "after_you" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -47476,7 +53031,14 @@ "default": { "abilities": ["swift_swim", "shell_armor"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 40, "defense": 100, "hp": 35, "specialAttack": 90, "specialDefense": 55, "speed": 35 }, + "baseStats": { + "attack": 40, + "defense": 100, + "hp": 35, + "specialAttack": 90, + "specialDefense": 55, + "speed": 35 + }, "evReward": { "defense": 1 }, "types": ["rock", "water"], "height": 0.4, @@ -47568,7 +53130,14 @@ "default": { "abilities": ["swift_swim", "shell_armor"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 60, "defense": 125, "hp": 70, "specialAttack": 115, "specialDefense": 70, "speed": 55 }, + "baseStats": { + "attack": 60, + "defense": 125, + "hp": 70, + "specialAttack": 115, + "specialDefense": 70, + "speed": 55 + }, "evReward": { "defense": 2 }, "types": ["rock", "water"], "height": 1, @@ -47652,7 +53221,14 @@ "default": { "abilities": ["rock_head", "sturdy"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 45, "defense": 160, "hp": 35, "specialAttack": 30, "specialDefense": 45, "speed": 70 }, + "baseStats": { + "attack": 45, + "defense": 160, + "hp": 35, + "specialAttack": 30, + "specialDefense": 45, + "speed": 70 + }, "evReward": { "defense": 1 }, "types": ["rock", "ground"], "height": 8.8, @@ -47683,7 +53259,17 @@ { "name": "double_edge", "level": 49 }, { "name": "sandstorm", "level": 52 } ], - "eggMoves": ["defense_curl", "flail", "rollout", "block", "rock_blast", "rock_climb", "stealth_rock", "heavy_slam", "rototiller"], + "eggMoves": [ + "defense_curl", + "flail", + "rollout", + "block", + "rock_blast", + "rock_climb", + "stealth_rock", + "heavy_slam", + "rototiller" + ], "tutorMoves": [], "machine": [ "roar", @@ -47725,7 +53311,9 @@ } } }, - "evolutions": [{ "species": "steelix", "method": "tradeitem", "data": "metalcoat" }] + "evolutions": [ + { "species": "steelix", "method": "tradeitem", "data": "metalcoat" } + ] }, "oranguru": { "species": "oranguru", @@ -47736,14 +53324,21 @@ "catchRate": 45, "color": "white", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["inner_focus", "telepathy"], "hiddenAbilities": ["symbiosis"], - "baseStats": { "attack": 60, "defense": 80, "hp": 90, "specialAttack": 90, "specialDefense": 110, "speed": 60 }, + "baseStats": { + "attack": 60, + "defense": 80, + "hp": 90, + "specialAttack": 90, + "specialDefense": 110, + "speed": 60 + }, "evReward": { "specialDefense": 2 }, "types": ["normal", "psychic"], "height": 1.5, @@ -47818,7 +53413,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "oricorio": { "species": "oricorio", @@ -47836,7 +53431,14 @@ "default": { "abilities": ["dancer"], "hiddenAbilities": [], - "baseStats": { "attack": 70, "defense": 70, "hp": 75, "specialAttack": 98, "specialDefense": 70, "speed": 93 }, + "baseStats": { + "attack": 70, + "defense": 70, + "hp": 75, + "specialAttack": 98, + "specialDefense": 70, + "speed": 93 + }, "evReward": { "specialAttack": 2 }, "types": ["fire", "flying"], "height": 0.6, @@ -47899,7 +53501,14 @@ "pau": { "abilities": ["dancer"], "hiddenAbilities": [], - "baseStats": { "attack": 70, "defense": 70, "hp": 75, "specialAttack": 98, "specialDefense": 70, "speed": 93 }, + "baseStats": { + "attack": 70, + "defense": 70, + "hp": 75, + "specialAttack": 98, + "specialDefense": 70, + "speed": 93 + }, "evReward": { "specialAttack": 2 }, "types": ["psychic", "flying"], "height": 0.6, @@ -47962,7 +53571,14 @@ "pom-pom": { "abilities": ["dancer"], "hiddenAbilities": [], - "baseStats": { "attack": 70, "defense": 70, "hp": 75, "specialAttack": 98, "specialDefense": 70, "speed": 93 }, + "baseStats": { + "attack": 70, + "defense": 70, + "hp": 75, + "specialAttack": 98, + "specialDefense": 70, + "speed": 93 + }, "evReward": { "specialAttack": 2 }, "types": ["electric", "flying"], "height": 0.6, @@ -48025,7 +53641,14 @@ "sensu": { "abilities": ["dancer"], "hiddenAbilities": [], - "baseStats": { "attack": 70, "defense": 70, "hp": 75, "specialAttack": 98, "specialDefense": 70, "speed": 93 }, + "baseStats": { + "attack": 70, + "defense": 70, + "hp": 75, + "specialAttack": 98, + "specialDefense": 70, + "speed": 93 + }, "evReward": { "specialAttack": 2 }, "types": ["ghost", "flying"], "height": 0.6, @@ -48086,7 +53709,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "oshawott": { "species": "oshawott", @@ -48097,14 +53720,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["torrent"], "hiddenAbilities": ["shell_armor"], - "baseStats": { "attack": 55, "defense": 45, "hp": 55, "specialAttack": 63, "specialDefense": 45, "speed": 45 }, + "baseStats": { + "attack": 55, + "defense": 45, + "hp": 55, + "specialAttack": 63, + "specialDefense": 45, + "speed": 45 + }, "evReward": { "specialAttack": 1 }, "types": ["water"], "height": 0.5, @@ -48128,7 +53758,16 @@ { "name": "swords_dance", "level": 41 }, { "name": "hydro_pump", "level": 43 } ], - "eggMoves": ["screech", "detect", "brine", "assurance", "trump_card", "copycat", "night_slash", "air_slash"], + "eggMoves": [ + "screech", + "detect", + "brine", + "assurance", + "trump_card", + "copycat", + "night_slash", + "air_slash" + ], "tutorMoves": ["water_pledge"], "machine": [ "swords_dance", @@ -48176,14 +53815,21 @@ "catchRate": 200, "color": "white", "genderDifference": true, - "eggGroups": ["ground", "fairy"], + "eggGroups": ["field", "fairy"], "eggCycles": 10, "tags": [], "formes": { "default": { "abilities": ["run_away", "pickup"], "hiddenAbilities": ["volt_absorb"], - "baseStats": { "attack": 45, "defense": 70, "hp": 60, "specialAttack": 45, "specialDefense": 90, "speed": 95 }, + "baseStats": { + "attack": 45, + "defense": 70, + "hp": 60, + "specialAttack": 45, + "specialDefense": 90, + "speed": 95 + }, "evReward": { "speed": 1 }, "types": ["electric"], "height": 0.4, @@ -48207,7 +53853,21 @@ { "name": "last_resort", "level": 45 }, { "name": "hyper_fang", "level": 49 } ], - "eggMoves": ["tail_whip", "bite", "defense_curl", "flail", "rollout", "iron_tail", "flatter", "follow_me", "charge", "fake_tears", "covet", "bestow", "ion_deluge"], + "eggMoves": [ + "tail_whip", + "bite", + "defense_curl", + "flail", + "rollout", + "iron_tail", + "flatter", + "follow_me", + "charge", + "fake_tears", + "covet", + "bestow", + "ion_deluge" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -48258,7 +53918,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 120, "defense": 100, "hp": 90, "specialAttack": 150, "specialDefense": 120, "speed": 100 }, + "baseStats": { + "attack": 120, + "defense": 100, + "hp": 90, + "specialAttack": 150, + "specialDefense": 120, + "speed": 100 + }, "evReward": { "specialAttack": 3 }, "types": ["water", "dragon"], "height": 4.2, @@ -48344,14 +54011,21 @@ "catchRate": 60, "color": "brown", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["water_compaction"], "hiddenAbilities": ["sand_veil"], - "baseStats": { "attack": 75, "defense": 110, "hp": 85, "specialAttack": 100, "specialDefense": 75, "speed": 35 }, + "baseStats": { + "attack": 75, + "defense": 110, + "hp": 85, + "specialAttack": 100, + "specialDefense": 75, + "speed": 35 + }, "evReward": { "defense": 2 }, "types": ["ghost", "ground"], "height": 1.3, @@ -48414,7 +54088,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "palpitoad": { "species": "palpitoad", @@ -48432,7 +54106,14 @@ "default": { "abilities": ["swift_swim", "hydration"], "hiddenAbilities": ["water_absorb"], - "baseStats": { "attack": 65, "defense": 55, "hp": 75, "specialAttack": 65, "specialDefense": 55, "speed": 69 }, + "baseStats": { + "attack": 65, + "defense": 55, + "hp": 75, + "specialAttack": 65, + "specialDefense": 55, + "speed": 69 + }, "evReward": { "hp": 2 }, "types": ["water", "ground"], "height": 0.8, @@ -48499,14 +54180,21 @@ "catchRate": 220, "color": "white", "genderDifference": false, - "eggGroups": ["ground", "humanshape"], + "eggGroups": ["field", "humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["iron_fist", "mold_breaker"], "hiddenAbilities": ["scrappy"], - "baseStats": { "attack": 82, "defense": 62, "hp": 67, "specialAttack": 46, "specialDefense": 48, "speed": 43 }, + "baseStats": { + "attack": 82, + "defense": 62, + "hp": 67, + "specialAttack": 46, + "specialDefense": 48, + "speed": 43 + }, "evReward": { "attack": 1 }, "types": ["fighting"], "height": 0.6, @@ -48529,7 +54217,14 @@ { "name": "parting_shot", "level": 45 }, { "name": "sky_uppercut", "level": 48 } ], - "eggMoves": ["me_first", "storm_throw", "foul_play", "quick_guard", "quash", "power_trip"], + "eggMoves": [ + "me_first", + "storm_throw", + "foul_play", + "quick_guard", + "quash", + "power_trip" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -48574,7 +54269,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "pangoro": { "species": "pangoro", @@ -48585,14 +54280,21 @@ "catchRate": 65, "color": "white", "genderDifference": false, - "eggGroups": ["ground", "humanshape"], + "eggGroups": ["field", "humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["iron_fist", "mold_breaker"], "hiddenAbilities": ["scrappy"], - "baseStats": { "attack": 124, "defense": 78, "hp": 95, "specialAttack": 69, "specialDefense": 71, "speed": 58 }, + "baseStats": { + "attack": 124, + "defense": 78, + "hp": 95, + "specialAttack": 69, + "specialDefense": 71, + "speed": 58 + }, "evReward": { "attack": 2 }, "types": ["fighting", "dark"], "height": 2.1, @@ -48683,7 +54385,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "panpour": { "species": "panpour", @@ -48694,14 +54396,21 @@ "catchRate": 190, "color": "blue", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["gluttony"], "hiddenAbilities": ["torrent"], - "baseStats": { "attack": 53, "defense": 48, "hp": 50, "specialAttack": 53, "specialDefense": 48, "speed": 64 }, + "baseStats": { + "attack": 53, + "defense": 48, + "hp": 50, + "specialAttack": 53, + "specialDefense": 48, + "speed": 64 + }, "evReward": { "speed": 1 }, "types": ["water"], "height": 0.6, @@ -48726,7 +54435,19 @@ { "name": "natural_gift", "level": 40 }, { "name": "crunch", "level": 43 } ], - "eggMoves": ["hydro_pump", "low_kick", "role_play", "mud_sport", "astonish", "tickle", "covet", "aqua_ring", "aqua_tail", "nasty_plot", "disarming_voice"], + "eggMoves": [ + "hydro_pump", + "low_kick", + "role_play", + "mud_sport", + "astonish", + "tickle", + "covet", + "aqua_ring", + "aqua_tail", + "nasty_plot", + "disarming_voice" + ], "tutorMoves": ["water_pledge"], "machine": [ "surf", @@ -48766,7 +54487,9 @@ } } }, - "evolutions": [{ "species": "simipour", "method": "item", "data": "waterstone" }] + "evolutions": [ + { "species": "simipour", "method": "item", "data": "waterstone" } + ] }, "pansage": { "species": "pansage", @@ -48777,14 +54500,21 @@ "catchRate": 190, "color": "green", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["gluttony"], "hiddenAbilities": ["overgrow"], - "baseStats": { "attack": 53, "defense": 48, "hp": 50, "specialAttack": 53, "specialDefense": 48, "speed": 64 }, + "baseStats": { + "attack": 53, + "defense": 48, + "hp": 50, + "specialAttack": 53, + "specialDefense": 48, + "speed": 64 + }, "evReward": { "speed": 1 }, "types": ["grass"], "height": 0.6, @@ -48809,7 +54539,19 @@ { "name": "natural_gift", "level": 40 }, { "name": "crunch", "level": 43 } ], - "eggMoves": ["low_kick", "role_play", "astonish", "grass_whistle", "tickle", "bullet_seed", "covet", "magical_leaf", "nasty_plot", "leaf_storm", "disarming_voice"], + "eggMoves": [ + "low_kick", + "role_play", + "astonish", + "grass_whistle", + "tickle", + "bullet_seed", + "covet", + "magical_leaf", + "nasty_plot", + "leaf_storm", + "disarming_voice" + ], "tutorMoves": ["grass_pledge"], "machine": [ "solar_beam", @@ -48846,7 +54588,9 @@ } } }, - "evolutions": [{ "species": "simisage", "method": "item", "data": "leafstone" }] + "evolutions": [ + { "species": "simisage", "method": "item", "data": "leafstone" } + ] }, "pansear": { "species": "pansear", @@ -48857,14 +54601,21 @@ "catchRate": 190, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["gluttony"], "hiddenAbilities": ["blaze"], - "baseStats": { "attack": 53, "defense": 48, "hp": 50, "specialAttack": 53, "specialDefense": 48, "speed": 64 }, + "baseStats": { + "attack": 53, + "defense": 48, + "hp": 50, + "specialAttack": 53, + "specialDefense": 48, + "speed": 64 + }, "evReward": { "speed": 1 }, "types": ["fire"], "height": 0.6, @@ -48889,7 +54640,19 @@ { "name": "natural_gift", "level": 40 }, { "name": "crunch", "level": 43 } ], - "eggMoves": ["fire_punch", "low_kick", "fire_spin", "sleep_talk", "heat_wave", "role_play", "astonish", "tickle", "covet", "nasty_plot", "disarming_voice"], + "eggMoves": [ + "fire_punch", + "low_kick", + "fire_spin", + "sleep_talk", + "heat_wave", + "role_play", + "astonish", + "tickle", + "covet", + "nasty_plot", + "disarming_voice" + ], "tutorMoves": ["fire_pledge"], "machine": [ "flamethrower", @@ -48929,7 +54692,9 @@ } } }, - "evolutions": [{ "species": "simisear", "method": "item", "data": "firestone" }] + "evolutions": [ + { "species": "simisear", "method": "item", "data": "firestone" } + ] }, "paras": { "species": "paras", @@ -48940,14 +54705,21 @@ "catchRate": 190, "color": "red", "genderDifference": false, - "eggGroups": ["bug", "plant"], + "eggGroups": ["bug", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["effect_spore", "dry_skin"], "hiddenAbilities": ["damp"], - "baseStats": { "attack": 70, "defense": 55, "hp": 35, "specialAttack": 45, "specialDefense": 55, "speed": 25 }, + "baseStats": { + "attack": 70, + "defense": 55, + "hp": 35, + "specialAttack": 45, + "specialDefense": 55, + "speed": 25 + }, "evReward": { "attack": 1 }, "types": ["bug", "grass"], "height": 0.3, @@ -49033,14 +54805,21 @@ "catchRate": 75, "color": "red", "genderDifference": false, - "eggGroups": ["bug", "plant"], + "eggGroups": ["bug", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["effect_spore", "dry_skin"], "hiddenAbilities": ["damp"], - "baseStats": { "attack": 95, "defense": 80, "hp": 60, "specialAttack": 60, "specialDefense": 80, "speed": 30 }, + "baseStats": { + "attack": 95, + "defense": 80, + "hp": 60, + "specialAttack": 60, + "specialDefense": 80, + "speed": 30 + }, "evReward": { "attack": 2, "defense": 1 }, "types": ["bug", "grass"], "height": 1, @@ -49115,14 +54894,21 @@ "catchRate": 45, "color": "white", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["receiver"], "hiddenAbilities": ["defiant"], - "baseStats": { "attack": 120, "defense": 90, "hp": 100, "specialAttack": 40, "specialDefense": 60, "speed": 80 }, + "baseStats": { + "attack": 120, + "defense": 90, + "hp": 100, + "specialAttack": 40, + "specialDefense": 60, + "speed": 80 + }, "evReward": { "attack": 2 }, "types": ["fighting"], "height": 2, @@ -49146,7 +54932,14 @@ { "name": "reversal", "level": 46 }, { "name": "giga_impact", "level": 50 } ], - "eggMoves": ["seismic_toss", "quick_attack", "vital_throw", "feint", "iron_head", "quick_guard"], + "eggMoves": [ + "seismic_toss", + "quick_attack", + "vital_throw", + "feint", + "iron_head", + "quick_guard" + ], "tutorMoves": [], "machine": [ "hyper_beam", @@ -49194,7 +54987,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "patrat": { "species": "patrat", @@ -49205,14 +54998,21 @@ "catchRate": 255, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["run_away", "keen_eye"], "hiddenAbilities": ["analytic"], - "baseStats": { "attack": 55, "defense": 39, "hp": 45, "specialAttack": 35, "specialDefense": 39, "speed": 42 }, + "baseStats": { + "attack": 55, + "defense": 39, + "hp": 45, + "specialAttack": 35, + "specialDefense": 39, + "speed": 42 + }, "evReward": { "attack": 1 }, "types": ["normal"], "height": 0.5, @@ -49238,7 +55038,15 @@ { "name": "baton_pass", "level": 38 }, { "name": "slam", "level": 41 } ], - "eggMoves": ["screech", "flail", "foresight", "pursuit", "iron_tail", "revenge", "assurance"], + "eggMoves": [ + "screech", + "flail", + "foresight", + "pursuit", + "iron_tail", + "revenge", + "assurance" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -49279,14 +55087,21 @@ "catchRate": 120, "color": "red", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["defiant", "inner_focus"], "hiddenAbilities": ["pressure"], - "baseStats": { "attack": 85, "defense": 70, "hp": 45, "specialAttack": 40, "specialDefense": 40, "speed": 60 }, + "baseStats": { + "attack": 85, + "defense": 70, + "hp": 45, + "specialAttack": 40, + "specialDefense": 40, + "speed": 60 + }, "evReward": { "attack": 1 }, "types": ["dark", "steel"], "height": 0.5, @@ -49311,7 +55126,16 @@ { "name": "swords_dance", "level": 57 }, { "name": "guillotine", "level": 62 } ], - "eggMoves": ["headbutt", "mean_look", "pursuit", "revenge", "sucker_punch", "psycho_cut", "stealth_rock", "quick_guard"], + "eggMoves": [ + "headbutt", + "mean_look", + "pursuit", + "revenge", + "sucker_punch", + "psycho_cut", + "stealth_rock", + "quick_guard" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -49373,7 +55197,14 @@ "default": { "abilities": ["keen_eye", "drizzle"], "hiddenAbilities": ["rain_dish"], - "baseStats": { "attack": 50, "defense": 100, "hp": 60, "specialAttack": 95, "specialDefense": 70, "speed": 65 }, + "baseStats": { + "attack": 50, + "defense": 100, + "hp": 60, + "specialAttack": 95, + "specialDefense": 70, + "speed": 65 + }, "evReward": { "defense": 2 }, "types": ["water", "flying"], "height": 1.2, @@ -49457,14 +55288,21 @@ "catchRate": 90, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "alola": { "abilities": ["fur_coat", "technician"], "hiddenAbilities": ["rattled"], - "baseStats": { "attack": 60, "defense": 60, "hp": 65, "specialAttack": 75, "specialDefense": 65, "speed": 115 }, + "baseStats": { + "attack": 60, + "defense": 60, + "hp": 65, + "specialAttack": 75, + "specialDefense": 65, + "speed": 115 + }, "evReward": { "speed": 2 }, "types": ["dark"], "height": 1.1, @@ -49543,7 +55381,14 @@ "default": { "abilities": ["limber", "technician"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 70, "defense": 60, "hp": 65, "specialAttack": 65, "specialDefense": 65, "speed": 115 }, + "baseStats": { + "attack": 70, + "defense": 60, + "hp": 65, + "specialAttack": 65, + "specialDefense": 65, + "speed": 115 + }, "evReward": { "speed": 2 }, "types": ["normal"], "height": 1, @@ -49627,14 +55472,21 @@ "catchRate": 190, "color": "green", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "own_tempo"], "hiddenAbilities": ["leaf_guard"], - "baseStats": { "attack": 35, "defense": 50, "hp": 45, "specialAttack": 70, "specialDefense": 50, "speed": 30 }, + "baseStats": { + "attack": 35, + "defense": 50, + "hp": 45, + "specialAttack": 70, + "specialDefense": 50, + "speed": 30 + }, "evReward": { "specialAttack": 1 }, "types": ["grass"], "height": 0.5, @@ -49659,7 +55511,17 @@ { "name": "after_you", "level": 44 }, { "name": "leaf_storm", "level": 46 } ], - "eggMoves": ["bide", "endure", "charm", "sweet_scent", "ingrain", "grass_whistle", "healing_wish", "natural_gift", "worry_seed"], + "eggMoves": [ + "bide", + "endure", + "charm", + "sweet_scent", + "ingrain", + "grass_whistle", + "healing_wish", + "natural_gift", + "worry_seed" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -49688,7 +55550,9 @@ } } }, - "evolutions": [{ "species": "lilligant", "method": "item", "data": "sunstone" }] + "evolutions": [ + { "species": "lilligant", "method": "item", "data": "sunstone" } + ] }, "phanpy": { "species": "phanpy", @@ -49699,14 +55563,21 @@ "catchRate": 120, "color": "blue", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["pickup"], "hiddenAbilities": ["sand_veil"], - "baseStats": { "attack": 60, "defense": 60, "hp": 90, "specialAttack": 40, "specialDefense": 40, "speed": 40 }, + "baseStats": { + "attack": 60, + "defense": 60, + "hp": 90, + "specialAttack": 40, + "specialDefense": 40, + "speed": 40 + }, "evReward": { "hp": 1 }, "types": ["ground"], "height": 0.5, @@ -49728,7 +55599,20 @@ { "name": "last_resort", "level": 37 }, { "name": "double_edge", "level": 42 } ], - "eggMoves": ["body_slam", "counter", "fissure", "focus_energy", "snore", "mud_slap", "ancient_power", "endeavor", "ice_shard", "head_smash", "heavy_slam", "play_rough"], + "eggMoves": [ + "body_slam", + "counter", + "fissure", + "focus_energy", + "snore", + "mud_slap", + "ancient_power", + "endeavor", + "ice_shard", + "head_smash", + "heavy_slam", + "play_rough" + ], "tutorMoves": [], "machine": [ "roar", @@ -49769,14 +55653,21 @@ "catchRate": 120, "color": "brown", "genderDifference": false, - "eggGroups": ["plant", "indeterminate"], + "eggGroups": ["grass", "amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["natural_cure", "frisk"], "hiddenAbilities": ["harvest"], - "baseStats": { "attack": 70, "defense": 48, "hp": 43, "specialAttack": 50, "specialDefense": 60, "speed": 38 }, + "baseStats": { + "attack": 70, + "defense": 48, + "hp": 43, + "specialAttack": 50, + "specialDefense": 60, + "speed": 38 + }, "evReward": { "attack": 1 }, "types": ["ghost", "grass"], "height": 0.4, @@ -49839,7 +55730,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "pheromosa": { "species": "pheromosa", @@ -49857,7 +55748,14 @@ "default": { "abilities": ["beast_boost"], "hiddenAbilities": [], - "baseStats": { "attack": 137, "defense": 37, "hp": 71, "specialAttack": 137, "specialDefense": 37, "speed": 151 }, + "baseStats": { + "attack": 137, + "defense": 37, + "hp": 71, + "specialAttack": 137, + "specialDefense": 37, + "speed": 151 + }, "evReward": { "speed": 3 }, "types": ["bug", "fighting"], "height": 1.8, @@ -49921,7 +55819,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "phione": { "species": "phione", @@ -49939,7 +55837,14 @@ "default": { "abilities": ["hydration"], "hiddenAbilities": [], - "baseStats": { "attack": 80, "defense": 80, "hp": 80, "specialAttack": 80, "specialDefense": 80, "speed": 80 }, + "baseStats": { + "attack": 80, + "defense": 80, + "hp": 80, + "specialAttack": 80, + "specialDefense": 80, + "speed": 80 + }, "evReward": { "hp": 1 }, "types": ["water"], "height": 0.4, @@ -50011,7 +55916,14 @@ "default": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 40, "defense": 15, "hp": 20, "specialAttack": 35, "specialDefense": 35, "speed": 60 }, + "baseStats": { + "attack": 40, + "defense": 15, + "hp": 20, + "specialAttack": 35, + "specialDefense": 35, + "speed": 60 + }, "evReward": { "speed": 1 }, "types": ["electric"], "height": 0.3, @@ -50094,7 +56006,14 @@ "default": { "abilities": ["keen_eye", "tangled_feet"], "hiddenAbilities": ["big_pecks"], - "baseStats": { "attack": 80, "defense": 75, "hp": 83, "specialAttack": 70, "specialDefense": 70, "speed": 101 }, + "baseStats": { + "attack": 80, + "defense": 75, + "hp": 83, + "specialAttack": 70, + "specialDefense": 70, + "speed": 101 + }, "evReward": { "speed": 3 }, "types": ["normal", "flying"], "height": 1.5, @@ -50157,7 +56076,14 @@ "isMega": true, "abilities": ["no_guard"], "hiddenAbilities": [], - "baseStats": { "attack": 80, "defense": 80, "hp": 83, "specialAttack": 135, "specialDefense": 80, "speed": 121 }, + "baseStats": { + "attack": 80, + "defense": 80, + "hp": 83, + "specialAttack": 135, + "specialDefense": 80, + "speed": 121 + }, "evReward": { "speed": 3 }, "types": ["normal", "flying"], "height": 2.2, @@ -50235,7 +56161,14 @@ "default": { "abilities": ["keen_eye", "tangled_feet"], "hiddenAbilities": ["big_pecks"], - "baseStats": { "attack": 60, "defense": 55, "hp": 63, "specialAttack": 50, "specialDefense": 50, "speed": 71 }, + "baseStats": { + "attack": 60, + "defense": 55, + "hp": 63, + "specialAttack": 50, + "specialDefense": 50, + "speed": 71 + }, "evReward": { "speed": 2 }, "types": ["normal", "flying"], "height": 1.1, @@ -50309,7 +56242,14 @@ "default": { "abilities": ["keen_eye", "tangled_feet"], "hiddenAbilities": ["big_pecks"], - "baseStats": { "attack": 45, "defense": 40, "hp": 40, "specialAttack": 35, "specialDefense": 35, "speed": 56 }, + "baseStats": { + "attack": 45, + "defense": 40, + "hp": 40, + "specialAttack": 35, + "specialDefense": 35, + "speed": 56 + }, "evReward": { "speed": 1 }, "types": ["normal", "flying"], "height": 0.3, @@ -50332,7 +56272,17 @@ { "name": "air_slash", "level": 49 }, { "name": "hurricane", "level": 53 } ], - "eggMoves": ["feint_attack", "foresight", "steel_wing", "pursuit", "uproar", "air_cutter", "air_slash", "brave_bird", "defog"], + "eggMoves": [ + "feint_attack", + "foresight", + "steel_wing", + "pursuit", + "uproar", + "air_cutter", + "air_slash", + "brave_bird", + "defog" + ], "tutorMoves": [], "machine": [ "fly", @@ -50381,7 +56331,14 @@ "default": { "abilities": ["big_pecks", "super_luck"], "hiddenAbilities": ["rivalry"], - "baseStats": { "attack": 55, "defense": 50, "hp": 50, "specialAttack": 36, "specialDefense": 30, "speed": 43 }, + "baseStats": { + "attack": 55, + "defense": 50, + "hp": 50, + "specialAttack": 36, + "specialDefense": 30, + "speed": 43 + }, "evReward": { "attack": 1 }, "types": ["normal", "flying"], "height": 0.3, @@ -50405,7 +56362,16 @@ { "name": "tailwind", "level": 46 }, { "name": "sky_attack", "level": 50 } ], - "eggMoves": ["hypnosis", "steel_wing", "morning_sun", "uproar", "wish", "lucky_chant", "night_slash", "bestow"], + "eggMoves": [ + "hypnosis", + "steel_wing", + "morning_sun", + "uproar", + "wish", + "lucky_chant", + "night_slash", + "bestow" + ], "tutorMoves": [], "machine": [ "fly", @@ -50448,14 +56414,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["thick_fat"], - "baseStats": { "attack": 93, "defense": 55, "hp": 90, "specialAttack": 70, "specialDefense": 55, "speed": 55 }, + "baseStats": { + "attack": 93, + "defense": 55, + "hp": 90, + "specialAttack": 70, + "specialDefense": 55, + "speed": 55 + }, "evReward": { "attack": 2 }, "types": ["fire", "fighting"], "height": 1, @@ -50540,14 +56513,21 @@ "catchRate": 190, "color": "yellow", "genderDifference": true, - "eggGroups": ["ground", "fairy"], + "eggGroups": ["field", "fairy"], "eggCycles": 10, "tags": [], "formes": { "alola-cap": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 55, "defense": 40, "hp": 35, "specialAttack": 50, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 55, + "defense": 40, + "hp": 35, + "specialAttack": 50, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 0.4, @@ -50610,29 +56590,62 @@ "belle": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 55, "defense": 40, "hp": 35, "specialAttack": 50, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 55, + "defense": 40, + "hp": 35, + "specialAttack": 50, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 0.4, "weight": 6, "baseExp": 112, - "moves": { "levelMoves": [], "eggMoves": [], "tutorMoves": [], "machine": [], "formeChange": [] } + "moves": { + "levelMoves": [], + "eggMoves": [], + "tutorMoves": [], + "machine": [], + "formeChange": [] + } }, "cosplay": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 55, "defense": 40, "hp": 35, "specialAttack": 50, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 55, + "defense": 40, + "hp": 35, + "specialAttack": 50, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 0.4, "weight": 6, "baseExp": 112, - "moves": { "levelMoves": [], "eggMoves": [], "tutorMoves": [], "machine": [], "formeChange": [] } + "moves": { + "levelMoves": [], + "eggMoves": [], + "tutorMoves": [], + "machine": [], + "formeChange": [] + } }, "default": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 55, "defense": 40, "hp": 35, "specialAttack": 50, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 55, + "defense": 40, + "hp": 35, + "specialAttack": 50, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 0.4, @@ -50695,7 +56708,14 @@ "hoenn-cap": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 55, "defense": 40, "hp": 35, "specialAttack": 50, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 55, + "defense": 40, + "hp": 35, + "specialAttack": 50, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 0.4, @@ -50758,7 +56778,14 @@ "kalos-cap": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 55, "defense": 40, "hp": 35, "specialAttack": 50, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 55, + "defense": 40, + "hp": 35, + "specialAttack": 50, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 0.4, @@ -50821,18 +56848,38 @@ "libre": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 55, "defense": 40, "hp": 35, "specialAttack": 50, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 55, + "defense": 40, + "hp": 35, + "specialAttack": 50, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 0.4, "weight": 6, "baseExp": 112, - "moves": { "levelMoves": [], "eggMoves": [], "tutorMoves": [], "machine": [], "formeChange": [] } + "moves": { + "levelMoves": [], + "eggMoves": [], + "tutorMoves": [], + "machine": [], + "formeChange": [] + } }, "original-cap": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 55, "defense": 40, "hp": 35, "specialAttack": 50, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 55, + "defense": 40, + "hp": 35, + "specialAttack": 50, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 0.4, @@ -50895,40 +56942,86 @@ "phd": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 55, "defense": 40, "hp": 35, "specialAttack": 50, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 55, + "defense": 40, + "hp": 35, + "specialAttack": 50, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 0.4, "weight": 6, "baseExp": 112, - "moves": { "levelMoves": [], "eggMoves": [], "tutorMoves": [], "machine": [], "formeChange": [] } + "moves": { + "levelMoves": [], + "eggMoves": [], + "tutorMoves": [], + "machine": [], + "formeChange": [] + } }, "pop-star": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 55, "defense": 40, "hp": 35, "specialAttack": 50, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 55, + "defense": 40, + "hp": 35, + "specialAttack": 50, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 0.4, "weight": 6, "baseExp": 112, - "moves": { "levelMoves": [], "eggMoves": [], "tutorMoves": [], "machine": [], "formeChange": [] } + "moves": { + "levelMoves": [], + "eggMoves": [], + "tutorMoves": [], + "machine": [], + "formeChange": [] + } }, "rock-star": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 55, "defense": 40, "hp": 35, "specialAttack": 50, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 55, + "defense": 40, + "hp": 35, + "specialAttack": 50, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 0.4, "weight": 6, "baseExp": 112, - "moves": { "levelMoves": [], "eggMoves": [], "tutorMoves": [], "machine": [], "formeChange": [] } + "moves": { + "levelMoves": [], + "eggMoves": [], + "tutorMoves": [], + "machine": [], + "formeChange": [] + } }, "sinnoh-cap": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 55, "defense": 40, "hp": 35, "specialAttack": 50, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 55, + "defense": 40, + "hp": 35, + "specialAttack": 50, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 0.4, @@ -50991,7 +57084,14 @@ "unova-cap": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 55, "defense": 40, "hp": 35, "specialAttack": 50, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 55, + "defense": 40, + "hp": 35, + "specialAttack": 50, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 0.4, @@ -51052,7 +57152,9 @@ } } }, - "evolutions": [{ "species": "raichu", "method": "item", "data": "thunderstone" }] + "evolutions": [ + { "species": "raichu", "method": "item", "data": "thunderstone" } + ] }, "pikipek": { "species": "pikipek", @@ -51070,7 +57172,14 @@ "default": { "abilities": ["keen_eye", "skill_link"], "hiddenAbilities": ["pickup"], - "baseStats": { "attack": 75, "defense": 30, "hp": 35, "specialAttack": 30, "specialDefense": 30, "speed": 65 }, + "baseStats": { + "attack": 75, + "defense": 30, + "hp": 35, + "specialAttack": 30, + "specialDefense": 30, + "speed": 65 + }, "evReward": { "attack": 1 }, "types": ["normal", "flying"], "height": 0.3, @@ -51092,7 +57201,13 @@ { "name": "feather_dance", "level": 33 }, { "name": "hyper_voice", "level": 37 } ], - "eggMoves": ["mirror_move", "uproar", "tailwind", "brave_bird", "boomburst"], + "eggMoves": [ + "mirror_move", + "uproar", + "tailwind", + "brave_bird", + "boomburst" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -51126,7 +57241,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "piloswine": { "species": "piloswine", @@ -51137,14 +57252,21 @@ "catchRate": 75, "color": "brown", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["oblivious", "snow_cloak"], "hiddenAbilities": ["thick_fat"], - "baseStats": { "attack": 100, "defense": 80, "hp": 100, "specialAttack": 60, "specialDefense": 60, "speed": 50 }, + "baseStats": { + "attack": 100, + "defense": 80, + "hp": 100, + "specialAttack": 60, + "specialDefense": 60, + "speed": 50 + }, "evReward": { "attack": 1, "hp": 1 }, "types": ["ice", "ground"], "height": 1.1, @@ -51210,7 +57332,9 @@ } } }, - "evolutions": [{ "species": "mamoswine", "method": "hasmove", "data": "ancientpower" }] + "evolutions": [ + { "species": "mamoswine", "method": "hasmove", "data": "ancientpower" } + ] }, "pineco": { "species": "pineco", @@ -51228,7 +57352,14 @@ "default": { "abilities": ["sturdy"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 65, "defense": 90, "hp": 50, "specialAttack": 35, "specialDefense": 35, "speed": 15 }, + "baseStats": { + "attack": 65, + "defense": 90, + "hp": 50, + "specialAttack": 35, + "specialDefense": 35, + "speed": 15 + }, "evReward": { "defense": 1 }, "types": ["bug"], "height": 0.6, @@ -51251,7 +57382,19 @@ { "name": "gyro_ball", "level": 42 }, { "name": "double_edge", "level": 45 } ], - "eggMoves": ["double_edge", "pin_missile", "counter", "swift", "flail", "endure", "revenge", "sand_tomb", "power_trick", "toxic_spikes", "stealth_rock"], + "eggMoves": [ + "double_edge", + "pin_missile", + "counter", + "swift", + "flail", + "endure", + "revenge", + "sand_tomb", + "power_trick", + "toxic_spikes", + "stealth_rock" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -51304,7 +57447,14 @@ "default": { "abilities": ["hyper_cutter", "mold_breaker"], "hiddenAbilities": ["moxie"], - "baseStats": { "attack": 125, "defense": 100, "hp": 65, "specialAttack": 55, "specialDefense": 70, "speed": 85 }, + "baseStats": { + "attack": 125, + "defense": 100, + "hp": 65, + "specialAttack": 55, + "specialDefense": 70, + "speed": 85 + }, "evReward": { "attack": 2 }, "types": ["bug"], "height": 1.5, @@ -51329,7 +57479,17 @@ { "name": "superpower", "level": 47 }, { "name": "guillotine", "level": 50 } ], - "eggMoves": ["fury_attack", "quick_attack", "flail", "feint_attack", "superpower", "feint", "close_combat", "me_first", "bug_bite"], + "eggMoves": [ + "fury_attack", + "quick_attack", + "flail", + "feint_attack", + "superpower", + "feint", + "close_combat", + "me_first", + "bug_bite" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -51373,7 +57533,14 @@ "isMega": true, "abilities": ["aerilate"], "hiddenAbilities": [], - "baseStats": { "attack": 155, "defense": 120, "hp": 65, "specialAttack": 65, "specialDefense": 90, "speed": 105 }, + "baseStats": { + "attack": 155, + "defense": 120, + "hp": 65, + "specialAttack": 65, + "specialDefense": 90, + "speed": 105 + }, "evReward": { "attack": 2 }, "types": ["bug", "flying"], "height": 1.7, @@ -51450,14 +57617,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["torrent"], "hiddenAbilities": ["defiant"], - "baseStats": { "attack": 51, "defense": 53, "hp": 53, "specialAttack": 61, "specialDefense": 56, "speed": 40 }, + "baseStats": { + "attack": 51, + "defense": 53, + "hp": 53, + "specialAttack": 61, + "specialDefense": 56, + "speed": 40 + }, "evReward": { "specialAttack": 1 }, "types": ["water"], "height": 0.4, @@ -51479,7 +57653,21 @@ { "name": "drill_peck", "level": 39 }, { "name": "hydro_pump", "level": 43 } ], - "eggMoves": ["supersonic", "hydro_pump", "agility", "bide", "snore", "flail", "mud_slap", "icy_wind", "yawn", "feather_dance", "mud_sport", "aqua_ring", "double_hit"], + "eggMoves": [ + "supersonic", + "hydro_pump", + "agility", + "bide", + "snore", + "flail", + "mud_slap", + "icy_wind", + "yawn", + "feather_dance", + "mud_sport", + "aqua_ring", + "double_hit" + ], "tutorMoves": ["water_pledge"], "machine": [ "surf", @@ -51534,7 +57722,14 @@ "default": { "abilities": ["plus"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 50, "defense": 40, "hp": 60, "specialAttack": 85, "specialDefense": 75, "speed": 95 }, + "baseStats": { + "attack": 50, + "defense": 40, + "hp": 60, + "specialAttack": 85, + "specialDefense": 75, + "speed": 95 + }, "evReward": { "speed": 1 }, "types": ["electric"], "height": 0.4, @@ -51564,7 +57759,15 @@ { "name": "nasty_plot", "level": 46 }, { "name": "entrainment", "level": 49 } ], - "eggMoves": ["sing", "sweet_kiss", "charm", "wish", "fake_tears", "lucky_chant", "discharge"], + "eggMoves": [ + "sing", + "sweet_kiss", + "charm", + "wish", + "fake_tears", + "lucky_chant", + "discharge" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -51615,7 +57818,14 @@ "default": { "abilities": ["water_absorb", "damp"], "hiddenAbilities": ["drizzle"], - "baseStats": { "attack": 75, "defense": 75, "hp": 90, "specialAttack": 90, "specialDefense": 100, "speed": 70 }, + "baseStats": { + "attack": 75, + "defense": 75, + "hp": 90, + "specialAttack": 90, + "specialDefense": 100, + "speed": 70 + }, "evReward": { "specialDefense": 3 }, "types": ["water"], "height": 1.1, @@ -51689,7 +57899,14 @@ "default": { "abilities": ["water_absorb", "damp"], "hiddenAbilities": ["swift_swim"], - "baseStats": { "attack": 50, "defense": 40, "hp": 40, "specialAttack": 40, "specialDefense": 40, "speed": 90 }, + "baseStats": { + "attack": 50, + "defense": 40, + "hp": 40, + "specialAttack": 40, + "specialDefense": 40, + "speed": 90 + }, "evReward": { "speed": 1 }, "types": ["water"], "height": 0.6, @@ -51711,7 +57928,21 @@ { "name": "hydro_pump", "level": 38 }, { "name": "mud_bomb", "level": 41 } ], - "eggMoves": ["mist", "bubble_beam", "haze", "splash", "mind_reader", "endure", "encore", "endeavor", "refresh", "ice_ball", "mud_shot", "water_sport", "water_pulse"], + "eggMoves": [ + "mist", + "bubble_beam", + "haze", + "splash", + "mind_reader", + "endure", + "encore", + "endeavor", + "refresh", + "ice_ball", + "mud_shot", + "water_sport", + "water_pulse" + ], "tutorMoves": [], "machine": [ "surf", @@ -51760,7 +57991,14 @@ "default": { "abilities": ["water_absorb", "damp"], "hiddenAbilities": ["swift_swim"], - "baseStats": { "attack": 65, "defense": 65, "hp": 65, "specialAttack": 50, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 65, + "defense": 65, + "hp": 65, + "specialAttack": 50, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["water"], "height": 1, @@ -51819,7 +58057,10 @@ } } }, - "evolutions": [{ "species": "poliwrath", "method": "item", "data": "waterstone" }, { "species": "politoed", "method": "tradeitem", "data": "kingsrock" }] + "evolutions": [ + { "species": "poliwrath", "method": "item", "data": "waterstone" }, + { "species": "politoed", "method": "tradeitem", "data": "kingsrock" } + ] }, "poliwrath": { "species": "poliwrath", @@ -51837,7 +58078,14 @@ "default": { "abilities": ["water_absorb", "damp"], "hiddenAbilities": ["swift_swim"], - "baseStats": { "attack": 95, "defense": 95, "hp": 90, "specialAttack": 70, "specialDefense": 90, "speed": 70 }, + "baseStats": { + "attack": 95, + "defense": 95, + "hp": 90, + "specialAttack": 70, + "specialDefense": 90, + "speed": 70 + }, "evReward": { "defense": 3 }, "types": ["water", "fighting"], "height": 1.3, @@ -51911,14 +58159,21 @@ "catchRate": 190, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["run_away", "flash_fire"], "hiddenAbilities": ["flame_body"], - "baseStats": { "attack": 85, "defense": 55, "hp": 50, "specialAttack": 65, "specialDefense": 65, "speed": 90 }, + "baseStats": { + "attack": 85, + "defense": 55, + "hp": 50, + "specialAttack": 65, + "specialDefense": 65, + "speed": 90 + }, "evReward": { "speed": 1 }, "types": ["fire"], "height": 1, @@ -51941,7 +58196,19 @@ { "name": "bounce", "level": 45 }, { "name": "flare_blitz", "level": 49 } ], - "eggMoves": ["double_kick", "horn_drill", "thrash", "double_edge", "low_kick", "hypnosis", "flame_wheel", "charm", "morning_sun", "captivate", "ally_switch"], + "eggMoves": [ + "double_kick", + "horn_drill", + "thrash", + "double_edge", + "low_kick", + "hypnosis", + "flame_wheel", + "charm", + "morning_sun", + "captivate", + "ally_switch" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -51983,14 +58250,21 @@ "catchRate": 255, "color": "gray", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["run_away", "quick_feet"], "hiddenAbilities": ["rattled"], - "baseStats": { "attack": 55, "defense": 35, "hp": 35, "specialAttack": 30, "specialDefense": 30, "speed": 35 }, + "baseStats": { + "attack": 55, + "defense": 35, + "hp": 35, + "specialAttack": 30, + "specialDefense": 30, + "speed": 35 + }, "evReward": { "attack": 1 }, "types": ["dark"], "height": 0.5, @@ -52015,7 +58289,21 @@ { "name": "sucker_punch", "level": 43 }, { "name": "play_rough", "level": 46 } ], - "eggMoves": ["leer", "sleep_talk", "yawn", "snatch", "poison_fang", "astonish", "covet", "me_first", "sucker_punch", "thunder_fang", "ice_fang", "fire_fang", "play_rough"], + "eggMoves": [ + "leer", + "sleep_talk", + "yawn", + "snatch", + "poison_fang", + "astonish", + "covet", + "me_first", + "sucker_punch", + "thunder_fang", + "ice_fang", + "fire_fang", + "play_rough" + ], "tutorMoves": [], "machine": [ "roar", @@ -52059,14 +58347,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["torrent"], "hiddenAbilities": ["liquid_voice"], - "baseStats": { "attack": 54, "defense": 54, "hp": 50, "specialAttack": 66, "specialDefense": 56, "speed": 40 }, + "baseStats": { + "attack": 54, + "defense": 54, + "hp": 50, + "specialAttack": 66, + "specialDefense": 56, + "speed": 40 + }, "evReward": { "specialAttack": 1 }, "types": ["water"], "height": 0.4, @@ -52090,7 +58385,14 @@ { "name": "hydro_pump", "level": 43 }, { "name": "misty_terrain", "level": 46 } ], - "eggMoves": ["amnesia", "perish_song", "charm", "aqua_ring", "wonder_room", "aromatic_mist"], + "eggMoves": [ + "amnesia", + "perish_song", + "charm", + "aqua_ring", + "wonder_room", + "aromatic_mist" + ], "tutorMoves": ["water_pledge"], "machine": [ "surf", @@ -52122,7 +58424,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "porygon": { "species": "porygon", @@ -52140,7 +58442,14 @@ "default": { "abilities": ["trace", "download"], "hiddenAbilities": ["analytic"], - "baseStats": { "attack": 60, "defense": 70, "hp": 65, "specialAttack": 85, "specialDefense": 75, "speed": 40 }, + "baseStats": { + "attack": 60, + "defense": 70, + "hp": 65, + "specialAttack": 85, + "specialDefense": 75, + "speed": 40 + }, "evReward": { "specialAttack": 1 }, "types": ["normal"], "height": 0.8, @@ -52204,7 +58513,9 @@ } } }, - "evolutions": [{ "species": "porygon2", "method": "tradeitem", "data": "upgrade" }] + "evolutions": [ + { "species": "porygon2", "method": "tradeitem", "data": "upgrade" } + ] }, "porygon2": { "species": "porygon2", @@ -52222,7 +58533,14 @@ "default": { "abilities": ["trace", "download"], "hiddenAbilities": ["analytic"], - "baseStats": { "attack": 80, "defense": 90, "hp": 85, "specialAttack": 105, "specialDefense": 95, "speed": 60 }, + "baseStats": { + "attack": 80, + "defense": 90, + "hp": 85, + "specialAttack": 105, + "specialDefense": 95, + "speed": 60 + }, "evReward": { "specialAttack": 2 }, "types": ["normal"], "height": 0.6, @@ -52289,7 +58607,9 @@ } } }, - "evolutions": [{ "species": "porygonz", "method": "tradeitem", "data": "dubiousdisc" }] + "evolutions": [ + { "species": "porygonz", "method": "tradeitem", "data": "dubiousdisc" } + ] }, "porygon_z": { "species": "porygon_z", @@ -52307,7 +58627,14 @@ "default": { "abilities": ["adaptability", "download"], "hiddenAbilities": ["analytic"], - "baseStats": { "attack": 80, "defense": 70, "hp": 85, "specialAttack": 135, "specialDefense": 75, "speed": 90 }, + "baseStats": { + "attack": 80, + "defense": 70, + "hp": 85, + "specialAttack": 135, + "specialDefense": 75, + "speed": 90 + }, "evReward": { "specialAttack": 3 }, "types": ["normal"], "height": 0.9, @@ -52388,14 +58715,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["torrent"], "hiddenAbilities": ["liquid_voice"], - "baseStats": { "attack": 74, "defense": 74, "hp": 80, "specialAttack": 126, "specialDefense": 116, "speed": 60 }, + "baseStats": { + "attack": 74, + "defense": 74, + "hp": 80, + "specialAttack": 126, + "specialDefense": 116, + "speed": 60 + }, "evReward": { "specialAttack": 3 }, "types": ["water", "fairy"], "height": 1.8, @@ -52463,7 +58797,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "primeape": { "species": "primeape", @@ -52474,14 +58808,21 @@ "catchRate": 75, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["vital_spirit", "anger_point"], "hiddenAbilities": ["defiant"], - "baseStats": { "attack": 105, "defense": 60, "hp": 65, "specialAttack": 60, "specialDefense": 70, "speed": 95 }, + "baseStats": { + "attack": 105, + "defense": 60, + "hp": 65, + "specialAttack": 60, + "specialDefense": 70, + "speed": 95 + }, "evReward": { "attack": 2 }, "types": ["fighting"], "height": 1, @@ -52571,14 +58912,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["torrent"], "hiddenAbilities": ["defiant"], - "baseStats": { "attack": 66, "defense": 68, "hp": 64, "specialAttack": 81, "specialDefense": 76, "speed": 50 }, + "baseStats": { + "attack": 66, + "defense": 68, + "hp": 64, + "specialAttack": 81, + "specialDefense": 76, + "speed": 50 + }, "evReward": { "specialAttack": 2 }, "types": ["water"], "height": 0.8, @@ -52660,7 +59008,14 @@ "default": { "abilities": ["sturdy", "magnet_pull"], "hiddenAbilities": ["sand_force"], - "baseStats": { "attack": 55, "defense": 145, "hp": 60, "specialAttack": 75, "specialDefense": 150, "speed": 40 }, + "baseStats": { + "attack": 55, + "defense": 145, + "hp": 60, + "specialAttack": 75, + "specialDefense": 150, + "speed": 40 + }, "evReward": { "defense": 1, "specialDefense": 2 }, "types": ["rock", "steel"], "height": 1.4, @@ -52747,14 +59102,21 @@ "catchRate": 190, "color": "yellow", "genderDifference": false, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["damp", "cloud_nine"], "hiddenAbilities": ["swift_swim"], - "baseStats": { "attack": 52, "defense": 48, "hp": 50, "specialAttack": 65, "specialDefense": 50, "speed": 55 }, + "baseStats": { + "attack": 52, + "defense": 48, + "hp": 50, + "specialAttack": 65, + "specialDefense": 50, + "speed": 55 + }, "evReward": { "specialAttack": 1 }, "types": ["water"], "height": 0.8, @@ -52844,14 +59206,21 @@ "catchRate": 120, "color": "brown", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["pickup", "frisk"], "hiddenAbilities": ["insomnia"], - "baseStats": { "attack": 66, "defense": 70, "hp": 49, "specialAttack": 44, "specialDefense": 55, "speed": 51 }, + "baseStats": { + "attack": 66, + "defense": 70, + "hp": 49, + "specialAttack": 44, + "specialDefense": 55, + "speed": 51 + }, "evReward": { "defense": 1 }, "types": ["ghost", "grass"], "height": 0.4, @@ -52921,7 +59290,14 @@ "large": { "abilities": ["pickup", "frisk"], "hiddenAbilities": ["insomnia"], - "baseStats": { "attack": 66, "defense": 70, "hp": 54, "specialAttack": 44, "specialDefense": 55, "speed": 46 }, + "baseStats": { + "attack": 66, + "defense": 70, + "hp": 54, + "specialAttack": 44, + "specialDefense": 55, + "speed": 46 + }, "evReward": { "defense": 1 }, "types": ["ghost", "grass"], "height": 0.5, @@ -52991,7 +59367,14 @@ "small": { "abilities": ["pickup", "frisk"], "hiddenAbilities": ["insomnia"], - "baseStats": { "attack": 66, "defense": 70, "hp": 44, "specialAttack": 44, "specialDefense": 55, "speed": 56 }, + "baseStats": { + "attack": 66, + "defense": 70, + "hp": 44, + "specialAttack": 44, + "specialDefense": 55, + "speed": 56 + }, "evReward": { "defense": 1 }, "types": ["ghost", "grass"], "height": 0.3, @@ -53061,7 +59444,14 @@ "super": { "abilities": ["pickup", "frisk"], "hiddenAbilities": ["insomnia"], - "baseStats": { "attack": 66, "defense": 70, "hp": 59, "specialAttack": 44, "specialDefense": 55, "speed": 41 }, + "baseStats": { + "attack": 66, + "defense": 70, + "hp": 59, + "specialAttack": 44, + "specialDefense": 55, + "speed": 41 + }, "evReward": { "defense": 1 }, "types": ["ghost", "grass"], "height": 0.8, @@ -53129,7 +59519,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "pupitar": { "species": "pupitar", @@ -53147,7 +59537,14 @@ "default": { "abilities": ["shed_skin"], "hiddenAbilities": [], - "baseStats": { "attack": 84, "defense": 70, "hp": 70, "specialAttack": 65, "specialDefense": 70, "speed": 51 }, + "baseStats": { + "attack": 84, + "defense": 70, + "hp": 70, + "specialAttack": 65, + "specialDefense": 70, + "speed": 51 + }, "evReward": { "attack": 2 }, "types": ["rock", "ground"], "height": 1.2, @@ -53222,14 +59619,21 @@ "catchRate": 255, "color": "purple", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["limber", "unburden"], "hiddenAbilities": ["prankster"], - "baseStats": { "attack": 50, "defense": 37, "hp": 41, "specialAttack": 50, "specialDefense": 37, "speed": 66 }, + "baseStats": { + "attack": 50, + "defense": 37, + "hp": 41, + "specialAttack": 50, + "specialDefense": 37, + "speed": 66 + }, "evReward": { "speed": 1 }, "types": ["dark"], "height": 0.4, @@ -53255,7 +59659,17 @@ { "name": "sucker_punch", "level": 46 }, { "name": "play_rough", "level": 49 } ], - "eggMoves": ["pay_day", "feint_attack", "charm", "encore", "yawn", "fake_tears", "covet", "copycat", "foul_play"], + "eggMoves": [ + "pay_day", + "feint_attack", + "charm", + "encore", + "yawn", + "fake_tears", + "covet", + "copycat", + "foul_play" + ], "tutorMoves": [], "machine": [ "thunder_wave", @@ -53306,14 +59720,21 @@ "catchRate": 75, "color": "gray", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["thick_fat", "own_tempo"], "hiddenAbilities": ["defiant"], - "baseStats": { "attack": 82, "defense": 64, "hp": 71, "specialAttack": 64, "specialDefense": 59, "speed": 112 }, + "baseStats": { + "attack": 82, + "defense": 64, + "hp": 71, + "specialAttack": 64, + "specialDefense": 59, + "speed": 112 + }, "evReward": { "speed": 2 }, "types": ["normal"], "height": 1, @@ -53392,14 +59813,21 @@ "catchRate": 65, "color": "brown", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["rivalry", "unnerve"], "hiddenAbilities": ["moxie"], - "baseStats": { "attack": 68, "defense": 72, "hp": 86, "specialAttack": 109, "specialDefense": 66, "speed": 106 }, + "baseStats": { + "attack": 68, + "defense": 72, + "hp": 86, + "specialAttack": 109, + "specialDefense": 66, + "speed": 106 + }, "evReward": { "specialAttack": 2 }, "types": ["fire", "normal"], "height": 1.5, @@ -53468,7 +59896,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "pyukumuku": { "species": "pyukumuku", @@ -53486,7 +59914,14 @@ "default": { "abilities": ["innards_out"], "hiddenAbilities": ["unaware"], - "baseStats": { "attack": 60, "defense": 130, "hp": 55, "specialAttack": 30, "specialDefense": 130, "speed": 5 }, + "baseStats": { + "attack": 60, + "defense": 130, + "hp": 55, + "specialAttack": 30, + "specialDefense": 130, + "speed": 5 + }, "evReward": { "specialDefense": 2 }, "types": ["water"], "height": 0.3, @@ -53537,7 +59972,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "quagsire": { "species": "quagsire", @@ -53548,14 +59983,21 @@ "catchRate": 90, "color": "blue", "genderDifference": true, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["damp", "water_absorb"], "hiddenAbilities": ["unaware"], - "baseStats": { "attack": 85, "defense": 85, "hp": 95, "specialAttack": 65, "specialDefense": 65, "speed": 35 }, + "baseStats": { + "attack": 85, + "defense": 85, + "hp": 95, + "specialAttack": 65, + "specialDefense": 65, + "speed": 35 + }, "evReward": { "hp": 2 }, "types": ["water", "ground"], "height": 1.4, @@ -53634,14 +60076,21 @@ "catchRate": 45, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["flash_fire"], - "baseStats": { "attack": 64, "defense": 58, "hp": 58, "specialAttack": 80, "specialDefense": 65, "speed": 80 }, + "baseStats": { + "attack": 64, + "defense": 58, + "hp": 58, + "specialAttack": 80, + "specialDefense": 65, + "speed": 80 + }, "evReward": { "specialAttack": 1, "speed": 1 }, "types": ["fire"], "height": 0.9, @@ -53712,14 +60161,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["bulletproof"], - "baseStats": { "attack": 78, "defense": 95, "hp": 61, "specialAttack": 56, "specialDefense": 58, "speed": 57 }, + "baseStats": { + "attack": 78, + "defense": 95, + "hp": 61, + "specialAttack": 56, + "specialDefense": 58, + "speed": 57 + }, "evReward": { "defense": 2 }, "types": ["grass"], "height": 0.7, @@ -53791,7 +60247,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "qwilfish": { "species": "qwilfish", @@ -53809,7 +60265,14 @@ "default": { "abilities": ["poison_point", "swift_swim"], "hiddenAbilities": ["intimidate"], - "baseStats": { "attack": 95, "defense": 85, "hp": 65, "specialAttack": 55, "specialDefense": 55, "speed": 85 }, + "baseStats": { + "attack": 95, + "defense": 85, + "hp": 65, + "specialAttack": 55, + "specialDefense": 55, + "speed": 85 + }, "evReward": { "attack": 1 }, "types": ["water", "poison"], "height": 0.5, @@ -53841,7 +60304,18 @@ { "name": "hydro_pump", "level": 57 }, { "name": "fell_stinger", "level": 60 } ], - "eggMoves": ["supersonic", "bubble_beam", "haze", "flail", "astonish", "signal_beam", "water_pulse", "brine", "aqua_jet", "acid_spray"], + "eggMoves": [ + "supersonic", + "bubble_beam", + "haze", + "flail", + "astonish", + "signal_beam", + "water_pulse", + "brine", + "aqua_jet", + "acid_spray" + ], "tutorMoves": [], "machine": [ "surf", @@ -53891,14 +60365,21 @@ "catchRate": 75, "color": "yellow", "genderDifference": true, - "eggGroups": ["ground", "fairy"], + "eggGroups": ["field", "fairy"], "eggCycles": 10, "tags": [], "formes": { "alola": { "abilities": ["surge_surfer"], "hiddenAbilities": [], - "baseStats": { "attack": 85, "defense": 50, "hp": 60, "specialAttack": 95, "specialDefense": 85, "speed": 110 }, + "baseStats": { + "attack": 85, + "defense": 50, + "hp": 60, + "specialAttack": 95, + "specialDefense": 85, + "speed": 110 + }, "evReward": { "speed": 3 }, "types": ["electric", "psychic"], "height": 0.7, @@ -53959,14 +60440,26 @@ "default": { "abilities": ["static"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 90, "defense": 55, "hp": 60, "specialAttack": 90, "specialDefense": 80, "speed": 110 }, + "baseStats": { + "attack": 90, + "defense": 55, + "hp": 60, + "specialAttack": 90, + "specialDefense": 80, + "speed": 110 + }, "evReward": { "speed": 3 }, "types": ["electric"], "height": 0.8, "weight": 30, "baseExp": 218, "moves": { - "levelMoves": [{ "name": "tail_whip", "level": 1 }, { "name": "thunder_shock", "level": 1 }, { "name": "thunderbolt", "level": 1 }, { "name": "quick_attack", "level": 1 }], + "levelMoves": [ + { "name": "tail_whip", "level": 1 }, + { "name": "thunder_shock", "level": 1 }, + { "name": "thunderbolt", "level": 1 }, + { "name": "quick_attack", "level": 1 } + ], "eggMoves": [], "tutorMoves": [], "machine": [ @@ -54023,7 +60516,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": ["inner_focus"], - "baseStats": { "attack": 85, "defense": 75, "hp": 90, "specialAttack": 115, "specialDefense": 100, "speed": 115 }, + "baseStats": { + "attack": 85, + "defense": 75, + "hp": 90, + "specialAttack": 115, + "specialDefense": 100, + "speed": 115 + }, "evReward": { "specialAttack": 1, "speed": 2 }, "types": ["electric"], "height": 1.9, @@ -54100,14 +60600,21 @@ "catchRate": 235, "color": "white", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["synchronize", "trace"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 25, "defense": 25, "hp": 28, "specialAttack": 45, "specialDefense": 35, "speed": 40 }, + "baseStats": { + "attack": 25, + "defense": 25, + "hp": 28, + "specialAttack": 45, + "specialDefense": 35, + "speed": 40 + }, "evReward": { "specialAttack": 1 }, "types": ["psychic", "fairy"], "height": 0.4, @@ -54133,7 +60640,20 @@ { "name": "dream_eater", "level": 39 }, { "name": "stored_power", "level": 42 } ], - "eggMoves": ["disable", "confuse_ray", "destiny_bond", "mean_look", "encore", "memento", "skill_swap", "grudge", "shadow_sneak", "synchronoise", "ally_switch", "misty_terrain"], + "eggMoves": [ + "disable", + "confuse_ray", + "destiny_bond", + "mean_look", + "encore", + "memento", + "skill_swap", + "grudge", + "shadow_sneak", + "synchronoise", + "ally_switch", + "misty_terrain" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -54196,7 +60716,14 @@ "default": { "abilities": ["mold_breaker"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 165, "defense": 60, "hp": 97, "specialAttack": 65, "specialDefense": 50, "speed": 58 }, + "baseStats": { + "attack": 165, + "defense": 60, + "hp": 97, + "specialAttack": 65, + "specialDefense": 50, + "speed": 58 + }, "evReward": { "attack": 2 }, "types": ["rock"], "height": 1.6, @@ -54281,14 +60808,21 @@ "catchRate": 60, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["run_away", "flash_fire"], "hiddenAbilities": ["flame_body"], - "baseStats": { "attack": 100, "defense": 70, "hp": 65, "specialAttack": 80, "specialDefense": 80, "speed": 105 }, + "baseStats": { + "attack": 100, + "defense": 70, + "hp": 65, + "specialAttack": 80, + "specialDefense": 80, + "speed": 105 + }, "evReward": { "speed": 2 }, "types": ["fire"], "height": 1.7, @@ -54363,14 +60897,21 @@ "catchRate": 127, "color": "brown", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "alola": { "abilities": ["gluttony", "hustle"], "hiddenAbilities": ["thick_fat"], - "baseStats": { "attack": 71, "defense": 70, "hp": 75, "specialAttack": 40, "specialDefense": 80, "speed": 77 }, + "baseStats": { + "attack": 71, + "defense": 70, + "hp": 75, + "specialAttack": 40, + "specialDefense": 80, + "speed": 77 + }, "evReward": { "speed": 2 }, "types": ["dark", "normal"], "height": 0.7, @@ -54444,7 +60985,14 @@ "default": { "abilities": ["run_away", "guts"], "hiddenAbilities": ["hustle"], - "baseStats": { "attack": 81, "defense": 60, "hp": 55, "specialAttack": 50, "specialDefense": 70, "speed": 97 }, + "baseStats": { + "attack": 81, + "defense": 60, + "hp": 55, + "specialAttack": 50, + "specialDefense": 70, + "speed": 97 + }, "evReward": { "speed": 2 }, "types": ["normal"], "height": 0.7, @@ -54514,7 +61062,14 @@ "totem-alola": { "abilities": ["gluttony", "hustle"], "hiddenAbilities": ["thick_fat"], - "baseStats": { "attack": 71, "defense": 70, "hp": 75, "specialAttack": 40, "specialDefense": 80, "speed": 77 }, + "baseStats": { + "attack": 71, + "defense": 70, + "hp": 75, + "specialAttack": 40, + "specialDefense": 80, + "speed": 77 + }, "evReward": { "speed": 2 }, "types": ["dark", "normal"], "height": 1.4, @@ -54597,14 +61152,21 @@ "catchRate": 255, "color": "purple", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "alola": { "abilities": ["gluttony", "hustle"], "hiddenAbilities": ["thick_fat"], - "baseStats": { "attack": 56, "defense": 35, "hp": 30, "specialAttack": 25, "specialDefense": 35, "speed": 72 }, + "baseStats": { + "attack": 56, + "defense": 35, + "hp": 30, + "specialAttack": 25, + "specialDefense": 35, + "speed": 72 + }, "evReward": { "speed": 1 }, "types": ["dark", "normal"], "height": 0.3, @@ -54666,7 +61228,14 @@ "default": { "abilities": ["run_away", "guts"], "hiddenAbilities": ["hustle"], - "baseStats": { "attack": 56, "defense": 35, "hp": 30, "specialAttack": 25, "specialDefense": 35, "speed": 72 }, + "baseStats": { + "attack": 56, + "defense": 35, + "hp": 30, + "specialAttack": 25, + "specialDefense": 35, + "speed": 72 + }, "evReward": { "speed": 1 }, "types": ["normal"], "height": 0.3, @@ -54688,7 +61257,19 @@ { "name": "double_edge", "level": 31 }, { "name": "endeavor", "level": 34 } ], - "eggMoves": ["bite", "counter", "screech", "fury_swipes", "flame_wheel", "reversal", "uproar", "revenge", "me_first", "last_resort", "final_gambit"], + "eggMoves": [ + "bite", + "counter", + "screech", + "fury_swipes", + "flame_wheel", + "reversal", + "uproar", + "revenge", + "me_first", + "last_resort", + "final_gambit" + ], "tutorMoves": [], "machine": [ "ice_beam", @@ -54743,7 +61324,14 @@ "default": { "abilities": ["air_lock"], "hiddenAbilities": [], - "baseStats": { "attack": 150, "defense": 90, "hp": 105, "specialAttack": 150, "specialDefense": 90, "speed": 95 }, + "baseStats": { + "attack": 150, + "defense": 90, + "hp": 105, + "specialAttack": 150, + "specialDefense": 90, + "speed": 95 + }, "evReward": { "attack": 2, "specialAttack": 1 }, "types": ["dragon", "flying"], "height": 7, @@ -54827,7 +61415,14 @@ "isMega": true, "abilities": ["delta_stream"], "hiddenAbilities": [], - "baseStats": { "attack": 180, "defense": 100, "hp": 105, "specialAttack": 180, "specialDefense": 100, "speed": 115 }, + "baseStats": { + "attack": 180, + "defense": 100, + "hp": 105, + "specialAttack": 180, + "specialDefense": 100, + "speed": 115 + }, "evReward": { "attack": 2, "specialAttack": 1 }, "types": ["dragon", "flying"], "height": 10.8, @@ -54926,7 +61521,14 @@ "default": { "abilities": ["clear_body"], "hiddenAbilities": ["ice_body"], - "baseStats": { "attack": 50, "defense": 100, "hp": 80, "specialAttack": 100, "specialDefense": 200, "speed": 50 }, + "baseStats": { + "attack": 50, + "defense": 100, + "hp": 80, + "specialAttack": 100, + "specialDefense": 200, + "speed": 50 + }, "evReward": { "specialDefense": 3 }, "types": ["ice"], "height": 1.8, @@ -55015,7 +61617,14 @@ "default": { "abilities": ["slow_start"], "hiddenAbilities": [], - "baseStats": { "attack": 160, "defense": 110, "hp": 110, "specialAttack": 80, "specialDefense": 110, "speed": 100 }, + "baseStats": { + "attack": 160, + "defense": 110, + "hp": 110, + "specialAttack": 80, + "specialDefense": 110, + "speed": 100 + }, "evReward": { "attack": 3 }, "types": ["normal"], "height": 3.7, @@ -55099,7 +61708,14 @@ "default": { "abilities": ["clear_body"], "hiddenAbilities": ["sturdy"], - "baseStats": { "attack": 100, "defense": 200, "hp": 80, "specialAttack": 50, "specialDefense": 100, "speed": 50 }, + "baseStats": { + "attack": 100, + "defense": 200, + "hp": 80, + "specialAttack": 50, + "specialDefense": 100, + "speed": 50 + }, "evReward": { "defense": 3 }, "types": ["rock"], "height": 1.7, @@ -55185,7 +61801,14 @@ "default": { "abilities": ["clear_body"], "hiddenAbilities": ["light_metal"], - "baseStats": { "attack": 75, "defense": 150, "hp": 80, "specialAttack": 75, "specialDefense": 150, "speed": 50 }, + "baseStats": { + "attack": 75, + "defense": 150, + "hp": 80, + "specialAttack": 75, + "specialDefense": 150, + "speed": 50 + }, "evReward": { "defense": 2, "specialDefense": 1 }, "types": ["steel"], "height": 1.9, @@ -55275,7 +61898,14 @@ "default": { "abilities": ["swift_swim", "rock_head"], "hiddenAbilities": ["sturdy"], - "baseStats": { "attack": 90, "defense": 130, "hp": 100, "specialAttack": 45, "specialDefense": 65, "speed": 55 }, + "baseStats": { + "attack": 90, + "defense": 130, + "hp": 100, + "specialAttack": 45, + "specialDefense": 65, + "speed": 55 + }, "evReward": { "defense": 1, "hp": 1 }, "types": ["water", "rock"], "height": 1, @@ -55301,7 +61931,20 @@ { "name": "double_edge", "level": 50 }, { "name": "head_smash", "level": 56 } ], - "eggMoves": ["skull_bash", "amnesia", "snore", "mud_slap", "sleep_talk", "magnitude", "muddy_water", "mud_shot", "water_sport", "brine", "aqua_tail", "zen_headbutt"], + "eggMoves": [ + "skull_bash", + "amnesia", + "snore", + "mud_slap", + "sleep_talk", + "magnitude", + "muddy_water", + "mud_shot", + "water_sport", + "brine", + "aqua_tail", + "zen_headbutt" + ], "tutorMoves": [], "machine": [ "surf", @@ -55361,7 +62004,14 @@ "default": { "abilities": ["hustle", "sniper"], "hiddenAbilities": ["moody"], - "baseStats": { "attack": 65, "defense": 35, "hp": 35, "specialAttack": 65, "specialDefense": 35, "speed": 65 }, + "baseStats": { + "attack": 65, + "defense": 35, + "hp": 35, + "specialAttack": 65, + "specialDefense": 35, + "speed": 65 + }, "evReward": { "specialAttack": 1 }, "types": ["water"], "height": 0.6, @@ -55383,7 +62033,22 @@ { "name": "hyper_beam", "level": 46 }, { "name": "soak", "level": 50 } ], - "eggMoves": ["supersonic", "aurora_beam", "screech", "haze", "swift", "snore", "flail", "octazooka", "water_spout", "mud_shot", "rock_blast", "water_pulse", "acid_spray", "entrainment"], + "eggMoves": [ + "supersonic", + "aurora_beam", + "screech", + "haze", + "swift", + "snore", + "flail", + "octazooka", + "water_spout", + "mud_shot", + "rock_blast", + "water_pulse", + "acid_spray", + "entrainment" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -55438,7 +62103,14 @@ "default": { "abilities": ["turboblaze"], "hiddenAbilities": [], - "baseStats": { "attack": 120, "defense": 100, "hp": 100, "specialAttack": 150, "specialDefense": 120, "speed": 90 }, + "baseStats": { + "attack": 120, + "defense": 100, + "hp": 100, + "specialAttack": 150, + "specialDefense": 120, + "speed": 90 + }, "evReward": { "specialAttack": 3 }, "types": ["dragon", "fire"], "height": 3.2, @@ -55523,14 +62195,21 @@ "catchRate": 50, "color": "green", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overcoat", "magic_guard"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 65, "defense": 75, "hp": 110, "specialAttack": 125, "specialDefense": 85, "speed": 30 }, + "baseStats": { + "attack": 65, + "defense": 75, + "hp": 110, + "specialAttack": 125, + "specialDefense": 85, + "speed": 30 + }, "evReward": { "specialAttack": 3 }, "types": ["psychic"], "height": 1, @@ -55619,14 +62298,21 @@ "catchRate": 60, "color": "gray", "genderDifference": true, - "eggGroups": ["monster", "ground"], + "eggGroups": ["monster", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["lightning_rod", "rock_head"], "hiddenAbilities": ["reckless"], - "baseStats": { "attack": 130, "defense": 120, "hp": 105, "specialAttack": 45, "specialDefense": 45, "speed": 40 }, + "baseStats": { + "attack": 130, + "defense": 120, + "hp": 105, + "specialAttack": 45, + "specialDefense": 45, + "speed": 40 + }, "evReward": { "attack": 2 }, "types": ["ground", "rock"], "height": 1.9, @@ -55708,7 +62394,9 @@ } } }, - "evolutions": [{ "species": "rhyperior", "method": "tradeitem", "data": "protector" }] + "evolutions": [ + { "species": "rhyperior", "method": "tradeitem", "data": "protector" } + ] }, "rhyhorn": { "species": "rhyhorn", @@ -55719,14 +62407,21 @@ "catchRate": 120, "color": "gray", "genderDifference": true, - "eggGroups": ["monster", "ground"], + "eggGroups": ["monster", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["lightning_rod", "rock_head"], "hiddenAbilities": ["reckless"], - "baseStats": { "attack": 85, "defense": 95, "hp": 80, "specialAttack": 30, "specialDefense": 30, "speed": 25 }, + "baseStats": { + "attack": 85, + "defense": 95, + "hp": 80, + "specialAttack": 30, + "specialDefense": 30, + "speed": 25 + }, "evReward": { "defense": 1 }, "types": ["ground", "rock"], "height": 1, @@ -55822,14 +62517,21 @@ "catchRate": 30, "color": "gray", "genderDifference": true, - "eggGroups": ["monster", "ground"], + "eggGroups": ["monster", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["lightning_rod", "solid_rock"], "hiddenAbilities": ["reckless"], - "baseStats": { "attack": 140, "defense": 130, "hp": 115, "specialAttack": 55, "specialDefense": 55, "speed": 40 }, + "baseStats": { + "attack": 140, + "defense": 130, + "hp": 115, + "specialAttack": 55, + "specialDefense": 55, + "speed": 40 + }, "evReward": { "attack": 3 }, "types": ["ground", "rock"], "height": 2.4, @@ -55932,7 +62634,14 @@ "default": { "abilities": ["honey_gather", "shield_dust"], "hiddenAbilities": ["sweet_veil"], - "baseStats": { "attack": 55, "defense": 60, "hp": 60, "specialAttack": 95, "specialDefense": 70, "speed": 124 }, + "baseStats": { + "attack": 55, + "defense": 60, + "hp": 60, + "specialAttack": 95, + "specialDefense": 70, + "speed": 124 + }, "evReward": { "speed": 2 }, "types": ["bug", "fairy"], "height": 0.2, @@ -55998,7 +62707,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "riolu": { "species": "riolu", @@ -56016,7 +62725,14 @@ "default": { "abilities": ["steadfast", "inner_focus"], "hiddenAbilities": ["prankster"], - "baseStats": { "attack": 70, "defense": 40, "hp": 40, "specialAttack": 35, "specialDefense": 40, "speed": 60 }, + "baseStats": { + "attack": 70, + "defense": 40, + "hp": 40, + "specialAttack": 35, + "specialDefense": 40, + "speed": 60 + }, "evReward": { "attack": 1 }, "types": ["fighting"], "height": 0.7, @@ -56091,7 +62807,9 @@ } } }, - "evolutions": [{ "species": "lucario", "method": "happinessday", "data": "" }] + "evolutions": [ + { "species": "lucario", "method": "happinessday", "data": "" } + ] }, "rockruff": { "species": "rockruff", @@ -56102,14 +62820,21 @@ "catchRate": 190, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["keen_eye", "vital_spirit"], "hiddenAbilities": ["steadfast"], - "baseStats": { "attack": 65, "defense": 40, "hp": 45, "specialAttack": 30, "specialDefense": 40, "speed": 60 }, + "baseStats": { + "attack": 65, + "defense": 40, + "hp": 45, + "specialAttack": 30, + "specialDefense": 40, + "speed": 60 + }, "evReward": { "attack": 1 }, "types": ["rock"], "height": 0.5, @@ -56133,7 +62858,13 @@ { "name": "rock_climb", "level": 45 }, { "name": "stone_edge", "level": 48 } ], - "eggMoves": ["thrash", "crush_claw", "sucker_punch", "thunder_fang", "fire_fang"], + "eggMoves": [ + "thrash", + "crush_claw", + "sucker_punch", + "thunder_fang", + "fire_fang" + ], "tutorMoves": [], "machine": [ "roar", @@ -56163,7 +62894,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "roggenrola": { "species": "roggenrola", @@ -56181,7 +62912,14 @@ "default": { "abilities": ["sturdy", "weak_armor"], "hiddenAbilities": ["sand_force"], - "baseStats": { "attack": 75, "defense": 85, "hp": 55, "specialAttack": 25, "specialDefense": 25, "speed": 15 }, + "baseStats": { + "attack": 75, + "defense": 85, + "hp": 55, + "specialAttack": 25, + "specialDefense": 25, + "speed": 15 + }, "evReward": { "defense": 1 }, "types": ["rock"], "height": 0.4, @@ -56203,7 +62941,17 @@ { "name": "stone_edge", "level": 36 }, { "name": "explosion", "level": 40 } ], - "eggMoves": ["take_down", "curse", "lock_on", "magnitude", "rock_tomb", "gravity", "wide_guard", "autotomize", "heavy_slam"], + "eggMoves": [ + "take_down", + "curse", + "lock_on", + "magnitude", + "rock_tomb", + "gravity", + "wide_guard", + "autotomize", + "heavy_slam" + ], "tutorMoves": [], "machine": [ "earthquake", @@ -56247,14 +62995,21 @@ "catchRate": 150, "color": "green", "genderDifference": true, - "eggGroups": ["fairy", "plant"], + "eggGroups": ["fairy", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["natural_cure", "poison_point"], "hiddenAbilities": ["leaf_guard"], - "baseStats": { "attack": 60, "defense": 45, "hp": 50, "specialAttack": 100, "specialDefense": 80, "speed": 65 }, + "baseStats": { + "attack": 60, + "defense": 45, + "hp": 50, + "specialAttack": 100, + "specialDefense": 80, + "speed": 65 + }, "evReward": { "specialAttack": 2 }, "types": ["grass", "poison"], "height": 0.3, @@ -56329,7 +63084,9 @@ } } }, - "evolutions": [{ "species": "roserade", "method": "item", "data": "shinystone" }] + "evolutions": [ + { "species": "roserade", "method": "item", "data": "shinystone" } + ] }, "roserade": { "species": "roserade", @@ -56340,14 +63097,21 @@ "catchRate": 75, "color": "green", "genderDifference": true, - "eggGroups": ["fairy", "plant"], + "eggGroups": ["fairy", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["natural_cure", "poison_point"], "hiddenAbilities": ["technician"], - "baseStats": { "attack": 70, "defense": 65, "hp": 60, "specialAttack": 125, "specialDefense": 105, "speed": 90 }, + "baseStats": { + "attack": 70, + "defense": 65, + "hp": 60, + "specialAttack": 125, + "specialDefense": 105, + "speed": 90 + }, "evReward": { "specialAttack": 3 }, "types": ["grass", "poison"], "height": 0.9, @@ -56411,14 +63175,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 50, "defense": 77, "hp": 50, "specialAttack": 95, "specialDefense": 77, "speed": 91 }, + "baseStats": { + "attack": 50, + "defense": 77, + "hp": 50, + "specialAttack": 95, + "specialDefense": 77, + "speed": 91 + }, "evReward": { "specialAttack": 1, "speed": 1 }, "types": ["electric", "ghost"], "height": 0.3, @@ -56481,7 +63252,14 @@ "fan": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 65, "defense": 107, "hp": 50, "specialAttack": 105, "specialDefense": 107, "speed": 86 }, + "baseStats": { + "attack": 65, + "defense": 107, + "hp": 50, + "specialAttack": 105, + "specialDefense": 107, + "speed": 86 + }, "evReward": { "specialAttack": 1, "speed": 1 }, "types": ["electric", "flying"], "height": 0.3, @@ -56544,7 +63322,14 @@ "frost": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 65, "defense": 107, "hp": 50, "specialAttack": 105, "specialDefense": 107, "speed": 86 }, + "baseStats": { + "attack": 65, + "defense": 107, + "hp": 50, + "specialAttack": 105, + "specialDefense": 107, + "speed": 86 + }, "evReward": { "specialAttack": 1, "speed": 1 }, "types": ["electric", "ice"], "height": 0.3, @@ -56607,7 +63392,14 @@ "heat": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 65, "defense": 107, "hp": 50, "specialAttack": 105, "specialDefense": 107, "speed": 86 }, + "baseStats": { + "attack": 65, + "defense": 107, + "hp": 50, + "specialAttack": 105, + "specialDefense": 107, + "speed": 86 + }, "evReward": { "specialAttack": 1, "speed": 1 }, "types": ["electric", "fire"], "height": 0.3, @@ -56670,7 +63462,14 @@ "mow": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 65, "defense": 107, "hp": 50, "specialAttack": 105, "specialDefense": 107, "speed": 86 }, + "baseStats": { + "attack": 65, + "defense": 107, + "hp": 50, + "specialAttack": 105, + "specialDefense": 107, + "speed": 86 + }, "evReward": { "specialAttack": 1, "speed": 1 }, "types": ["electric", "grass"], "height": 0.3, @@ -56733,7 +63532,14 @@ "wash": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 65, "defense": 107, "hp": 50, "specialAttack": 105, "specialDefense": 107, "speed": 86 }, + "baseStats": { + "attack": 65, + "defense": 107, + "hp": 50, + "specialAttack": 105, + "specialDefense": 107, + "speed": 86 + }, "evReward": { "specialAttack": 1, "speed": 1 }, "types": ["electric", "water"], "height": 0.3, @@ -56812,7 +63618,14 @@ "default": { "abilities": ["overgrow"], "hiddenAbilities": ["long_reach"], - "baseStats": { "attack": 55, "defense": 55, "hp": 68, "specialAttack": 50, "specialDefense": 50, "speed": 42 }, + "baseStats": { + "attack": 55, + "defense": 55, + "hp": 68, + "specialAttack": 50, + "specialDefense": 50, + "speed": 42 + }, "evReward": { "hp": 1 }, "types": ["grass", "flying"], "height": 0.3, @@ -56836,7 +63649,14 @@ { "name": "brave_bird", "level": 43 }, { "name": "nasty_plot", "level": 46 } ], - "eggMoves": ["confuse_ray", "haze", "curse", "baton_pass", "defog", "ominous_wind"], + "eggMoves": [ + "confuse_ray", + "haze", + "curse", + "baton_pass", + "defog", + "ominous_wind" + ], "tutorMoves": ["grass_pledge"], "machine": [ "swords_dance", @@ -56872,7 +63692,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "rufflet": { "species": "rufflet", @@ -56890,7 +63710,14 @@ "default": { "abilities": ["keen_eye", "sheer_force"], "hiddenAbilities": ["hustle"], - "baseStats": { "attack": 83, "defense": 50, "hp": 70, "specialAttack": 37, "specialDefense": 50, "speed": 60 }, + "baseStats": { + "attack": 83, + "defense": 50, + "hp": 70, + "specialAttack": 37, + "specialDefense": 50, + "speed": 60 + }, "evReward": { "attack": 1 }, "types": ["normal", "flying"], "height": 0.5, @@ -56961,14 +63788,21 @@ "catchRate": 45, "color": "purple", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["keen_eye", "stall"], "hiddenAbilities": ["prankster"], - "baseStats": { "attack": 75, "defense": 75, "hp": 50, "specialAttack": 65, "specialDefense": 65, "speed": 50 }, + "baseStats": { + "attack": 75, + "defense": 75, + "hp": 50, + "specialAttack": 65, + "specialDefense": 65, + "speed": 50 + }, "evReward": { "attack": 1, "defense": 1 }, "types": ["dark", "ghost"], "height": 0.5, @@ -56997,7 +63831,19 @@ { "name": "quash", "level": 44 }, { "name": "mean_look", "level": 46 } ], - "eggMoves": ["recover", "mean_look", "moonlight", "flatter", "trick", "imprison", "feint", "metal_burst", "sucker_punch", "nasty_plot", "captivate"], + "eggMoves": [ + "recover", + "mean_look", + "moonlight", + "flatter", + "trick", + "imprison", + "feint", + "metal_burst", + "sucker_punch", + "nasty_plot", + "captivate" + ], "tutorMoves": [], "machine": [ "toxic", @@ -57046,7 +63892,14 @@ "isMega": true, "abilities": ["magic_bounce"], "hiddenAbilities": [], - "baseStats": { "attack": 85, "defense": 125, "hp": 50, "specialAttack": 85, "specialDefense": 115, "speed": 20 }, + "baseStats": { + "attack": 85, + "defense": 125, + "hp": 50, + "specialAttack": 85, + "specialDefense": 115, + "speed": 20 + }, "evReward": { "attack": 1, "defense": 1 }, "types": ["dark", "ghost"], "height": 0.5, @@ -57139,7 +63992,14 @@ "default": { "abilities": ["intimidate"], "hiddenAbilities": ["moxie"], - "baseStats": { "attack": 135, "defense": 80, "hp": 95, "specialAttack": 110, "specialDefense": 80, "speed": 100 }, + "baseStats": { + "attack": 135, + "defense": 80, + "hp": 95, + "specialAttack": 110, + "specialDefense": 80, + "speed": 100 + }, "evReward": { "attack": 3 }, "types": ["dragon", "flying"], "height": 1.5, @@ -57216,7 +64076,14 @@ "isMega": true, "abilities": ["aerilate"], "hiddenAbilities": [], - "baseStats": { "attack": 145, "defense": 130, "hp": 95, "specialAttack": 120, "specialDefense": 90, "speed": 120 }, + "baseStats": { + "attack": 145, + "defense": 130, + "hp": 95, + "specialAttack": 120, + "specialDefense": 90, + "speed": 120 + }, "evReward": { "attack": 3 }, "types": ["dragon", "flying"], "height": 1.8, @@ -57308,7 +64175,14 @@ "default": { "abilities": ["corrosion"], "hiddenAbilities": ["oblivious"], - "baseStats": { "attack": 44, "defense": 40, "hp": 48, "specialAttack": 71, "specialDefense": 40, "speed": 77 }, + "baseStats": { + "attack": 44, + "defense": 40, + "hp": 48, + "specialAttack": 71, + "specialDefense": 40, + "speed": 77 + }, "evReward": { "speed": 1 }, "types": ["poison", "fire"], "height": 0.6, @@ -57331,7 +64205,13 @@ { "name": "venom_drench", "level": 45 }, { "name": "dragon_pulse", "level": 48 } ], - "eggMoves": ["sand_attack", "fake_out", "knock_off", "snatch", "belch"], + "eggMoves": [ + "sand_attack", + "fake_out", + "knock_off", + "snatch", + "belch" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -57370,7 +64250,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "salazzle": { "species": "salazzle", @@ -57388,7 +64268,14 @@ "default": { "abilities": ["corrosion"], "hiddenAbilities": ["oblivious"], - "baseStats": { "attack": 64, "defense": 60, "hp": 68, "specialAttack": 111, "specialDefense": 60, "speed": 117 }, + "baseStats": { + "attack": 64, + "defense": 60, + "hp": 68, + "specialAttack": 111, + "specialDefense": 60, + "speed": 117 + }, "evReward": { "speed": 2 }, "types": ["poison", "fire"], "height": 1.2, @@ -57462,7 +64349,14 @@ "totem": { "abilities": ["corrosion"], "hiddenAbilities": ["oblivious"], - "baseStats": { "attack": 64, "defense": 60, "hp": 68, "specialAttack": 111, "specialDefense": 60, "speed": 117 }, + "baseStats": { + "attack": 64, + "defense": 60, + "hp": 68, + "specialAttack": 111, + "specialDefense": 60, + "speed": 117 + }, "evReward": { "speed": 2 }, "types": ["poison", "fire"], "height": 2.1, @@ -57534,7 +64428,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "samurott": { "species": "samurott", @@ -57545,14 +64439,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["torrent"], "hiddenAbilities": ["shell_armor"], - "baseStats": { "attack": 100, "defense": 85, "hp": 95, "specialAttack": 108, "specialDefense": 70, "speed": 70 }, + "baseStats": { + "attack": 100, + "defense": 85, + "hp": 95, + "specialAttack": 108, + "specialDefense": 70, + "speed": 70 + }, "evReward": { "specialAttack": 3 }, "types": ["water"], "height": 1.5, @@ -57634,14 +64535,21 @@ "catchRate": 180, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["intimidate", "moxie"], "hiddenAbilities": ["anger_point"], - "baseStats": { "attack": 72, "defense": 35, "hp": 50, "specialAttack": 35, "specialDefense": 35, "speed": 65 }, + "baseStats": { + "attack": 72, + "defense": 35, + "hp": 50, + "specialAttack": 35, + "specialDefense": 35, + "speed": 65 + }, "evReward": { "attack": 1 }, "types": ["ground", "dark"], "height": 0.7, @@ -57667,7 +64575,20 @@ { "name": "earthquake", "level": 43 }, { "name": "thrash", "level": 46 } ], - "eggMoves": ["double_edge", "counter", "focus_energy", "mean_look", "pursuit", "beat_up", "uproar", "me_first", "thunder_fang", "fire_fang", "rock_climb", "power_trip"], + "eggMoves": [ + "double_edge", + "counter", + "focus_energy", + "mean_look", + "pursuit", + "beat_up", + "uproar", + "me_first", + "thunder_fang", + "fire_fang", + "rock_climb", + "power_trip" + ], "tutorMoves": [], "machine": [ "roar", @@ -57715,14 +64636,21 @@ "catchRate": 255, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "alola": { "abilities": ["snow_cloak"], "hiddenAbilities": ["slush_rush"], - "baseStats": { "attack": 75, "defense": 90, "hp": 50, "specialAttack": 10, "specialDefense": 35, "speed": 40 }, + "baseStats": { + "attack": 75, + "defense": 90, + "hp": 50, + "specialAttack": 10, + "specialDefense": 35, + "speed": 40 + }, "evReward": { "defense": 1 }, "types": ["ice", "steel"], "height": 0.7, @@ -57792,7 +64720,14 @@ "default": { "abilities": ["sand_veil"], "hiddenAbilities": ["sand_rush"], - "baseStats": { "attack": 75, "defense": 85, "hp": 50, "specialAttack": 20, "specialDefense": 30, "speed": 40 }, + "baseStats": { + "attack": 75, + "defense": 85, + "hp": 50, + "specialAttack": 20, + "specialDefense": 30, + "speed": 40 + }, "evReward": { "defense": 1 }, "types": ["ground"], "height": 0.6, @@ -57818,7 +64753,19 @@ { "name": "sandstorm", "level": 42 }, { "name": "earthquake", "level": 46 } ], - "eggMoves": ["counter", "flail", "endure", "rapid_spin", "metal_claw", "crush_claw", "mud_shot", "night_slash", "rock_climb", "chip_away", "rototiller"], + "eggMoves": [ + "counter", + "flail", + "endure", + "rapid_spin", + "metal_claw", + "crush_claw", + "mud_shot", + "night_slash", + "rock_climb", + "chip_away", + "rototiller" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -57867,14 +64814,21 @@ "catchRate": 90, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "alola": { "abilities": ["snow_cloak"], "hiddenAbilities": ["slush_rush"], - "baseStats": { "attack": 100, "defense": 120, "hp": 75, "specialAttack": 25, "specialDefense": 65, "speed": 65 }, + "baseStats": { + "attack": 100, + "defense": 120, + "hp": 75, + "specialAttack": 25, + "specialDefense": 65, + "speed": 65 + }, "evReward": { "defense": 2 }, "types": ["ice", "steel"], "height": 1.2, @@ -57938,7 +64892,14 @@ "default": { "abilities": ["sand_veil"], "hiddenAbilities": ["sand_rush"], - "baseStats": { "attack": 100, "defense": 110, "hp": 75, "specialAttack": 45, "specialDefense": 55, "speed": 65 }, + "baseStats": { + "attack": 100, + "defense": 110, + "hp": 75, + "specialAttack": 45, + "specialDefense": 55, + "speed": 65 + }, "evReward": { "defense": 2 }, "types": ["ground"], "height": 1, @@ -58021,14 +64982,21 @@ "catchRate": 140, "color": "brown", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["water_compaction"], "hiddenAbilities": ["sand_veil"], - "baseStats": { "attack": 55, "defense": 80, "hp": 55, "specialAttack": 70, "specialDefense": 45, "speed": 15 }, + "baseStats": { + "attack": 55, + "defense": 80, + "hp": 55, + "specialAttack": 70, + "specialDefense": 45, + "speed": 15 + }, "evReward": { "defense": 1 }, "types": ["ghost", "ground"], "height": 0.5, @@ -58051,7 +65019,14 @@ { "name": "shore_up", "level": 50 }, { "name": "sandstorm", "level": 54 } ], - "eggMoves": ["amnesia", "destiny_bond", "ancient_power", "stockpile", "spit_up", "swallow"], + "eggMoves": [ + "amnesia", + "destiny_bond", + "ancient_power", + "stockpile", + "spit_up", + "swallow" + ], "tutorMoves": [], "machine": [ "earthquake", @@ -58084,7 +65059,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "sawk": { "species": "sawk", @@ -58095,14 +65070,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["sturdy", "inner_focus"], "hiddenAbilities": ["mold_breaker"], - "baseStats": { "attack": 125, "defense": 75, "hp": 75, "specialAttack": 30, "specialDefense": 75, "speed": 85 }, + "baseStats": { + "attack": 125, + "defense": 75, + "hp": 75, + "specialAttack": 30, + "specialDefense": 75, + "speed": 85 + }, "evReward": { "attack": 2 }, "types": ["fighting"], "height": 1.4, @@ -58177,14 +65159,21 @@ "catchRate": 75, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "sap_sipper"], "hiddenAbilities": ["serene_grace"], - "baseStats": { "attack": 100, "defense": 70, "hp": 80, "specialAttack": 60, "specialDefense": 70, "speed": 95 }, + "baseStats": { + "attack": 100, + "defense": 70, + "hp": 80, + "specialAttack": 60, + "specialDefense": 70, + "speed": 95 + }, "evReward": { "attack": 2 }, "types": ["normal", "grass"], "height": 1.9, @@ -58269,14 +65258,26 @@ "default": { "abilities": ["shield_dust", "compound_eyes"], "hiddenAbilities": ["friend_guard"], - "baseStats": { "attack": 35, "defense": 40, "hp": 38, "specialAttack": 27, "specialDefense": 25, "speed": 35 }, + "baseStats": { + "attack": 35, + "defense": 40, + "hp": 38, + "specialAttack": 27, + "specialDefense": 25, + "speed": 35 + }, "evReward": { "defense": 1 }, "types": ["bug"], "height": 0.3, "weight": 2.5, "baseExp": 40, "moves": { - "levelMoves": [{ "name": "tackle", "level": 1 }, { "name": "string_shot", "level": 1 }, { "name": "stun_spore", "level": 6 }, { "name": "bug_bite", "level": 15 }], + "levelMoves": [ + { "name": "tackle", "level": 1 }, + { "name": "string_shot", "level": 1 }, + { "name": "stun_spore", "level": 6 }, + { "name": "bug_bite", "level": 15 } + ], "eggMoves": ["poison_powder", "stun_spore", "rage_powder"], "tutorMoves": [], "machine": [], @@ -58284,7 +65285,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "sceptile": { "species": "sceptile", @@ -58302,7 +65303,14 @@ "default": { "abilities": ["overgrow"], "hiddenAbilities": ["unburden"], - "baseStats": { "attack": 85, "defense": 65, "hp": 70, "specialAttack": 105, "specialDefense": 85, "speed": 120 }, + "baseStats": { + "attack": 85, + "defense": 65, + "hp": 70, + "specialAttack": 105, + "specialDefense": 85, + "speed": 120 + }, "evReward": { "speed": 3 }, "types": ["grass"], "height": 1.7, @@ -58334,7 +65342,7 @@ { "name": "screech", "level": 69 } ], "eggMoves": [], - "tutorMoves": ["frenzy_plant", "grass_pledge"], + "tutorMoves": ["frenzy_grass", "grass_pledge"], "machine": [ "swords_dance", "roar", @@ -58383,7 +65391,14 @@ "isMega": true, "abilities": ["lightning_rod"], "hiddenAbilities": [], - "baseStats": { "attack": 110, "defense": 75, "hp": 70, "specialAttack": 145, "specialDefense": 85, "speed": 145 }, + "baseStats": { + "attack": 110, + "defense": 75, + "hp": 70, + "specialAttack": 145, + "specialDefense": 85, + "speed": 145 + }, "evReward": { "speed": 3 }, "types": ["grass", "dragon"], "height": 1.9, @@ -58415,7 +65430,7 @@ { "name": "screech", "level": 69 } ], "eggMoves": [], - "tutorMoves": ["frenzy_plant", "grass_pledge"], + "tutorMoves": ["frenzy_grass", "grass_pledge"], "machine": [ "swords_dance", "roar", @@ -58479,7 +65494,14 @@ "default": { "abilities": ["swarm", "technician"], "hiddenAbilities": ["light_metal"], - "baseStats": { "attack": 130, "defense": 100, "hp": 70, "specialAttack": 55, "specialDefense": 80, "speed": 65 }, + "baseStats": { + "attack": 130, + "defense": 100, + "hp": 70, + "specialAttack": 55, + "specialDefense": 80, + "speed": 65 + }, "evReward": { "attack": 2 }, "types": ["bug", "steel"], "height": 1.8, @@ -58553,7 +65575,14 @@ "isMega": true, "abilities": ["technician"], "hiddenAbilities": [], - "baseStats": { "attack": 150, "defense": 140, "hp": 70, "specialAttack": 65, "specialDefense": 100, "speed": 75 }, + "baseStats": { + "attack": 150, + "defense": 140, + "hp": 70, + "specialAttack": 65, + "specialDefense": 100, + "speed": 75 + }, "evReward": { "attack": 2 }, "types": ["bug", "steel"], "height": 2, @@ -58642,7 +65671,14 @@ "default": { "abilities": ["poison_point", "swarm"], "hiddenAbilities": ["speed_boost"], - "baseStats": { "attack": 100, "defense": 89, "hp": 60, "specialAttack": 55, "specialDefense": 69, "speed": 112 }, + "baseStats": { + "attack": 100, + "defense": 89, + "hp": 60, + "specialAttack": 55, + "specialDefense": 69, + "speed": 112 + }, "evReward": { "speed": 3 }, "types": ["bug", "poison"], "height": 2.5, @@ -58723,14 +65759,21 @@ "catchRate": 90, "color": "red", "genderDifference": false, - "eggGroups": ["ground", "dragon"], + "eggGroups": ["field", "dragon"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["shed_skin", "moxie"], "hiddenAbilities": ["intimidate"], - "baseStats": { "attack": 90, "defense": 115, "hp": 65, "specialAttack": 45, "specialDefense": 115, "speed": 58 }, + "baseStats": { + "attack": 90, + "defense": 115, + "hp": 65, + "specialAttack": 45, + "specialDefense": 115, + "speed": 58 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["dark", "fighting"], "height": 1.1, @@ -58816,14 +65859,21 @@ "catchRate": 180, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground", "dragon"], + "eggGroups": ["field", "dragon"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["shed_skin", "moxie"], "hiddenAbilities": ["intimidate"], - "baseStats": { "attack": 75, "defense": 70, "hp": 50, "specialAttack": 35, "specialDefense": 70, "speed": 48 }, + "baseStats": { + "attack": 75, + "defense": 70, + "hp": 50, + "specialAttack": 35, + "specialDefense": 70, + "speed": 48 + }, "evReward": { "attack": 1 }, "types": ["dark", "fighting"], "height": 0.6, @@ -58848,7 +65898,20 @@ { "name": "focus_punch", "level": 48 }, { "name": "head_smash", "level": 50 } ], - "eggMoves": ["fire_punch", "ice_punch", "thunder_punch", "counter", "amnesia", "feint_attack", "detect", "fake_out", "dragon_dance", "drain_punch", "zen_headbutt", "quick_guard"], + "eggMoves": [ + "fire_punch", + "ice_punch", + "thunder_punch", + "counter", + "amnesia", + "feint_attack", + "detect", + "fake_out", + "dragon_dance", + "drain_punch", + "zen_headbutt", + "quick_guard" + ], "tutorMoves": [], "machine": [ "roar", @@ -58911,7 +65974,14 @@ "default": { "abilities": ["swarm", "technician"], "hiddenAbilities": ["steadfast"], - "baseStats": { "attack": 110, "defense": 80, "hp": 70, "specialAttack": 55, "specialDefense": 80, "speed": 105 }, + "baseStats": { + "attack": 110, + "defense": 80, + "hp": 70, + "specialAttack": 55, + "specialDefense": 80, + "speed": 105 + }, "evReward": { "attack": 1 }, "types": ["bug", "flying"], "height": 1.5, @@ -58938,7 +66008,19 @@ { "name": "swords_dance", "level": 57 }, { "name": "feint", "level": 61 } ], - "eggMoves": ["razor_wind", "counter", "reversal", "endure", "steel_wing", "baton_pass", "silver_wind", "night_slash", "bug_buzz", "defog", "quick_guard"], + "eggMoves": [ + "razor_wind", + "counter", + "reversal", + "endure", + "steel_wing", + "baton_pass", + "silver_wind", + "night_slash", + "bug_buzz", + "defog", + "quick_guard" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -58976,7 +66058,9 @@ } } }, - "evolutions": [{ "species": "scizor", "method": "tradeitem", "data": "metalcoat" }] + "evolutions": [ + { "species": "scizor", "method": "tradeitem", "data": "metalcoat" } + ] }, "seadra": { "species": "seadra", @@ -58994,7 +66078,14 @@ "default": { "abilities": ["poison_point", "sniper"], "hiddenAbilities": ["damp"], - "baseStats": { "attack": 65, "defense": 95, "hp": 55, "specialAttack": 95, "specialDefense": 45, "speed": 85 }, + "baseStats": { + "attack": 65, + "defense": 95, + "hp": 55, + "specialAttack": 95, + "specialDefense": 45, + "speed": 85 + }, "evReward": { "defense": 1, "specialAttack": 1 }, "types": ["water"], "height": 1.2, @@ -59051,7 +66142,9 @@ } } }, - "evolutions": [{ "species": "kingdra", "method": "tradeitem", "data": "dragonscale" }] + "evolutions": [ + { "species": "kingdra", "method": "tradeitem", "data": "dragonscale" } + ] }, "seaking": { "species": "seaking", @@ -59069,7 +66162,14 @@ "default": { "abilities": ["swift_swim", "water_veil"], "hiddenAbilities": ["lightning_rod"], - "baseStats": { "attack": 92, "defense": 65, "hp": 80, "specialAttack": 65, "specialDefense": 80, "speed": 68 }, + "baseStats": { + "attack": 92, + "defense": 65, + "hp": 80, + "specialAttack": 65, + "specialDefense": 80, + "speed": 68 + }, "evReward": { "attack": 2 }, "types": ["water"], "height": 1.3, @@ -59139,14 +66239,21 @@ "catchRate": 120, "color": "blue", "genderDifference": false, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["thick_fat", "ice_body"], "hiddenAbilities": ["oblivious"], - "baseStats": { "attack": 60, "defense": 70, "hp": 90, "specialAttack": 75, "specialDefense": 70, "speed": 45 }, + "baseStats": { + "attack": 60, + "defense": 70, + "hp": 90, + "specialAttack": 75, + "specialDefense": 70, + "speed": 45 + }, "evReward": { "hp": 2 }, "types": ["ice", "water"], "height": 1.1, @@ -59218,14 +66325,21 @@ "catchRate": 255, "color": "brown", "genderDifference": false, - "eggGroups": ["ground", "plant"], + "eggGroups": ["field", "grass"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "early_bird"], "hiddenAbilities": ["pickpocket"], - "baseStats": { "attack": 40, "defense": 50, "hp": 40, "specialAttack": 30, "specialDefense": 30, "speed": 30 }, + "baseStats": { + "attack": 40, + "defense": 50, + "hp": 40, + "specialAttack": 30, + "specialDefense": 30, + "speed": 30 + }, "evReward": { "defense": 1 }, "types": ["grass"], "height": 0.5, @@ -59241,7 +66355,21 @@ { "name": "sunny_day", "level": 27 }, { "name": "explosion", "level": 33 } ], - "eggMoves": ["razor_wind", "take_down", "leech_seed", "quick_attack", "amnesia", "beat_up", "bullet_seed", "power_swap", "worry_seed", "nasty_plot", "defog", "foul_play", "grassy_terrain"], + "eggMoves": [ + "razor_wind", + "take_down", + "leech_seed", + "quick_attack", + "amnesia", + "beat_up", + "bullet_seed", + "power_swap", + "worry_seed", + "nasty_plot", + "defog", + "foul_play", + "grassy_terrain" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -59283,14 +66411,21 @@ "catchRate": 190, "color": "white", "genderDifference": false, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["thick_fat", "hydration"], "hiddenAbilities": ["ice_body"], - "baseStats": { "attack": 45, "defense": 55, "hp": 65, "specialAttack": 45, "specialDefense": 70, "speed": 45 }, + "baseStats": { + "attack": 45, + "defense": 55, + "hp": 65, + "specialAttack": 45, + "specialDefense": 70, + "speed": 45 + }, "evReward": { "specialDefense": 1 }, "types": ["water"], "height": 1.1, @@ -59385,7 +66520,14 @@ "default": { "abilities": ["swift_swim", "poison_touch"], "hiddenAbilities": ["water_absorb"], - "baseStats": { "attack": 95, "defense": 75, "hp": 105, "specialAttack": 85, "specialDefense": 75, "speed": 74 }, + "baseStats": { + "attack": 95, + "defense": 75, + "hp": 105, + "specialAttack": 85, + "specialDefense": 75, + "speed": 74 + }, "evReward": { "hp": 3 }, "types": ["water", "ground"], "height": 1.5, @@ -59467,14 +66609,21 @@ "catchRate": 255, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["run_away", "keen_eye"], "hiddenAbilities": ["frisk"], - "baseStats": { "attack": 46, "defense": 34, "hp": 35, "specialAttack": 35, "specialDefense": 45, "speed": 20 }, + "baseStats": { + "attack": 46, + "defense": 34, + "hp": 35, + "specialAttack": 35, + "specialDefense": 45, + "speed": 20 + }, "evReward": { "attack": 1 }, "types": ["normal"], "height": 0.8, @@ -59497,7 +66646,21 @@ { "name": "me_first", "level": 42 }, { "name": "hyper_voice", "level": 47 } ], - "eggMoves": ["double_edge", "focus_energy", "slash", "reversal", "charm", "pursuit", "iron_tail", "trick", "assist", "covet", "natural_gift", "last_resort", "captivate"], + "eggMoves": [ + "double_edge", + "focus_energy", + "slash", + "reversal", + "charm", + "pursuit", + "iron_tail", + "trick", + "assist", + "covet", + "natural_gift", + "last_resort", + "captivate" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -59548,14 +66711,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["ground", "plant"], + "eggGroups": ["field", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["contrary"], - "baseStats": { "attack": 75, "defense": 95, "hp": 75, "specialAttack": 75, "specialDefense": 95, "speed": 113 }, + "baseStats": { + "attack": 75, + "defense": 95, + "hp": 75, + "specialAttack": 75, + "specialDefense": 95, + "speed": 113 + }, "evReward": { "speed": 3 }, "types": ["grass"], "height": 3.3, @@ -59583,7 +66753,7 @@ { "name": "leaf_storm", "level": 62 } ], "eggMoves": [], - "tutorMoves": ["frenzy_plant", "grass_pledge"], + "tutorMoves": ["frenzy_grass", "grass_pledge"], "machine": [ "swords_dance", "hyper_beam", @@ -59633,14 +66803,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["ground", "plant"], + "eggGroups": ["field", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["contrary"], - "baseStats": { "attack": 60, "defense": 75, "hp": 60, "specialAttack": 60, "specialDefense": 75, "speed": 83 }, + "baseStats": { + "attack": 60, + "defense": 75, + "hp": 60, + "specialAttack": 60, + "specialDefense": 75, + "speed": 83 + }, "evReward": { "speed": 2 }, "types": ["grass"], "height": 0.8, @@ -59714,14 +66891,21 @@ "catchRate": 90, "color": "black", "genderDifference": false, - "eggGroups": ["ground", "dragon"], + "eggGroups": ["field", "dragon"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["shed_skin"], "hiddenAbilities": ["infiltrator"], - "baseStats": { "attack": 100, "defense": 60, "hp": 73, "specialAttack": 100, "specialDefense": 60, "speed": 65 }, + "baseStats": { + "attack": 100, + "defense": 60, + "hp": 73, + "specialAttack": 100, + "specialDefense": 60, + "speed": 65 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["poison"], "height": 2.7, @@ -59750,7 +66934,20 @@ { "name": "coil", "level": 44 }, { "name": "wring_out", "level": 46 } ], - "eggMoves": ["body_slam", "scary_face", "iron_tail", "stockpile", "spit_up", "swallow", "assurance", "wring_out", "punishment", "night_slash", "switcheroo", "final_gambit"], + "eggMoves": [ + "body_slam", + "scary_face", + "iron_tail", + "stockpile", + "spit_up", + "swallow", + "assurance", + "wring_out", + "punishment", + "night_slash", + "switcheroo", + "final_gambit" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -59808,7 +67005,14 @@ "default": { "abilities": ["swarm", "chlorophyll"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 53, "defense": 70, "hp": 45, "specialAttack": 40, "specialDefense": 60, "speed": 42 }, + "baseStats": { + "attack": 53, + "defense": 70, + "hp": 45, + "specialAttack": 40, + "specialDefense": 60, + "speed": 42 + }, "evReward": { "defense": 1 }, "types": ["bug", "grass"], "height": 0.3, @@ -59826,7 +67030,17 @@ { "name": "bug_buzz", "level": 36 }, { "name": "flail", "level": 43 } ], - "eggMoves": ["razor_wind", "agility", "screech", "mind_reader", "baton_pass", "camouflage", "silver_wind", "me_first", "air_slash"], + "eggMoves": [ + "razor_wind", + "agility", + "screech", + "mind_reader", + "baton_pass", + "camouflage", + "silver_wind", + "me_first", + "air_slash" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -59876,7 +67090,14 @@ "default": { "abilities": ["rough_skin"], "hiddenAbilities": ["speed_boost"], - "baseStats": { "attack": 120, "defense": 40, "hp": 70, "specialAttack": 95, "specialDefense": 40, "speed": 95 }, + "baseStats": { + "attack": 120, + "defense": 40, + "hp": 70, + "specialAttack": 95, + "specialDefense": 40, + "speed": 95 + }, "evReward": { "attack": 2 }, "types": ["water", "dark"], "height": 1.8, @@ -59952,7 +67173,14 @@ "isMega": true, "abilities": ["strong_jaw"], "hiddenAbilities": [], - "baseStats": { "attack": 140, "defense": 70, "hp": 70, "specialAttack": 110, "specialDefense": 65, "speed": 105 }, + "baseStats": { + "attack": 140, + "defense": 70, + "hp": 70, + "specialAttack": 110, + "specialDefense": 65, + "speed": 105 + }, "evReward": { "attack": 2 }, "types": ["water", "dark"], "height": 2.5, @@ -60043,7 +67271,14 @@ "default": { "abilities": ["natural_cure"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 100, "hp": 100, "specialAttack": 100, "specialDefense": 100, "speed": 100 }, + "baseStats": { + "attack": 100, + "defense": 100, + "hp": 100, + "specialAttack": 100, + "specialDefense": 100, + "speed": 100 + }, "evReward": { "hp": 3 }, "types": ["grass"], "height": 0.2, @@ -60099,7 +67334,14 @@ "sky": { "abilities": ["serene_grace"], "hiddenAbilities": [], - "baseStats": { "attack": 103, "defense": 75, "hp": 100, "specialAttack": 120, "specialDefense": 75, "speed": 127 }, + "baseStats": { + "attack": 103, + "defense": 75, + "hp": 100, + "specialAttack": 120, + "specialDefense": 75, + "speed": 127 + }, "evReward": { "speed": 3 }, "types": ["grass", "flying"], "height": 0.4, @@ -60171,7 +67413,14 @@ "default": { "abilities": ["wonder_guard"], "hiddenAbilities": [], - "baseStats": { "attack": 90, "defense": 45, "hp": 1, "specialAttack": 30, "specialDefense": 30, "speed": 40 }, + "baseStats": { + "attack": 90, + "defense": 45, + "hp": 1, + "specialAttack": 30, + "specialDefense": 30, + "speed": 40 + }, "evReward": { "hp": 2 }, "types": ["bug", "ghost"], "height": 0.8, @@ -60248,7 +67497,14 @@ "default": { "abilities": ["rock_head"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 95, "defense": 100, "hp": 65, "specialAttack": 60, "specialDefense": 50, "speed": 50 }, + "baseStats": { + "attack": 95, + "defense": 100, + "hp": 65, + "specialAttack": 60, + "specialDefense": 50, + "speed": 50 + }, "evReward": { "defense": 2 }, "types": ["dragon"], "height": 1.1, @@ -60326,7 +67582,14 @@ "default": { "abilities": ["shell_armor", "skill_link"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 65, "defense": 100, "hp": 30, "specialAttack": 45, "specialDefense": 25, "speed": 40 }, + "baseStats": { + "attack": 65, + "defense": 100, + "hp": 30, + "specialAttack": 45, + "specialDefense": 25, + "speed": 40 + }, "evReward": { "defense": 1 }, "types": ["water"], "height": 0.3, @@ -60352,7 +67615,20 @@ { "name": "shell_smash", "level": 56 }, { "name": "hydro_pump", "level": 61 } ], - "eggMoves": ["take_down", "twineedle", "bubble_beam", "screech", "barrier", "rapid_spin", "icicle_spear", "mud_shot", "rock_blast", "water_pulse", "aqua_ring", "avalanche"], + "eggMoves": [ + "take_down", + "twineedle", + "bubble_beam", + "screech", + "barrier", + "rapid_spin", + "icicle_spear", + "mud_shot", + "rock_blast", + "water_pulse", + "aqua_ring", + "avalanche" + ], "tutorMoves": [], "machine": [ "surf", @@ -60381,7 +67657,9 @@ } } }, - "evolutions": [{ "species": "cloyster", "method": "item", "data": "waterstone" }] + "evolutions": [ + { "species": "cloyster", "method": "item", "data": "waterstone" } + ] }, "shellos": { "species": "shellos", @@ -60392,14 +67670,21 @@ "catchRate": 190, "color": "purple", "genderDifference": false, - "eggGroups": ["water1", "indeterminate"], + "eggGroups": ["water1", "amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["sticky_hold", "storm_drain"], "hiddenAbilities": ["sand_force"], - "baseStats": { "attack": 48, "defense": 48, "hp": 76, "specialAttack": 57, "specialDefense": 62, "speed": 34 }, + "baseStats": { + "attack": 48, + "defense": 48, + "hp": 76, + "specialAttack": 57, + "specialDefense": 62, + "speed": 34 + }, "evReward": { "hp": 1 }, "types": ["water"], "height": 0.3, @@ -60482,7 +67767,14 @@ "default": { "abilities": ["hydration", "shell_armor"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 40, "defense": 85, "hp": 50, "specialAttack": 40, "specialDefense": 65, "speed": 25 }, + "baseStats": { + "attack": 40, + "defense": 85, + "hp": 50, + "specialAttack": 40, + "specialDefense": 65, + "speed": 25 + }, "evReward": { "defense": 1 }, "types": ["bug"], "height": 0.4, @@ -60506,7 +67798,18 @@ { "name": "guard_swap", "level": 50 }, { "name": "final_gambit", "level": 56 } ], - "eggMoves": ["double_edge", "mind_reader", "mud_slap", "spikes", "endure", "baton_pass", "encore", "pursuit", "feint", "guard_split"], + "eggMoves": [ + "double_edge", + "mind_reader", + "mud_slap", + "spikes", + "endure", + "baton_pass", + "encore", + "pursuit", + "feint", + "guard_split" + ], "tutorMoves": [], "machine": [ "toxic", @@ -60534,7 +67837,9 @@ } } }, - "evolutions": [{ "species": "accelgor", "method": "tradespecies", "data": "karrablast" }] + "evolutions": [ + { "species": "accelgor", "method": "tradespecies", "data": "karrablast" } + ] }, "shieldon": { "species": "shieldon", @@ -60552,7 +67857,14 @@ "default": { "abilities": ["sturdy"], "hiddenAbilities": ["soundproof"], - "baseStats": { "attack": 42, "defense": 118, "hp": 30, "specialAttack": 42, "specialDefense": 88, "speed": 30 }, + "baseStats": { + "attack": 42, + "defense": 118, + "hp": 30, + "specialAttack": 42, + "specialDefense": 88, + "speed": 30 + }, "evReward": { "defense": 1 }, "types": ["rock", "steel"], "height": 0.5, @@ -60573,7 +67885,21 @@ { "name": "iron_head", "level": 42 }, { "name": "heavy_slam", "level": 46 } ], - "eggMoves": ["headbutt", "body_slam", "double_edge", "counter", "fissure", "screech", "focus_energy", "curse", "scary_face", "rock_blast", "stealth_rock", "wide_guard", "guard_split"], + "eggMoves": [ + "headbutt", + "body_slam", + "double_edge", + "counter", + "fissure", + "screech", + "focus_energy", + "curse", + "scary_face", + "rock_blast", + "stealth_rock", + "wide_guard", + "guard_split" + ], "tutorMoves": [], "machine": [ "roar", @@ -60626,14 +67952,21 @@ "catchRate": 45, "color": "brown", "genderDifference": true, - "eggGroups": ["ground", "plant"], + "eggGroups": ["field", "grass"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "early_bird"], "hiddenAbilities": ["pickpocket"], - "baseStats": { "attack": 100, "defense": 60, "hp": 90, "specialAttack": 90, "specialDefense": 60, "speed": 80 }, + "baseStats": { + "attack": 100, + "defense": 60, + "hp": 90, + "specialAttack": 90, + "specialDefense": 60, + "speed": 80 + }, "evReward": { "attack": 3 }, "types": ["grass", "dark"], "height": 1.3, @@ -60709,14 +68042,21 @@ "catchRate": 75, "color": "purple", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["illuminate", "effect_spore"], "hiddenAbilities": ["rain_dish"], - "baseStats": { "attack": 45, "defense": 80, "hp": 60, "specialAttack": 90, "specialDefense": 100, "speed": 30 }, + "baseStats": { + "attack": 45, + "defense": 80, + "hp": 60, + "specialAttack": 90, + "specialDefense": 100, + "speed": 30 + }, "evReward": { "specialDefense": 2 }, "types": ["grass", "fairy"], "height": 1, @@ -60775,7 +68115,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "shinx": { "species": "shinx", @@ -60786,14 +68126,21 @@ "catchRate": 235, "color": "blue", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["rivalry", "intimidate"], "hiddenAbilities": ["guts"], - "baseStats": { "attack": 65, "defense": 34, "hp": 45, "specialAttack": 40, "specialDefense": 34, "speed": 45 }, + "baseStats": { + "attack": 65, + "defense": 34, + "hp": 45, + "specialAttack": 40, + "specialDefense": 34, + "speed": 45 + }, "evReward": { "attack": 1 }, "types": ["electric"], "height": 0.5, @@ -60874,14 +68221,21 @@ "catchRate": 255, "color": "brown", "genderDifference": false, - "eggGroups": ["fairy", "plant"], + "eggGroups": ["fairy", "grass"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["effect_spore", "poison_heal"], "hiddenAbilities": ["quick_feet"], - "baseStats": { "attack": 40, "defense": 60, "hp": 60, "specialAttack": 40, "specialDefense": 60, "speed": 35 }, + "baseStats": { + "attack": 40, + "defense": 60, + "hp": 60, + "specialAttack": 40, + "specialDefense": 60, + "speed": 35 + }, "evReward": { "hp": 1 }, "types": ["grass"], "height": 0.4, @@ -60903,7 +68257,18 @@ { "name": "seed_bomb", "level": 36 }, { "name": "spore", "level": 40 } ], - "eggMoves": ["charm", "focus_punch", "helping_hand", "fake_tears", "bullet_seed", "wake_up_slap", "natural_gift", "worry_seed", "seed_bomb", "drain_punch"], + "eggMoves": [ + "charm", + "focus_punch", + "helping_hand", + "fake_tears", + "bullet_seed", + "wake_up_slap", + "natural_gift", + "worry_seed", + "seed_bomb", + "drain_punch" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -60952,7 +68317,14 @@ "default": { "abilities": ["sturdy", "gluttony"], "hiddenAbilities": ["contrary"], - "baseStats": { "attack": 10, "defense": 230, "hp": 20, "specialAttack": 10, "specialDefense": 230, "speed": 5 }, + "baseStats": { + "attack": 10, + "defense": 230, + "hp": 20, + "specialAttack": 10, + "specialDefense": 230, + "speed": 5 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["bug", "rock"], "height": 0.6, @@ -60981,7 +68353,17 @@ { "name": "stone_edge", "level": 49 }, { "name": "sticky_web", "level": 53 } ], - "eggMoves": ["acid", "mud_slap", "sweet_scent", "helping_hand", "knock_off", "sand_tomb", "rock_blast", "acupressure", "final_gambit"], + "eggMoves": [ + "acid", + "mud_slap", + "sweet_scent", + "helping_hand", + "knock_off", + "sand_tomb", + "rock_blast", + "acupressure", + "final_gambit" + ], "tutorMoves": [], "machine": [ "earthquake", @@ -61029,14 +68411,21 @@ "catchRate": 225, "color": "black", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["insomnia", "frisk"], "hiddenAbilities": ["cursed_body"], - "baseStats": { "attack": 75, "defense": 35, "hp": 44, "specialAttack": 63, "specialDefense": 33, "speed": 45 }, + "baseStats": { + "attack": 75, + "defense": 35, + "hp": 44, + "specialAttack": 63, + "specialDefense": 33, + "speed": 45 + }, "evReward": { "attack": 1 }, "types": ["ghost"], "height": 0.6, @@ -61061,7 +68450,19 @@ { "name": "trick", "level": 50 }, { "name": "phantom_force", "level": 54 } ], - "eggMoves": ["disable", "confuse_ray", "foresight", "destiny_bond", "pursuit", "imprison", "astonish", "shadow_sneak", "gunk_shot", "ominous_wind", "phantom_force"], + "eggMoves": [ + "disable", + "confuse_ray", + "foresight", + "destiny_bond", + "pursuit", + "imprison", + "astonish", + "shadow_sneak", + "gunk_shot", + "ominous_wind", + "phantom_force" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -61121,7 +68522,14 @@ "default": { "abilities": ["wonder_skin", "magic_guard"], "hiddenAbilities": ["tinted_lens"], - "baseStats": { "attack": 58, "defense": 80, "hp": 72, "specialAttack": 103, "specialDefense": 80, "speed": 97 }, + "baseStats": { + "attack": 58, + "defense": 80, + "hp": 72, + "specialAttack": 103, + "specialDefense": 80, + "speed": 97 + }, "evReward": { "specialAttack": 2 }, "types": ["psychic", "flying"], "height": 1.4, @@ -61147,7 +68555,15 @@ { "name": "cosmic_power", "level": 48 }, { "name": "sky_attack", "level": 50 } ], - "eggMoves": ["steel_wing", "ancient_power", "future_sight", "skill_swap", "roost", "psycho_shift", "stored_power"], + "eggMoves": [ + "steel_wing", + "ancient_power", + "future_sight", + "skill_swap", + "roost", + "psycho_shift", + "stored_power" + ], "tutorMoves": [], "machine": [ "fly", @@ -61213,13 +68629,29 @@ "default": { "abilities": ["shed_skin"], "hiddenAbilities": [], - "baseStats": { "attack": 35, "defense": 55, "hp": 50, "specialAttack": 25, "specialDefense": 25, "speed": 15 }, + "baseStats": { + "attack": 35, + "defense": 55, + "hp": 50, + "specialAttack": 25, + "specialDefense": 25, + "speed": 15 + }, "evReward": { "defense": 2 }, "types": ["bug"], "height": 0.6, "weight": 10, "baseExp": 72, - "moves": { "levelMoves": [{ "name": "harden", "level": 0 }, { "name": "harden", "level": 1 }], "eggMoves": [], "tutorMoves": [], "machine": [], "formeChange": [] } + "moves": { + "levelMoves": [ + { "name": "harden", "level": 0 }, + { "name": "harden", "level": 1 } + ], + "eggMoves": [], + "tutorMoves": [], + "machine": [], + "formeChange": [] + } } }, "evolutions": [{ "species": "beautifly", "method": "level", "data": "10" }] @@ -61240,7 +68672,14 @@ "default": { "abilities": ["rks_system"], "hiddenAbilities": [], - "baseStats": { "attack": 95, "defense": 95, "hp": 95, "specialAttack": 95, "specialDefense": 95, "speed": 95 }, + "baseStats": { + "attack": 95, + "defense": 95, + "hp": 95, + "specialAttack": 95, + "specialDefense": 95, + "speed": 95 + }, "evReward": { "hp": 3 }, "types": ["normal"], "height": 2.3, @@ -61324,7 +68763,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "simipour": { "species": "simipour", @@ -61335,21 +68774,33 @@ "catchRate": 75, "color": "blue", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["gluttony"], "hiddenAbilities": ["torrent"], - "baseStats": { "attack": 98, "defense": 63, "hp": 75, "specialAttack": 98, "specialDefense": 63, "speed": 101 }, + "baseStats": { + "attack": 98, + "defense": 63, + "hp": 75, + "specialAttack": 98, + "specialDefense": 63, + "speed": 101 + }, "evReward": { "speed": 2 }, "types": ["water"], "height": 1, "weight": 29, "baseExp": 174, "moves": { - "levelMoves": [{ "name": "leer", "level": 1 }, { "name": "lick", "level": 1 }, { "name": "fury_swipes", "level": 1 }, { "name": "scald", "level": 1 }], + "levelMoves": [ + { "name": "leer", "level": 1 }, + { "name": "lick", "level": 1 }, + { "name": "fury_swipes", "level": 1 }, + { "name": "scald", "level": 1 } + ], "eggMoves": [], "tutorMoves": ["water_pledge"], "machine": [ @@ -61406,21 +68857,33 @@ "catchRate": 75, "color": "green", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["gluttony"], "hiddenAbilities": ["overgrow"], - "baseStats": { "attack": 98, "defense": 63, "hp": 75, "specialAttack": 98, "specialDefense": 63, "speed": 101 }, + "baseStats": { + "attack": 98, + "defense": 63, + "hp": 75, + "specialAttack": 98, + "specialDefense": 63, + "speed": 101 + }, "evReward": { "speed": 2 }, "types": ["grass"], "height": 1.1, "weight": 30.5, "baseExp": 174, "moves": { - "levelMoves": [{ "name": "leer", "level": 1 }, { "name": "lick", "level": 1 }, { "name": "fury_swipes", "level": 1 }, { "name": "seed_bomb", "level": 1 }], + "levelMoves": [ + { "name": "leer", "level": 1 }, + { "name": "lick", "level": 1 }, + { "name": "fury_swipes", "level": 1 }, + { "name": "seed_bomb", "level": 1 } + ], "eggMoves": [], "tutorMoves": ["grass_pledge"], "machine": [ @@ -61474,21 +68937,33 @@ "catchRate": 75, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["gluttony"], "hiddenAbilities": ["blaze"], - "baseStats": { "attack": 98, "defense": 63, "hp": 75, "specialAttack": 98, "specialDefense": 63, "speed": 101 }, + "baseStats": { + "attack": 98, + "defense": 63, + "hp": 75, + "specialAttack": 98, + "specialDefense": 63, + "speed": 101 + }, "evReward": { "speed": 2 }, "types": ["fire"], "height": 1, "weight": 28, "baseExp": 174, "moves": { - "levelMoves": [{ "name": "leer", "level": 1 }, { "name": "lick", "level": 1 }, { "name": "fury_swipes", "level": 1 }, { "name": "flame_burst", "level": 1 }], + "levelMoves": [ + { "name": "leer", "level": 1 }, + { "name": "lick", "level": 1 }, + { "name": "fury_swipes", "level": 1 }, + { "name": "flame_burst", "level": 1 } + ], "eggMoves": [], "tutorMoves": ["fire_pledge"], "machine": [ @@ -61552,7 +69027,14 @@ "default": { "abilities": ["keen_eye", "sturdy"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 80, "defense": 140, "hp": 65, "specialAttack": 40, "specialDefense": 70, "speed": 70 }, + "baseStats": { + "attack": 80, + "defense": 140, + "hp": 65, + "specialAttack": 40, + "specialDefense": 70, + "speed": 70 + }, "evReward": { "defense": 2 }, "types": ["steel", "flying"], "height": 1.7, @@ -61577,7 +69059,18 @@ { "name": "autotomize", "level": 50 }, { "name": "night_slash", "level": 53 } ], - "eggMoves": ["whirlwind", "drill_peck", "sky_attack", "curse", "endure", "pursuit", "assurance", "guard_swap", "brave_bird", "stealth_rock"], + "eggMoves": [ + "whirlwind", + "drill_peck", + "sky_attack", + "curse", + "endure", + "pursuit", + "assurance", + "guard_swap", + "brave_bird", + "stealth_rock" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -61628,14 +69121,21 @@ "catchRate": 200, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["sap_sipper"], "hiddenAbilities": ["grass_pelt"], - "baseStats": { "attack": 65, "defense": 48, "hp": 66, "specialAttack": 62, "specialDefense": 57, "speed": 52 }, + "baseStats": { + "attack": 65, + "defense": 48, + "hp": 66, + "specialAttack": 62, + "specialDefense": 57, + "speed": 52 + }, "evReward": { "hp": 1 }, "types": ["grass"], "height": 0.9, @@ -61697,7 +69197,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "skiploom": { "species": "skiploom", @@ -61708,14 +69208,21 @@ "catchRate": 120, "color": "green", "genderDifference": false, - "eggGroups": ["fairy", "plant"], + "eggGroups": ["fairy", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "leaf_guard"], "hiddenAbilities": ["infiltrator"], - "baseStats": { "attack": 45, "defense": 50, "hp": 55, "specialAttack": 45, "specialDefense": 65, "speed": 80 }, + "baseStats": { + "attack": 45, + "defense": 50, + "hp": 55, + "specialAttack": 45, + "specialDefense": 65, + "speed": 80 + }, "evReward": { "speed": 2 }, "types": ["grass", "flying"], "height": 0.6, @@ -61791,14 +69298,21 @@ "catchRate": 255, "color": "pink", "genderDifference": false, - "eggGroups": ["ground", "fairy"], + "eggGroups": ["field", "fairy"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["cute_charm", "normalize"], "hiddenAbilities": ["wonder_skin"], - "baseStats": { "attack": 45, "defense": 45, "hp": 50, "specialAttack": 35, "specialDefense": 35, "speed": 50 }, + "baseStats": { + "attack": 45, + "defense": 45, + "hp": 50, + "specialAttack": 35, + "specialDefense": 35, + "speed": 50 + }, "evReward": { "speed": 1 }, "types": ["normal"], "height": 0.6, @@ -61882,7 +69396,9 @@ } } }, - "evolutions": [{ "species": "delcatty", "method": "item", "data": "moonstone" }] + "evolutions": [ + { "species": "delcatty", "method": "item", "data": "moonstone" } + ] }, "skorupi": { "species": "skorupi", @@ -61900,7 +69416,14 @@ "default": { "abilities": ["battle_armor", "sniper"], "hiddenAbilities": ["keen_eye"], - "baseStats": { "attack": 50, "defense": 90, "hp": 40, "specialAttack": 30, "specialDefense": 55, "speed": 65 }, + "baseStats": { + "attack": 50, + "defense": 90, + "hp": 40, + "specialAttack": 30, + "specialDefense": 55, + "speed": 65 + }, "evReward": { "defense": 1 }, "types": ["poison", "bug"], "height": 0.8, @@ -61926,7 +69449,20 @@ { "name": "fell_stinger", "level": 47 }, { "name": "cross_poison", "level": 49 } ], - "eggMoves": ["whirlwind", "sand_attack", "twineedle", "agility", "screech", "confuse_ray", "slash", "feint_attack", "pursuit", "iron_tail", "poison_tail", "night_slash"], + "eggMoves": [ + "whirlwind", + "sand_attack", + "twineedle", + "agility", + "screech", + "confuse_ray", + "slash", + "feint_attack", + "pursuit", + "iron_tail", + "poison_tail", + "night_slash" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -61985,7 +69521,14 @@ "default": { "abilities": ["poison_point", "poison_touch"], "hiddenAbilities": ["adaptability"], - "baseStats": { "attack": 60, "defense": 60, "hp": 50, "specialAttack": 60, "specialDefense": 60, "speed": 30 }, + "baseStats": { + "attack": 60, + "defense": 60, + "hp": 50, + "specialAttack": 60, + "specialDefense": 60, + "speed": 30 + }, "evReward": { "specialDefense": 1 }, "types": ["poison", "water"], "height": 0.5, @@ -62010,7 +69553,13 @@ { "name": "hydro_pump", "level": 42 }, { "name": "dragon_pulse", "level": 49 } ], - "eggMoves": ["haze", "acid_armor", "toxic_spikes", "play_rough", "venom_drench"], + "eggMoves": [ + "haze", + "acid_armor", + "toxic_spikes", + "play_rough", + "venom_drench" + ], "tutorMoves": [], "machine": [ "surf", @@ -62042,7 +69591,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "skuntank": { "species": "skuntank", @@ -62053,14 +69602,21 @@ "catchRate": 60, "color": "purple", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["stench", "aftermath"], "hiddenAbilities": ["keen_eye"], - "baseStats": { "attack": 93, "defense": 67, "hp": 103, "specialAttack": 71, "specialDefense": 61, "speed": 84 }, + "baseStats": { + "attack": 93, + "defense": 67, + "hp": 103, + "specialAttack": 71, + "specialDefense": 61, + "speed": 84 + }, "evReward": { "hp": 2 }, "types": ["poison", "dark"], "height": 1, @@ -62142,14 +69698,21 @@ "catchRate": 45, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["truant"], "hiddenAbilities": [], - "baseStats": { "attack": 160, "defense": 100, "hp": 150, "specialAttack": 95, "specialDefense": 65, "speed": 100 }, + "baseStats": { + "attack": 160, + "defense": 100, + "hp": 150, + "specialAttack": 95, + "specialDefense": 65, + "speed": 100 + }, "evReward": { "hp": 3 }, "types": ["normal"], "height": 2, @@ -62239,14 +69802,21 @@ "catchRate": 255, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["truant"], "hiddenAbilities": [], - "baseStats": { "attack": 60, "defense": 60, "hp": 60, "specialAttack": 35, "specialDefense": 35, "speed": 30 }, + "baseStats": { + "attack": 60, + "defense": 60, + "hp": 60, + "specialAttack": 35, + "specialDefense": 35, + "speed": 30 + }, "evReward": { "hp": 1 }, "types": ["normal"], "height": 0.8, @@ -62266,7 +69836,19 @@ { "name": "flail", "level": 33 }, { "name": "play_rough", "level": 38 } ], - "eggMoves": ["body_slam", "slash", "snore", "curse", "sleep_talk", "pursuit", "crush_claw", "tickle", "hammer_arm", "night_slash", "after_you"], + "eggMoves": [ + "body_slam", + "slash", + "snore", + "curse", + "sleep_talk", + "pursuit", + "crush_claw", + "tickle", + "hammer_arm", + "night_slash", + "after_you" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -62324,7 +69906,14 @@ "default": { "abilities": ["sap_sipper", "hydration"], "hiddenAbilities": ["gooey"], - "baseStats": { "attack": 75, "defense": 53, "hp": 68, "specialAttack": 83, "specialDefense": 113, "speed": 60 }, + "baseStats": { + "attack": 75, + "defense": 53, + "hp": 68, + "specialAttack": 83, + "specialDefense": 113, + "speed": 60 + }, "evReward": { "specialDefense": 2 }, "types": ["dragon"], "height": 0.8, @@ -62376,7 +69965,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "slowbro": { "species": "slowbro", @@ -62394,7 +69983,14 @@ "default": { "abilities": ["oblivious", "own_tempo"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 75, "defense": 110, "hp": 95, "specialAttack": 100, "specialDefense": 80, "speed": 30 }, + "baseStats": { + "attack": 75, + "defense": 110, + "hp": 95, + "specialAttack": 100, + "specialDefense": 80, + "speed": 30 + }, "evReward": { "defense": 2 }, "types": ["water", "psychic"], "height": 1.6, @@ -62477,7 +70073,14 @@ "isMega": true, "abilities": ["shell_armor"], "hiddenAbilities": [], - "baseStats": { "attack": 75, "defense": 180, "hp": 95, "specialAttack": 130, "specialDefense": 80, "speed": 30 }, + "baseStats": { + "attack": 75, + "defense": 180, + "hp": 95, + "specialAttack": 130, + "specialDefense": 80, + "speed": 30 + }, "evReward": { "defense": 2 }, "types": ["water", "psychic"], "height": 2, @@ -62575,7 +70178,14 @@ "default": { "abilities": ["oblivious", "own_tempo"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 75, "defense": 80, "hp": 95, "specialAttack": 100, "specialDefense": 110, "speed": 30 }, + "baseStats": { + "attack": 75, + "defense": 80, + "hp": 95, + "specialAttack": 100, + "specialDefense": 110, + "speed": 30 + }, "evReward": { "specialDefense": 3 }, "types": ["water", "psychic"], "height": 2, @@ -62673,7 +70283,14 @@ "default": { "abilities": ["oblivious", "own_tempo"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 65, "defense": 65, "hp": 90, "specialAttack": 40, "specialDefense": 40, "speed": 15 }, + "baseStats": { + "attack": 65, + "defense": 65, + "hp": 90, + "specialAttack": 40, + "specialDefense": 40, + "speed": 15 + }, "evReward": { "hp": 1 }, "types": ["water", "psychic"], "height": 1.2, @@ -62698,7 +70315,19 @@ { "name": "psych_up", "level": 54 }, { "name": "heal_pulse", "level": 58 } ], - "eggMoves": ["stomp", "snore", "belly_drum", "sleep_talk", "future_sight", "mud_sport", "block", "me_first", "zen_headbutt", "wonder_room", "belch"], + "eggMoves": [ + "stomp", + "snore", + "belly_drum", + "sleep_talk", + "future_sight", + "mud_sport", + "block", + "me_first", + "zen_headbutt", + "wonder_room", + "belch" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -62743,7 +70372,10 @@ } } }, - "evolutions": [{ "species": "slowbro", "method": "level", "data": "37" }, { "species": "slowking", "method": "tradeitem", "data": "kingsrock" }] + "evolutions": [ + { "species": "slowbro", "method": "level", "data": "37" }, + { "species": "slowking", "method": "tradeitem", "data": "kingsrock" } + ] }, "slugma": { "species": "slugma", @@ -62754,14 +70386,21 @@ "catchRate": 190, "color": "red", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["magma_armor", "flame_body"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 40, "defense": 40, "hp": 40, "specialAttack": 70, "specialDefense": 40, "speed": 20 }, + "baseStats": { + "attack": 40, + "defense": 40, + "hp": 40, + "specialAttack": 70, + "specialDefense": 40, + "speed": 20 + }, "evReward": { "specialAttack": 1 }, "types": ["fire"], "height": 0.7, @@ -62786,7 +70425,20 @@ { "name": "flamethrower", "level": 48 }, { "name": "earth_power", "level": 50 } ], - "eggMoves": ["smokescreen", "acid_armor", "curse", "rollout", "stockpile", "spit_up", "swallow", "heat_wave", "memento", "guard_swap", "earth_power", "inferno"], + "eggMoves": [ + "smokescreen", + "acid_armor", + "curse", + "rollout", + "stockpile", + "spit_up", + "swallow", + "heat_wave", + "memento", + "guard_swap", + "earth_power", + "inferno" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -62838,7 +70490,14 @@ "default": { "abilities": ["sweet_veil"], "hiddenAbilities": ["unburden"], - "baseStats": { "attack": 80, "defense": 86, "hp": 82, "specialAttack": 85, "specialDefense": 75, "speed": 72 }, + "baseStats": { + "attack": 80, + "defense": 86, + "hp": 82, + "specialAttack": 85, + "specialDefense": 75, + "speed": 72 + }, "evReward": { "defense": 2 }, "types": ["fairy"], "height": 0.8, @@ -62903,7 +70562,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "smeargle": { "species": "smeargle", @@ -62914,14 +70573,21 @@ "catchRate": 45, "color": "white", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["own_tempo", "technician"], "hiddenAbilities": ["moody"], - "baseStats": { "attack": 20, "defense": 35, "hp": 55, "specialAttack": 20, "specialDefense": 45, "speed": 75 }, + "baseStats": { + "attack": 20, + "defense": 35, + "hp": 55, + "specialAttack": 20, + "specialDefense": 45, + "speed": 75 + }, "evReward": { "speed": 1 }, "types": ["normal"], "height": 1.2, @@ -62965,7 +70631,14 @@ "default": { "abilities": ["oblivious", "forewarn"], "hiddenAbilities": ["hydration"], - "baseStats": { "attack": 30, "defense": 15, "hp": 45, "specialAttack": 85, "specialDefense": 65, "speed": 65 }, + "baseStats": { + "attack": 30, + "defense": 15, + "hp": 45, + "specialAttack": 85, + "specialDefense": 65, + "speed": 65 + }, "evReward": { "specialAttack": 1 }, "types": ["ice", "psychic"], "height": 0.4, @@ -62989,7 +70662,16 @@ { "name": "perish_song", "level": 45 }, { "name": "blizzard", "level": 48 } ], - "eggMoves": ["ice_punch", "meditate", "fake_out", "wish", "miracle_eye", "wake_up_slap", "nasty_plot", "captivate"], + "eggMoves": [ + "ice_punch", + "meditate", + "fake_out", + "wish", + "miracle_eye", + "wake_up_slap", + "nasty_plot", + "captivate" + ], "tutorMoves": [], "machine": [ "ice_beam", @@ -63042,14 +70724,21 @@ "catchRate": 60, "color": "black", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["inner_focus", "keen_eye"], "hiddenAbilities": ["pickpocket"], - "baseStats": { "attack": 95, "defense": 55, "hp": 55, "specialAttack": 35, "specialDefense": 75, "speed": 115 }, + "baseStats": { + "attack": 95, + "defense": 55, + "hp": 55, + "specialAttack": 35, + "specialDefense": 75, + "speed": 115 + }, "evReward": { "speed": 1 }, "types": ["dark", "ice"], "height": 0.9, @@ -63140,7 +70829,9 @@ } } }, - "evolutions": [{ "species": "weavile", "method": "nightholditem", "data": "razorclaw" }] + "evolutions": [ + { "species": "weavile", "method": "nightholditem", "data": "razorclaw" } + ] }, "snivy": { "species": "snivy", @@ -63151,14 +70842,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["ground", "plant"], + "eggGroups": ["field", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["contrary"], - "baseStats": { "attack": 45, "defense": 55, "hp": 45, "specialAttack": 45, "specialDefense": 55, "speed": 63 }, + "baseStats": { + "attack": 45, + "defense": 55, + "hp": 45, + "specialAttack": 45, + "specialDefense": 55, + "speed": 63 + }, "evReward": { "speed": 1 }, "types": ["grass"], "height": 0.6, @@ -63182,7 +70880,19 @@ { "name": "gastro_acid", "level": 40 }, { "name": "leaf_storm", "level": 43 } ], - "eggMoves": ["glare", "mean_look", "pursuit", "sweet_scent", "iron_tail", "twister", "mirror_coat", "magical_leaf", "natural_gift", "captivate", "grassy_terrain"], + "eggMoves": [ + "glare", + "mean_look", + "pursuit", + "sweet_scent", + "iron_tail", + "twister", + "mirror_coat", + "magical_leaf", + "natural_gift", + "captivate", + "grassy_terrain" + ], "tutorMoves": ["grass_pledge"], "machine": [ "swords_dance", @@ -63236,7 +70946,14 @@ "default": { "abilities": ["immunity", "thick_fat"], "hiddenAbilities": ["gluttony"], - "baseStats": { "attack": 110, "defense": 65, "hp": 160, "specialAttack": 65, "specialDefense": 110, "speed": 30 }, + "baseStats": { + "attack": 110, + "defense": 65, + "hp": 160, + "specialAttack": 65, + "specialDefense": 110, + "speed": 30 + }, "evReward": { "hp": 2 }, "types": ["normal"], "height": 2.1, @@ -63262,7 +70979,19 @@ { "name": "heavy_slam", "level": 50 }, { "name": "high_horsepower", "level": 57 } ], - "eggMoves": ["whirlwind", "double_edge", "counter", "fissure", "lick", "curse", "charm", "pursuit", "natural_gift", "after_you", "belch"], + "eggMoves": [ + "whirlwind", + "double_edge", + "counter", + "fissure", + "lick", + "curse", + "charm", + "pursuit", + "natural_gift", + "after_you", + "belch" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -63327,7 +71056,14 @@ "default": { "abilities": ["inner_focus", "ice_body"], "hiddenAbilities": ["moody"], - "baseStats": { "attack": 50, "defense": 50, "hp": 50, "specialAttack": 50, "specialDefense": 50, "speed": 50 }, + "baseStats": { + "attack": 50, + "defense": 50, + "hp": 50, + "specialAttack": 50, + "specialDefense": 50, + "speed": 50 + }, "evReward": { "hp": 1 }, "types": ["ice"], "height": 0.7, @@ -63349,7 +71085,18 @@ { "name": "blizzard", "level": 46 }, { "name": "hail", "level": 50 } ], - "eggMoves": ["disable", "bide", "spikes", "rollout", "weather_ball", "fake_tears", "block", "switcheroo", "avalanche", "hex"], + "eggMoves": [ + "disable", + "bide", + "spikes", + "rollout", + "weather_ball", + "fake_tears", + "block", + "switcheroo", + "avalanche", + "hex" + ], "tutorMoves": [], "machine": [ "ice_beam", @@ -63379,7 +71126,10 @@ } } }, - "evolutions": [{ "species": "glalie", "method": "level", "data": "42" }, { "species": "froslass", "method": "itemfemale", "data": "dawnstone" }] + "evolutions": [ + { "species": "glalie", "method": "level", "data": "42" }, + { "species": "froslass", "method": "itemfemale", "data": "dawnstone" } + ] }, "snover": { "species": "snover", @@ -63390,14 +71140,21 @@ "catchRate": 120, "color": "white", "genderDifference": true, - "eggGroups": ["monster", "plant"], + "eggGroups": ["monster", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["snow_warning"], "hiddenAbilities": ["soundproof"], - "baseStats": { "attack": 62, "defense": 50, "hp": 60, "specialAttack": 62, "specialDefense": 60, "speed": 40 }, + "baseStats": { + "attack": 62, + "defense": 50, + "hp": 60, + "specialAttack": 62, + "specialDefense": 60, + "speed": 40 + }, "evReward": { "attack": 1 }, "types": ["grass", "ice"], "height": 1, @@ -63418,7 +71175,19 @@ { "name": "blizzard", "level": 41 }, { "name": "sheer_cold", "level": 46 } ], - "eggMoves": ["stomp", "double_edge", "mist", "leech_seed", "growth", "skull_bash", "bullet_seed", "magical_leaf", "natural_gift", "seed_bomb", "avalanche"], + "eggMoves": [ + "stomp", + "double_edge", + "mist", + "leech_seed", + "growth", + "skull_bash", + "bullet_seed", + "magical_leaf", + "natural_gift", + "seed_bomb", + "avalanche" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -63463,14 +71232,21 @@ "catchRate": 190, "color": "pink", "genderDifference": false, - "eggGroups": ["ground", "fairy"], + "eggGroups": ["field", "fairy"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["intimidate", "run_away"], "hiddenAbilities": ["rattled"], - "baseStats": { "attack": 80, "defense": 50, "hp": 60, "specialAttack": 40, "specialDefense": 40, "speed": 30 }, + "baseStats": { + "attack": 80, + "defense": 50, + "hp": 60, + "specialAttack": 40, + "specialDefense": 40, + "speed": 30 + }, "evReward": { "attack": 1 }, "types": ["fairy"], "height": 0.6, @@ -63576,7 +71352,14 @@ "default": { "abilities": ["full_metal_body"], "hiddenAbilities": [], - "baseStats": { "attack": 137, "defense": 107, "hp": 137, "specialAttack": 113, "specialDefense": 89, "speed": 97 }, + "baseStats": { + "attack": 137, + "defense": 107, + "hp": 137, + "specialAttack": 113, + "specialDefense": 89, + "speed": 97 + }, "evReward": { "attack": 3 }, "types": ["psychic", "steel"], "height": 3.4, @@ -63654,7 +71437,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "solosis": { "species": "solosis", @@ -63665,14 +71448,21 @@ "catchRate": 200, "color": "green", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overcoat", "magic_guard"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 30, "defense": 40, "hp": 45, "specialAttack": 105, "specialDefense": 50, "speed": 20 }, + "baseStats": { + "attack": 30, + "defense": 40, + "hp": 45, + "specialAttack": 105, + "specialDefense": 50, + "speed": 20 + }, "evReward": { "specialAttack": 1 }, "types": ["psychic"], "height": 0.3, @@ -63697,7 +71487,16 @@ { "name": "heal_block", "level": 46 }, { "name": "wonder_room", "level": 48 } ], - "eggMoves": ["night_shade", "confuse_ray", "acid_armor", "helping_hand", "trick", "imprison", "secret_power", "astonish"], + "eggMoves": [ + "night_shade", + "confuse_ray", + "acid_armor", + "helping_hand", + "trick", + "imprison", + "secret_power", + "astonish" + ], "tutorMoves": [], "machine": [ "thunder_wave", @@ -63758,7 +71557,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 95, "defense": 85, "hp": 90, "specialAttack": 55, "specialDefense": 65, "speed": 70 }, + "baseStats": { + "attack": 95, + "defense": 85, + "hp": 90, + "specialAttack": 55, + "specialDefense": 65, + "speed": 70 + }, "evReward": { "attack": 2 }, "types": ["rock", "psychic"], "height": 1.2, @@ -63855,7 +71661,14 @@ "default": { "abilities": ["keen_eye"], "hiddenAbilities": ["sniper"], - "baseStats": { "attack": 60, "defense": 30, "hp": 40, "specialAttack": 31, "specialDefense": 31, "speed": 70 }, + "baseStats": { + "attack": 60, + "defense": 30, + "hp": 40, + "specialAttack": 31, + "specialDefense": 31, + "speed": 70 + }, "evReward": { "speed": 1 }, "types": ["normal", "flying"], "height": 0.3, @@ -63876,7 +71689,19 @@ { "name": "roost", "level": 32 }, { "name": "drill_peck", "level": 36 } ], - "eggMoves": ["razor_wind", "whirlwind", "quick_attack", "sky_attack", "tri_attack", "scary_face", "feint_attack", "steel_wing", "uproar", "feather_dance", "astonish"], + "eggMoves": [ + "razor_wind", + "whirlwind", + "quick_attack", + "sky_attack", + "tri_attack", + "scary_face", + "feint_attack", + "steel_wing", + "uproar", + "feather_dance", + "astonish" + ], "tutorMoves": [], "machine": [ "fly", @@ -63927,14 +71752,25 @@ "default": { "abilities": ["shed_skin"], "hiddenAbilities": ["friend_guard"], - "baseStats": { "attack": 22, "defense": 60, "hp": 45, "specialAttack": 27, "specialDefense": 30, "speed": 29 }, + "baseStats": { + "attack": 22, + "defense": 60, + "hp": 45, + "specialAttack": 27, + "specialDefense": 30, + "speed": 29 + }, "evReward": { "defense": 2 }, "types": ["bug"], "height": 0.3, "weight": 8.4, "baseExp": 75, "moves": { - "levelMoves": [{ "name": "protect", "level": 0 }, { "name": "harden", "level": 1 }, { "name": "protect", "level": 1 }], + "levelMoves": [ + { "name": "protect", "level": 0 }, + { "name": "harden", "level": 1 }, + { "name": "protect", "level": 1 } + ], "eggMoves": [], "tutorMoves": [], "machine": ["protect"], @@ -63942,7 +71778,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "spheal": { "species": "spheal", @@ -63953,14 +71789,21 @@ "catchRate": 255, "color": "blue", "genderDifference": false, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["thick_fat", "ice_body"], "hiddenAbilities": ["oblivious"], - "baseStats": { "attack": 40, "defense": 50, "hp": 70, "specialAttack": 55, "specialDefense": 50, "speed": 25 }, + "baseStats": { + "attack": 40, + "defense": 50, + "hp": 70, + "specialAttack": 55, + "specialDefense": 50, + "speed": 25 + }, "evReward": { "hp": 1 }, "types": ["ice", "water"], "height": 0.8, @@ -63984,7 +71827,21 @@ { "name": "blizzard", "level": 41 }, { "name": "sheer_cold", "level": 46 } ], - "eggMoves": ["fissure", "curse", "belly_drum", "rollout", "sleep_talk", "stockpile", "spit_up", "swallow", "yawn", "signal_beam", "water_sport", "water_pulse", "aqua_ring"], + "eggMoves": [ + "fissure", + "curse", + "belly_drum", + "rollout", + "sleep_talk", + "stockpile", + "spit_up", + "swallow", + "yawn", + "signal_beam", + "water_sport", + "water_pulse", + "aqua_ring" + ], "tutorMoves": [], "machine": [ "surf", @@ -64036,7 +71893,14 @@ "default": { "abilities": ["swarm", "insomnia"], "hiddenAbilities": ["sniper"], - "baseStats": { "attack": 60, "defense": 40, "hp": 40, "specialAttack": 40, "specialDefense": 40, "speed": 30 }, + "baseStats": { + "attack": 60, + "defense": 40, + "hp": 40, + "specialAttack": 40, + "specialDefense": 40, + "speed": 30 + }, "evReward": { "attack": 1 }, "types": ["bug", "poison"], "height": 0.5, @@ -64063,7 +71927,20 @@ { "name": "sticky_web", "level": 50 }, { "name": "toxic_thread", "level": 54 } ], - "eggMoves": ["twineedle", "sonic_boom", "disable", "psybeam", "megahorn", "baton_pass", "pursuit", "signal_beam", "toxic_spikes", "night_slash", "rage_powder", "electroweb"], + "eggMoves": [ + "twineedle", + "sonic_boom", + "disable", + "psybeam", + "megahorn", + "baton_pass", + "pursuit", + "signal_beam", + "toxic_spikes", + "night_slash", + "rage_powder", + "electroweb" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -64106,14 +71983,21 @@ "catchRate": 255, "color": "brown", "genderDifference": false, - "eggGroups": ["ground", "humanshape"], + "eggGroups": ["field", "humanlike"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["own_tempo", "tangled_feet"], "hiddenAbilities": ["contrary"], - "baseStats": { "attack": 60, "defense": 60, "hp": 60, "specialAttack": 60, "specialDefense": 60, "speed": 60 }, + "baseStats": { + "attack": 60, + "defense": 60, + "hp": 60, + "specialAttack": 60, + "specialDefense": 60, + "speed": 60 + }, "evReward": { "specialAttack": 1 }, "types": ["normal"], "height": 1.1, @@ -64202,14 +72086,21 @@ "catchRate": 100, "color": "purple", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 30, "tags": [], "formes": { "default": { "abilities": ["pressure"], "hiddenAbilities": ["infiltrator"], - "baseStats": { "attack": 92, "defense": 108, "hp": 50, "specialAttack": 92, "specialDefense": 108, "speed": 35 }, + "baseStats": { + "attack": 92, + "defense": 108, + "hp": 50, + "specialAttack": 92, + "specialDefense": 108, + "speed": 35 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["ghost", "dark"], "height": 1, @@ -64231,7 +72122,17 @@ { "name": "memento", "level": 43 }, { "name": "dark_pulse", "level": 49 } ], - "eggMoves": ["smokescreen", "nightmare", "destiny_bond", "pain_split", "imprison", "grudge", "shadow_sneak", "captivate", "foul_play"], + "eggMoves": [ + "smokescreen", + "nightmare", + "destiny_bond", + "pain_split", + "imprison", + "grudge", + "shadow_sneak", + "captivate", + "foul_play" + ], "tutorMoves": [], "machine": [ "hyper_beam", @@ -64283,14 +72184,21 @@ "catchRate": 255, "color": "black", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["thick_fat", "own_tempo"], "hiddenAbilities": ["gluttony"], - "baseStats": { "attack": 25, "defense": 35, "hp": 60, "specialAttack": 70, "specialDefense": 80, "speed": 60 }, + "baseStats": { + "attack": 25, + "defense": 35, + "hp": 60, + "specialAttack": 70, + "specialDefense": 80, + "speed": 60 + }, "evReward": { "specialDefense": 1 }, "types": ["psychic"], "height": 0.7, @@ -64314,7 +72222,19 @@ { "name": "psychic", "level": 44 }, { "name": "bounce", "level": 50 } ], - "eggMoves": ["whirlwind", "amnesia", "endure", "mirror_coat", "future_sight", "trick", "skill_swap", "extrasensory", "lucky_chant", "zen_headbutt", "simple_beam"], + "eggMoves": [ + "whirlwind", + "amnesia", + "endure", + "mirror_coat", + "future_sight", + "trick", + "skill_swap", + "extrasensory", + "lucky_chant", + "zen_headbutt", + "simple_beam" + ], "tutorMoves": [], "machine": [ "thunder_wave", @@ -64372,7 +72292,14 @@ "default": { "abilities": ["healer"], "hiddenAbilities": ["aroma_veil"], - "baseStats": { "attack": 52, "defense": 60, "hp": 78, "specialAttack": 63, "specialDefense": 65, "speed": 23 }, + "baseStats": { + "attack": 52, + "defense": 60, + "hp": 78, + "specialAttack": 63, + "specialDefense": 65, + "speed": 23 + }, "evReward": { "hp": 1 }, "types": ["fairy"], "height": 0.2, @@ -64436,7 +72363,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "squirtle": { "species": "squirtle", @@ -64454,7 +72381,14 @@ "default": { "abilities": ["torrent"], "hiddenAbilities": ["rain_dish"], - "baseStats": { "attack": 48, "defense": 65, "hp": 44, "specialAttack": 50, "specialDefense": 64, "speed": 43 }, + "baseStats": { + "attack": 48, + "defense": 65, + "hp": 44, + "specialAttack": 50, + "specialDefense": 64, + "speed": 43 + }, "evReward": { "defense": 1 }, "types": ["water"], "height": 0.5, @@ -64539,14 +72473,21 @@ "catchRate": 45, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["intimidate", "frisk"], "hiddenAbilities": ["sap_sipper"], - "baseStats": { "attack": 95, "defense": 62, "hp": 73, "specialAttack": 85, "specialDefense": 65, "speed": 85 }, + "baseStats": { + "attack": 95, + "defense": 62, + "hp": 73, + "specialAttack": 85, + "specialDefense": 65, + "speed": 85 + }, "evReward": { "attack": 1 }, "types": ["normal"], "height": 1.4, @@ -64571,7 +72512,19 @@ { "name": "captivate", "level": 50 }, { "name": "me_first", "level": 55 } ], - "eggMoves": ["double_kick", "thrash", "bite", "disable", "rage", "spite", "megahorn", "mud_sport", "extrasensory", "me_first", "zen_headbutt"], + "eggMoves": [ + "double_kick", + "thrash", + "bite", + "disable", + "rage", + "spite", + "megahorn", + "mud_sport", + "extrasensory", + "me_first", + "zen_headbutt" + ], "tutorMoves": [], "machine": [ "roar", @@ -64635,7 +72588,14 @@ "default": { "abilities": ["intimidate"], "hiddenAbilities": ["reckless"], - "baseStats": { "attack": 120, "defense": 70, "hp": 85, "specialAttack": 50, "specialDefense": 60, "speed": 100 }, + "baseStats": { + "attack": 120, + "defense": 70, + "hp": 85, + "specialAttack": 50, + "specialDefense": 60, + "speed": 100 + }, "evReward": { "attack": 3 }, "types": ["normal", "flying"], "height": 1.2, @@ -64712,7 +72672,14 @@ "default": { "abilities": ["intimidate"], "hiddenAbilities": ["reckless"], - "baseStats": { "attack": 75, "defense": 50, "hp": 55, "specialAttack": 40, "specialDefense": 40, "speed": 80 }, + "baseStats": { + "attack": 75, + "defense": 50, + "hp": 55, + "specialAttack": 40, + "specialDefense": 40, + "speed": 80 + }, "evReward": { "speed": 2 }, "types": ["normal", "flying"], "height": 0.6, @@ -64784,7 +72751,14 @@ "default": { "abilities": ["keen_eye"], "hiddenAbilities": ["reckless"], - "baseStats": { "attack": 55, "defense": 30, "hp": 40, "specialAttack": 30, "specialDefense": 30, "speed": 60 }, + "baseStats": { + "attack": 55, + "defense": 30, + "hp": 40, + "specialAttack": 30, + "specialDefense": 30, + "speed": 60 + }, "evReward": { "speed": 1 }, "types": ["normal", "flying"], "height": 0.3, @@ -64805,7 +72779,21 @@ { "name": "brave_bird", "level": 37 }, { "name": "final_gambit", "level": 41 } ], - "eggMoves": ["sand_attack", "fury_attack", "double_edge", "mirror_move", "foresight", "detect", "steel_wing", "pursuit", "uproar", "revenge", "feather_dance", "astonish", "roost"], + "eggMoves": [ + "sand_attack", + "fury_attack", + "double_edge", + "mirror_move", + "foresight", + "detect", + "steel_wing", + "pursuit", + "uproar", + "revenge", + "feather_dance", + "astonish", + "roost" + ], "tutorMoves": [], "machine": [ "fly", @@ -64855,7 +72843,14 @@ "default": { "abilities": ["illuminate", "natural_cure"], "hiddenAbilities": ["analytic"], - "baseStats": { "attack": 75, "defense": 85, "hp": 60, "specialAttack": 100, "specialDefense": 85, "speed": 115 }, + "baseStats": { + "attack": 75, + "defense": 85, + "hp": 60, + "specialAttack": 100, + "specialDefense": 85, + "speed": 115 + }, "evReward": { "speed": 2 }, "types": ["water", "psychic"], "height": 1.1, @@ -64933,7 +72928,14 @@ "default": { "abilities": ["illuminate", "natural_cure"], "hiddenAbilities": ["analytic"], - "baseStats": { "attack": 45, "defense": 55, "hp": 30, "specialAttack": 70, "specialDefense": 55, "speed": 85 }, + "baseStats": { + "attack": 45, + "defense": 55, + "hp": 30, + "specialAttack": 70, + "specialDefense": 55, + "speed": 85 + }, "evReward": { "speed": 1 }, "types": ["water"], "height": 0.8, @@ -64999,7 +73001,9 @@ } } }, - "evolutions": [{ "species": "starmie", "method": "item", "data": "waterstone" }] + "evolutions": [ + { "species": "starmie", "method": "item", "data": "waterstone" } + ] }, "steelix": { "species": "steelix", @@ -65017,7 +73021,14 @@ "default": { "abilities": ["rock_head", "sturdy"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 85, "defense": 200, "hp": 75, "specialAttack": 55, "specialDefense": 65, "speed": 30 }, + "baseStats": { + "attack": 85, + "defense": 200, + "hp": 75, + "specialAttack": 55, + "specialDefense": 65, + "speed": 30 + }, "evReward": { "defense": 2 }, "types": ["steel", "ground"], "height": 9.2, @@ -65099,7 +73110,14 @@ "isMega": true, "abilities": ["sand_force"], "hiddenAbilities": [], - "baseStats": { "attack": 125, "defense": 230, "hp": 75, "specialAttack": 55, "specialDefense": 95, "speed": 30 }, + "baseStats": { + "attack": 125, + "defense": 230, + "hp": 75, + "specialAttack": 55, + "specialDefense": 95, + "speed": 30 + }, "evReward": { "defense": 2 }, "types": ["steel", "ground"], "height": 10.5, @@ -65189,14 +73207,21 @@ "catchRate": 120, "color": "purple", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["leaf_guard", "oblivious"], "hiddenAbilities": ["sweet_veil"], - "baseStats": { "attack": 40, "defense": 48, "hp": 52, "specialAttack": 40, "specialDefense": 48, "speed": 62 }, + "baseStats": { + "attack": 40, + "defense": 48, + "hp": 52, + "specialAttack": 40, + "specialDefense": 48, + "speed": 62 + }, "evReward": { "speed": 2 }, "types": ["grass"], "height": 0.7, @@ -65256,7 +73281,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "stoutland": { "species": "stoutland", @@ -65267,14 +73292,21 @@ "catchRate": 45, "color": "gray", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["intimidate", "sand_rush"], "hiddenAbilities": ["scrappy"], - "baseStats": { "attack": 110, "defense": 90, "hp": 85, "specialAttack": 45, "specialDefense": 90, "speed": 80 }, + "baseStats": { + "attack": 110, + "defense": 90, + "hp": 85, + "specialAttack": 45, + "specialDefense": 90, + "speed": 80 + }, "evReward": { "attack": 3 }, "types": ["normal"], "height": 1.2, @@ -65351,14 +73383,21 @@ "catchRate": 140, "color": "pink", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["fluffy", "klutz"], "hiddenAbilities": ["cute_charm"], - "baseStats": { "attack": 75, "defense": 50, "hp": 70, "specialAttack": 45, "specialDefense": 50, "speed": 50 }, + "baseStats": { + "attack": 75, + "defense": 50, + "hp": 70, + "specialAttack": 45, + "specialDefense": 50, + "speed": 50 + }, "evReward": { "attack": 1 }, "types": ["normal", "fighting"], "height": 0.5, @@ -65380,7 +73419,15 @@ { "name": "double_edge", "level": 46 }, { "name": "superpower", "level": 50 } ], - "eggMoves": ["ice_punch", "thunder_punch", "mega_kick", "endure", "force_palm", "wide_guard", "stomping_tantrum"], + "eggMoves": [ + "ice_punch", + "thunder_punch", + "mega_kick", + "endure", + "force_palm", + "wide_guard", + "stomping_tantrum" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -65418,7 +73465,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "stunfisk": { "species": "stunfisk", @@ -65429,14 +73476,21 @@ "catchRate": 75, "color": "brown", "genderDifference": false, - "eggGroups": ["water1", "indeterminate"], + "eggGroups": ["water1", "amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["static", "limber"], "hiddenAbilities": ["sand_veil"], - "baseStats": { "attack": 66, "defense": 84, "hp": 109, "specialAttack": 81, "specialDefense": 99, "speed": 32 }, + "baseStats": { + "attack": 66, + "defense": 84, + "hp": 109, + "specialAttack": 81, + "specialDefense": 99, + "speed": 32 + }, "evReward": { "hp": 2 }, "types": ["ground", "electric"], "height": 0.7, @@ -65464,7 +73518,20 @@ { "name": "flail", "level": 55 }, { "name": "fissure", "level": 61 } ], - "eggMoves": ["curse", "spite", "spark", "sleep_talk", "pain_split", "yawn", "astonish", "shock_wave", "me_first", "earth_power", "reflect_type", "eerie_impulse"], + "eggMoves": [ + "curse", + "spite", + "spark", + "sleep_talk", + "pain_split", + "yawn", + "astonish", + "shock_wave", + "me_first", + "earth_power", + "reflect_type", + "eerie_impulse" + ], "tutorMoves": [], "machine": [ "surf", @@ -65513,14 +73580,21 @@ "catchRate": 225, "color": "purple", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["stench", "aftermath"], "hiddenAbilities": ["keen_eye"], - "baseStats": { "attack": 63, "defense": 47, "hp": 63, "specialAttack": 41, "specialDefense": 41, "speed": 74 }, + "baseStats": { + "attack": 63, + "defense": 47, + "hp": 63, + "specialAttack": 41, + "specialDefense": 41, + "speed": 74 + }, "evReward": { "speed": 1 }, "types": ["poison", "dark"], "height": 0.4, @@ -65546,7 +73620,21 @@ { "name": "belch", "level": 43 }, { "name": "explosion", "level": 45 } ], - "eggMoves": ["double_edge", "leer", "haze", "smog", "scary_face", "pursuit", "iron_tail", "crunch", "astonish", "punishment", "flame_burst", "foul_play", "play_rough"], + "eggMoves": [ + "double_edge", + "leer", + "haze", + "smog", + "scary_face", + "pursuit", + "iron_tail", + "crunch", + "astonish", + "punishment", + "flame_burst", + "foul_play", + "play_rough" + ], "tutorMoves": [], "machine": [ "roar", @@ -65602,7 +73690,14 @@ "default": { "abilities": ["sturdy", "rock_head"], "hiddenAbilities": ["rattled"], - "baseStats": { "attack": 100, "defense": 115, "hp": 70, "specialAttack": 30, "specialDefense": 65, "speed": 30 }, + "baseStats": { + "attack": 100, + "defense": 115, + "hp": 70, + "specialAttack": 30, + "specialDefense": 65, + "speed": 30 + }, "evReward": { "defense": 2 }, "types": ["rock"], "height": 1.2, @@ -65633,7 +73728,17 @@ { "name": "hammer_arm", "level": 50 }, { "name": "head_smash", "level": 54 } ], - "eggMoves": ["headbutt", "harden", "defense_curl", "self_destruct", "curse", "endure", "rollout", "sand_tomb", "stealth_rock"], + "eggMoves": [ + "headbutt", + "harden", + "defense_curl", + "self_destruct", + "curse", + "endure", + "rollout", + "sand_tomb", + "stealth_rock" + ], "tutorMoves": [], "machine": [ "earthquake", @@ -65691,7 +73796,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": ["inner_focus"], - "baseStats": { "attack": 75, "defense": 115, "hp": 100, "specialAttack": 90, "specialDefense": 115, "speed": 85 }, + "baseStats": { + "attack": 75, + "defense": 115, + "hp": 100, + "specialAttack": 90, + "specialDefense": 115, + "speed": 85 + }, "evReward": { "defense": 1, "specialDefense": 2 }, "types": ["water"], "height": 2, @@ -65768,14 +73880,21 @@ "catchRate": 120, "color": "yellow", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "solar_power"], "hiddenAbilities": ["early_bird"], - "baseStats": { "attack": 75, "defense": 55, "hp": 75, "specialAttack": 105, "specialDefense": 85, "speed": 30 }, + "baseStats": { + "attack": 75, + "defense": 55, + "hp": 75, + "specialAttack": 105, + "specialDefense": 85, + "speed": 30 + }, "evReward": { "specialAttack": 2 }, "types": ["grass"], "height": 0.8, @@ -65847,14 +73966,21 @@ "catchRate": 235, "color": "yellow", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "solar_power"], "hiddenAbilities": ["early_bird"], - "baseStats": { "attack": 30, "defense": 30, "hp": 30, "specialAttack": 30, "specialDefense": 30, "speed": 30 }, + "baseStats": { + "attack": 30, + "defense": 30, + "hp": 30, + "specialAttack": 30, + "specialDefense": 30, + "speed": 30 + }, "evReward": { "specialAttack": 1 }, "types": ["grass"], "height": 0.3, @@ -65879,7 +74005,21 @@ { "name": "sunny_day", "level": 40 }, { "name": "seed_bomb", "level": 43 } ], - "eggMoves": ["leech_seed", "bide", "curse", "endure", "encore", "sweet_scent", "morning_sun", "nature_power", "helping_hand", "ingrain", "grass_whistle", "natural_gift", "grassy_terrain"], + "eggMoves": [ + "leech_seed", + "bide", + "curse", + "endure", + "encore", + "sweet_scent", + "morning_sun", + "nature_power", + "helping_hand", + "ingrain", + "grass_whistle", + "natural_gift", + "grassy_terrain" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -65910,7 +74050,9 @@ } } }, - "evolutions": [{ "species": "sunflora", "method": "item", "data": "sunstone" }] + "evolutions": [ + { "species": "sunflora", "method": "item", "data": "sunstone" } + ] }, "surskit": { "species": "surskit", @@ -65928,7 +74070,14 @@ "default": { "abilities": ["swift_swim"], "hiddenAbilities": ["rain_dish"], - "baseStats": { "attack": 30, "defense": 32, "hp": 40, "specialAttack": 50, "specialDefense": 52, "speed": 65 }, + "baseStats": { + "attack": 30, + "defense": 32, + "hp": 40, + "specialAttack": 50, + "specialDefense": 52, + "speed": 65 + }, "evReward": { "speed": 1 }, "types": ["bug", "water"], "height": 0.5, @@ -65948,7 +74097,20 @@ { "name": "baton_pass", "level": 35 }, { "name": "sticky_web", "level": 38 } ], - "eggMoves": ["hydro_pump", "psybeam", "mind_reader", "foresight", "endure", "signal_beam", "mud_shot", "bug_bite", "aqua_jet", "power_split", "fell_stinger", "lunge"], + "eggMoves": [ + "hydro_pump", + "psybeam", + "mind_reader", + "foresight", + "endure", + "signal_beam", + "mud_shot", + "bug_bite", + "aqua_jet", + "power_split", + "fell_stinger", + "lunge" + ], "tutorMoves": [], "machine": [ "ice_beam", @@ -65998,7 +74160,14 @@ "default": { "abilities": ["natural_cure"], "hiddenAbilities": ["cloud_nine"], - "baseStats": { "attack": 40, "defense": 60, "hp": 45, "specialAttack": 40, "specialDefense": 75, "speed": 50 }, + "baseStats": { + "attack": 40, + "defense": 60, + "hp": 45, + "specialAttack": 40, + "specialDefense": 75, + "speed": 50 + }, "evReward": { "specialDefense": 1 }, "types": ["normal", "flying"], "height": 0.4, @@ -66024,7 +74193,18 @@ { "name": "perish_song", "level": 42 }, { "name": "moonblast", "level": 46 } ], - "eggMoves": ["agility", "rage", "haze", "steel_wing", "pursuit", "feather_dance", "hyper_voice", "roost", "power_swap", "dragon_rush"], + "eggMoves": [ + "agility", + "rage", + "haze", + "steel_wing", + "pursuit", + "feather_dance", + "hyper_voice", + "roost", + "power_swap", + "dragon_rush" + ], "tutorMoves": [], "machine": [ "fly", @@ -66078,7 +74258,14 @@ "default": { "abilities": ["leaf_guard", "chlorophyll"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 63, "defense": 90, "hp": 55, "specialAttack": 50, "specialDefense": 80, "speed": 42 }, + "baseStats": { + "attack": 63, + "defense": 90, + "hp": 55, + "specialAttack": 50, + "specialDefense": 80, + "speed": 42 + }, "evReward": { "defense": 2 }, "types": ["bug", "grass"], "height": 0.5, @@ -66137,14 +74324,21 @@ "catchRate": 75, "color": "purple", "genderDifference": true, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["liquid_ooze", "sticky_hold"], "hiddenAbilities": ["gluttony"], - "baseStats": { "attack": 73, "defense": 83, "hp": 100, "specialAttack": 73, "specialDefense": 83, "speed": 55 }, + "baseStats": { + "attack": 73, + "defense": 83, + "hp": 100, + "specialAttack": 73, + "specialDefense": 83, + "speed": 55 + }, "evReward": { "hp": 2 }, "types": ["poison"], "height": 1.7, @@ -66232,7 +74426,14 @@ "default": { "abilities": ["torrent"], "hiddenAbilities": ["damp"], - "baseStats": { "attack": 110, "defense": 90, "hp": 100, "specialAttack": 85, "specialDefense": 90, "speed": 60 }, + "baseStats": { + "attack": 110, + "defense": 90, + "hp": 100, + "specialAttack": 85, + "specialDefense": 90, + "speed": 60 + }, "evReward": { "attack": 3 }, "types": ["water", "ground"], "height": 1.5, @@ -66305,7 +74506,14 @@ "isMega": true, "abilities": ["swift_swim"], "hiddenAbilities": [], - "baseStats": { "attack": 150, "defense": 110, "hp": 100, "specialAttack": 95, "specialDefense": 110, "speed": 70 }, + "baseStats": { + "attack": 150, + "defense": 110, + "hp": 100, + "specialAttack": 95, + "specialDefense": 110, + "speed": 70 + }, "evReward": { "attack": 3 }, "types": ["water", "ground"], "height": 1.9, @@ -66393,7 +74601,14 @@ "default": { "abilities": ["keen_eye", "big_pecks"], "hiddenAbilities": ["hydration"], - "baseStats": { "attack": 87, "defense": 63, "hp": 75, "specialAttack": 87, "specialDefense": 63, "speed": 98 }, + "baseStats": { + "attack": 87, + "defense": 63, + "hp": 75, + "specialAttack": 87, + "specialDefense": 63, + "speed": 98 + }, "evReward": { "speed": 2 }, "types": ["water", "flying"], "height": 1.3, @@ -66471,7 +74686,14 @@ "default": { "abilities": ["guts"], "hiddenAbilities": ["scrappy"], - "baseStats": { "attack": 85, "defense": 60, "hp": 60, "specialAttack": 75, "specialDefense": 50, "speed": 125 }, + "baseStats": { + "attack": 85, + "defense": 60, + "hp": 60, + "specialAttack": 75, + "specialDefense": 50, + "speed": 125 + }, "evReward": { "speed": 2 }, "types": ["normal", "flying"], "height": 0.7, @@ -66543,14 +74765,21 @@ "catchRate": 225, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["oblivious", "snow_cloak"], "hiddenAbilities": ["thick_fat"], - "baseStats": { "attack": 50, "defense": 40, "hp": 50, "specialAttack": 30, "specialDefense": 30, "speed": 50 }, + "baseStats": { + "attack": 50, + "defense": 40, + "hp": 50, + "specialAttack": 30, + "specialDefense": 30, + "speed": 50 + }, "evReward": { "attack": 1 }, "types": ["ice", "ground"], "height": 0.4, @@ -66574,7 +74803,21 @@ { "name": "blizzard", "level": 44 }, { "name": "amnesia", "level": 48 } ], - "eggMoves": ["body_slam", "take_down", "double_edge", "bite", "fissure", "curse", "ancient_power", "icicle_spear", "mud_shot", "avalanche", "stealth_rock", "icicle_crash", "freeze_dry"], + "eggMoves": [ + "body_slam", + "take_down", + "double_edge", + "bite", + "fissure", + "curse", + "ancient_power", + "icicle_spear", + "mud_shot", + "avalanche", + "stealth_rock", + "icicle_crash", + "freeze_dry" + ], "tutorMoves": [], "machine": [ "roar", @@ -66626,7 +74869,14 @@ "default": { "abilities": ["sweet_veil"], "hiddenAbilities": ["unburden"], - "baseStats": { "attack": 48, "defense": 66, "hp": 62, "specialAttack": 59, "specialDefense": 57, "speed": 49 }, + "baseStats": { + "attack": 48, + "defense": 66, + "hp": 62, + "specialAttack": 59, + "specialDefense": 57, + "speed": 49 + }, "evReward": { "defense": 1 }, "types": ["fairy"], "height": 0.4, @@ -66687,7 +74937,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "swoobat": { "species": "swoobat", @@ -66698,14 +74948,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["flying", "ground"], + "eggGroups": ["flying", "field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["unaware", "klutz"], "hiddenAbilities": ["simple"], - "baseStats": { "attack": 57, "defense": 55, "hp": 67, "specialAttack": 77, "specialDefense": 55, "speed": 114 }, + "baseStats": { + "attack": 57, + "defense": 55, + "hp": 67, + "specialAttack": 77, + "specialDefense": 55, + "speed": 114 + }, "evReward": { "speed": 2 }, "types": ["psychic", "flying"], "height": 0.9, @@ -66791,14 +75048,21 @@ "catchRate": 45, "color": "pink", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 35, "tags": [], "formes": { "default": { "abilities": ["cute_charm"], "hiddenAbilities": ["pixilate"], - "baseStats": { "attack": 65, "defense": 65, "hp": 95, "specialAttack": 110, "specialDefense": 130, "speed": 60 }, + "baseStats": { + "attack": 65, + "defense": 65, + "hp": 95, + "specialAttack": 110, + "specialDefense": 130, + "speed": 60 + }, "evReward": { "specialDefense": 2 }, "types": ["fairy"], "height": 1, @@ -66860,7 +75124,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "taillow": { "species": "taillow", @@ -66878,7 +75142,14 @@ "default": { "abilities": ["guts"], "hiddenAbilities": ["scrappy"], - "baseStats": { "attack": 55, "defense": 30, "hp": 40, "specialAttack": 30, "specialDefense": 30, "speed": 85 }, + "baseStats": { + "attack": 55, + "defense": 30, + "hp": 40, + "specialAttack": 30, + "specialDefense": 30, + "speed": 85 + }, "evReward": { "speed": 1 }, "types": ["normal", "flying"], "height": 0.3, @@ -66900,7 +75171,21 @@ { "name": "brave_bird", "level": 41 }, { "name": "reversal", "level": 45 } ], - "eggMoves": ["whirlwind", "supersonic", "rage", "mirror_move", "sky_attack", "steel_wing", "pursuit", "refresh", "roost", "brave_bird", "defog", "hurricane", "boomburst"], + "eggMoves": [ + "whirlwind", + "supersonic", + "rage", + "mirror_move", + "sky_attack", + "steel_wing", + "pursuit", + "refresh", + "roost", + "brave_bird", + "defog", + "hurricane", + "boomburst" + ], "tutorMoves": [], "machine": [ "fly", @@ -66950,7 +75235,14 @@ "default": { "abilities": ["flame_body"], "hiddenAbilities": ["gale_wings"], - "baseStats": { "attack": 81, "defense": 71, "hp": 78, "specialAttack": 74, "specialDefense": 69, "speed": 126 }, + "baseStats": { + "attack": 81, + "defense": 71, + "hp": 78, + "specialAttack": 74, + "specialDefense": 69, + "speed": 126 + }, "evReward": { "speed": 3 }, "types": ["fire", "flying"], "height": 1.2, @@ -67021,7 +75313,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "tangela": { "species": "tangela", @@ -67032,14 +75324,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "leaf_guard"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 55, "defense": 115, "hp": 65, "specialAttack": 100, "specialDefense": 40, "speed": 60 }, + "baseStats": { + "attack": 55, + "defense": 115, + "hp": 65, + "specialAttack": 100, + "specialDefense": 40, + "speed": 60 + }, "evReward": { "defense": 1 }, "types": ["grass"], "height": 1, @@ -67067,7 +75366,20 @@ { "name": "grassy_terrain", "level": 48 }, { "name": "power_whip", "level": 50 } ], - "eggMoves": ["mega_drain", "leech_seed", "confusion", "amnesia", "flail", "giga_drain", "nature_power", "endeavor", "natural_gift", "power_swap", "leaf_storm", "rage_powder"], + "eggMoves": [ + "mega_drain", + "leech_seed", + "confusion", + "amnesia", + "flail", + "giga_drain", + "nature_power", + "endeavor", + "natural_gift", + "power_swap", + "leaf_storm", + "rage_powder" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -67102,7 +75414,9 @@ } } }, - "evolutions": [{ "species": "tangrowth", "method": "hasmove", "data": "ancientpower" }] + "evolutions": [ + { "species": "tangrowth", "method": "hasmove", "data": "ancientpower" } + ] }, "tangrowth": { "species": "tangrowth", @@ -67113,14 +75427,21 @@ "catchRate": 30, "color": "blue", "genderDifference": true, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "leaf_guard"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 100, "defense": 125, "hp": 100, "specialAttack": 110, "specialDefense": 50, "speed": 50 }, + "baseStats": { + "attack": 100, + "defense": 125, + "hp": 100, + "specialAttack": 110, + "specialDefense": 50, + "speed": 50 + }, "evReward": { "defense": 2 }, "types": ["grass"], "height": 2, @@ -67213,7 +75534,14 @@ "default": { "abilities": ["grassy_surge"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 130, "defense": 115, "hp": 70, "specialAttack": 85, "specialDefense": 95, "speed": 75 }, + "baseStats": { + "attack": 130, + "defense": 115, + "hp": 70, + "specialAttack": 85, + "specialDefense": 95, + "speed": 75 + }, "evReward": { "attack": 3 }, "types": ["grass", "fairy"], "height": 1.9, @@ -67290,7 +75618,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "tapu_fini": { "species": "tapu_fini", @@ -67308,7 +75636,14 @@ "default": { "abilities": ["misty_surge"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 75, "defense": 115, "hp": 70, "specialAttack": 95, "specialDefense": 130, "speed": 85 }, + "baseStats": { + "attack": 75, + "defense": 115, + "hp": 70, + "specialAttack": 95, + "specialDefense": 130, + "speed": 85 + }, "evReward": { "specialDefense": 3 }, "types": ["water", "fairy"], "height": 1.3, @@ -67377,7 +75712,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "tapu_koko": { "species": "tapu_koko", @@ -67395,7 +75730,14 @@ "default": { "abilities": ["electric_surge"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 115, "defense": 85, "hp": 70, "specialAttack": 95, "specialDefense": 75, "speed": 130 }, + "baseStats": { + "attack": 115, + "defense": 85, + "hp": 70, + "specialAttack": 95, + "specialDefense": 75, + "speed": 130 + }, "evReward": { "speed": 3 }, "types": ["electric", "fairy"], "height": 1.8, @@ -67472,7 +75814,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "tapu_lele": { "species": "tapu_lele", @@ -67490,7 +75832,14 @@ "default": { "abilities": ["psychic_surge"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 85, "defense": 75, "hp": 70, "specialAttack": 130, "specialDefense": 115, "speed": 95 }, + "baseStats": { + "attack": 85, + "defense": 75, + "hp": 70, + "specialAttack": 130, + "specialDefense": 115, + "speed": 95 + }, "evReward": { "specialAttack": 3 }, "types": ["psychic", "fairy"], "height": 1.2, @@ -67561,7 +75910,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "tauros": { "species": "tauros", @@ -67572,14 +75921,21 @@ "catchRate": 45, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["intimidate", "anger_point"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 100, "defense": 95, "hp": 75, "specialAttack": 40, "specialDefense": 70, "speed": 110 }, + "baseStats": { + "attack": 100, + "defense": 95, + "hp": 75, + "specialAttack": 40, + "specialDefense": 70, + "speed": 110 + }, "evReward": { "attack": 1, "speed": 1 }, "types": ["normal"], "height": 1.4, @@ -67657,14 +76013,21 @@ "catchRate": 120, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["pickup", "quick_feet"], "hiddenAbilities": ["honey_gather"], - "baseStats": { "attack": 80, "defense": 50, "hp": 60, "specialAttack": 50, "specialDefense": 50, "speed": 40 }, + "baseStats": { + "attack": 80, + "defense": 50, + "hp": 60, + "specialAttack": 50, + "specialDefense": 50, + "speed": 40 + }, "evReward": { "attack": 1 }, "types": ["normal"], "height": 0.6, @@ -67763,7 +76126,14 @@ "default": { "abilities": ["clear_body", "liquid_ooze"], "hiddenAbilities": ["rain_dish"], - "baseStats": { "attack": 40, "defense": 35, "hp": 40, "specialAttack": 50, "specialDefense": 100, "speed": 70 }, + "baseStats": { + "attack": 40, + "defense": 35, + "hp": 40, + "specialAttack": 50, + "specialDefense": 100, + "speed": 70 + }, "evReward": { "specialDefense": 1 }, "types": ["water", "poison"], "height": 0.9, @@ -67789,7 +76159,19 @@ { "name": "hydro_pump", "level": 46 }, { "name": "wring_out", "level": 49 } ], - "eggMoves": ["aurora_beam", "confuse_ray", "haze", "bubble", "rapid_spin", "mirror_coat", "knock_off", "tickle", "muddy_water", "acupressure", "aqua_ring"], + "eggMoves": [ + "aurora_beam", + "confuse_ray", + "haze", + "bubble", + "rapid_spin", + "mirror_coat", + "knock_off", + "tickle", + "muddy_water", + "acupressure", + "aqua_ring" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -67846,7 +76228,14 @@ "default": { "abilities": ["clear_body", "liquid_ooze"], "hiddenAbilities": ["rain_dish"], - "baseStats": { "attack": 70, "defense": 65, "hp": 80, "specialAttack": 80, "specialDefense": 120, "speed": 100 }, + "baseStats": { + "attack": 70, + "defense": 65, + "hp": 80, + "specialAttack": 80, + "specialDefense": 120, + "speed": 100 + }, "evReward": { "specialDefense": 2 }, "types": ["water", "poison"], "height": 1.6, @@ -67929,14 +76318,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["thick_fat"], - "baseStats": { "attack": 63, "defense": 45, "hp": 65, "specialAttack": 45, "specialDefense": 45, "speed": 45 }, + "baseStats": { + "attack": 63, + "defense": 45, + "hp": 65, + "specialAttack": 45, + "specialDefense": 45, + "speed": 45 + }, "evReward": { "hp": 1 }, "types": ["fire"], "height": 0.5, @@ -67960,7 +76356,19 @@ { "name": "roar", "level": 39 }, { "name": "flare_blitz", "level": 43 } ], - "eggMoves": ["body_slam", "thrash", "curse", "sleep_talk", "magnitude", "superpower", "yawn", "endeavor", "covet", "sucker_punch", "heavy_slam"], + "eggMoves": [ + "body_slam", + "thrash", + "curse", + "sleep_talk", + "magnitude", + "superpower", + "yawn", + "endeavor", + "covet", + "sucker_punch", + "heavy_slam" + ], "tutorMoves": ["fire_pledge"], "machine": [ "roar", @@ -68015,7 +76423,14 @@ "default": { "abilities": ["justified"], "hiddenAbilities": [], - "baseStats": { "attack": 129, "defense": 90, "hp": 91, "specialAttack": 72, "specialDefense": 90, "speed": 108 }, + "baseStats": { + "attack": 129, + "defense": 90, + "hp": 91, + "specialAttack": 72, + "specialDefense": 90, + "speed": 108 + }, "evReward": { "attack": 3 }, "types": ["rock", "fighting"], "height": 1.9, @@ -68094,14 +76509,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["guts", "inner_focus"], "hiddenAbilities": ["mold_breaker"], - "baseStats": { "attack": 100, "defense": 85, "hp": 120, "specialAttack": 30, "specialDefense": 85, "speed": 45 }, + "baseStats": { + "attack": 100, + "defense": 85, + "hp": 120, + "specialAttack": 30, + "specialDefense": 85, + "speed": 45 + }, "evReward": { "hp": 2 }, "types": ["fighting"], "height": 1.3, @@ -68184,7 +76606,14 @@ "default": { "abilities": ["prankster"], "hiddenAbilities": ["defiant"], - "baseStats": { "attack": 115, "defense": 70, "hp": 79, "specialAttack": 125, "specialDefense": 80, "speed": 111 }, + "baseStats": { + "attack": 115, + "defense": 70, + "hp": 79, + "specialAttack": 125, + "specialDefense": 80, + "speed": 111 + }, "evReward": { "attack": 3 }, "types": ["electric", "flying"], "height": 1.5, @@ -68267,7 +76696,14 @@ "therian": { "abilities": ["volt_absorb"], "hiddenAbilities": [], - "baseStats": { "attack": 105, "defense": 70, "hp": 79, "specialAttack": 145, "specialDefense": 80, "speed": 101 }, + "baseStats": { + "attack": 105, + "defense": 70, + "hp": 79, + "specialAttack": 145, + "specialDefense": 80, + "speed": 101 + }, "evReward": { "specialAttack": 3 }, "types": ["electric", "flying"], "height": 3, @@ -68358,14 +76794,21 @@ "catchRate": 180, "color": "gray", "genderDifference": false, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["guts", "sheer_force"], "hiddenAbilities": ["iron_fist"], - "baseStats": { "attack": 80, "defense": 55, "hp": 75, "specialAttack": 25, "specialDefense": 35, "speed": 35 }, + "baseStats": { + "attack": 80, + "defense": 55, + "hp": 75, + "specialAttack": 25, + "specialDefense": 35, + "speed": 35 + }, "evReward": { "attack": 1 }, "types": ["fighting"], "height": 0.6, @@ -68390,7 +76833,19 @@ { "name": "focus_punch", "level": 46 }, { "name": "superpower", "level": 49 } ], - "eggMoves": ["comet_punch", "counter", "reversal", "mach_punch", "foresight", "detect", "endure", "smelling_salts", "force_palm", "drain_punch", "wide_guard"], + "eggMoves": [ + "comet_punch", + "counter", + "reversal", + "mach_punch", + "foresight", + "detect", + "endure", + "smelling_salts", + "force_palm", + "drain_punch", + "wide_guard" + ], "tutorMoves": [], "machine": [ "toxic", @@ -68447,7 +76902,14 @@ "default": { "abilities": ["solid_rock", "sturdy"], "hiddenAbilities": ["swift_swim"], - "baseStats": { "attack": 78, "defense": 103, "hp": 54, "specialAttack": 53, "specialDefense": 45, "speed": 22 }, + "baseStats": { + "attack": 78, + "defense": 103, + "hp": 54, + "specialAttack": 53, + "specialDefense": 45, + "speed": 22 + }, "evReward": { "defense": 1 }, "types": ["water", "rock"], "height": 0.7, @@ -68474,7 +76936,19 @@ { "name": "rain_dance", "level": 48 }, { "name": "hydro_pump", "level": 50 } ], - "eggMoves": ["slam", "body_slam", "rock_throw", "bide", "flail", "whirlpool", "knock_off", "iron_defense", "water_pulse", "guard_swap", "liquidation"], + "eggMoves": [ + "slam", + "body_slam", + "rock_throw", + "bide", + "flail", + "whirlpool", + "knock_off", + "iron_defense", + "water_pulse", + "guard_swap", + "liquidation" + ], "tutorMoves": [], "machine": [ "surf", @@ -68521,14 +76995,21 @@ "catchRate": 180, "color": "gray", "genderDifference": false, - "eggGroups": ["ground", "fairy"], + "eggGroups": ["field", "fairy"], "eggCycles": 10, "tags": [], "formes": { "default": { "abilities": ["iron_barbs", "lightning_rod"], "hiddenAbilities": ["sturdy"], - "baseStats": { "attack": 98, "defense": 63, "hp": 65, "specialAttack": 40, "specialDefense": 73, "speed": 96 }, + "baseStats": { + "attack": 98, + "defense": 63, + "hp": 65, + "specialAttack": 40, + "specialDefense": 73, + "speed": 96 + }, "evReward": { "attack": 2 }, "types": ["electric", "steel"], "height": 0.3, @@ -68552,7 +77033,17 @@ { "name": "spiky_shield", "level": 49 }, { "name": "fell_stinger", "level": 53 } ], - "eggMoves": ["twineedle", "flail", "reversal", "present", "encore", "fake_out", "wish", "tickle", "disarming_voice"], + "eggMoves": [ + "twineedle", + "flail", + "reversal", + "present", + "encore", + "fake_out", + "wish", + "tickle", + "disarming_voice" + ], "tutorMoves": [], "machine": [ "thunderbolt", @@ -68590,7 +77081,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "togekiss": { "species": "togekiss", @@ -68608,7 +77099,14 @@ "default": { "abilities": ["hustle", "serene_grace"], "hiddenAbilities": ["super_luck"], - "baseStats": { "attack": 50, "defense": 95, "hp": 85, "specialAttack": 120, "specialDefense": 115, "speed": 80 }, + "baseStats": { + "attack": 50, + "defense": 95, + "hp": 85, + "specialAttack": 120, + "specialDefense": 115, + "speed": 80 + }, "evReward": { "specialAttack": 2, "specialDefense": 1 }, "types": ["fairy", "flying"], "height": 1.5, @@ -68688,7 +77186,14 @@ "default": { "abilities": ["hustle", "serene_grace"], "hiddenAbilities": ["super_luck"], - "baseStats": { "attack": 20, "defense": 65, "hp": 35, "specialAttack": 40, "specialDefense": 65, "speed": 20 }, + "baseStats": { + "attack": 20, + "defense": 65, + "hp": 35, + "specialAttack": 40, + "specialDefense": 65, + "speed": 20 + }, "evReward": { "specialDefense": 1 }, "types": ["fairy"], "height": 0.3, @@ -68712,7 +77217,20 @@ { "name": "last_resort", "level": 49 }, { "name": "after_you", "level": 53 } ], - "eggMoves": ["peck", "mirror_move", "foresight", "present", "morning_sun", "future_sight", "secret_power", "extrasensory", "psycho_shift", "lucky_chant", "nasty_plot", "stored_power"], + "eggMoves": [ + "peck", + "mirror_move", + "foresight", + "present", + "morning_sun", + "future_sight", + "secret_power", + "extrasensory", + "psycho_shift", + "lucky_chant", + "nasty_plot", + "stored_power" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -68771,7 +77289,14 @@ "default": { "abilities": ["hustle", "serene_grace"], "hiddenAbilities": ["super_luck"], - "baseStats": { "attack": 40, "defense": 85, "hp": 55, "specialAttack": 80, "specialDefense": 105, "speed": 40 }, + "baseStats": { + "attack": 40, + "defense": 85, + "hp": 55, + "specialAttack": 80, + "specialDefense": 105, + "speed": 40 + }, "evReward": { "specialDefense": 2 }, "types": ["fairy", "flying"], "height": 0.6, @@ -68848,7 +77373,9 @@ } } }, - "evolutions": [{ "species": "togekiss", "method": "item", "data": "shinystone" }] + "evolutions": [ + { "species": "togekiss", "method": "item", "data": "shinystone" } + ] }, "torchic": { "species": "torchic", @@ -68859,14 +77386,21 @@ "catchRate": 45, "color": "red", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["speed_boost"], - "baseStats": { "attack": 60, "defense": 40, "hp": 45, "specialAttack": 70, "specialDefense": 50, "speed": 45 }, + "baseStats": { + "attack": 60, + "defense": 40, + "hp": 45, + "specialAttack": 70, + "specialDefense": 50, + "speed": 45 + }, "evReward": { "specialAttack": 1 }, "types": ["fire"], "height": 0.4, @@ -68948,14 +77482,21 @@ "catchRate": 90, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["white_smoke", "drought"], "hiddenAbilities": ["shell_armor"], - "baseStats": { "attack": 85, "defense": 140, "hp": 70, "specialAttack": 85, "specialDefense": 70, "speed": 20 }, + "baseStats": { + "attack": 85, + "defense": 140, + "hp": 70, + "specialAttack": 85, + "specialDefense": 70, + "speed": 20 + }, "evReward": { "defense": 2 }, "types": ["fire"], "height": 0.5, @@ -68982,7 +77523,17 @@ { "name": "shell_smash", "level": 47 }, { "name": "inferno", "level": 50 } ], - "eggMoves": ["fissure", "skull_bash", "endure", "sleep_talk", "superpower", "yawn", "eruption", "flame_burst", "clear_smog"], + "eggMoves": [ + "fissure", + "skull_bash", + "endure", + "sleep_talk", + "superpower", + "yawn", + "eruption", + "flame_burst", + "clear_smog" + ], "tutorMoves": [], "machine": [ "flamethrower", @@ -69040,7 +77591,14 @@ "default": { "abilities": ["prankster"], "hiddenAbilities": ["defiant"], - "baseStats": { "attack": 115, "defense": 70, "hp": 79, "specialAttack": 125, "specialDefense": 80, "speed": 111 }, + "baseStats": { + "attack": 115, + "defense": 70, + "hp": 79, + "specialAttack": 125, + "specialDefense": 80, + "speed": 111 + }, "evReward": { "attack": 3 }, "types": ["flying"], "height": 1.5, @@ -69117,7 +77675,14 @@ "therian": { "abilities": ["regenerator"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 80, "hp": 79, "specialAttack": 110, "specialDefense": 90, "speed": 121 }, + "baseStats": { + "attack": 100, + "defense": 80, + "hp": 79, + "specialAttack": 110, + "specialDefense": 90, + "speed": 121 + }, "evReward": { "speed": 3 }, "types": ["flying"], "height": 1.4, @@ -69203,14 +77768,21 @@ "catchRate": 45, "color": "red", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["intimidate"], - "baseStats": { "attack": 85, "defense": 50, "hp": 65, "specialAttack": 80, "specialDefense": 50, "speed": 90 }, + "baseStats": { + "attack": 85, + "defense": 50, + "hp": 65, + "specialAttack": 80, + "specialDefense": 50, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["fire"], "height": 0.7, @@ -69274,7 +77846,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "torterra": { "species": "torterra", @@ -69285,14 +77857,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["monster", "plant"], + "eggGroups": ["monster", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["shell_armor"], - "baseStats": { "attack": 109, "defense": 105, "hp": 95, "specialAttack": 75, "specialDefense": 85, "speed": 56 }, + "baseStats": { + "attack": 109, + "defense": 105, + "hp": 95, + "specialAttack": 75, + "specialDefense": 85, + "speed": 56 + }, "evReward": { "attack": 2, "defense": 1 }, "types": ["grass", "ground"], "height": 2.2, @@ -69320,7 +77899,7 @@ { "name": "leaf_storm", "level": 57 } ], "eggMoves": [], - "tutorMoves": ["frenzy_plant", "grass_pledge"], + "tutorMoves": ["frenzy_grass", "grass_pledge"], "machine": [ "swords_dance", "roar", @@ -69379,7 +77958,14 @@ "default": { "abilities": ["torrent"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 65, "defense": 64, "hp": 50, "specialAttack": 44, "specialDefense": 48, "speed": 43 }, + "baseStats": { + "attack": 65, + "defense": 64, + "hp": 50, + "specialAttack": 44, + "specialDefense": 48, + "speed": 43 + }, "evReward": { "attack": 1 }, "types": ["water"], "height": 0.6, @@ -69475,7 +78061,14 @@ "default": { "abilities": ["keen_eye", "skill_link"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 120, "defense": 75, "hp": 80, "specialAttack": 75, "specialDefense": 75, "speed": 60 }, + "baseStats": { + "attack": 120, + "defense": 75, + "hp": 80, + "specialAttack": 75, + "specialDefense": 75, + "speed": 60 + }, "evReward": { "attack": 3 }, "types": ["normal", "flying"], "height": 1.1, @@ -69539,7 +78132,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "toxapex": { "species": "toxapex", @@ -69557,7 +78150,14 @@ "default": { "abilities": ["merciless", "limber"], "hiddenAbilities": ["regenerator"], - "baseStats": { "attack": 63, "defense": 152, "hp": 50, "specialAttack": 53, "specialDefense": 142, "speed": 35 }, + "baseStats": { + "attack": 63, + "defense": 152, + "hp": 50, + "specialAttack": 53, + "specialDefense": 142, + "speed": 35 + }, "evReward": { "defense": 2 }, "types": ["poison", "water"], "height": 0.7, @@ -69622,7 +78222,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "toxicroak": { "species": "toxicroak", @@ -69633,14 +78233,21 @@ "catchRate": 75, "color": "blue", "genderDifference": true, - "eggGroups": ["humanshape"], + "eggGroups": ["humanlike"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["anticipation", "dry_skin"], "hiddenAbilities": ["poison_touch"], - "baseStats": { "attack": 106, "defense": 65, "hp": 83, "specialAttack": 86, "specialDefense": 65, "speed": 85 }, + "baseStats": { + "attack": 106, + "defense": 65, + "hp": 83, + "specialAttack": 86, + "specialDefense": 65, + "speed": 85 + }, "evReward": { "attack": 2 }, "types": ["poison", "fighting"], "height": 1.3, @@ -69735,7 +78342,14 @@ "default": { "abilities": ["big_pecks", "super_luck"], "hiddenAbilities": ["rivalry"], - "baseStats": { "attack": 77, "defense": 62, "hp": 62, "specialAttack": 50, "specialDefense": 42, "speed": 65 }, + "baseStats": { + "attack": 77, + "defense": 62, + "hp": 62, + "specialAttack": 50, + "specialDefense": 42, + "speed": 65 + }, "evReward": { "attack": 2 }, "types": ["normal", "flying"], "height": 0.6, @@ -69812,7 +78426,14 @@ "default": { "abilities": ["hyper_cutter", "arena_trap"], "hiddenAbilities": ["sheer_force"], - "baseStats": { "attack": 100, "defense": 45, "hp": 45, "specialAttack": 45, "specialDefense": 45, "speed": 10 }, + "baseStats": { + "attack": 100, + "defense": 45, + "hp": 45, + "specialAttack": 45, + "specialDefense": 45, + "speed": 10 + }, "evReward": { "attack": 1 }, "types": ["ground"], "height": 0.7, @@ -69838,7 +78459,18 @@ { "name": "hyper_beam", "level": 43 }, { "name": "fissure", "level": 47 } ], - "eggMoves": ["gust", "quick_attack", "focus_energy", "flail", "endure", "fury_cutter", "signal_beam", "mud_shot", "earth_power", "bug_bite"], + "eggMoves": [ + "gust", + "quick_attack", + "focus_energy", + "flail", + "endure", + "fury_cutter", + "signal_beam", + "mud_shot", + "earth_power", + "bug_bite" + ], "tutorMoves": [], "machine": [ "hyper_beam", @@ -69886,7 +78518,14 @@ "default": { "abilities": ["overgrow"], "hiddenAbilities": ["unburden"], - "baseStats": { "attack": 45, "defense": 35, "hp": 40, "specialAttack": 65, "specialDefense": 55, "speed": 70 }, + "baseStats": { + "attack": 45, + "defense": 35, + "hp": 40, + "specialAttack": 65, + "specialDefense": 55, + "speed": 70 + }, "evReward": { "speed": 1 }, "types": ["grass"], "height": 0.5, @@ -69973,14 +78612,21 @@ "catchRate": 60, "color": "brown", "genderDifference": false, - "eggGroups": ["plant", "indeterminate"], + "eggGroups": ["grass", "amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["natural_cure", "frisk"], "hiddenAbilities": ["harvest"], - "baseStats": { "attack": 110, "defense": 76, "hp": 85, "specialAttack": 65, "specialDefense": 82, "speed": 56 }, + "baseStats": { + "attack": 110, + "defense": 76, + "hp": 85, + "specialAttack": 65, + "specialDefense": 82, + "speed": 56 + }, "evReward": { "attack": 2 }, "types": ["ghost", "grass"], "height": 1.5, @@ -70055,7 +78701,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "tropius": { "species": "tropius", @@ -70066,14 +78712,21 @@ "catchRate": 200, "color": "green", "genderDifference": false, - "eggGroups": ["monster", "plant"], + "eggGroups": ["monster", "grass"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["chlorophyll", "solar_power"], "hiddenAbilities": ["harvest"], - "baseStats": { "attack": 68, "defense": 83, "hp": 99, "specialAttack": 72, "specialDefense": 87, "speed": 51 }, + "baseStats": { + "attack": 68, + "defense": 83, + "hp": 99, + "specialAttack": 72, + "specialDefense": 87, + "speed": 51 + }, "evReward": { "hp": 2 }, "types": ["grass", "flying"], "height": 2, @@ -70099,7 +78752,20 @@ { "name": "solar_beam", "level": 56 }, { "name": "leaf_storm", "level": 61 } ], - "eggMoves": ["razor_wind", "slam", "headbutt", "leech_seed", "curse", "synthesis", "nature_power", "bullet_seed", "leaf_blade", "dragon_dance", "natural_gift", "leaf_storm"], + "eggMoves": [ + "razor_wind", + "slam", + "headbutt", + "leech_seed", + "curse", + "synthesis", + "nature_power", + "bullet_seed", + "leaf_blade", + "dragon_dance", + "natural_gift", + "leaf_storm" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -70156,7 +78822,14 @@ "default": { "abilities": ["stench", "sticky_hold"], "hiddenAbilities": ["aftermath"], - "baseStats": { "attack": 50, "defense": 62, "hp": 50, "specialAttack": 40, "specialDefense": 62, "speed": 65 }, + "baseStats": { + "attack": 50, + "defense": 62, + "hp": 50, + "specialAttack": 40, + "specialDefense": 62, + "speed": 65 + }, "evReward": { "speed": 1 }, "types": ["poison"], "height": 0.6, @@ -70182,7 +78855,16 @@ { "name": "gunk_shot", "level": 45 }, { "name": "explosion", "level": 47 } ], - "eggMoves": ["sand_attack", "haze", "self_destruct", "curse", "spikes", "rollout", "mud_sport", "rock_blast"], + "eggMoves": [ + "sand_attack", + "haze", + "self_destruct", + "curse", + "spikes", + "rollout", + "mud_sport", + "rock_blast" + ], "tutorMoves": [], "machine": [ "toxic", @@ -70232,7 +78914,14 @@ "default": { "abilities": ["keen_eye", "skill_link"], "hiddenAbilities": ["pickup"], - "baseStats": { "attack": 85, "defense": 50, "hp": 55, "specialAttack": 40, "specialDefense": 50, "speed": 75 }, + "baseStats": { + "attack": 85, + "defense": 50, + "hp": 55, + "specialAttack": 40, + "specialDefense": 50, + "speed": 75 + }, "evReward": { "attack": 2 }, "types": ["normal", "flying"], "height": 0.6, @@ -70292,7 +78981,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "tsareena": { "species": "tsareena", @@ -70303,14 +78992,21 @@ "catchRate": 45, "color": "purple", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["leaf_guard", "queenly_majesty"], "hiddenAbilities": ["sweet_veil"], - "baseStats": { "attack": 120, "defense": 98, "hp": 72, "specialAttack": 50, "specialDefense": 98, "speed": 72 }, + "baseStats": { + "attack": 120, + "defense": 98, + "hp": 72, + "specialAttack": 50, + "specialDefense": 98, + "speed": 72 + }, "evReward": { "attack": 3 }, "types": ["grass"], "height": 1.2, @@ -70375,7 +79071,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "turtonator": { "species": "turtonator", @@ -70393,7 +79089,14 @@ "default": { "abilities": ["shell_armor"], "hiddenAbilities": [], - "baseStats": { "attack": 78, "defense": 135, "hp": 60, "specialAttack": 91, "specialDefense": 85, "speed": 36 }, + "baseStats": { + "attack": 78, + "defense": 135, + "hp": 60, + "specialAttack": 91, + "specialDefense": 85, + "speed": 36 + }, "evReward": { "defense": 2 }, "types": ["fire", "dragon"], "height": 2, @@ -70467,7 +79170,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "turtwig": { "species": "turtwig", @@ -70478,14 +79181,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["monster", "plant"], + "eggGroups": ["monster", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["shell_armor"], - "baseStats": { "attack": 68, "defense": 64, "hp": 55, "specialAttack": 45, "specialDefense": 55, "speed": 31 }, + "baseStats": { + "attack": 68, + "defense": 64, + "hp": 55, + "specialAttack": 45, + "specialDefense": 55, + "speed": 31 + }, "evReward": { "attack": 1 }, "types": ["grass"], "height": 0.4, @@ -70573,7 +79283,14 @@ "default": { "abilities": ["swift_swim", "hydration"], "hiddenAbilities": ["water_absorb"], - "baseStats": { "attack": 50, "defense": 40, "hp": 50, "specialAttack": 50, "specialDefense": 40, "speed": 64 }, + "baseStats": { + "attack": 50, + "defense": 40, + "hp": 50, + "specialAttack": 50, + "specialDefense": 40, + "speed": 64 + }, "evReward": { "speed": 1 }, "types": ["water"], "height": 0.5, @@ -70596,7 +79313,17 @@ { "name": "hydro_pump", "level": 42 }, { "name": "hyper_voice", "level": 45 } ], - "eggMoves": ["mist", "snore", "sleep_talk", "refresh", "mud_sport", "water_pulse", "earth_power", "mud_bomb", "after_you"], + "eggMoves": [ + "mist", + "snore", + "sleep_talk", + "refresh", + "mud_sport", + "water_pulse", + "earth_power", + "mud_bomb", + "after_you" + ], "tutorMoves": [], "machine": [ "surf", @@ -70637,21 +79364,33 @@ "catchRate": 190, "color": "white", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 55, "defense": 40, "hp": 35, "specialAttack": 45, "specialDefense": 40, "speed": 60 }, + "baseStats": { + "attack": 55, + "defense": 40, + "hp": 35, + "specialAttack": 45, + "specialDefense": 40, + "speed": 60 + }, "evReward": { "speed": 1 }, "types": ["electric"], "height": 0.2, "weight": 0.3, "baseExp": 55, "moves": { - "levelMoves": [{ "name": "tackle", "level": 1 }, { "name": "thunder_wave", "level": 1 }, { "name": "spark", "level": 1 }, { "name": "charge_beam", "level": 1 }], + "levelMoves": [ + { "name": "tackle", "level": 1 }, + { "name": "thunder_wave", "level": 1 }, + { "name": "spark", "level": 1 }, + { "name": "charge_beam", "level": 1 } + ], "eggMoves": [], "tutorMoves": [], "machine": ["thunder_wave", "charge_beam"], @@ -70677,7 +79416,14 @@ "default": { "abilities": ["battle_armor"], "hiddenAbilities": [], - "baseStats": { "attack": 95, "defense": 95, "hp": 95, "specialAttack": 95, "specialDefense": 95, "speed": 59 }, + "baseStats": { + "attack": 95, + "defense": 95, + "hp": 95, + "specialAttack": 95, + "specialDefense": 95, + "speed": 59 + }, "evReward": { "hp": 2 }, "types": ["normal"], "height": 1.9, @@ -70742,7 +79488,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "typhlosion": { "species": "typhlosion", @@ -70753,14 +79499,21 @@ "catchRate": 45, "color": "yellow", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["blaze"], "hiddenAbilities": ["flash_fire"], - "baseStats": { "attack": 84, "defense": 78, "hp": 78, "specialAttack": 109, "specialDefense": 85, "speed": 100 }, + "baseStats": { + "attack": 84, + "defense": 78, + "hp": 78, + "specialAttack": 109, + "specialDefense": 85, + "speed": 100 + }, "evReward": { "specialAttack": 3 }, "types": ["fire"], "height": 1.7, @@ -70853,7 +79606,14 @@ "default": { "abilities": ["sand_stream"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 134, "defense": 110, "hp": 100, "specialAttack": 95, "specialDefense": 100, "speed": 61 }, + "baseStats": { + "attack": 134, + "defense": 110, + "hp": 100, + "specialAttack": 95, + "specialDefense": 100, + "speed": 61 + }, "evReward": { "attack": 3 }, "types": ["rock", "dark"], "height": 2, @@ -70941,7 +79701,14 @@ "isMega": true, "abilities": ["sand_stream"], "hiddenAbilities": [], - "baseStats": { "attack": 164, "defense": 150, "hp": 100, "specialAttack": 95, "specialDefense": 120, "speed": 71 }, + "baseStats": { + "attack": 164, + "defense": 150, + "hp": 100, + "specialAttack": 95, + "specialDefense": 120, + "speed": 71 + }, "evReward": { "attack": 3 }, "types": ["rock", "dark"], "height": 2.5, @@ -71044,7 +79811,14 @@ "default": { "abilities": ["strong_jaw"], "hiddenAbilities": ["rock_head"], - "baseStats": { "attack": 121, "defense": 119, "hp": 82, "specialAttack": 69, "specialDefense": 59, "speed": 71 }, + "baseStats": { + "attack": 121, + "defense": 119, + "hp": 82, + "specialAttack": 69, + "specialDefense": 59, + "speed": 71 + }, "evReward": { "attack": 2 }, "types": ["rock", "dragon"], "height": 2.5, @@ -71114,7 +79888,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "tyrogue": { "species": "tyrogue", @@ -71132,15 +79906,39 @@ "default": { "abilities": ["guts", "steadfast"], "hiddenAbilities": ["vital_spirit"], - "baseStats": { "attack": 35, "defense": 35, "hp": 35, "specialAttack": 35, "specialDefense": 35, "speed": 35 }, + "baseStats": { + "attack": 35, + "defense": 35, + "hp": 35, + "specialAttack": 35, + "specialDefense": 35, + "speed": 35 + }, "evReward": { "attack": 1 }, "types": ["fighting"], "height": 0.7, "weight": 21, "baseExp": 42, "moves": { - "levelMoves": [{ "name": "tackle", "level": 1 }, { "name": "foresight", "level": 1 }, { "name": "fake_out", "level": 1 }, { "name": "helping_hand", "level": 1 }], - "eggMoves": ["counter", "high_jump_kick", "mind_reader", "mach_punch", "endure", "pursuit", "rapid_spin", "helping_hand", "feint", "vacuum_wave", "bullet_punch"], + "levelMoves": [ + { "name": "tackle", "level": 1 }, + { "name": "foresight", "level": 1 }, + { "name": "fake_out", "level": 1 }, + { "name": "helping_hand", "level": 1 } + ], + "eggMoves": [ + "counter", + "high_jump_kick", + "mind_reader", + "mach_punch", + "endure", + "pursuit", + "rapid_spin", + "helping_hand", + "feint", + "vacuum_wave", + "bullet_punch" + ], "tutorMoves": [], "machine": [ "earthquake", @@ -71194,7 +79992,14 @@ "default": { "abilities": ["strong_jaw"], "hiddenAbilities": ["sturdy"], - "baseStats": { "attack": 89, "defense": 77, "hp": 58, "specialAttack": 45, "specialDefense": 45, "speed": 48 }, + "baseStats": { + "attack": 89, + "defense": 77, + "hp": 58, + "specialAttack": 45, + "specialDefense": 45, + "speed": 48 + }, "evReward": { "attack": 1 }, "types": ["rock", "dragon"], "height": 0.8, @@ -71218,7 +80023,15 @@ { "name": "earthquake", "level": 44 }, { "name": "horn_drill", "level": 49 } ], - "eggMoves": ["curse", "poison_fang", "dragon_dance", "rock_polish", "thunder_fang", "ice_fang", "fire_fang"], + "eggMoves": [ + "curse", + "poison_fang", + "dragon_dance", + "rock_polish", + "thunder_fang", + "ice_fang", + "fire_fang" + ], "tutorMoves": ["draco_meteor"], "machine": [ "roar", @@ -71254,7 +80067,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "umbreon": { "species": "umbreon", @@ -71265,14 +80078,21 @@ "catchRate": 45, "color": "black", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 35, "tags": [], "formes": { "default": { "abilities": ["synchronize"], "hiddenAbilities": ["inner_focus"], - "baseStats": { "attack": 65, "defense": 110, "hp": 95, "specialAttack": 60, "specialDefense": 130, "speed": 65 }, + "baseStats": { + "attack": 65, + "defense": 110, + "hp": 95, + "specialAttack": 60, + "specialDefense": 130, + "speed": 65 + }, "evReward": { "specialDefense": 2 }, "types": ["dark"], "height": 1, @@ -71352,7 +80172,14 @@ "default": { "abilities": ["big_pecks", "super_luck"], "hiddenAbilities": ["rivalry"], - "baseStats": { "attack": 115, "defense": 80, "hp": 80, "specialAttack": 65, "specialDefense": 55, "speed": 93 }, + "baseStats": { + "attack": 115, + "defense": 80, + "hp": 80, + "specialAttack": 65, + "specialDefense": 55, + "speed": 93 + }, "evReward": { "attack": 3 }, "types": ["normal", "flying"], "height": 1.2, @@ -71432,13 +80259,26 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 72, "defense": 48, "hp": 48, "specialAttack": 72, "specialDefense": 48, "speed": 48 }, + "baseStats": { + "attack": 72, + "defense": 48, + "hp": 48, + "specialAttack": 72, + "specialDefense": 48, + "speed": 48 + }, "evReward": { "attack": 1, "specialAttack": 1 }, "types": ["psychic"], "height": 0.5, "weight": 5, "baseExp": 118, - "moves": { "levelMoves": [{ "name": "hidden_power", "level": 1 }], "eggMoves": [], "tutorMoves": [], "machine": ["hidden_power"], "formeChange": [] } + "moves": { + "levelMoves": [{ "name": "hidden_power", "level": 1 }], + "eggMoves": [], + "tutorMoves": [], + "machine": ["hidden_power"], + "formeChange": [] + } } }, "evolutions": [] @@ -71452,14 +80292,21 @@ "catchRate": 60, "color": "brown", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["guts", "quick_feet"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 130, "defense": 75, "hp": 90, "specialAttack": 75, "specialDefense": 75, "speed": 55 }, + "baseStats": { + "attack": 130, + "defense": 75, + "hp": 90, + "specialAttack": 75, + "specialDefense": 75, + "speed": 55 + }, "evReward": { "attack": 2 }, "types": ["normal"], "height": 1.8, @@ -71547,7 +80394,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 75, "defense": 130, "hp": 75, "specialAttack": 75, "specialDefense": 130, "speed": 95 }, + "baseStats": { + "attack": 75, + "defense": 130, + "hp": 75, + "specialAttack": 75, + "specialDefense": 130, + "speed": 95 + }, "evReward": { "defense": 2, "specialDefense": 1 }, "types": ["psychic"], "height": 0.3, @@ -71636,7 +80490,14 @@ "default": { "abilities": ["ice_body", "snow_cloak"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 65, "defense": 65, "hp": 51, "specialAttack": 80, "specialDefense": 75, "speed": 59 }, + "baseStats": { + "attack": 65, + "defense": 65, + "hp": 51, + "specialAttack": 80, + "specialDefense": 75, + "speed": 59 + }, "evReward": { "specialAttack": 2 }, "types": ["ice"], "height": 1.1, @@ -71712,7 +80573,14 @@ "default": { "abilities": ["ice_body", "snow_cloak"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 50, "defense": 50, "hp": 36, "specialAttack": 65, "specialDefense": 60, "speed": 44 }, + "baseStats": { + "attack": 50, + "defense": 50, + "hp": 36, + "specialAttack": 65, + "specialDefense": 60, + "speed": 44 + }, "evReward": { "specialAttack": 1 }, "types": ["ice"], "height": 0.4, @@ -71736,7 +80604,16 @@ { "name": "blizzard", "level": 49 }, { "name": "sheer_cold", "level": 53 } ], - "eggMoves": ["powder_snow", "imprison", "iron_defense", "water_pulse", "natural_gift", "magnet_rise", "ice_shard", "autotomize"], + "eggMoves": [ + "powder_snow", + "imprison", + "iron_defense", + "water_pulse", + "natural_gift", + "magnet_rise", + "ice_shard", + "autotomize" + ], "tutorMoves": [], "machine": [ "ice_beam", @@ -71785,7 +80662,14 @@ "default": { "abilities": ["ice_body", "snow_warning"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 95, "defense": 85, "hp": 71, "specialAttack": 110, "specialDefense": 95, "speed": 79 }, + "baseStats": { + "attack": 95, + "defense": 85, + "hp": 71, + "specialAttack": 110, + "specialDefense": 95, + "speed": 79 + }, "evReward": { "specialAttack": 3 }, "types": ["ice"], "height": 1.3, @@ -71859,14 +80743,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 35, "tags": [], "formes": { "default": { "abilities": ["water_absorb"], "hiddenAbilities": ["hydration"], - "baseStats": { "attack": 65, "defense": 60, "hp": 130, "specialAttack": 110, "specialDefense": 95, "speed": 65 }, + "baseStats": { + "attack": 65, + "defense": 60, + "hp": 130, + "specialAttack": 110, + "specialDefense": 95, + "speed": 65 + }, "evReward": { "hp": 2 }, "types": ["water"], "height": 1, @@ -71945,7 +80836,14 @@ "default": { "abilities": ["poison_point", "swarm"], "hiddenAbilities": ["speed_boost"], - "baseStats": { "attack": 45, "defense": 59, "hp": 30, "specialAttack": 30, "specialDefense": 39, "speed": 57 }, + "baseStats": { + "attack": 45, + "defense": 59, + "hp": 30, + "specialAttack": 30, + "specialDefense": 39, + "speed": 57 + }, "evReward": { "defense": 1 }, "types": ["bug", "poison"], "height": 0.4, @@ -71969,7 +80867,14 @@ { "name": "rock_climb", "level": 40 }, { "name": "double_edge", "level": 43 } ], - "eggMoves": ["take_down", "twineedle", "pin_missile", "spikes", "toxic_spikes", "rock_climb"], + "eggMoves": [ + "take_down", + "twineedle", + "pin_missile", + "spikes", + "toxic_spikes", + "rock_climb" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -72017,7 +80922,14 @@ "default": { "abilities": ["shield_dust", "tinted_lens"], "hiddenAbilities": ["wonder_skin"], - "baseStats": { "attack": 65, "defense": 60, "hp": 70, "specialAttack": 90, "specialDefense": 75, "speed": 90 }, + "baseStats": { + "attack": 65, + "defense": 60, + "hp": 70, + "specialAttack": 90, + "specialDefense": 75, + "speed": 90 + }, "evReward": { "specialAttack": 1, "speed": 1 }, "types": ["bug", "poison"], "height": 1.5, @@ -72103,7 +81015,14 @@ "default": { "abilities": ["compound_eyes", "tinted_lens"], "hiddenAbilities": ["run_away"], - "baseStats": { "attack": 55, "defense": 50, "hp": 60, "specialAttack": 40, "specialDefense": 55, "speed": 45 }, + "baseStats": { + "attack": 55, + "defense": 50, + "hp": 60, + "specialAttack": 40, + "specialDefense": 55, + "speed": 45 + }, "evReward": { "specialDefense": 1 }, "types": ["bug", "poison"], "height": 1, @@ -72126,7 +81045,19 @@ { "name": "poison_fang", "level": 41 }, { "name": "psychic", "level": 47 } ], - "eggMoves": ["agility", "screech", "giga_drain", "baton_pass", "morning_sun", "skill_swap", "secret_power", "signal_beam", "toxic_spikes", "bug_bite", "rage_powder"], + "eggMoves": [ + "agility", + "screech", + "giga_drain", + "baton_pass", + "morning_sun", + "skill_swap", + "secret_power", + "signal_beam", + "toxic_spikes", + "bug_bite", + "rage_powder" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -72167,14 +81098,21 @@ "catchRate": 45, "color": "green", "genderDifference": true, - "eggGroups": ["monster", "plant"], + "eggGroups": ["monster", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["overgrow"], "hiddenAbilities": ["chlorophyll"], - "baseStats": { "attack": 82, "defense": 83, "hp": 80, "specialAttack": 100, "specialDefense": 100, "speed": 80 }, + "baseStats": { + "attack": 82, + "defense": 83, + "hp": 80, + "specialAttack": 100, + "specialDefense": 100, + "speed": 80 + }, "evReward": { "specialAttack": 2, "specialDefense": 1 }, "types": ["grass", "poison"], "height": 2, @@ -72204,7 +81142,7 @@ { "name": "solar_beam", "level": 53 } ], "eggMoves": [], - "tutorMoves": ["frenzy_plant", "grass_pledge"], + "tutorMoves": ["frenzy_grass", "grass_pledge"], "machine": [ "swords_dance", "roar", @@ -72245,7 +81183,14 @@ "isMega": true, "abilities": ["thick_fat"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 123, "hp": 80, "specialAttack": 122, "specialDefense": 120, "speed": 80 }, + "baseStats": { + "attack": 100, + "defense": 123, + "hp": 80, + "specialAttack": 122, + "specialDefense": 120, + "speed": 80 + }, "evReward": { "specialAttack": 2, "specialDefense": 1 }, "types": ["grass", "poison"], "height": 2.4, @@ -72275,7 +81220,7 @@ { "name": "solar_beam", "level": 53 } ], "eggMoves": [], - "tutorMoves": ["frenzy_plant", "grass_pledge"], + "tutorMoves": ["frenzy_grass", "grass_pledge"], "machine": [ "swords_dance", "roar", @@ -72331,7 +81276,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": ["unnerve"], - "baseStats": { "attack": 80, "defense": 102, "hp": 70, "specialAttack": 80, "specialDefense": 102, "speed": 40 }, + "baseStats": { + "attack": 80, + "defense": 102, + "hp": 70, + "specialAttack": 80, + "specialDefense": 102, + "speed": 40 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["bug", "flying"], "height": 1.2, @@ -72416,7 +81368,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 70, "defense": 50, "hp": 50, "specialAttack": 50, "specialDefense": 50, "speed": 70 }, + "baseStats": { + "attack": 70, + "defense": 50, + "hp": 50, + "specialAttack": 50, + "specialDefense": 50, + "speed": 70 + }, "evReward": { "attack": 1, "speed": 1 }, "types": ["ground", "dragon"], "height": 1.1, @@ -72496,7 +81455,14 @@ "default": { "abilities": ["victory_star"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 100, "hp": 100, "specialAttack": 100, "specialDefense": 100, "speed": 100 }, + "baseStats": { + "attack": 100, + "defense": 100, + "hp": 100, + "specialAttack": 100, + "specialDefense": 100, + "speed": 100 + }, "evReward": { "hp": 3 }, "types": ["psychic", "fire"], "height": 0.4, @@ -72585,14 +81551,21 @@ "catchRate": 45, "color": "green", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll"], "hiddenAbilities": ["gluttony"], - "baseStats": { "attack": 105, "defense": 65, "hp": 80, "specialAttack": 100, "specialDefense": 70, "speed": 70 }, + "baseStats": { + "attack": 105, + "defense": 65, + "hp": 80, + "specialAttack": 100, + "specialDefense": 70, + "speed": 70 + }, "evReward": { "attack": 3 }, "types": ["grass", "poison"], "height": 1.7, @@ -72659,14 +81632,21 @@ "catchRate": 120, "color": "white", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["vital_spirit"], "hiddenAbilities": [], - "baseStats": { "attack": 80, "defense": 80, "hp": 80, "specialAttack": 55, "specialDefense": 55, "speed": 90 }, + "baseStats": { + "attack": 80, + "defense": 80, + "hp": 80, + "specialAttack": 55, + "specialDefense": 55, + "speed": 90 + }, "evReward": { "speed": 2 }, "types": ["normal"], "height": 1.4, @@ -72753,7 +81733,14 @@ "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 70, "defense": 90, "hp": 77, "specialAttack": 145, "specialDefense": 75, "speed": 43 }, + "baseStats": { + "attack": 70, + "defense": 90, + "hp": 77, + "specialAttack": 145, + "specialDefense": 75, + "speed": 43 + }, "evReward": { "specialAttack": 3 }, "types": ["bug", "electric"], "height": 1.5, @@ -72823,7 +81810,14 @@ "totem": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 70, "defense": 90, "hp": 77, "specialAttack": 145, "specialDefense": 75, "speed": 43 }, + "baseStats": { + "attack": 70, + "defense": 90, + "hp": 77, + "specialAttack": 145, + "specialDefense": 75, + "speed": 43 + }, "evReward": { "specialAttack": 3 }, "types": ["bug", "electric"], "height": 2.6, @@ -72891,7 +81885,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "vileplume": { "species": "vileplume", @@ -72902,14 +81896,21 @@ "catchRate": 45, "color": "red", "genderDifference": true, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll"], "hiddenAbilities": ["effect_spore"], - "baseStats": { "attack": 80, "defense": 85, "hp": 75, "specialAttack": 110, "specialDefense": 90, "speed": 50 }, + "baseStats": { + "attack": 80, + "defense": 85, + "hp": 75, + "specialAttack": 110, + "specialDefense": 90, + "speed": 50 + }, "evReward": { "specialAttack": 3 }, "types": ["grass", "poison"], "height": 1.2, @@ -72979,7 +81980,14 @@ "default": { "abilities": ["justified"], "hiddenAbilities": [], - "baseStats": { "attack": 90, "defense": 72, "hp": 91, "specialAttack": 90, "specialDefense": 129, "speed": 108 }, + "baseStats": { + "attack": 90, + "defense": 72, + "hp": 91, + "specialAttack": 90, + "specialDefense": 129, + "speed": 108 + }, "evReward": { "specialDefense": 3 }, "types": ["grass", "fighting"], "height": 2, @@ -73064,7 +82072,14 @@ "default": { "abilities": ["shield_dust", "compound_eyes"], "hiddenAbilities": ["friend_guard"], - "baseStats": { "attack": 52, "defense": 50, "hp": 80, "specialAttack": 90, "specialDefense": 50, "speed": 89 }, + "baseStats": { + "attack": 52, + "defense": 50, + "hp": 80, + "specialAttack": 90, + "specialDefense": 50, + "speed": 89 + }, "evReward": { "hp": 1, "specialAttack": 1, "speed": 1 }, "types": ["bug", "flying"], "height": 1.2, @@ -73130,7 +82145,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "volbeat": { "species": "volbeat", @@ -73141,14 +82156,21 @@ "catchRate": 150, "color": "gray", "genderDifference": false, - "eggGroups": ["bug", "humanshape"], + "eggGroups": ["bug", "humanlike"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["illuminate", "swarm"], "hiddenAbilities": ["prankster"], - "baseStats": { "attack": 73, "defense": 75, "hp": 65, "specialAttack": 47, "specialDefense": 85, "speed": 85 }, + "baseStats": { + "attack": 73, + "defense": 75, + "hp": 65, + "specialAttack": 47, + "specialDefense": 85, + "speed": 85 + }, "evReward": { "speed": 1 }, "types": ["bug"], "height": 0.7, @@ -73173,7 +82195,15 @@ { "name": "double_edge", "level": 47 }, { "name": "infestation", "level": 50 } ], - "eggMoves": ["seismic_toss", "dizzy_punch", "baton_pass", "encore", "trick", "silver_wind", "bug_buzz"], + "eggMoves": [ + "seismic_toss", + "dizzy_punch", + "baton_pass", + "encore", + "trick", + "silver_wind", + "bug_buzz" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -73232,7 +82262,14 @@ "default": { "abilities": ["water_absorb"], "hiddenAbilities": [], - "baseStats": { "attack": 110, "defense": 120, "hp": 80, "specialAttack": 130, "specialDefense": 90, "speed": 70 }, + "baseStats": { + "attack": 110, + "defense": 120, + "hp": 80, + "specialAttack": 130, + "specialDefense": 90, + "speed": 70 + }, "evReward": { "specialAttack": 3 }, "types": ["fire", "water"], "height": 1.7, @@ -73303,7 +82340,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "volcarona": { "species": "volcarona", @@ -73321,7 +82358,14 @@ "default": { "abilities": ["flame_body"], "hiddenAbilities": ["swarm"], - "baseStats": { "attack": 60, "defense": 65, "hp": 85, "specialAttack": 135, "specialDefense": 105, "speed": 100 }, + "baseStats": { + "attack": 60, + "defense": 65, + "hp": 85, + "specialAttack": 135, + "specialDefense": 105, + "speed": 100 + }, "evReward": { "specialAttack": 3 }, "types": ["bug", "fire"], "height": 1.6, @@ -73415,7 +82459,14 @@ "default": { "abilities": ["soundproof", "static"], "hiddenAbilities": ["aftermath"], - "baseStats": { "attack": 30, "defense": 50, "hp": 40, "specialAttack": 55, "specialDefense": 55, "speed": 100 }, + "baseStats": { + "attack": 30, + "defense": 50, + "hp": 40, + "specialAttack": 55, + "specialDefense": 55, + "speed": 100 + }, "evReward": { "speed": 1 }, "types": ["electric"], "height": 0.5, @@ -73493,7 +82544,14 @@ "default": { "abilities": ["big_pecks", "overcoat"], "hiddenAbilities": ["weak_armor"], - "baseStats": { "attack": 55, "defense": 75, "hp": 70, "specialAttack": 45, "specialDefense": 65, "speed": 60 }, + "baseStats": { + "attack": 55, + "defense": 75, + "hp": 70, + "specialAttack": 45, + "specialDefense": 65, + "speed": 60 + }, "evReward": { "defense": 1 }, "types": ["dark", "flying"], "height": 0.5, @@ -73518,7 +82576,15 @@ { "name": "brave_bird", "level": 59 }, { "name": "mirror_move", "level": 64 } ], - "eggMoves": ["scary_face", "steel_wing", "mean_look", "knock_off", "fake_tears", "roost", "foul_play"], + "eggMoves": [ + "scary_face", + "steel_wing", + "mean_look", + "knock_off", + "fake_tears", + "roost", + "foul_play" + ], "tutorMoves": [], "machine": [ "fly", @@ -73568,14 +82634,21 @@ "catchRate": 190, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "alola": { "abilities": ["snow_cloak"], "hiddenAbilities": ["snow_warning"], - "baseStats": { "attack": 41, "defense": 40, "hp": 38, "specialAttack": 50, "specialDefense": 65, "speed": 65 }, + "baseStats": { + "attack": 41, + "defense": 40, + "hp": 38, + "specialAttack": 50, + "specialDefense": 65, + "speed": 65 + }, "evReward": { "speed": 1 }, "types": ["ice"], "height": 0.6, @@ -73639,7 +82712,14 @@ "default": { "abilities": ["flash_fire"], "hiddenAbilities": ["drought"], - "baseStats": { "attack": 41, "defense": 40, "hp": 38, "specialAttack": 50, "specialDefense": 65, "speed": 65 }, + "baseStats": { + "attack": 41, + "defense": 40, + "hp": 38, + "specialAttack": 50, + "specialDefense": 65, + "speed": 65 + }, "evReward": { "speed": 1 }, "types": ["fire"], "height": 0.6, @@ -73668,7 +82748,22 @@ { "name": "captivate", "level": 47 }, { "name": "inferno", "level": 50 } ], - "eggMoves": ["disable", "hypnosis", "flail", "spite", "feint_attack", "heat_wave", "secret_power", "extrasensory", "howl", "power_swap", "flare_blitz", "captivate", "hex", "tail_slap"], + "eggMoves": [ + "disable", + "hypnosis", + "flail", + "spite", + "feint_attack", + "heat_wave", + "secret_power", + "extrasensory", + "howl", + "power_swap", + "flare_blitz", + "captivate", + "hex", + "tail_slap" + ], "tutorMoves": [], "machine": [ "roar", @@ -73702,7 +82797,9 @@ } } }, - "evolutions": [{ "species": "ninetales", "method": "item", "data": "firestone" }] + "evolutions": [ + { "species": "ninetales", "method": "item", "data": "firestone" } + ] }, "wailmer": { "species": "wailmer", @@ -73713,14 +82810,21 @@ "catchRate": 125, "color": "blue", "genderDifference": false, - "eggGroups": ["ground", "water2"], + "eggGroups": ["field", "water2"], "eggCycles": 40, "tags": [], "formes": { "default": { "abilities": ["water_veil", "oblivious"], "hiddenAbilities": ["pressure"], - "baseStats": { "attack": 70, "defense": 35, "hp": 130, "specialAttack": 70, "specialDefense": 35, "speed": 60 }, + "baseStats": { + "attack": 70, + "defense": 35, + "hp": 130, + "specialAttack": 70, + "specialDefense": 35, + "speed": 60 + }, "evReward": { "hp": 1 }, "types": ["water"], "height": 2, @@ -73745,7 +82849,21 @@ { "name": "hydro_pump", "level": 49 }, { "name": "heavy_slam", "level": 53 } ], - "eggMoves": ["body_slam", "thrash", "double_edge", "fissure", "defense_curl", "snore", "curse", "sleep_talk", "tickle", "aqua_ring", "zen_headbutt", "soak", "clear_smog"], + "eggMoves": [ + "body_slam", + "thrash", + "double_edge", + "fissure", + "defense_curl", + "snore", + "curse", + "sleep_talk", + "tickle", + "aqua_ring", + "zen_headbutt", + "soak", + "clear_smog" + ], "tutorMoves": [], "machine": [ "roar", @@ -73790,14 +82908,21 @@ "catchRate": 60, "color": "blue", "genderDifference": false, - "eggGroups": ["ground", "water2"], + "eggGroups": ["field", "water2"], "eggCycles": 40, "tags": [], "formes": { "default": { "abilities": ["water_veil", "oblivious"], "hiddenAbilities": ["pressure"], - "baseStats": { "attack": 90, "defense": 45, "hp": 170, "specialAttack": 90, "specialDefense": 45, "speed": 60 }, + "baseStats": { + "attack": 90, + "defense": 45, + "hp": 170, + "specialAttack": 90, + "specialDefense": 45, + "speed": 60 + }, "evReward": { "hp": 2 }, "types": ["water"], "height": 14.5, @@ -73875,14 +83000,21 @@ "catchRate": 45, "color": "blue", "genderDifference": false, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["thick_fat", "ice_body"], "hiddenAbilities": ["oblivious"], - "baseStats": { "attack": 80, "defense": 90, "hp": 110, "specialAttack": 95, "specialDefense": 90, "speed": 65 }, + "baseStats": { + "attack": 80, + "defense": 90, + "hp": 110, + "specialAttack": 95, + "specialDefense": 90, + "speed": 65 + }, "evReward": { "hp": 3 }, "types": ["ice", "water"], "height": 1.4, @@ -73965,7 +83097,14 @@ "default": { "abilities": ["torrent"], "hiddenAbilities": ["rain_dish"], - "baseStats": { "attack": 63, "defense": 80, "hp": 59, "specialAttack": 65, "specialDefense": 80, "speed": 58 }, + "baseStats": { + "attack": 63, + "defense": 80, + "hp": 59, + "specialAttack": 65, + "specialDefense": 80, + "speed": 58 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["water"], "height": 1, @@ -74035,14 +83174,21 @@ "catchRate": 255, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["illuminate", "keen_eye"], "hiddenAbilities": ["analytic"], - "baseStats": { "attack": 85, "defense": 69, "hp": 60, "specialAttack": 60, "specialDefense": 69, "speed": 77 }, + "baseStats": { + "attack": 85, + "defense": 69, + "hp": 60, + "specialAttack": 60, + "specialDefense": 69, + "speed": 77 + }, "evReward": { "attack": 2 }, "types": ["normal"], "height": 1.1, @@ -74124,14 +83270,21 @@ "catchRate": 45, "color": "black", "genderDifference": true, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["pressure"], "hiddenAbilities": ["pickpocket"], - "baseStats": { "attack": 120, "defense": 65, "hp": 70, "specialAttack": 45, "specialDefense": 85, "speed": 125 }, + "baseStats": { + "attack": 120, + "defense": 65, + "hp": 70, + "specialAttack": 45, + "specialDefense": 85, + "speed": 125 + }, "evReward": { "attack": 1, "speed": 1 }, "types": ["dark", "ice"], "height": 1.1, @@ -74230,14 +83383,25 @@ "default": { "abilities": ["shield_dust"], "hiddenAbilities": ["run_away"], - "baseStats": { "attack": 35, "defense": 30, "hp": 40, "specialAttack": 20, "specialDefense": 20, "speed": 50 }, + "baseStats": { + "attack": 35, + "defense": 30, + "hp": 40, + "specialAttack": 20, + "specialDefense": 20, + "speed": 50 + }, "evReward": { "speed": 1 }, "types": ["bug", "poison"], "height": 0.3, "weight": 3.2, "baseExp": 39, "moves": { - "levelMoves": [{ "name": "poison_sting", "level": 1 }, { "name": "string_shot", "level": 1 }, { "name": "bug_bite", "level": 9 }], + "levelMoves": [ + { "name": "poison_sting", "level": 1 }, + { "name": "string_shot", "level": 1 }, + { "name": "bug_bite", "level": 9 } + ], "eggMoves": [], "tutorMoves": [], "machine": [], @@ -74256,14 +83420,21 @@ "catchRate": 120, "color": "green", "genderDifference": false, - "eggGroups": ["plant"], + "eggGroups": ["grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["chlorophyll"], "hiddenAbilities": ["gluttony"], - "baseStats": { "attack": 90, "defense": 50, "hp": 65, "specialAttack": 85, "specialDefense": 45, "speed": 55 }, + "baseStats": { + "attack": 90, + "defense": 50, + "hp": 65, + "specialAttack": 85, + "specialDefense": 45, + "speed": 55 + }, "evReward": { "attack": 2 }, "types": ["grass", "poison"], "height": 1, @@ -74322,7 +83493,9 @@ } } }, - "evolutions": [{ "species": "victreebel", "method": "item", "data": "leafstone" }] + "evolutions": [ + { "species": "victreebel", "method": "item", "data": "leafstone" } + ] }, "weezing": { "species": "weezing", @@ -74333,14 +83506,21 @@ "catchRate": 60, "color": "purple", "genderDifference": false, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["levitate"], "hiddenAbilities": [], - "baseStats": { "attack": 90, "defense": 120, "hp": 65, "specialAttack": 85, "specialDefense": 70, "speed": 60 }, + "baseStats": { + "attack": 90, + "defense": 120, + "hp": 65, + "specialAttack": 85, + "specialDefense": 70, + "speed": 60 + }, "evReward": { "defense": 2 }, "types": ["poison"], "height": 1.2, @@ -74421,14 +83601,21 @@ "catchRate": 75, "color": "green", "genderDifference": false, - "eggGroups": ["fairy", "plant"], + "eggGroups": ["fairy", "grass"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["prankster", "infiltrator"], "hiddenAbilities": ["chlorophyll"], - "baseStats": { "attack": 67, "defense": 85, "hp": 60, "specialAttack": 77, "specialDefense": 75, "speed": 116 }, + "baseStats": { + "attack": 67, + "defense": 85, + "hp": 60, + "specialAttack": 77, + "specialDefense": 75, + "speed": 116 + }, "evReward": { "speed": 2 }, "types": ["grass", "fairy"], "height": 0.7, @@ -74503,7 +83690,14 @@ "default": { "abilities": ["poison_point", "swarm"], "hiddenAbilities": ["speed_boost"], - "baseStats": { "attack": 55, "defense": 99, "hp": 40, "specialAttack": 40, "specialDefense": 79, "speed": 47 }, + "baseStats": { + "attack": 55, + "defense": 99, + "hp": 40, + "specialAttack": 40, + "specialDefense": 79, + "speed": 47 + }, "evReward": { "defense": 2 }, "types": ["bug", "poison"], "height": 1.2, @@ -74579,7 +83773,14 @@ "default": { "abilities": ["oblivious", "anticipation"], "hiddenAbilities": ["hydration"], - "baseStats": { "attack": 78, "defense": 73, "hp": 110, "specialAttack": 76, "specialDefense": 71, "speed": 60 }, + "baseStats": { + "attack": 78, + "defense": 73, + "hp": 110, + "specialAttack": 76, + "specialDefense": 71, + "speed": 60 + }, "evReward": { "hp": 2 }, "types": ["water", "ground"], "height": 0.9, @@ -74659,14 +83860,21 @@ "catchRate": 190, "color": "pink", "genderDifference": false, - "eggGroups": ["monster", "ground"], + "eggGroups": ["monster", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["soundproof"], "hiddenAbilities": ["rattled"], - "baseStats": { "attack": 51, "defense": 23, "hp": 64, "specialAttack": 51, "specialDefense": 23, "speed": 28 }, + "baseStats": { + "attack": 51, + "defense": 23, + "hp": 64, + "specialAttack": 51, + "specialDefense": 23, + "speed": 28 + }, "evReward": { "hp": 1 }, "types": ["normal"], "height": 0.6, @@ -74688,7 +83896,18 @@ { "name": "hyper_voice", "level": 39 }, { "name": "synchronoise", "level": 43 } ], - "eggMoves": ["take_down", "smokescreen", "snore", "smelling_salts", "endeavor", "fake_tears", "extrasensory", "hammer_arm", "circle_throw", "disarming_voice"], + "eggMoves": [ + "take_down", + "smokescreen", + "snore", + "smelling_salts", + "endeavor", + "fake_tears", + "extrasensory", + "hammer_arm", + "circle_throw", + "disarming_voice" + ], "tutorMoves": [], "machine": [ "roar", @@ -74740,7 +83959,14 @@ "default": { "abilities": ["cute_charm", "competitive"], "hiddenAbilities": ["frisk"], - "baseStats": { "attack": 70, "defense": 45, "hp": 140, "specialAttack": 85, "specialDefense": 50, "speed": 45 }, + "baseStats": { + "attack": 70, + "defense": 45, + "hp": 140, + "specialAttack": 85, + "specialDefense": 50, + "speed": 45 + }, "evReward": { "hp": 3 }, "types": ["normal", "fairy"], "height": 1, @@ -74824,15 +84050,31 @@ "default": { "abilities": ["wimp_out"], "hiddenAbilities": [], - "baseStats": { "attack": 35, "defense": 40, "hp": 25, "specialAttack": 20, "specialDefense": 30, "speed": 80 }, + "baseStats": { + "attack": 35, + "defense": 40, + "hp": 25, + "specialAttack": 20, + "specialDefense": 30, + "speed": 80 + }, "evReward": { "speed": 1 }, "types": ["bug", "water"], "height": 0.5, "weight": 12, "baseExp": 46, "moves": { - "levelMoves": [{ "name": "sand_attack", "level": 1 }, { "name": "struggle_bug", "level": 1 }], - "eggMoves": ["harden", "spikes", "metal_claw", "aqua_jet", "wide_guard"], + "levelMoves": [ + { "name": "sand_attack", "level": 1 }, + { "name": "struggle_bug", "level": 1 } + ], + "eggMoves": [ + "harden", + "spikes", + "metal_claw", + "aqua_jet", + "wide_guard" + ], "tutorMoves": [], "machine": [ "surf", @@ -74861,7 +84103,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "wingull": { "species": "wingull", @@ -74879,7 +84121,14 @@ "default": { "abilities": ["keen_eye", "hydration"], "hiddenAbilities": ["rain_dish"], - "baseStats": { "attack": 30, "defense": 30, "hp": 40, "specialAttack": 55, "specialDefense": 30, "speed": 85 }, + "baseStats": { + "attack": 30, + "defense": 30, + "hp": 40, + "specialAttack": 55, + "specialDefense": 30, + "speed": 85 + }, "evReward": { "speed": 1 }, "types": ["water", "flying"], "height": 0.6, @@ -74902,7 +84151,19 @@ { "name": "air_slash", "level": 40 }, { "name": "hurricane", "level": 43 } ], - "eggMoves": ["gust", "mist", "agility", "twister", "knock_off", "water_sport", "roost", "brine", "aqua_ring", "wide_guard", "soak"], + "eggMoves": [ + "gust", + "mist", + "agility", + "twister", + "knock_off", + "water_sport", + "roost", + "brine", + "aqua_ring", + "wide_guard", + "soak" + ], "tutorMoves": [], "machine": [ "fly", @@ -74954,7 +84215,14 @@ "default": { "abilities": ["schooling"], "hiddenAbilities": [], - "baseStats": { "attack": 20, "defense": 20, "hp": 45, "specialAttack": 25, "specialDefense": 25, "speed": 40 }, + "baseStats": { + "attack": 20, + "defense": 20, + "hp": 45, + "specialAttack": 25, + "specialDefense": 25, + "speed": 40 + }, "evReward": { "hp": 1 }, "types": ["water"], "height": 0.2, @@ -75011,7 +84279,14 @@ "school": { "abilities": ["schooling"], "hiddenAbilities": [], - "baseStats": { "attack": 140, "defense": 130, "hp": 45, "specialAttack": 140, "specialDefense": 135, "speed": 30 }, + "baseStats": { + "attack": 140, + "defense": 130, + "hp": 45, + "specialAttack": 140, + "specialDefense": 135, + "speed": 30 + }, "evReward": { "hp": 1 }, "types": ["water"], "height": 8.2, @@ -75066,7 +84341,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "wobbuffet": { "species": "wobbuffet", @@ -75077,21 +84352,33 @@ "catchRate": 45, "color": "blue", "genderDifference": true, - "eggGroups": ["indeterminate"], + "eggGroups": ["amorphous"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["shadow_tag"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 33, "defense": 58, "hp": 190, "specialAttack": 33, "specialDefense": 58, "speed": 33 }, + "baseStats": { + "attack": 33, + "defense": 58, + "hp": 190, + "specialAttack": 33, + "specialDefense": 58, + "speed": 33 + }, "evReward": { "hp": 2 }, "types": ["psychic"], "height": 1.3, "weight": 28.5, "baseExp": 142, "moves": { - "levelMoves": [{ "name": "counter", "level": 1 }, { "name": "destiny_bond", "level": 1 }, { "name": "safeguard", "level": 1 }, { "name": "mirror_coat", "level": 1 }], + "levelMoves": [ + { "name": "counter", "level": 1 }, + { "name": "destiny_bond", "level": 1 }, + { "name": "safeguard", "level": 1 }, + { "name": "mirror_coat", "level": 1 } + ], "eggMoves": [], "tutorMoves": [], "machine": ["safeguard"], @@ -75110,14 +84397,21 @@ "catchRate": 190, "color": "blue", "genderDifference": false, - "eggGroups": ["flying", "ground"], + "eggGroups": ["flying", "field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["unaware", "klutz"], "hiddenAbilities": ["simple"], - "baseStats": { "attack": 45, "defense": 43, "hp": 65, "specialAttack": 55, "specialDefense": 43, "speed": 72 }, + "baseStats": { + "attack": 45, + "defense": 43, + "hp": 65, + "specialAttack": 55, + "specialDefense": 43, + "speed": 72 + }, "evReward": { "speed": 1 }, "types": ["psychic", "flying"], "height": 0.4, @@ -75140,7 +84434,20 @@ { "name": "psychic", "level": 41 }, { "name": "endeavor", "level": 47 } ], - "eggMoves": ["supersonic", "charm", "flatter", "helping_hand", "knock_off", "fake_tears", "roost", "psycho_shift", "captivate", "synchronoise", "stored_power", "venom_drench"], + "eggMoves": [ + "supersonic", + "charm", + "flatter", + "helping_hand", + "knock_off", + "fake_tears", + "roost", + "psycho_shift", + "captivate", + "synchronoise", + "stored_power", + "venom_drench" + ], "tutorMoves": [], "machine": [ "fly", @@ -75198,14 +84505,21 @@ "catchRate": 255, "color": "blue", "genderDifference": true, - "eggGroups": ["water1", "ground"], + "eggGroups": ["water1", "field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["damp", "water_absorb"], "hiddenAbilities": ["unaware"], - "baseStats": { "attack": 45, "defense": 45, "hp": 55, "specialAttack": 25, "specialDefense": 25, "speed": 15 }, + "baseStats": { + "attack": 45, + "defense": 45, + "hp": 55, + "specialAttack": 25, + "specialDefense": 25, + "speed": 15 + }, "evReward": { "hp": 1 }, "types": ["water", "ground"], "height": 0.4, @@ -75298,7 +84612,14 @@ "default": { "abilities": ["anticipation"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 59, "defense": 85, "hp": 60, "specialAttack": 79, "specialDefense": 105, "speed": 36 }, + "baseStats": { + "attack": 59, + "defense": 85, + "hp": 60, + "specialAttack": 79, + "specialDefense": 105, + "speed": 36 + }, "evReward": { "specialDefense": 2 }, "types": ["bug", "grass"], "height": 0.5, @@ -75365,7 +84686,14 @@ "sandy": { "abilities": ["anticipation"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 79, "defense": 105, "hp": 60, "specialAttack": 59, "specialDefense": 85, "speed": 36 }, + "baseStats": { + "attack": 79, + "defense": 105, + "hp": 60, + "specialAttack": 59, + "specialDefense": 85, + "speed": 36 + }, "evReward": { "defense": 2 }, "types": ["bug", "ground"], "height": 0.5, @@ -75433,7 +84761,14 @@ "trash": { "abilities": ["anticipation"], "hiddenAbilities": ["overcoat"], - "baseStats": { "attack": 69, "defense": 95, "hp": 60, "specialAttack": 69, "specialDefense": 95, "speed": 36 }, + "baseStats": { + "attack": 69, + "defense": 95, + "hp": 60, + "specialAttack": 69, + "specialDefense": 95, + "speed": 36 + }, "evReward": { "defense": 1, "specialDefense": 1 }, "types": ["bug", "steel"], "height": 0.5, @@ -75516,14 +84851,26 @@ "default": { "abilities": ["shield_dust"], "hiddenAbilities": ["run_away"], - "baseStats": { "attack": 45, "defense": 35, "hp": 45, "specialAttack": 20, "specialDefense": 30, "speed": 20 }, + "baseStats": { + "attack": 45, + "defense": 35, + "hp": 45, + "specialAttack": 20, + "specialDefense": 30, + "speed": 20 + }, "evReward": { "hp": 1 }, "types": ["bug"], "height": 0.3, "weight": 3.6, "baseExp": 56, "moves": { - "levelMoves": [{ "name": "tackle", "level": 1 }, { "name": "string_shot", "level": 1 }, { "name": "poison_sting", "level": 5 }, { "name": "bug_bite", "level": 15 }], + "levelMoves": [ + { "name": "tackle", "level": 1 }, + { "name": "string_shot", "level": 1 }, + { "name": "poison_sting", "level": 5 }, + { "name": "bug_bite", "level": 15 } + ], "eggMoves": [], "tutorMoves": [], "machine": [], @@ -75531,7 +84878,10 @@ } } }, - "evolutions": [{ "species": "silcoon", "method": "silcoon", "data": "7" }, { "species": "cascoon", "method": "cascoon", "data": "7" }] + "evolutions": [ + { "species": "silcoon", "method": "silcoon", "data": "7" }, + { "species": "cascoon", "method": "cascoon", "data": "7" } + ] }, "wynaut": { "species": "wynaut", @@ -75549,7 +84899,14 @@ "default": { "abilities": ["shadow_tag"], "hiddenAbilities": ["telepathy"], - "baseStats": { "attack": 23, "defense": 48, "hp": 95, "specialAttack": 23, "specialDefense": 48, "speed": 23 }, + "baseStats": { + "attack": 23, + "defense": 48, + "hp": 95, + "specialAttack": 23, + "specialDefense": 48, + "speed": 23 + }, "evReward": { "hp": 1 }, "types": ["psychic"], "height": 0.6, @@ -75590,7 +84947,14 @@ "default": { "abilities": ["synchronize", "early_bird"], "hiddenAbilities": ["magic_bounce"], - "baseStats": { "attack": 75, "defense": 70, "hp": 65, "specialAttack": 95, "specialDefense": 70, "speed": 95 }, + "baseStats": { + "attack": 75, + "defense": 70, + "hp": 65, + "specialAttack": 95, + "specialDefense": 70, + "speed": 95 + }, "evReward": { "specialAttack": 1, "speed": 1 }, "types": ["psychic", "flying"], "height": 1.5, @@ -75683,7 +85047,14 @@ "default": { "abilities": ["fairy_aura"], "hiddenAbilities": [], - "baseStats": { "attack": 131, "defense": 95, "hp": 126, "specialAttack": 131, "specialDefense": 98, "speed": 99 }, + "baseStats": { + "attack": 131, + "defense": 95, + "hp": 126, + "specialAttack": 131, + "specialDefense": 98, + "speed": 99 + }, "evReward": { "hp": 3 }, "types": ["fairy"], "height": 3, @@ -75753,7 +85124,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "xurkitree": { "species": "xurkitree", @@ -75771,7 +85142,14 @@ "default": { "abilities": ["beast_boost"], "hiddenAbilities": [], - "baseStats": { "attack": 89, "defense": 71, "hp": 83, "specialAttack": 173, "specialDefense": 71, "speed": 83 }, + "baseStats": { + "attack": 89, + "defense": 71, + "hp": 83, + "specialAttack": 173, + "specialDefense": 71, + "speed": 83 + }, "evReward": { "specialAttack": 3 }, "types": ["electric"], "height": 3.8, @@ -75839,7 +85217,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "yamask": { "species": "yamask", @@ -75850,14 +85228,21 @@ "catchRate": 190, "color": "black", "genderDifference": false, - "eggGroups": ["mineral", "indeterminate"], + "eggGroups": ["mineral", "amorphous"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["mummy"], "hiddenAbilities": [], - "baseStats": { "attack": 30, "defense": 85, "hp": 38, "specialAttack": 55, "specialDefense": 65, "speed": 30 }, + "baseStats": { + "attack": 30, + "defense": 85, + "hp": 38, + "specialAttack": 55, + "specialDefense": 65, + "speed": 30 + }, "evReward": { "defense": 1 }, "types": ["ghost"], "height": 0.5, @@ -75881,7 +85266,18 @@ { "name": "mean_look", "level": 45 }, { "name": "destiny_bond", "level": 49 } ], - "eggMoves": ["disable", "nightmare", "endure", "memento", "imprison", "fake_tears", "heal_block", "toxic_spikes", "nasty_plot", "ally_switch"], + "eggMoves": [ + "disable", + "nightmare", + "endure", + "memento", + "imprison", + "fake_tears", + "heal_block", + "toxic_spikes", + "nasty_plot", + "ally_switch" + ], "tutorMoves": [], "machine": [ "toxic", @@ -75936,7 +85332,14 @@ "default": { "abilities": ["speed_boost", "compound_eyes"], "hiddenAbilities": ["frisk"], - "baseStats": { "attack": 65, "defense": 45, "hp": 65, "specialAttack": 75, "specialDefense": 45, "speed": 95 }, + "baseStats": { + "attack": 65, + "defense": 45, + "hp": 65, + "specialAttack": 75, + "specialDefense": 45, + "speed": 95 + }, "evReward": { "speed": 1 }, "types": ["bug", "flying"], "height": 1.2, @@ -75961,7 +85364,18 @@ { "name": "air_slash", "level": 54 }, { "name": "bug_buzz", "level": 57 } ], - "eggMoves": ["whirlwind", "double_edge", "leech_life", "reversal", "feint_attack", "pursuit", "secret_power", "silver_wind", "signal_beam", "feint"], + "eggMoves": [ + "whirlwind", + "double_edge", + "leech_life", + "reversal", + "feint_attack", + "pursuit", + "secret_power", + "silver_wind", + "signal_beam", + "feint" + ], "tutorMoves": [], "machine": [ "solar_beam", @@ -75993,7 +85407,9 @@ } } }, - "evolutions": [{ "species": "yanmega", "method": "hasmove", "data": "ancientpower" }] + "evolutions": [ + { "species": "yanmega", "method": "hasmove", "data": "ancientpower" } + ] }, "yanmega": { "species": "yanmega", @@ -76011,7 +85427,14 @@ "default": { "abilities": ["speed_boost", "tinted_lens"], "hiddenAbilities": ["frisk"], - "baseStats": { "attack": 76, "defense": 86, "hp": 86, "specialAttack": 116, "specialDefense": 56, "speed": 95 }, + "baseStats": { + "attack": 76, + "defense": 86, + "hp": 86, + "specialAttack": 116, + "specialDefense": 56, + "speed": 95 + }, "evReward": { "attack": 2 }, "types": ["bug", "flying"], "height": 1.9, @@ -76089,14 +85512,21 @@ "catchRate": 255, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["stakeout", "strong_jaw"], "hiddenAbilities": ["adaptability"], - "baseStats": { "attack": 70, "defense": 30, "hp": 48, "specialAttack": 30, "specialDefense": 30, "speed": 45 }, + "baseStats": { + "attack": 70, + "defense": 30, + "hp": 48, + "specialAttack": 30, + "specialDefense": 30, + "speed": 45 + }, "evReward": { "attack": 1 }, "types": ["normal"], "height": 0.4, @@ -76153,7 +85583,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "yveltal": { "species": "yveltal", @@ -76171,7 +85601,14 @@ "default": { "abilities": ["dark_aura"], "hiddenAbilities": [], - "baseStats": { "attack": 131, "defense": 95, "hp": 126, "specialAttack": 131, "specialDefense": 98, "speed": 99 }, + "baseStats": { + "attack": 131, + "defense": 95, + "hp": 126, + "specialAttack": 131, + "specialDefense": 98, + "speed": 99 + }, "evReward": { "hp": 3 }, "types": ["dark", "flying"], "height": 5.8, @@ -76243,7 +85680,7 @@ } } }, - "evolutions": null + "evolutions": [] }, "zangoose": { "species": "zangoose", @@ -76254,14 +85691,21 @@ "catchRate": 90, "color": "white", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["immunity"], "hiddenAbilities": ["toxic_boost"], - "baseStats": { "attack": 115, "defense": 60, "hp": 73, "specialAttack": 60, "specialDefense": 60, "speed": 90 }, + "baseStats": { + "attack": 115, + "defense": 60, + "hp": 73, + "specialAttack": 60, + "specialDefense": 60, + "speed": 90 + }, "evReward": { "attack": 2 }, "types": ["normal"], "height": 1.3, @@ -76368,7 +85812,14 @@ "default": { "abilities": ["pressure"], "hiddenAbilities": ["static"], - "baseStats": { "attack": 90, "defense": 85, "hp": 90, "specialAttack": 125, "specialDefense": 90, "speed": 100 }, + "baseStats": { + "attack": 90, + "defense": 85, + "hp": 90, + "specialAttack": 125, + "specialDefense": 90, + "speed": 100 + }, "evReward": { "specialAttack": 3 }, "types": ["electric", "flying"], "height": 1.6, @@ -76444,14 +85895,21 @@ "catchRate": 75, "color": "black", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["lightning_rod", "motor_drive"], "hiddenAbilities": ["sap_sipper"], - "baseStats": { "attack": 100, "defense": 63, "hp": 75, "specialAttack": 80, "specialDefense": 63, "speed": 116 }, + "baseStats": { + "attack": 100, + "defense": 63, + "hp": 75, + "specialAttack": 80, + "specialDefense": 63, + "speed": 116 + }, "evReward": { "speed": 2 }, "types": ["electric"], "height": 1.6, @@ -76530,7 +85988,14 @@ "default": { "abilities": ["teravolt"], "hiddenAbilities": [], - "baseStats": { "attack": 150, "defense": 120, "hp": 100, "specialAttack": 120, "specialDefense": 100, "speed": 90 }, + "baseStats": { + "attack": 150, + "defense": 120, + "hp": 100, + "specialAttack": 120, + "specialDefense": 100, + "speed": 90 + }, "evReward": { "attack": 3 }, "types": ["dragon", "electric"], "height": 2.9, @@ -76616,14 +86081,21 @@ "catchRate": 255, "color": "brown", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 15, "tags": [], "formes": { "default": { "abilities": ["pickup", "gluttony"], "hiddenAbilities": ["quick_feet"], - "baseStats": { "attack": 30, "defense": 41, "hp": 38, "specialAttack": 30, "specialDefense": 41, "speed": 60 }, + "baseStats": { + "attack": 30, + "defense": 41, + "hp": 38, + "specialAttack": 30, + "specialDefense": 41, + "speed": 60 + }, "evReward": { "speed": 1 }, "types": ["normal"], "height": 0.4, @@ -76648,7 +86120,17 @@ { "name": "belly_drum", "level": 37 }, { "name": "fling", "level": 41 } ], - "eggMoves": ["mud_slap", "charm", "sleep_talk", "pursuit", "helping_hand", "trick", "tickle", "rock_climb", "simple_beam"], + "eggMoves": [ + "mud_slap", + "charm", + "sleep_talk", + "pursuit", + "helping_hand", + "trick", + "tickle", + "rock_climb", + "simple_beam" + ], "tutorMoves": [], "machine": [ "surf", @@ -76696,14 +86178,21 @@ "catchRate": 45, "color": "gray", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 20, "tags": [], "formes": { "default": { "abilities": ["illusion"], "hiddenAbilities": [], - "baseStats": { "attack": 105, "defense": 60, "hp": 60, "specialAttack": 120, "specialDefense": 60, "speed": 105 }, + "baseStats": { + "attack": 105, + "defense": 60, + "hp": 60, + "specialAttack": 120, + "specialDefense": 60, + "speed": 105 + }, "evReward": { "specialAttack": 2 }, "types": ["dark"], "height": 1.6, @@ -76792,14 +86281,21 @@ "catchRate": 75, "color": "gray", "genderDifference": false, - "eggGroups": ["ground"], + "eggGroups": ["field"], "eggCycles": 25, "tags": [], "formes": { "default": { "abilities": ["illusion"], "hiddenAbilities": [], - "baseStats": { "attack": 65, "defense": 40, "hp": 40, "specialAttack": 80, "specialDefense": 40, "speed": 65 }, + "baseStats": { + "attack": 65, + "defense": 40, + "hp": 40, + "specialAttack": 80, + "specialDefense": 40, + "speed": 65 + }, "evReward": { "specialAttack": 1 }, "types": ["dark"], "height": 0.7, @@ -76824,7 +86320,17 @@ { "name": "imprison", "level": 53 }, { "name": "night_daze", "level": 57 } ], - "eggMoves": ["counter", "detect", "memento", "snatch", "extrasensory", "copycat", "sucker_punch", "dark_pulse", "captivate"], + "eggMoves": [ + "counter", + "detect", + "memento", + "snatch", + "extrasensory", + "copycat", + "sucker_punch", + "dark_pulse", + "captivate" + ], "tutorMoves": [], "machine": [ "swords_dance", @@ -76882,7 +86388,14 @@ "default": { "abilities": ["inner_focus"], "hiddenAbilities": ["infiltrator"], - "baseStats": { "attack": 45, "defense": 35, "hp": 40, "specialAttack": 30, "specialDefense": 40, "speed": 55 }, + "baseStats": { + "attack": 45, + "defense": 35, + "hp": 40, + "specialAttack": 30, + "specialDefense": 40, + "speed": 55 + }, "evReward": { "speed": 1 }, "types": ["poison", "flying"], "height": 0.8, @@ -76977,7 +86490,14 @@ "default": { "abilities": ["hustle"], "hiddenAbilities": [], - "baseStats": { "attack": 85, "defense": 70, "hp": 72, "specialAttack": 65, "specialDefense": 70, "speed": 58 }, + "baseStats": { + "attack": 85, + "defense": 70, + "hp": 72, + "specialAttack": 65, + "specialDefense": 70, + "speed": 58 + }, "evReward": { "attack": 2 }, "types": ["dark", "dragon"], "height": 1.4, @@ -77055,7 +86575,14 @@ "10": { "abilities": ["power_construct"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 71, "hp": 54, "specialAttack": 61, "specialDefense": 85, "speed": 115 }, + "baseStats": { + "attack": 100, + "defense": 71, + "hp": 54, + "specialAttack": 61, + "specialDefense": 85, + "speed": 115 + }, "evReward": { "hp": 3 }, "types": ["dragon", "ground"], "height": 1.2, @@ -77117,7 +86644,14 @@ "50": { "abilities": ["power_construct"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 121, "hp": 108, "specialAttack": 81, "specialDefense": 95, "speed": 95 }, + "baseStats": { + "attack": 100, + "defense": 121, + "hp": 108, + "specialAttack": 81, + "specialDefense": 95, + "speed": 95 + }, "evReward": { "hp": 3 }, "types": ["dragon", "ground"], "height": 5, @@ -77179,7 +86713,14 @@ "complete": { "abilities": ["power_construct"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 121, "hp": 216, "specialAttack": 91, "specialDefense": 95, "speed": 85 }, + "baseStats": { + "attack": 100, + "defense": 121, + "hp": 216, + "specialAttack": 91, + "specialDefense": 95, + "speed": 85 + }, "evReward": { "hp": 3 }, "types": ["dragon", "ground"], "height": 4.5, @@ -77241,7 +86782,14 @@ "default": { "abilities": ["aura_break"], "hiddenAbilities": [], - "baseStats": { "attack": 100, "defense": 121, "hp": 108, "specialAttack": 81, "specialDefense": 95, "speed": 95 }, + "baseStats": { + "attack": 100, + "defense": 121, + "hp": 108, + "specialAttack": 81, + "specialDefense": 95, + "speed": 95 + }, "evReward": { "hp": 3 }, "types": ["dragon", "ground"], "height": 5, @@ -77301,6 +86849,6 @@ } } }, - "evolutions": null + "evolutions": [] } } diff --git a/Scripts/Interfaces/BaseTurnChoice.as b/Scripts/Interfaces/BaseTurnChoice.as index d86811f..4f87f10 100644 --- a/Scripts/Interfaces/BaseTurnChoice.as +++ b/Scripts/Interfaces/BaseTurnChoice.as @@ -1,5 +1,7 @@ shared interface BaseTurnChoice { TurnChoiceKind Kind { get const; } - Pokemon@ User { get const; } + const Pokemon@ User { get const; } MoveTurnChoice@ opCast(); + SwitchTurnChoice@ opCast(); + FleeTurnChoice@ opCast(); } diff --git a/Scripts/Interfaces/Battle.as b/Scripts/Interfaces/Battle.as index 532ef61..4c04820 100644 --- a/Scripts/Interfaces/Battle.as +++ b/Scripts/Interfaces/Battle.as @@ -4,9 +4,10 @@ shared interface Battle { bool CanFlee { get const; } BattleRandom@ Random { get const; } ChoiceQueue@ TurnQueue { get const; } - void AddVolatile(const constString &in name) const; + ref AddVolatile(const constString &in name); void RemoveVolatile(const constString &in name) const; void SetWeather(const constString &in name) const; void ClearWeather(const constString &in name) const; const constString& GetWeatherName() const; + BattleSide@ GetBattleSide(uint8 index); } diff --git a/Scripts/Interfaces/BattleSide.as b/Scripts/Interfaces/BattleSide.as new file mode 100644 index 0000000..e43dcbb --- /dev/null +++ b/Scripts/Interfaces/BattleSide.as @@ -0,0 +1,5 @@ +shared interface BattleSide { + bool SwapPositions(uint8 a, uint8 b); + uint8 SideIndex { get const; } + uint8 GetPokemonIndex(const Pokemon@ pokemon) const; +} diff --git a/Scripts/Interfaces/FleeTurnChoice.as b/Scripts/Interfaces/FleeTurnChoice.as new file mode 100644 index 0000000..93ef53b --- /dev/null +++ b/Scripts/Interfaces/FleeTurnChoice.as @@ -0,0 +1,5 @@ +shared interface FleeTurnChoice { + TurnChoiceKind Kind { get const; } + const Pokemon@ User { get const; } + BaseTurnChoice@ opImplCast(); +} diff --git a/Scripts/Interfaces/HitData.as b/Scripts/Interfaces/HitData.as index 691aa24..f2d4279 100644 --- a/Scripts/Interfaces/HitData.as +++ b/Scripts/Interfaces/HitData.as @@ -4,4 +4,6 @@ shared interface HitData { float Effectiveness { get const; } uint Damage { get const; } uint8 Type { get const; } + bool HasFailed { get const; } + void Fail(); } diff --git a/Scripts/Interfaces/ItemUseScript.as b/Scripts/Interfaces/ItemUseScript.as new file mode 100644 index 0000000..469bf84 --- /dev/null +++ b/Scripts/Interfaces/ItemUseScript.as @@ -0,0 +1,9 @@ +shared abstract class ItemUseScript { + void OnInitialize(const EffectParameter@[] &in){}; + bool IsItemUsable(){}; + bool IsPokemonUseItem(){}; + bool IsUseValidForPokemon(Pokemon@){}; + bool IsHoldable(){}; + void OnUse(){}; + void OnPokemonUse(Pokemon@){}; +} diff --git a/Scripts/Interfaces/MoveTurnChoice.as b/Scripts/Interfaces/MoveTurnChoice.as index 8716d38..8b84f75 100644 --- a/Scripts/Interfaces/MoveTurnChoice.as +++ b/Scripts/Interfaces/MoveTurnChoice.as @@ -1,6 +1,6 @@ shared interface MoveTurnChoice { TurnChoiceKind Kind { get const; } - Pokemon@ User { get const; } + const Pokemon@ User { get const; } LearnedMove@ Move { get const; } int8 Priority { get const; } BaseTurnChoice@ opImplCast(); diff --git a/Scripts/Interfaces/PkmnScript.as b/Scripts/Interfaces/PkmnScript.as index f887386..2c9061b 100644 --- a/Scripts/Interfaces/PkmnScript.as +++ b/Scripts/Interfaces/PkmnScript.as @@ -4,6 +4,7 @@ shared abstract class PkmnScript { void OnRemove(){}; void OnBeforeTurn(BaseTurnChoice@){}; void ChangeAttack(MoveTurnChoice@, constString &inout){}; + void ModifyNumberOfHits(MoveTurnChoice@, uint8 &inout){}; void PreventAttack(ExecutingMove@, bool &inout){}; void FailAttack(ExecutingMove@, bool &inout){}; void StopBeforeAttack(ExecutingMove@, bool &inout){}; @@ -26,6 +27,13 @@ shared abstract class PkmnScript { void ModifyStatModifier(ExecutingMove@, Pokemon@, uint8, float &inout){}; void ModifyDamageModifier(ExecutingMove@, Pokemon@, uint8, float &inout){}; void OverrideDamage(ExecutingMove@, Pokemon@, uint8, uint &inout){}; + void ChangePriority(MoveTurnChoice@, int8 &inout){}; + void OnFail(Pokemon@){}; + void OnOpponentFail(Pokemon@){}; + void PreventRunAway(FleeTurnChoice@, bool &inout){}; + void PreventOpponentRunAway(FleeTurnChoice@, bool &inout){}; + void PreventOpponentSwitch(SwitchTurnChoice@, bool &inout){}; + void OnEndTurn(Pokemon@){}; void ModifyCriticalStage(ExecutingMove@, Pokemon@, uint8, uint8 &inout){}; void OverrideCriticalModifier(ExecutingMove@, Pokemon@, uint8, float &inout){}; void OverrideSTABModifier(ExecutingMove@, Pokemon@, uint8, float &inout){}; diff --git a/Scripts/Interfaces/Pokemon.as b/Scripts/Interfaces/Pokemon.as index f8a623f..6efeb9a 100644 --- a/Scripts/Interfaces/Pokemon.as +++ b/Scripts/Interfaces/Pokemon.as @@ -27,7 +27,8 @@ shared interface Pokemon { uint GetBoostedStat(Statistic stat) const; uint GetBaseStat(Statistic stat) const; int8 GetStatBoost(Statistic stat) const; - void AddVolatile(const constString &in name) const; + ref AddVolatile(const constString &in name); void RemoveVolatile(const constString &in name) const; - const Battle@ Battle { get const; } + Battle@ Battle { get const; } + BattleSide@ BattleSide { get const; } } diff --git a/Scripts/Interfaces/SwitchTurnChoice.as b/Scripts/Interfaces/SwitchTurnChoice.as index 2261781..09aff2f 100644 --- a/Scripts/Interfaces/SwitchTurnChoice.as +++ b/Scripts/Interfaces/SwitchTurnChoice.as @@ -1,7 +1,6 @@ shared interface SwitchTurnChoice { TurnChoiceKind Kind { get const; } - Pokemon@ User { get const; } + const Pokemon@ User { get const; } Pokemon@ NewPokemon { get const; } - MoveTurnChoice@ opCast(); BaseTurnChoice@ opImplCast(); } diff --git a/Scripts/Interfaces/dictionary.as b/Scripts/Interfaces/dictionary.as new file mode 100644 index 0000000..a75362b --- /dev/null +++ b/Scripts/Interfaces/dictionary.as @@ -0,0 +1,16 @@ +shared interface dictionary { + void set(const string &in, const ?&in); + bool get(const string &in, ? &out) const; + void set(const string &in, const int64&in); + bool get(const string &in, int64 &out) const; + void set(const string &in, const double&in); + bool get(const string &in, double &out) const; + bool exists(const string &in) const; + bool isEmpty() const; + uint getSize() const; + bool delete(const string &in); + void deleteAll(); + string[]@ getKeys() const; + dictionaryValue& opIndex(const string &in); + const dictionaryValue& opIndex(const string &in) const; +} diff --git a/Scripts/Interfaces/dictionaryValue.as b/Scripts/Interfaces/dictionaryValue.as new file mode 100644 index 0000000..562b0fe --- /dev/null +++ b/Scripts/Interfaces/dictionaryValue.as @@ -0,0 +1,8 @@ +shared interface dictionaryValue { + dictionaryValue& opHndlAssign(const ? &in); + dictionaryValue& opHndlAssign(const dictionaryValue &in); + void opCast(? &out); + void opConv(? &out); + int64 opConv(); + double opConv(); +} diff --git a/Scripts/Items/heal_item.as b/Scripts/Items/heal_item.as new file mode 100644 index 0000000..c029687 --- /dev/null +++ b/Scripts/Items/heal_item.as @@ -0,0 +1,26 @@ +namespace Pokemon{ + [ItemUse effect=heal] + class HealItem : ItemUseScript { + uint _amount; + + void OnInitialize(const array &in parameters) override { + _amount = uint(parameters[0].AsInt()); + } + + bool IsItemUsable() override { + return true; + } + + bool IsPokemonUseItem() override { + return true; + } + + bool IsUseValidForPokemon(Pokemon@ pokemon) override { + return pokemon.CurrentHealth < pokemon.MaxHealth; + } + + void OnPokemonUse(Pokemon@ pkmn) override { + pkmn.Heal(_amount); + } + } +} \ No newline at end of file diff --git a/Scripts/Moves/2_5HitMove.as b/Scripts/Moves/2_5HitMove.as new file mode 100644 index 0000000..a75ba19 --- /dev/null +++ b/Scripts/Moves/2_5HitMove.as @@ -0,0 +1,26 @@ +namespace Gen7 { + [Move effect=2_5HitMove] + class MultiHitMove : PkmnScript{ + void ModifyNumberOfHits(MoveTurnChoice@ choice, uint8 &inout numberHits) override { + auto randValue = choice.User.Battle.Random.Get(6); + switch (randValue){ + case 0: + case 1: + numberHits = 2; + break; + case 2: + case 3: + numberHits = 3; + break; + case 4: + numberHits = 4; + break; + case 5: + numberHits = 5; + break; + default: + throw("Invalid randValue"); + } + } + } +} \ No newline at end of file diff --git a/Scripts/Moves/ChangeAllTargetStats.as b/Scripts/Moves/ChangeAllTargetStats.as new file mode 100644 index 0000000..4e92005 --- /dev/null +++ b/Scripts/Moves/ChangeAllTargetStats.as @@ -0,0 +1,18 @@ +namespace Gen7 { + [Move effect=ChangeAllTargetStats] + class ChangeAllTargetStats : PkmnScript{ + int8 _amount; + + void OnInitialize(const EffectParameter@[] &in parameters) override{ + _amount = int8(parameters[0].AsInt()); + } + + void OnSecondaryEffect(ExecutingMove@ attack, Pokemon@ target, uint8 hit) override{ + target.ChangeStatBoost(Statistic::Attack, _amount); + target.ChangeStatBoost(Statistic::Defense, _amount); + target.ChangeStatBoost(Statistic::SpecialAttack, _amount); + target.ChangeStatBoost(Statistic::SpecialDefense, _amount); + target.ChangeStatBoost(Statistic::Speed, _amount); + } + } +} \ No newline at end of file diff --git a/Scripts/Moves/ChangeTargetAtt.as b/Scripts/Moves/ChangeTargetAtt.as new file mode 100644 index 0000000..5e3b80b --- /dev/null +++ b/Scripts/Moves/ChangeTargetAtt.as @@ -0,0 +1,14 @@ +namespace Gen7 { + [Move effect=ChangeTargetAtt] + class ChangeTargetAttack : PkmnScript{ + int8 _amount; + + void OnInitialize(const EffectParameter@[] &in parameters) override{ + _amount = int8(parameters[0].AsInt()); + } + + void OnSecondaryEffect(ExecutingMove@ attack, Pokemon@ target, uint8 hit) override{ + target.ChangeStatBoost(Statistic::Attack, _amount); + } + } +} \ No newline at end of file diff --git a/Scripts/Moves/Drain.as b/Scripts/Moves/Drain.as index 067ff53..3ae9b62 100644 --- a/Scripts/Moves/Drain.as +++ b/Scripts/Moves/Drain.as @@ -1,14 +1,14 @@ -namespace Gen7{ +namespace Gen7 { [Move effect=drain] shared class DrainMove : PkmnScript{ private float _healModifier = 0; - void OnInitialize(const array &in parameters) override{ + void OnInitialize(const array &in parameters) override { _healModifier = parameters[0].AsFloat(); } - void OnSecondaryEffect(ExecutingMove@ attack, Pokemon@ target, uint8 hit) override{ - auto hitData = attack.GetAttackDataForTarget(target).GetHit(hit); + void OnSecondaryEffect(ExecutingMove@ attack, Pokemon@ target, uint8 hit) override { + auto hitData = attack.GetHitData(target, hit); auto damage = hitData.Damage; float mod = _healModifier; if (attack.User.HasHeldItem("big_root")){ @@ -17,4 +17,4 @@ namespace Gen7{ attack.User.Heal(uint(damage * mod)); } } -} +} \ No newline at end of file diff --git a/Scripts/Moves/HealEachEndOfTurn.as b/Scripts/Moves/HealEachEndOfTurn.as new file mode 100644 index 0000000..cfb2e0f --- /dev/null +++ b/Scripts/Moves/HealEachEndOfTurn.as @@ -0,0 +1,15 @@ +namespace Gen7 { + [Move effect=HealEachEndOfTurn] + shared class HealEachEndOfTurn : PkmnScript { + float _amount; + + void OnInitialize(const EffectParameter@[] &in parameters) override{ + _amount = float(parameters[0].AsFloat()) / 100; + } + + void OnSecondaryEffect(ExecutingMove@, Pokemon@ pokemon, uint8) override { + auto script = cast(pokemon.AddVolatile("HealEachEndOfTurn")); + script.SetBaseHealAmount(_amount); + } + } +} \ No newline at end of file diff --git a/Scripts/Moves/PreventFoeRunning.as b/Scripts/Moves/PreventFoeRunning.as new file mode 100644 index 0000000..18ef30b --- /dev/null +++ b/Scripts/Moves/PreventFoeRunning.as @@ -0,0 +1,9 @@ +namespace Gen7 { + [Move effect=PreventFoeRunning] + shared class PreventFoeRunning : PkmnScript { + void OnSecondaryEffect(ExecutingMove@ move, Pokemon@ target, uint8 hit) override { + auto script = cast(move.User.AddVolatile("PreventFoeRunning")); + script.SetLockedOpponent(target); + } + } +} \ No newline at end of file diff --git a/Scripts/Moves/Struggle.as b/Scripts/Moves/Struggle.as new file mode 100644 index 0000000..1edf7e5 --- /dev/null +++ b/Scripts/Moves/Struggle.as @@ -0,0 +1,8 @@ +namespace Gen7 { + [Move effect=Struggle] + shared class Struggle : PkmnScript { + void OnSecondaryEffect(ExecutingMove@ attack, Pokemon@ target, uint8 hit) override{ + attack.User.Damage(uint(attack.User.MaxHealth / 4), DamageSource::Struggle); + } + } +} \ No newline at end of file diff --git a/Scripts/Moves/SwapWithTarget.as b/Scripts/Moves/SwapWithTarget.as new file mode 100644 index 0000000..838f1a2 --- /dev/null +++ b/Scripts/Moves/SwapWithTarget.as @@ -0,0 +1,18 @@ +namespace Gen7 { + [Move effect=SwapWithTarget] + shared class SwapWithTarget : PkmnScript { + void OnSecondaryEffect(ExecutingMove@ move, Pokemon@ target, uint8 hit) override { + auto userSide = move.User.BattleSide; + auto targetSide = target.BattleSide; + if (userSide !is targetSide){ + move.GetHitData(target, hit).Fail(); + return; + } + auto userIndex = userSide.GetPokemonIndex(move.User); + auto targetIndex = userSide.GetPokemonIndex(target); + if (!userSide.SwapPositions(userIndex, targetIndex)){ + move.GetHitData(target, hit).Fail(); + } + } + } +} \ No newline at end of file diff --git a/Scripts/Pokemon/flinch.as b/Scripts/Pokemon/Flinch.as similarity index 79% rename from Scripts/Pokemon/flinch.as rename to Scripts/Pokemon/Flinch.as index 3f3f259..e7a09b6 100644 --- a/Scripts/Pokemon/flinch.as +++ b/Scripts/Pokemon/Flinch.as @@ -3,6 +3,7 @@ namespace Pokemon{ class Flinch : PkmnScript{ void PreventAttack(ExecutingMove@ attack, bool& result) override { result = true; + attack.User.RemoveVolatile("flinch"); } } } \ No newline at end of file diff --git a/Scripts/Pokemon/HealEachEndOfTurn.as b/Scripts/Pokemon/HealEachEndOfTurn.as new file mode 100644 index 0000000..6da9252 --- /dev/null +++ b/Scripts/Pokemon/HealEachEndOfTurn.as @@ -0,0 +1,18 @@ +namespace Gen7 { + [Pokemon effect=HealEachEndOfTurn] + shared class HealEachEndOfTurnEffect : PkmnScript { + float _factor; + + void OnEndTurn(Pokemon@ pokemon) override { + auto healAmount = pokemon.MaxHealth * _factor; + if (pokemon.HasHeldItem("big_root")){ + healAmount *= 1.3; + } + pokemon.Heal(uint(healAmount)); + } + + void SetBaseHealAmount(float factor){ + _factor = factor; + } + } +} \ No newline at end of file diff --git a/Scripts/Pokemon/PreventFoeRunning.as b/Scripts/Pokemon/PreventFoeRunning.as new file mode 100644 index 0000000..4319247 --- /dev/null +++ b/Scripts/Pokemon/PreventFoeRunning.as @@ -0,0 +1,20 @@ +namespace Gen7 { + [Pokemon effect=PreventFoeRunning] + shared class PreventFoeRunningEffect : PkmnScript { + Pokemon@[] _trappedOpponents; + + void PreventOpponentRunAway(FleeTurnChoice@ choice, bool &inout o) override { + for(uint i = 0; i < _trappedOpponents.length; i++) + { + if (_trappedOpponents[i] is choice.User){ + o = true; + break; + } + } + } + + void SetLockedOpponent(Pokemon@ opponent){ + _trappedOpponents.insertLast(opponent); + } + } +} \ No newline at end of file